From 94d755003ebd0abee80e276f2af964a453ec3ca1 Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 6 Jan 2014 22:34:14 -0500 Subject: [PATCH 01/41] split out the audio engines --- audio/engine_1.asm | 1682 +++++++++++++++ audio/engine_2.asm | 1733 +++++++++++++++ audio/engine_3.asm | 1682 +++++++++++++++ main.asm | 5082 +------------------------------------------- 4 files changed, 5100 insertions(+), 5079 deletions(-) create mode 100644 audio/engine_1.asm create mode 100644 audio/engine_2.asm create mode 100644 audio/engine_3.asm diff --git a/audio/engine_1.asm b/audio/engine_1.asm new file mode 100644 index 00000000..0d60308a --- /dev/null +++ b/audio/engine_1.asm @@ -0,0 +1,1682 @@ +; The first of three duplicated sound engines. + +Func_9103: ; 0x9103 + ld c, CH0 +.loop + ld b, $0 + ld hl, $c026 + add hl, bc + ld a, [hl] + and a + jr z, .nextChannel + ld a, c + cp CH4 + jr nc, .asm_912e ; if sfx channel + ld a, [$c002] + and a + jr z, .asm_912e + bit 7, a + jr nz, .nextChannel + set 7, a + ld [$c002], a + xor a + ld [$ff00+$25], a + ld [$ff00+$1a], a + ld a, $80 + ld [$ff00+$1a], a + jr .nextChannel +.asm_912e + call Music2_ApplyMusicAffects +.nextChannel + ld a, c + inc c ; inc channel number + cp CH7 + jr nz, .loop + ret + +; this routine checks flags for music effects currently applied +; to the channel and calls certain functions based on flags. +; known flags for $c02e: +; 1: call has been used +; 3: a toggle used only by this routine for vibrato +; 4: pitchbend flag +; 6: dutycycle flag +Music2_ApplyMusicAffects: ; 0x9138 + ld b, $0 + ld hl, $c0b6 ; delay unitl next note + add hl, bc + ld a, [hl] + cp $1 ; if the delay is 1, play next note + jp z, Music2_PlayNextNote + dec a ; otherwise, decrease the delay timer + ld [hl], a + ld a, c + cp CH4 + jr nc, .startChecks ; if a sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr z, .startChecks + ret +.startChecks + ld hl, $c02e + add hl, bc + bit 6, [hl] ; dutycycle + jr z, .checkForExecuteMusic + call Music2_ApplyDutyCycle +.checkForExecuteMusic + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, .checkForPitchBend + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr nz, .disablePitchBendVibrato +.checkForPitchBend + ld hl, $c02e + add hl, bc + bit 4, [hl] ; pitchbend + jr z, .checkVibratoDelay + jp Music2_ApplyPitchBend +.checkVibratoDelay + ld hl, $c04e ; vibrato delay + add hl, bc + ld a, [hl] + and a ; check if delay is over + jr z, .checkForVibrato + dec [hl] ; otherwise, dec delay +.disablePitchBendVibrato + ret +.checkForVibrato + ld hl, $c056 ; vibrato rate + add hl, bc + ld a, [hl] + and a + jr nz, .vibrato + ret ; no vibrato +.vibrato + ld d, a + ld hl, $c05e + add hl, bc + ld a, [hl] + and $f + and a + jr z, .vibratoAlreadyDone + dec [hl] ; apply vibrato pitch change + ret +.vibratoAlreadyDone + ld a, [hl] + swap [hl] + or [hl] + ld [hl], a ; reset the vibrato value and start again + ld hl, $c066 + add hl, bc + ld e, [hl] ; get note pitch + ld hl, $c02e + add hl, bc + bit 3, [hl] ; this is the only code that sets/resets bit three so + jr z, .unset ; it continuously alternates which path it takes + res 3, [hl] + ld a, d + and $f + ld d, a + ld a, e + sub d + jr nc, .noCarry + ld a, $0 +.noCarry + jr .done +.unset + set 3, [hl] + ld a, d + and $f0 + swap a + add e + jr nc, .done + ld a, $ff +.done + ld d, a + ld b, $3 + call Func_9838 + ld [hl], d + ret + +; this routine executes all music commands that take up no time, +; like tempo changes, duty changes etc. and doesn't return +; until the first note is reached +Music2_PlayNextNote ; 0x91d0 + ld hl, $c06e + add hl, bc + ld a, [hl] + ld hl, $c04e + add hl, bc + ld [hl], a + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + call Music2_endchannel + ret + +Music2_endchannel: ; 0x91e6 + call Music2_GetNextMusicByte + ld d, a + cp $ff ; is this command an endchannel? + jp nz, Music2_callchannel ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + bit 1, [hl] + jr nz, .returnFromCall + ld a, c + cp CH3 + jr nc, .noiseOrSfxChannel + jr .asm_923f +.noiseOrSfxChannel + res 2, [hl] + ld hl, $c036 + add hl, bc + res 0, [hl] + cp CH6 + jr nz, .notSfxChannel3 + ld a, $0 + ld [$ff00+$1a], a + ld a, $80 + ld [$ff00+$1a], a +.notSfxChannel3 + jr nz, .asm_9222 + ld a, [$c003] + and a + jr z, .asm_9222 + xor a + ld [$c003], a + jr .asm_923f +.asm_9222 + jr .asm_9248 +.returnFromCall + res 1, [hl] + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl ; store current channel address + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [de] + ld [hli], a + inc de + ld a, [de] + ld [hl], a ; loads channel address to return to + jp Music2_endchannel +.asm_923f + ld hl, Unknown_9b1f + add hl, bc + ld a, [$ff00+$25] + and [hl] + ld [$ff00+$25], a +.asm_9248 + ld a, [$c02a] + cp $14 + jr nc, .asm_9251 + jr .asm_926e +.asm_9251 + ld a, [$c02a] + cp $86 + jr z, .asm_926e + jr c, .asm_925c + jr .asm_926e +.asm_925c + ld a, c + cp CH4 + jr z, .asm_9265 + call Func_96c7 + ret c +.asm_9265 + ld a, [$c005] + ld [$ff00+$24], a + xor a + ld [$c005], a +.asm_926e + ld hl, $c026 + add hl, bc + ld [hl], b + ret + +Music2_callchannel: ; 0x9274 + cp $fd ; is this command a callchannel? + jp nz, Music2_loopchannel ; no + call Music2_GetNextMusicByte ; yes + push af + call Music2_GetNextMusicByte + ld d, a + pop af + ld e, a + push de ; store pointer + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [hli] + ld [de], a + inc de + ld a, [hld] + ld [de], a ; copy current channel address + pop de + ld [hl], e + inc hl + ld [hl], d ; overwrite current address with pointer + ld b, $0 + ld hl, $c02e + add hl, bc + set 1, [hl] ; set the call flag + jp Music2_endchannel + +Music2_loopchannel: ; 0x92a9 + cp $fe ; is this command a loopchannel? + jp nz, Music2_notetype ; no + call Music2_GetNextMusicByte ; yes + ld e, a + and a + jr z, .infiniteLoop + ld b, $0 + ld hl, $c0be + add hl, bc + ld a, [hl] + cp e + jr nz, .loopAgain + ld a, $1 ; if no more loops to make, + ld [hl], a + call Music2_GetNextMusicByte ; skip pointer + call Music2_GetNextMusicByte + jp Music2_endchannel +.loopAgain ; inc loop count + inc a + ld [hl], a + ; fall through +.infiniteLoop ; overwrite current address with pointer + call Music2_GetNextMusicByte + push af + call Music2_GetNextMusicByte + ld b, a + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + pop af + ld [hli], a + ld [hl], b + jp Music2_endchannel + +Music2_notetype: ; 0x92e4 + and $f0 + cp $d0 ; is this command a notetype? + jp nz, Music2_togglecall ; no + ld a, d ; yes + and $f + ld b, $0 + ld hl, $c0c6 + add hl, bc + ld [hl], a ; store low nibble as speed + ld a, c + cp CH3 + jr z, .noiseChannel ; noise channel has 0 params + call Music2_GetNextMusicByte + ld d, a + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notChannel3 + ld hl, $c0e7 + jr .sfxChannel3 +.musicChannel3 + ld hl, $c0e6 +.sfxChannel3 + ld a, d + and $f + ld [hl], a ; store low nibble of param as duty + ld a, d + and $30 + sla a + ld d, a + ; fall through + + ; if channel 3, store high nibble as volume + ; else, store volume (high nibble) and fade (low nibble) +.notChannel3 + ld b, $0 + ld hl, $c0de + add hl, bc + ld [hl], d +.noiseChannel + jp Music2_endchannel + +Music2_togglecall: ; 0x9323 + ld a, d + cp $e8 ; is this command an togglecall? + jr nz, Music2_vibrato ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + ld a, [hl] + xor $1 + ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) + jp Music2_endchannel + +Music2_vibrato: ; 0x9335 + cp $ea ; is this command a vibrato? + jr nz, Music2_pitchbend ; no + call Music2_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c04e + add hl, bc + ld [hl], a ; store delay + ld hl, $c06e + add hl, bc + ld [hl], a ; store delay + call Music2_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, $0 + ld hl, $c056 + add hl, bc + srl a + ld e, a + adc b + swap a + or e + ld [hl], a ; store rate as both high and low nibbles + ld a, d + and $f + ld d, a + ld hl, $c05e + add hl, bc + swap a + or d + ld [hl], a ; store depth as both high and low nibbles + jp Music2_endchannel + +Music2_pitchbend: ; 0x936d + cp $eb ; is this command a pitchbend? + jr nz, Music2_duty ; no + call Music2_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c076 + add hl, bc + ld [hl], a ; store first param + call Music2_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, a + ld a, d + and $f + call Func_9858 + ld b, $0 + ld hl, $c0a6 + add hl, bc + ld [hl], d ; store unknown part of second param + ld hl, $c0ae + add hl, bc + ld [hl], e ; store unknown part of second param + ld b, $0 + ld hl, $c02e + add hl, bc + set 4, [hl] ; set pitchbend flag + call Music2_GetNextMusicByte + ld d, a + jp Music2_notelength + +Music2_duty: ; 0x93a5 + cp $ec ; is this command a duty? + jr nz, Music2_tempo ; no + call Music2_GetNextMusicByte ; yes + rrca + rrca + and $c0 + ld b, $0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store duty + jp Music2_endchannel + +Music2_tempo: ; 0x93ba + cp $ed ; is this command a tempo? + jr nz, Music2_unknownmusic0xee ; no + ld a, c ; yes + cp CH4 + jr nc, .sfxChannel + call Music2_GetNextMusicByte + ld [$c0e8], a ; store first param + call Music2_GetNextMusicByte + ld [$c0e9], a ; store second param + xor a + ld [$c0ce], a ; clear RAM + ld [$c0cf], a + ld [$c0d0], a + ld [$c0d1], a + jr .musicChannelDone +.sfxChannel + call Music2_GetNextMusicByte + ld [$c0ea], a ; store first param + call Music2_GetNextMusicByte + ld [$c0eb], a ; store second param + xor a + ld [$c0d2], a ; clear RAM + ld [$c0d3], a + ld [$c0d4], a + ld [$c0d5], a +.musicChannelDone + jp Music2_endchannel + +Music2_unknownmusic0xee: ; 0x93fa + cp $ee ; is this command an unknownmusic0xee? + jr nz, Music2_unknownmusic0xef ; no + call Music2_GetNextMusicByte ; yes + ld [$c004], a ; store first param + jp Music2_endchannel + +; this appears to never be used +Music2_unknownmusic0xef ; 0x9407 + cp $ef ; is this command an unknownmusic0xef? + jr nz, Music2_dutycycle ; no + call Music2_GetNextMusicByte ; yes + push bc + call Func_9876 + pop bc + ld a, [$c003] + and a + jr nz, .skip + ld a, [$c02d] + ld [$c003], a + xor a + ld [$c02d], a +.skip + jp Music2_endchannel + +Music2_dutycycle: ; 0x9426 + cp $fc ; is this command a dutycycle? + jr nz, Music2_stereopanning ; no + call Music2_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c046 + add hl, bc + ld [hl], a ; store full cycle + and $c0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store first duty + ld hl, $c02e + add hl, bc + set 6, [hl] ; set dutycycle flag + jp Music2_endchannel + +Music2_stereopanning: ; 0x9444 + cp $f0 ; is this command a stereopanning? + jr nz, Music2_executemusic ; no + call Music2_GetNextMusicByte ; yes + ld [$ff00+$24], a ; store stereopanning + jp Music2_endchannel + +Music2_executemusic: ; 0x9450 + cp $f8 ; is this command an executemusic? + jr nz, Music2_octave ; no + ld b, $0 ; yes + ld hl, $c036 + add hl, bc + set 0, [hl] + jp Music2_endchannel + +Music2_octave: ; 0x945f + and $f0 + cp $e0 ; is this command an octave? + jr nz, Music2_unknownsfx0x20 ; no + ld hl, $c0d6 ; yes + ld b, $0 + add hl, bc + ld a, d + and $f + ld [hl], a ; store low nibble as octave + jp Music2_endchannel + +Music2_unknownsfx0x20: ; 0x9472 + cp $20 ; is this command an unknownsfx0x20? + jr nz, Music2_unknownsfx0x10 ; no + ld a, c + cp CH3 ; is this a noise or sfx channel? + jr c, Music2_unknownsfx0x10 ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music2_unknownsfx0x10 ; no + call Music2_notelength ; yes + ld d, a + ld b, $0 + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a + ld b, $1 + call Func_9838 + ld [hl], d + call Music2_GetNextMusicByte + ld d, a + ld b, $2 + call Func_9838 + ld [hl], d + call Music2_GetNextMusicByte + ld e, a + ld a, c + cp CH7 + ld a, $0 + jr z, .sfxNoiseChannel ; only two params for noise channel + push de + call Music2_GetNextMusicByte + pop de +.sfxNoiseChannel + ld d, a + push de + call Func_9629 + call Func_95f8 + pop de + call Func_964b + ret + +Music2_unknownsfx0x10: + ld a, c + cp CH4 + jr c, Music2_note ; if not a sfx + ld a, d + cp $10 ; is this command a unknownsfx0x10? + jr nz, Music2_note ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music2_note ; no + call Music2_GetNextMusicByte ; yes + ld [$ff00+$10], a + jp Music2_endchannel + +Music2_note: + ld a, c + cp CH3 + jr nz, Music2_notelength ; if not noise channel + ld a, d + and $f0 + cp $b0 ; is this command a dnote? + jr z, Music2_dnote ; yes + jr nc, Music2_notelength ; no + swap a + ld b, a + ld a, d + and $f + ld d, a + ld a, b + push de + push bc + jr asm_94fd + +Music2_dnote: + ld a, d + and $f + push af + push bc + call Music2_GetNextMusicByte ; get dnote instrument +asm_94fd + ld d, a + ld a, [$c003] + and a + jr nz, .asm_9508 + ld a, d + call Func_9876 +.asm_9508 + pop bc + pop de + +Music2_notelength: ; 0x950a + ld a, d + push af + and $f + inc a + ld b, $0 + ld e, a ; store note length (in 16ths) + ld d, b + ld hl, $c0c6 + add hl, bc + ld a, [hl] + ld l, b + call Func_9847 + ld a, c + cp CH4 + jr nc, .sfxChannel + ld a, [$c0e8] + ld d, a + ld a, [$c0e9] + ld e, a + jr .skip +.sfxChannel + ld d, $1 + ld e, $0 + cp CH7 + jr z, .skip ; if noise channel + call Func_9693 + ld a, [$c0ea] + ld d, a + ld a, [$c0eb] + ld e, a +.skip + ld a, l + ld b, $0 + ld hl, $c0ce + add hl, bc + ld l, [hl] + call Func_9847 + ld e, l + ld d, h + ld hl, $c0ce + add hl, bc + ld [hl], e + ld a, d + ld hl, $c0b6 + add hl, bc + ld [hl], a + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music2_notepitch + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr z, Music2_notepitch + pop hl + ret + +Music2_notepitch: ; 0x9568 + pop af + and $f0 + cp $c0 ; compare to rest + jr nz, .notRest + ld a, c + cp CH4 + jr nc, .sfxChannel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .done + ; fall through +.sfxChannel + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notSfxChannel3 +.musicChannel3 + ld b, $0 + ld hl, Unknown_9b1f + add hl, bc + ld a, [$ff00+$25] + and [hl] + ld [$ff00+$25], a + jr .done +.notSfxChannel3 + ld b, $2 + call Func_9838 + ld a, $8 + ld [hli], a + inc hl + ld a, $80 + ld [hl], a +.done + ret +.notRest + swap a + ld b, $0 + ld hl, $c0d6 + add hl, bc + ld b, [hl] + call Func_9858 + ld b, $0 + ld hl, $c02e + add hl, bc + bit 4, [hl] + jr z, .asm_95b8 + call Func_978f +.asm_95b8 + push de + ld a, c + cp CH4 + jr nc, .skip ; if sfx channel + ld hl, $c02a + ld d, $0 + ld e, a + add hl, de + ld a, [hl] + and a + jr nz, .asm_95cb + jr .skip +.asm_95cb + pop de + ret +.skip + ld b, $0 + ld hl, $c0de + add hl, bc + ld d, [hl] + ld b, $2 + call Func_9838 + ld [hl], d + call Func_9629 + call Func_95f8 + pop de + ld b, $0 + ld hl, $c02e + add hl, bc + bit 0, [hl] + jr z, .asm_95ef + inc e + jr nc, .asm_95ef + inc d +.asm_95ef + ld hl, $c066 + add hl, bc + ld [hl], e + call Func_964b + ret + +Func_95f8: ; 0x95f8 + ld b, $0 + ld hl, Unknown_9b27 + add hl, bc + ld a, [$ff00+$25] + or [hl] + ld d, a + ld a, c + cp CH7 + jr z, .sfxNoiseChannel + cp CH4 + jr nc, .skip ; if sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .skip +.sfxNoiseChannel + ld a, [$c004] + ld hl, Unknown_9b27 + add hl, bc + and [hl] + ld d, a + ld a, [$ff00+$25] + ld hl, Unknown_9b1f + add hl, bc + and [hl] + or d + ld d, a +.skip + ld a, d + ld [$ff00+$25], a + ret + +Func_9629: ; 0x9629 + ld b, $0 + ld hl, $c0b6 + add hl, bc + ld d, [hl] + ld a, c + cp CH2 + jr z, .channel3 ; if music channel 3 + cp CH6 + jr z, .channel3 ; if sfx channel 3 + ld a, d + and $3f + ld d, a + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a +.channel3 + ld b, $1 + call Func_9838 + ld [hl], d + ret + +Func_964b: ; 0x964b + ld a, c + cp CH2 + jr z, .channel3 + cp CH6 + jr nz, .notSfxChannel3 + ; fall through +.channel3 + push de + ld de, $c0e6 + cp CH2 + jr z, .musicChannel3 + ld de, $c0e7 +.musicChannel3 + ld a, [de] + add a + ld d, $0 + ld e, a + ld hl, Music2_Channel3DutyPointers + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld hl, $ff30 + ld b, $f + ld a, $0 + ld [$ff00+$1a], a +.loop + ld a, [de] + inc de + ld [hli], a + ld a, b + dec b + and a + jr nz, .loop + ld a, $80 + ld [$ff00+$1a], a + pop de +.notSfxChannel3 + ld a, d + or $80 + and $c7 + ld d, a + ld b, $3 + call Func_9838 + ld [hl], e + inc hl + ld [hl], d + call Func_96b5 + ret + +Func_9693: ; 0x9693 + call Func_96e5 + jr nc, .asm_96ab + ld d, $0 + ld a, [$c0f2] + add $80 + jr nc, .asm_96a2 + inc d +.asm_96a2 + ld [$c0eb], a + ld a, d + ld [$c0ea], a + jr .asm_96b4 +.asm_96ab + xor a + ld [$c0eb], a + ld a, $1 + ld [$c0ea], a +.asm_96b4 + ret + +Func_96b5: ; 0x96b5 + call Func_96e5 + jr nc, .asm_96c6 + ld a, [$c0f1] + add e + jr nc, .asm_96c1 + inc d +.asm_96c1 + dec hl + ld e, a + ld [hl], e + inc hl + ld [hl], d +.asm_96c6 + ret + +Func_96c7: ; 0x96c7 + call Func_96e5 + jr nc, .asm_96e2 + ld hl, $c006 + ld e, c + ld d, $0 + sla e + rl d + add hl, de + ld a, [hl] + sub $1 + ld [hl], a + inc hl + ld a, [hl] + sbc $0 + ld [hl], a + scf + ret +.asm_96e2 + scf + ccf + ret + +Func_96e5: ; 0x96e5 + ld a, [$c02a] + cp $14 + jr nc, .asm_96ee + jr .asm_96f4 +.asm_96ee + cp $86 + jr z, .asm_96f4 + jr c, .asm_96f7 +.asm_96f4 + scf + ccf + ret +.asm_96f7 + scf + ret + +Music2_ApplyPitchBend: ; 0x96f9 + ld hl, $c02e + add hl, bc + bit 5, [hl] + jp nz, .asm_9740 + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld l, [hl] + ld h, b + add hl, de + ld d, h + ld e, l + ld hl, $c08e + add hl, bc + push hl + ld hl, $c086 + add hl, bc + ld a, [hl] + pop hl + add [hl] + ld [hl], a + ld a, $0 + adc e + ld e, a + ld a, $0 + adc d + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + cp d + jp c, .asm_9786 + jr nz, .asm_9773 + ld hl, $c0ae + add hl, bc + ld a, [hl] + cp e + jp c, .asm_9786 + jr .asm_9773 +.asm_9740 + ld hl, $c09e + add hl, bc + ld a, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld e, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c086 + add hl, bc + ld a, [hl] + add a + ld [hl], a + ld a, e + sbc b + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, d + cp [hl] + jr c, .asm_9786 + jr nz, .asm_9773 + ld hl, $c0ae + add hl, bc + ld a, e + cp [hl] + jr c, .asm_9786 +.asm_9773 + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c096 + add hl, bc + ld [hl], d + ld b, $3 + call Func_9838 + ld a, e + ld [hli], a + ld [hl], d + ret +.asm_9786 + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + ret + +Func_978f: ; 0x978f + ld hl, $c096 + add hl, bc + ld [hl], d + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c0b6 + add hl, bc + ld a, [hl] + ld hl, $c076 + add hl, bc + sub [hl] + jr nc, .asm_97a7 + ld a, $1 +.asm_97a7 + ld [hl], a + ld hl, $c0ae + add hl, bc + ld a, e + sub [hl] + ld e, a + ld a, d + sbc b + ld hl, $c0a6 + add hl, bc + sub [hl] + jr c, .asm_97c3 + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + set 5, [hl] + jr .asm_97e6 +.asm_97c3 + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c0ae + add hl, bc + ld a, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + sub d + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + res 5, [hl] +.asm_97e6 + ld hl, $c076 + add hl, bc +.asm_97ea + inc b + ld a, e + sub [hl] + ld e, a + jr nc, .asm_97ea + ld a, d + and a + jr z, .asm_97f8 + dec a + ld d, a + jr .asm_97ea +.asm_97f8 + ld a, e + add [hl] + ld d, b + ld b, $0 + ld hl, $c07e + add hl, bc + ld [hl], d + ld hl, $c086 + add hl, bc + ld [hl], a + ld hl, $c08e + add hl, bc + ld [hl], a + ret + +Music2_ApplyDutyCycle: ; 0x980d + ld b, $0 + ld hl, $c046 + add hl, bc + ld a, [hl] + rlca + rlca + ld [hl], a + and $c0 + ld d, a + ld b, $1 + call Func_9838 + ld a, [hl] + and $3f + or d + ld [hl], a + ret + +Music2_GetNextMusicByte: ; 0x9825 + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + ld a, [hli] + ld e, a + ld a, [hld] + ld d, a + ld a, [de] ; get next music command + inc de + ld [hl], e ; store address of next command + inc hl + ld [hl], d + ret + +Func_9838: ; 0x9838 + ld a, c + ld hl, Unknown_9b17 + add l + jr nc, .noCarry + inc h +.noCarry + ld l, a + ld a, [hl] + add b + ld l, a + ld h, $ff + ret + +Func_9847: ; 0x9847 + ld h, $0 +.loop + srl a + jr nc, .noCarry + add hl, de +.noCarry + sla e + rl d + and a + jr z, .done + jr .loop +.done + ret + +Func_9858: ; 0x9858 + ld h, $0 + ld l, a + add hl, hl + ld d, h + ld e, l + ld hl, Unknown_9b2f + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld a, b +.loop + cp $7 + jr z, .done + sra d + rr e + inc a + jr .loop +.done + ld a, $8 + add d + ld d, a + ret + +Func_9876: ; 0x9876 + ld [$c001], a + cp $ff + jp z, Func_9a34 + cp $b9 + jp z, Func_994e + jp c, Func_994e + cp $fe + jr z, .asm_988d + jp nc, Func_994e +.asm_988d + xor a + ld [$c000], a + ld [$c003], a + ld [$c0e9], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $8 + ld hl, $c016 + call FillMusicRAM2 + ld hl, $c006 + call FillMusicRAM2 + ld d, $4 + ld hl, $c026 + call FillMusicRAM2 + ld hl, $c02e + call FillMusicRAM2 + ld hl, $c03e + call FillMusicRAM2 + ld hl, $c046 + call FillMusicRAM2 + ld hl, $c04e + call FillMusicRAM2 + ld hl, $c056 + call FillMusicRAM2 + ld hl, $c05e + call FillMusicRAM2 + ld hl, $c066 + call FillMusicRAM2 + ld hl, $c06e + call FillMusicRAM2 + ld hl, $c036 + call FillMusicRAM2 + ld hl, $c076 + call FillMusicRAM2 + ld hl, $c07e + call FillMusicRAM2 + ld hl, $c086 + call FillMusicRAM2 + ld hl, $c08e + call FillMusicRAM2 + ld hl, $c096 + call FillMusicRAM2 + ld hl, $c09e + call FillMusicRAM2 + ld hl, $c0a6 + call FillMusicRAM2 + ld hl, $c0ae + call FillMusicRAM2 + ld a, $1 + ld hl, $c0be + call FillMusicRAM2 + ld hl, $c0b6 + call FillMusicRAM2 + ld hl, $c0c6 + call FillMusicRAM2 + ld [$c0e8], a + ld a, $ff + ld [$c004], a + xor a + ld [$ff00+$24], a + ld a, $8 + ld [$ff00+$10], a + ld a, $0 + ld [$ff00+$25], a + xor a + ld [$ff00+$1a], a + ld a, $80 + ld [$ff00+$1a], a + ld a, $77 + ld [$ff00+$24], a + jp Func_9a8f + +Func_994e: ; 0x994e + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_02 + add hl, de + ld a, h + ld [$c0ec], a + ld a, l + ld [$c0ed], a + ld a, [hl] + and $c0 + rlca + rlca + ld c, a +.asm_9967 + ld d, c + ld a, c + add a + add c + ld c, a + ld b, $0 + ld a, [$c0ec] + ld h, a + ld a, [$c0ed] + ld l, a + add hl, bc + ld c, d + ld a, [hl] + and $f + ld e, a + ld d, $0 + ld hl, $c026 + add hl, de + ld a, [hl] + and a + jr z, .asm_99a3 + ld a, e + cp $7 + jr nz, .asm_999a + ld a, [$c001] + cp $14 + jr nc, .asm_9993 + ret +.asm_9993 + ld a, [hl] + cp $14 + jr z, .asm_99a3 + jr c, .asm_99a3 +.asm_999a + ld a, [$c001] + cp [hl] + jr z, .asm_99a3 + jr c, .asm_99a3 + ret +.asm_99a3 + xor a + push de + ld h, d + ld l, e + add hl, hl + ld d, h + ld e, l + ld hl, $c016 + add hl, de + ld [hli], a + ld [hl], a + ld hl, $c006 + add hl, de + ld [hli], a + ld [hl], a + pop de + ld hl, $c026 + add hl, de + ld [hl], a + ld hl, $c02e + add hl, de + ld [hl], a + ld hl, $c03e + add hl, de + ld [hl], a + ld hl, $c046 + add hl, de + ld [hl], a + ld hl, $c04e + add hl, de + ld [hl], a + ld hl, $c056 + add hl, de + ld [hl], a + ld hl, $c05e + add hl, de + ld [hl], a + ld hl, $c066 + add hl, de + ld [hl], a + ld hl, $c06e + add hl, de + ld [hl], a + ld hl, $c076 + add hl, de + ld [hl], a + ld hl, $c07e + add hl, de + ld [hl], a + ld hl, $c086 + add hl, de + ld [hl], a + ld hl, $c08e + add hl, de + ld [hl], a + ld hl, $c096 + add hl, de + ld [hl], a + ld hl, $c09e + add hl, de + ld [hl], a + ld hl, $c0a6 + add hl, de + ld [hl], a + ld hl, $c0ae + add hl, de + ld [hl], a + ld hl, $c036 + add hl, de + ld [hl], a + ld a, $1 + ld hl, $c0be + add hl, de + ld [hl], a + ld hl, $c0b6 + add hl, de + ld [hl], a + ld hl, $c0c6 + add hl, de + ld [hl], a + ld a, e + cp $4 + jr nz, .asm_9a2b + ld a, $8 + ld [$ff00+$10], a +.asm_9a2b + ld a, c + and a + jp z, Func_9a8f + dec c + jp .asm_9967 + +Func_9a34: ; 0x9a34 + ld a, $80 + ld [$ff00+$26], a + ld [$ff00+$1a], a + xor a + ld [$ff00+$25], a + ld [$ff00+$1c], a + ld a, $8 + ld [$ff00+$10], a + ld [$ff00+$12], a + ld [$ff00+$17], a + ld [$ff00+$21], a + ld a, $40 + ld [$ff00+$14], a + ld [$ff00+$19], a + ld [$ff00+$23], a + ld a, $77 + ld [$ff00+$24], a + xor a + ld [$c000], a + ld [$c003], a + ld [$c002], a + ld [$c0e9], a + ld [$c0eb], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $a0 + ld hl, $c006 + call FillMusicRAM2 + ld a, $1 + ld d, $18 + ld hl, $c0b6 + call FillMusicRAM2 + ld [$c0e8], a + ld [$c0ea], a + ld a, $ff + ld [$c004], a + ret + +; fills d bytes at hl with a +FillMusicRAM2: ; 0x9a89 + ld b, d +.loop + ld [hli], a + dec b + jr nz, .loop + ret + +Func_9a8f: ; 0x9a8f + ld a, [$c001] + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_02 + add hl, de + ld e, l + ld d, h + ld hl, $c006 + ld a, [de] ; get channel number + ld b, a + rlca + rlca + and $3 + ld c, a + ld a, b + and $f + ld b, c + inc b + inc de + ld c, $0 +.asm_9ab1 + cp c + jr z, .asm_9ab9 + inc c + inc hl + inc hl + jr .asm_9ab1 +.asm_9ab9 + push hl + push bc + push af + ld b, $0 + ld c, a + ld hl, $c026 + add hl, bc + ld a, [$c001] + ld [hl], a + pop af + cp $3 + jr c, .asm_9ad2 + ld hl, $c02e + add hl, bc + set 2, [hl] +.asm_9ad2 + pop bc + pop hl + ld a, [de] ; get channel pointer + ld [hli], a + inc de + ld a, [de] + ld [hli], a + inc de + inc c + dec b + ld a, b + and a + ld a, [de] + inc de + jr nz, .asm_9ab1 + ld a, [$c001] + cp $14 + jr nc, .asm_9aeb + jr .asm_9b15 +.asm_9aeb + ld a, [$c001] + cp $86 + jr z, .asm_9b15 + jr c, .asm_9af6 + jr .asm_9b15 +.asm_9af6 + ld hl, $c02a + ld [hli], a + ld [hli], a + ld [hli], a + ld [hl], a + ld hl, $c012 ; sfx noise channel pointer + ld de, Noise2_endchannel + ld [hl], e + inc hl + ld [hl], d ; overwrite pointer to point to endchannel + ld a, [$c005] + and a + jr nz, .asm_9b15 + ld a, [$ff00+$24] + ld [$c005], a + ld a, $77 + ld [$ff00+$24], a +.asm_9b15 + ret + +Noise2_endchannel: ; 0x9b16 + endchannel + +Unknown_9b17: ; 0x9b17 + db $10, $15, $1A, $1F ; channels 0-3 + db $10, $15, $1A, $1F ; channels 4-7 + +Unknown_9b1f: ; 0x9b1f + db $EE, $DD, $BB, $77 ; channels 0-3 + db $EE, $DD, $BB, $77 ; channels 4-7 + +Unknown_9b27: ; 0x9b27 + db $11, $22, $44, $88 ; channels 0-3 + db $11, $22, $44, $88 ; channels 4-7 + +Unknown_9b2f: ; 0x9b2f + dw $F82C + dw $F89D + dw $F907 + dw $F96B + dw $F9CA + dw $FA23 + dw $FA77 + dw $FAC7 + dw $FB12 + dw $FB58 + dw $FB9B + dw $FBDA + + diff --git a/audio/engine_2.asm b/audio/engine_2.asm new file mode 100644 index 00000000..deb65357 --- /dev/null +++ b/audio/engine_2.asm @@ -0,0 +1,1733 @@ +; The second of three duplicated sound engines. + +Func_21879: ; 21879 (8:5879) + ld c, CH0 +.loop + ld b, $0 + ld hl, $c026 + add hl, bc + ld a, [hl] + and a + jr z, .nextChannel + ld a, c + cp CH4 + jr nc, .applyAffects ; if sfx channel + ld a, [$c002] + and a + jr z, .applyAffects + bit 7, a + jr nz, .nextChannel + set 7, a + ld [$c002], a + xor a + ld [$FF00+$25], a + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a + jr .nextChannel +.applyAffects + call Music8_ApplyMusicAffects +.nextChannel + ld a, c + inc c + cp CH7 + jr nz, .loop + ret + +; this routine checks flags for music effects currently applied +; to the channel and calls certain functions based on flags. +; known flags for $c02e: +; 1: call has been used +; 3: a toggle used only by this routine for vibrato +; 4: pitchbend flag +; 6: dutycycle flag +Music8_ApplyMusicAffects: ; 218ae (8:58ae) + ld b, $0 + ld hl, $c0b6 ; delay unitl next note + add hl, bc + ld a, [hl] + cp $1 ; if the delay is 1, play next note + jp z, Music8_PlayNextNote + dec a ; otherwise, decrease the delay timer + ld [hl], a + ld a, c + cp CH4 + jr nc, .startChecks ; if a sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr z, .startChecks + ret +.startChecks + ld hl, $c02e + add hl, bc + bit 6, [hl] ; dutycycle + jr z, .checkForExecuteMusic + call Music8_ApplyDutyCycle +.checkForExecuteMusic + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, .checkForPitchBend + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr nz, .disablePitchBendVibrato +.checkForPitchBend + ld hl, $c02e + add hl, bc + bit 4, [hl] ; pitchbend + jr z, .checkVibratoDelay + jp Music8_ApplyPitchBend +.checkVibratoDelay + ld hl, $c04e ; vibrato delay + add hl, bc + ld a, [hl] + and a ; check if delay is over + jr z, .checkForVibrato + dec [hl] ; otherwise, dec delay +.disablePitchBendVibrato + ret +.checkForVibrato + ld hl, $c056 ; vibrato rate + add hl, bc + ld a, [hl] + and a + jr nz, .vibrato + ret ; no vibrato +.vibrato + ld d, a + ld hl, $c05e + add hl, bc + ld a, [hl] + and $f + and a + jr z, .vibratoAlreadyDone + dec [hl] ; apply vibrato pitch change + ret +.vibratoAlreadyDone + ld a, [hl] + swap [hl] + or [hl] + ld [hl], a ; reset the vibrato value and start again + ld hl, $c066 + add hl, bc + ld e, [hl] ; get note pitch + ld hl, $c02e + add hl, bc + bit 3, [hl] ; this is the only code that sets/resets bit three so + jr z, .unset ; it continuously alternates which path it takes + res 3, [hl] + ld a, d + and $f + ld d, a + ld a, e + sub d + jr nc, .noCarry + ld a, $0 +.noCarry + jr .done +.unset + set 3, [hl] + ld a, d + and $f0 + swap a + add e + jr nc, .done + ld a, $ff +.done + ld d, a + ld b, $3 + call Func_21ff7 + ld [hl], d + ret + +; this routine executes all music commands that take up no time, +; like tempo changes, duty changes etc. and doesn't return +; until the first note is reached +Music8_PlayNextNote: ; 21946 (8:5946) + ld hl, $c06e + add hl, bc + ld a, [hl] + ld hl, $c04e + add hl, bc + ld [hl], a + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + ld a, c + cp CH4 + jr nz, .beginChecks + ld a, [$d083] + bit 7, a + ret nz +.beginChecks + call Music8_endchannel + ret + +Music8_endchannel: ; 21967 (8:5967) + call Music8_GetNextMusicByte + ld d, a + cp $ff ; is this command an endchannel? + jp nz, Music8_callchannel ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + bit 1, [hl] + jr nz, .returnFromCall + ld a, c + cp CH3 + jr nc, .noiseOrSfxChannel + jr .asm_219c0 +.noiseOrSfxChannel + res 2, [hl] + ld hl, $c036 + add hl, bc + res 0, [hl] + cp CH6 + jr nz, .notSfxChannel3 + ld a, $0 + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a +.notSfxChannel3 + jr nz, .asm_219a3 + ld a, [$c003] + and a + jr z, .asm_219a3 + xor a + ld [$c003], a + jr .asm_219c0 +.asm_219a3 + jr .asm_219c9 +.returnFromCall + res 1, [hl] + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl ; store current channel address + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [de] + ld [hli], a + inc de + ld a, [de] + ld [hl], a ; loads channel address to return to + jp Music8_endchannel +.asm_219c0 + ld hl, Unknown_222de + add hl, bc + ld a, [$FF00+$25] + and [hl] + ld [$FF00+$25], a +.asm_219c9 + ld a, [$c02a] + cp $14 + jr nc, .asm_219d2 + jr .asm_219ef +.asm_219d2 + ld a, [$c02a] + cp $86 + jr z, .asm_219ef + jr c, .asm_219dd + jr .asm_219ef +.asm_219dd + ld a, c + cp CH4 + jr z, .asm_219e6 + call Func_21e6d + ret c +.asm_219e6 + ld a, [$c005] + ld [$FF00+$24], a + xor a + ld [$c005], a +.asm_219ef + ld hl, $c026 + add hl, bc + ld [hl], b + ret + +Music8_callchannel: ; 219f5 (8:59f5) + cp $fd ; is this command a callchannel? + jp nz, Music8_loopchannel ; no + call Music8_GetNextMusicByte ; yes + push af + call Music8_GetNextMusicByte + ld d, a + pop af + ld e, a + push de ; store pointer + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [hli] + ld [de], a + inc de + ld a, [hld] + ld [de], a ; copy current channel address + pop de + ld [hl], e + inc hl + ld [hl], d ; overwrite current address with pointer + ld b, $0 + ld hl, $c02e + add hl, bc + set 1, [hl] ; set the call flag + jp Music8_endchannel + +Music8_loopchannel: ; 21a2a (8:5a2a) + cp $fe ; is this command a loopchannel? + jp nz, Music8_notetype ; no + call Music8_GetNextMusicByte ; yes + ld e, a + and a + jr z, .infiniteLoop + ld b, $0 + ld hl, $c0be + add hl, bc + ld a, [hl] + cp e + jr nz, .loopAgain + ld a, $1 ; if no more loops to make, + ld [hl], a + call Music8_GetNextMusicByte ; skip pointer + call Music8_GetNextMusicByte + jp Music8_endchannel +.loopAgain ; inc loop count + inc a + ld [hl], a + ; fall through +.infiniteLoop ; overwrite current address with pointer + call Music8_GetNextMusicByte + push af + call Music8_GetNextMusicByte + ld b, a + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + pop af + ld [hli], a + ld [hl], b + jp Music8_endchannel + +Music8_notetype: ; 21a65 (8:5a65) + and $f0 + cp $d0 ; is this command a notetype? + jp nz, Music8_togglecall ; no + ld a, d ; yes + and $f + ld b, $0 + ld hl, $c0c6 + add hl, bc + ld [hl], a ; store low nibble as speed + ld a, c + cp CH3 + jr z, .noiseChannel ; noise channel has 0 params + call Music8_GetNextMusicByte + ld d, a + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notChannel3 + ld hl, $c0e7 + jr .sfxChannel3 +.musicChannel3 + ld hl, $c0e6 +.sfxChannel3 + ld a, d + and $f + ld [hl], a ; store low nibble of param as duty + ld a, d + and $30 + sla a + ld d, a + ; fall through + + ; if channel 3, store high nibble as volume + ; else, store volume (high nibble) and fade (low nibble) +.notChannel3 + ld b, $0 + ld hl, $c0de + add hl, bc + ld [hl], d +.noiseChannel + jp Music8_endchannel + +Music8_togglecall: ; 21aa4 (8:5aa4) + ld a, d + cp $e8 ; is this command an togglecall? + jr nz, Music8_vibrato ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + ld a, [hl] + xor $1 + ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) + jp Music8_endchannel + +Music8_vibrato: ; 21ab6 (8:5ab6) + cp $ea ; is this command a vibrato? + jr nz, Music8_pitchbend ; no + call Music8_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c04e + add hl, bc + ld [hl], a ; store delay + ld hl, $c06e + add hl, bc + ld [hl], a ; store delay + call Music8_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, $0 + ld hl, $c056 + add hl, bc + srl a + ld e, a + adc b + swap a + or e + ld [hl], a ; store rate as both high and low nibbles + ld a, d + and $f + ld d, a + ld hl, $c05e + add hl, bc + swap a + or d + ld [hl], a ; store depth as both high and low nibbles + jp Music8_endchannel + +Music8_pitchbend: ; 21aee (8:5aee) + cp $eb ; is this command a pitchbend? + jr nz, Music8_duty ; no + call Music8_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c076 + add hl, bc + ld [hl], a ; store first param + call Music8_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, a + ld a, d + and $f + call Func_22017 + ld b, $0 + ld hl, $c0a6 + add hl, bc + ld [hl], d ; store unknown part of second param + ld hl, $c0ae + add hl, bc + ld [hl], e ; store unknown part of second param + ld b, $0 + ld hl, $c02e + add hl, bc + set 4, [hl] ; set pitchbend flag + call Music8_GetNextMusicByte + ld d, a + jp Music8_notelength + +Music8_duty: ; 21b26 (8:5b26) + cp $ec ; is this command a duty? + jr nz, Music8_tempo ; no + call Music8_GetNextMusicByte ; yes + rrca + rrca + and $c0 + ld b, $0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store duty + jp Music8_endchannel + +Music8_tempo: ; 21b3b (8:5b3b) + cp $ed ; is this command a tempo? + jr nz, Music8_unknownmusic0xee ; no + ld a, c ; yes + cp CH4 + jr nc, .sfxChannel + call Music8_GetNextMusicByte + ld [$c0e8], a ; store first param + call Music8_GetNextMusicByte + ld [$c0e9], a ; store second param + xor a + ld [$c0ce], a ; clear RAM + ld [$c0cf], a + ld [$c0d0], a + ld [$c0d1], a + jr .musicChannelDone +.sfxChannel + call Music8_GetNextMusicByte + ld [$c0ea], a ; store first param + call Music8_GetNextMusicByte + ld [$c0eb], a ; store second param + xor a + ld [$c0d2], a ; clear RAM + ld [$c0d3], a + ld [$c0d4], a + ld [$c0d5], a +.musicChannelDone + jp Music8_endchannel + +Music8_unknownmusic0xee: ; 21b7b (8:5b7b) + cp $ee ; is this command an unknownmusic0xee? + jr nz, Music8_unknownmusic0xef ; no + call Music8_GetNextMusicByte ; yes + ld [$c004], a ; store first param + jp Music8_endchannel + +; this appears to never be used +Music8_unknownmusic0xef: ; 21b88 (8:5b88) + cp $ef ; is this command an unknownmusic0xef? + jr nz, Music8_dutycycle ; no + call Music8_GetNextMusicByte ; yes + push bc + call Func_22035 + pop bc + ld a, [$c003] + and a + jr nz, .skip + ld a, [$c02d] + ld [$c003], a + xor a + ld [$c02d], a +.skip + jp Music8_endchannel + +Music8_dutycycle: ; 21ba7 (8:5ba7) + cp $fc ; is this command a dutycycle? + jr nz, Music8_stereopanning ; no + call Music8_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c046 + add hl, bc + ld [hl], a ; store full cycle + and $c0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store first duty + ld hl, $c02e + add hl, bc + set 6, [hl] ; set dutycycle flag + jp Music8_endchannel + +Music8_stereopanning: ; 21bc5 (8:5bc5) + cp $f0 ; is this command a stereopanning? + jr nz, Music8_executemusic ; no + call Music8_GetNextMusicByte ; yes + ld [$FF00+$24], a + jp Music8_endchannel + +Music8_executemusic: ; 21bd1 (8:5bd1) + cp $f8 ; is this command an executemusic? + jr nz, Music8_octave ; no + ld b, $0 ; yes + ld hl, $c036 + add hl, bc + set 0, [hl] + jp Music8_endchannel + +Music8_octave: ; 21be0 (8:5be0) + and $f0 + cp $e0 ; is this command an octave? + jr nz, Music8_unknownsfx0x20 ; no + ld hl, $c0d6 ; yes + ld b, $0 + add hl, bc + ld a, d + and $f + ld [hl], a ; store low nibble as octave + jp Music8_endchannel + +Music8_unknownsfx0x20: ; 21bf3 + cp $20 ; is this command an unknownsfx0x20? + jr nz, Music8_unknownsfx0x10 ; no + ld a, c + cp CH3 ; is this a noise or sfx channel? + jr c, Music8_unknownsfx0x10 ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music8_unknownsfx0x10 ; no + call Music8_notelength + ld d, a + ld b, $0 + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a + ld b, $1 + call Func_21ff7 + ld [hl], d + call Music8_GetNextMusicByte + ld d, a + ld b, $2 + call Func_21ff7 + ld [hl], d + call Music8_GetNextMusicByte + ld e, a + ld a, c + cp CH7 + ld a, $0 + jr z, .sfxNoiseChannel ; only two params for noise channel + push de + call Music8_GetNextMusicByte + pop de +.sfxNoiseChannel + ld d, a + push de + call Func_21daa + call Func_21d79 + pop de + call Func_21dcc + ret + +Music8_unknownsfx0x10: ; 21c40 (8:5c40) + ld a, c + cp CH4 + jr c, Music8_note ; if not a sfx + ld a, d + cp $10 ; is this command a unknownsfx0x10? + jr nz, Music8_note ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music8_note ; no + call Music8_GetNextMusicByte ; yes + ld [$FF00+$10], a + jp Music8_endchannel + +Music8_note: ; 21c5c (8:5c5c) + ld a, c + cp CH3 + jr nz, Music8_notelength ; if not noise channel + ld a, d + and $f0 + cp $b0 ; is this command a dnote? + jr z, Music8_dnote ; yes + jr nc, Music8_notelength ; no + swap a + ld b, a + ld a, d + and $f + ld d, a + ld a, b + push de + push bc + jr asm_21c7e + +Music8_dnote: ; 21c76 (8:5c76) + ld a, d + and $f + push af + push bc + call Music8_GetNextMusicByte ; get dnote instrument +asm_21c7e + ld d, a + ld a, [$c003] + and a + jr nz, .asm_21c89 + ld a, d + call Func_22035 +.asm_21c89 + pop bc + pop de + +Music8_notelength: ; 21c8b (8:5c8b) + ld a, d + push af + and $f + inc a + ld b, $0 + ld e, a ; store note length (in 16ths) + ld d, b + ld hl, $c0c6 + add hl, bc + ld a, [hl] + ld l, b + call Func_22006 + ld a, c + cp CH4 + jr nc, .sfxChannel + ld a, [$c0e8] + ld d, a + ld a, [$c0e9] + ld e, a + jr .skip +.sfxChannel + ld d, $1 + ld e, $0 + cp CH7 + jr z, .skip ; if noise channel + call Func_21e2f + ld a, [$c0ea] + ld d, a + ld a, [$c0eb] + ld e, a +.skip + ld a, l + ld b, $0 + ld hl, $c0ce + add hl, bc + ld l, [hl] + call Func_22006 + ld e, l + ld d, h + ld hl, $c0ce + add hl, bc + ld [hl], e + ld a, d + ld hl, $c0b6 + add hl, bc + ld [hl], a + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music8_notepitch + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr z, Music8_notepitch + pop hl + ret + +Music8_notepitch: ; 21ce9 (8:5ce9) + pop af + and $f0 + cp $c0 ; compare to rest + jr nz, .notRest + ld a, c + cp CH4 + jr nc, .sfxChannel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .done + ; fall through +.sfxChannel + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notSfxChannel3 +.musicChannel3 + ld b, $0 + ld hl, Unknown_222de + add hl, bc + ld a, [$FF00+$25] + and [hl] + ld [$FF00+$25], a + jr .done +.notSfxChannel3 + ld b, $2 + call Func_21ff7 + ld a, $8 + ld [hli], a + inc hl + ld a, $80 + ld [hl], a +.done + ret +.notRest + swap a + ld b, $0 + ld hl, $c0d6 + add hl, bc + ld b, [hl] + call Func_22017 + ld b, $0 + ld hl, $c02e + add hl, bc + bit 4, [hl] + jr z, .asm_21d39 + call Func_21f4e +.asm_21d39 + push de + ld a, c + cp CH4 + jr nc, .skip ; if sfx channel + ld hl, $c02a + ld d, $0 + ld e, a + add hl, de + ld a, [hl] + and a + jr nz, .asm_21d4c + jr .skip +.asm_21d4c + pop de + ret +.skip + ld b, $0 + ld hl, $c0de + add hl, bc + ld d, [hl] + ld b, $2 + call Func_21ff7 + ld [hl], d + call Func_21daa + call Func_21d79 + pop de + ld b, $0 + ld hl, $c02e + add hl, bc + bit 0, [hl] + jr z, .asm_21d70 + inc e + jr nc, .asm_21d70 + inc d +.asm_21d70 + ld hl, $c066 + add hl, bc + ld [hl], e + call Func_21dcc + ret + +Func_21d79: ; 21d79 (8:5d79) + ld b, $0 + ld hl, Unknown_222e6 + add hl, bc + ld a, [$FF00+$25] + or [hl] + ld d, a + ld a, c + cp CH7 + jr z, .sfxNoiseChannel + cp CH4 + jr nc, .skip ; if sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .skip +.sfxNoiseChannel + ld a, [$c004] + ld hl, Unknown_222e6 + add hl, bc + and [hl] + ld d, a + ld a, [$FF00+$25] + ld hl, Unknown_222de + add hl, bc + and [hl] + or d + ld d, a +.skip + ld a, d + ld [$FF00+$25], a + ret + +Func_21daa: ; 21daa (8:5daa) + ld b, $0 + ld hl, $c0b6 + add hl, bc + ld d, [hl] + ld a, c + cp CH2 + jr z, .channel3 ; if music channel 3 + cp CH6 + jr z, .channel3 ; if sfx channel 3 + ld a, d + and $3f + ld d, a + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a +.channel3 + ld b, $1 + call Func_21ff7 + ld [hl], d + ret + +Func_21dcc: ; 21dcc (8:5dcc) + ld a, c + cp CH2 + jr z, .channel3 + cp CH6 + jr nz, .notSfxChannel3 + ; fall through +.channel3 + push de + ld de, $c0e6 + cp CH2 + jr z, .musicChannel3 + ld de, $c0e7 +.musicChannel3 + ld a, [de] + add a + ld d, $0 + ld e, a + ld hl, Music8_Channel3DutyPointers + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld hl, $ff30 + ld b, $f + ld a, $0 + ld [$FF00+$1a], a +.loop + ld a, [de] + inc de + ld [hli], a + ld a, b + dec b + and a + jr nz, .loop + ld a, $80 + ld [$FF00+$1a], a + pop de +.notSfxChannel3 + ld a, d + or $80 + and $c7 + ld d, a + ld b, $3 + call Func_21ff7 + ld [hl], e + inc hl + ld [hl], d + ld a, c + cp CH4 + jr c, .musicChannel + call Func_21e56 +.musicChannel + ret + +Func_21e19: ; 21e19 (8:5e19) + ld a, c + cp CH4 + jr nz, .asm_21e2e + ld a, [$d083] + bit 7, a + jr z, .asm_21e2e + xor a + ld [$c0f1], a + ld a, $80 + ld [$c0f2], a +.asm_21e2e + ret + +Func_21e2f: ; 21e2f (8:5e2f) + call Func_21e8b + jr c, .asm_21e39 + call Func_21e9f + jr nc, .asm_21e4c +.asm_21e39 + ld d, $0 + ld a, [$c0f2] + add $80 + jr nc, .asm_21e43 + inc d +.asm_21e43 + ld [$c0eb], a + ld a, d + ld [$c0ea], a + jr .asm_21e55 +.asm_21e4c + xor a + ld [$c0eb], a + ld a, $1 + ld [$c0ea], a +.asm_21e55 + ret + +Func_21e56: ; 21e56 (8:5e56) + call Func_21e8b + jr c, .asm_21e60 + call Func_21e9f + jr nc, .asm_21e6c +.asm_21e60 + ld a, [$c0f1] + add e + jr nc, .asm_21e67 + inc d +.asm_21e67 + dec hl + ld e, a + ld [hl], e + inc hl + ld [hl], d +.asm_21e6c + ret + +Func_21e6d: ; 21e6d (8:5e6d) + call Func_21e8b + jr nc, .asm_21e88 + ld hl, $c006 + ld e, c + ld d, $0 + sla e + rl d + add hl, de + ld a, [hl] + sub $1 + ld [hl], a + inc hl + ld a, [hl] + sbc $0 + ld [hl], a + scf + ret +.asm_21e88 + scf + ccf + ret + +Func_21e8b: ; 21e8b (8:5e8b) + ld a, [$c02a] + cp $14 + jr nc, .asm_21e94 + jr .asm_21e9a +.asm_21e94 + cp $86 + jr z, .asm_21e9a + jr c, .asm_21e9d +.asm_21e9a + scf + ccf + ret +.asm_21e9d + scf + ret + +Func_21e9f: ; 21e9f (8:5e9f) + ld a, [$c02d] + ld b, a + ld a, [$c02a] + or b + cp $9d + jr nc, .asm_21ead + jr .asm_21eb3 +.asm_21ead + cp $ea + jr z, .asm_21eb3 + jr c, .asm_21eb6 +.asm_21eb3 + scf + ccf + ret +.asm_21eb6 + scf + ret + +Music8_ApplyPitchBend: ; 21eb8 (8:5eb8) + ld hl, $c02e + add hl, bc + bit 5, [hl] + jp nz, .asm_21eff + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld l, [hl] + ld h, b + add hl, de + ld d, h + ld e, l + ld hl, $c08e + add hl, bc + push hl + ld hl, $c086 + add hl, bc + ld a, [hl] + pop hl + add [hl] + ld [hl], a + ld a, $0 + adc e + ld e, a + ld a, $0 + adc d + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + cp d + jp c, .asm_21f45 + jr nz, .asm_21f32 + ld hl, $c0ae + add hl, bc + ld a, [hl] + cp e + jp c, .asm_21f45 + jr .asm_21f32 +.asm_21eff + ld hl, $c09e + add hl, bc + ld a, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld e, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c086 + add hl, bc + ld a, [hl] + add a + ld [hl], a + ld a, e + sbc b + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, d + cp [hl] + jr c, .asm_21f45 + jr nz, .asm_21f32 + ld hl, $c0ae + add hl, bc + ld a, e + cp [hl] + jr c, .asm_21f45 +.asm_21f32 + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c096 + add hl, bc + ld [hl], d + ld b, $3 + call Func_21ff7 + ld a, e + ld [hli], a + ld [hl], d + ret +.asm_21f45 + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + ret + +Func_21f4e: ; 21f4e (8:5f4e) + ld hl, $c096 + add hl, bc + ld [hl], d + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c0b6 + add hl, bc + ld a, [hl] + ld hl, $c076 + add hl, bc + sub [hl] + jr nc, .asm_21f66 + ld a, $1 +.asm_21f66 + ld [hl], a + ld hl, $c0ae + add hl, bc + ld a, e + sub [hl] + ld e, a + ld a, d + sbc b + ld hl, $c0a6 + add hl, bc + sub [hl] + jr c, .asm_21f82 + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + set 5, [hl] + jr .asm_21fa5 +.asm_21f82 + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c0ae + add hl, bc + ld a, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + sub d + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + res 5, [hl] +.asm_21fa5 + ld hl, $c076 + add hl, bc +.asm_21fa9 + inc b + ld a, e + sub [hl] + ld e, a + jr nc, .asm_21fa9 + ld a, d + and a + jr z, .asm_21fb7 + dec a + ld d, a + jr .asm_21fa9 +.asm_21fb7 + ld a, e + add [hl] + ld d, b + ld b, $0 + ld hl, $c07e + add hl, bc + ld [hl], d + ld hl, $c086 + add hl, bc + ld [hl], a + ld hl, $c08e + add hl, bc + ld [hl], a + ret + +Music8_ApplyDutyCycle: ; 21fcc (8:5fcc) + ld b, $0 + ld hl, $c046 + add hl, bc + ld a, [hl] + rlca + rlca + ld [hl], a + and $c0 + ld d, a + ld b, $1 + call Func_21ff7 + ld a, [hl] + and $3f + or d + ld [hl], a + ret + +Music8_GetNextMusicByte: ; 21fe4 (8:5fe4) + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + ld a, [hli] + ld e, a + ld a, [hld] + ld d, a + ld a, [de] ; get next music command + inc de + ld [hl], e ; store address of next command + inc hl + ld [hl], d + ret + +Func_21ff7: ; 21ff7 (8:5ff7) + ld a, c + ld hl, Unknown_222d6 + add l + jr nc, .noCarry + inc h +.noCarry + ld l, a + ld a, [hl] + add b + ld l, a + ld h, $ff + ret + +Func_22006: ; 22006 (8:6006) + ld h, $0 +.loop + srl a + jr nc, .noCarry + add hl, de +.noCarry + sla e + rl d + and a + jr z, .done + jr .loop +.done + ret + +Func_22017: ; 22017 (8:6017) + ld h, $0 + ld l, a + add hl, hl + ld d, h + ld e, l + ld hl, Unknown_222ee + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld a, b +.loop + cp CH7 + jr z, .done + sra d + rr e + inc a + jr .loop +.done + ld a, $8 + add d + ld d, a + ret + +Func_22035: ; 22035 (8:6035) + ld [$c001], a + cp $ff + jp z, Func_221f3 + cp $e9 + jp z, Func_2210d + jp c, Func_2210d + cp $fe + jr z, .asm_2204c + jp nc, Func_2210d +.asm_2204c + xor a + ld [$c000], a + ld [$c003], a + ld [$c0e9], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $8 + ld hl, $c016 + call FillMusicRAM8 + ld hl, $c006 + call FillMusicRAM8 + ld d, $4 + ld hl, $c026 + call FillMusicRAM8 + ld hl, $c02e + call FillMusicRAM8 + ld hl, $c03e + call FillMusicRAM8 + ld hl, $c046 + call FillMusicRAM8 + ld hl, $c04e + call FillMusicRAM8 + ld hl, $c056 + call FillMusicRAM8 + ld hl, $c05e + call FillMusicRAM8 + ld hl, $c066 + call FillMusicRAM8 + ld hl, $c06e + call FillMusicRAM8 + ld hl, $c036 + call FillMusicRAM8 + ld hl, $c076 + call FillMusicRAM8 + ld hl, $c07e + call FillMusicRAM8 + ld hl, $c086 + call FillMusicRAM8 + ld hl, $c08e + call FillMusicRAM8 + ld hl, $c096 + call FillMusicRAM8 + ld hl, $c09e + call FillMusicRAM8 + ld hl, $c0a6 + call FillMusicRAM8 + ld hl, $c0ae + call FillMusicRAM8 + ld a, $1 + ld hl, $c0be + call FillMusicRAM8 + ld hl, $c0b6 + call FillMusicRAM8 + ld hl, $c0c6 + call FillMusicRAM8 + ld [$c0e8], a + ld a, $ff + ld [$c004], a + xor a + ld [$FF00+$24], a + ld a, $8 + ld [$FF00+$10], a + ld a, $0 + ld [$FF00+$25], a + xor a + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a + ld a, $77 + ld [$FF00+$24], a + jp Func_2224e + +Func_2210d: ; 2210d (8:610d) + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_08 + add hl, de + ld a, h + ld [$c0ec], a + ld a, l + ld [$c0ed], a + ld a, [hl] + and $c0 + rlca + rlca + ld c, a +.asm_22126 + ld d, c + ld a, c + add a + add c + ld c, a + ld b, $0 + ld a, [$c0ec] + ld h, a + ld a, [$c0ed] + ld l, a + add hl, bc + ld c, d + ld a, [hl] + and $f + ld e, a + ld d, $0 + ld hl, $c026 + add hl, de + ld a, [hl] + and a + jr z, .asm_22162 + ld a, e + cp $7 + jr nz, .asm_22159 + ld a, [$c001] + cp $14 + jr nc, .asm_22152 + ret +.asm_22152 + ld a, [hl] + cp $14 + jr z, .asm_22162 + jr c, .asm_22162 +.asm_22159 + ld a, [$c001] + cp [hl] + jr z, .asm_22162 + jr c, .asm_22162 + ret +.asm_22162 + xor a + push de + ld h, d + ld l, e + add hl, hl + ld d, h + ld e, l + ld hl, $c016 + add hl, de + ld [hli], a + ld [hl], a + ld hl, $c006 + add hl, de + ld [hli], a + ld [hl], a + pop de + ld hl, $c026 + add hl, de + ld [hl], a + ld hl, $c02e + add hl, de + ld [hl], a + ld hl, $c03e + add hl, de + ld [hl], a + ld hl, $c046 + add hl, de + ld [hl], a + ld hl, $c04e + add hl, de + ld [hl], a + ld hl, $c056 + add hl, de + ld [hl], a + ld hl, $c05e + add hl, de + ld [hl], a + ld hl, $c066 + add hl, de + ld [hl], a + ld hl, $c06e + add hl, de + ld [hl], a + ld hl, $c076 + add hl, de + ld [hl], a + ld hl, $c07e + add hl, de + ld [hl], a + ld hl, $c086 + add hl, de + ld [hl], a + ld hl, $c08e + add hl, de + ld [hl], a + ld hl, $c096 + add hl, de + ld [hl], a + ld hl, $c09e + add hl, de + ld [hl], a + ld hl, $c0a6 + add hl, de + ld [hl], a + ld hl, $c0ae + add hl, de + ld [hl], a + ld hl, $c036 + add hl, de + ld [hl], a + ld a, $1 + ld hl, $c0be + add hl, de + ld [hl], a + ld hl, $c0b6 + add hl, de + ld [hl], a + ld hl, $c0c6 + add hl, de + ld [hl], a + ld a, e + cp $4 + jr nz, .asm_221ea + ld a, $8 + ld [$FF00+$10], a +.asm_221ea + ld a, c + and a + jp z, Func_2224e + dec c + jp .asm_22126 + +Func_221f3: ; 221f3 (8:61f3) + ld a, $80 + ld [$FF00+$26], a + ld [$FF00+$1a], a + xor a + ld [$FF00+$25], a + ld [$FF00+$1c], a + ld a, $8 + ld [$FF00+$10], a + ld [$FF00+$12], a + ld [$FF00+$17], a + ld [$FF00+$21], a + ld a, $40 + ld [$FF00+$14], a + ld [$FF00+$19], a + ld [$FF00+$23], a + ld a, $77 + ld [$FF00+$24], a + xor a + ld [$c000], a + ld [$c003], a + ld [$c002], a + ld [$c0e9], a + ld [$c0eb], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $a0 + ld hl, $c006 + call FillMusicRAM8 + ld a, $1 + ld d, $18 + ld hl, $c0b6 + call FillMusicRAM8 + ld [$c0e8], a + ld [$c0ea], a + ld a, $ff + ld [$c004], a + ret + +; fills d bytes at hl with a +FillMusicRAM8: ; 22248 (8:6248) + ld b, d +.loop + ld [hli], a + dec b + jr nz, .loop + ret + +Func_2224e: ; 2224e (8:624e) + ld a, [$c001] + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_08 + add hl, de + ld e, l + ld d, h + ld hl, $c006 + ld a, [de] ; get channel number + ld b, a + rlca + rlca + and $3 + ld c, a + ld a, b + and $f + ld b, c + inc b + inc de + ld c, $0 +.asm_22270 + cp c + jr z, .asm_22278 + inc c + inc hl + inc hl + jr .asm_22270 +.asm_22278 + push hl + push bc + push af + ld b, $0 + ld c, a + ld hl, $c026 + add hl, bc + ld a, [$c001] + ld [hl], a + pop af + cp $3 + jr c, .asm_22291 + ld hl, $c02e + add hl, bc + set 2, [hl] +.asm_22291 + pop bc + pop hl + ld a, [de] ; get channel pointer + ld [hli], a + inc de + ld a, [de] + ld [hli], a + inc de + inc c + dec b + ld a, b + and a + ld a, [de] + inc de + jr nz, .asm_22270 + ld a, [$c001] + cp $14 + jr nc, .asm_222aa + jr .asm_222d4 +.asm_222aa + ld a, [$c001] + cp $86 + jr z, .asm_222d4 + jr c, .asm_222b5 + jr .asm_222d4 +.asm_222b5 + ld hl, $c02a + ld [hli], a + ld [hli], a + ld [hli], a + ld [hl], a + ld hl, $c012 ; sfx noise channel pointer + ld de, Noise8_endchannel + ld [hl], e + inc hl + ld [hl], d ; overwrite pointer to point to endchannel + ld a, [$c005] + and a + jr nz, .asm_222d4 + ld a, [$FF00+$24] + ld [$c005], a + ld a, $77 + ld [$FF00+$24], a +.asm_222d4 + ret + +Noise8_endchannel: ; 222d5 (8:62d5) + endchannel + +Unknown_222d6: ; 222d6 (8:62d6) + db $10, $15, $1A, $1F ; channels 0-3 + db $10, $15, $1A, $1F ; channels 4-7 + +Unknown_222de: ; 222de (8:62de) + db $EE, $DD, $BB, $77 ; channels 0-3 + db $EE, $DD, $BB, $77 ; channels 4-7 + +Unknown_222e6: ; 222e6 (8:62e6) + db $11, $22, $44, $88 ; channels 0-3 + db $11, $22, $44, $88 ; channels 4-7 + +Unknown_222ee: ; 222ee (8:62ee) + dw $F82C + dw $F89D + dw $F907 + dw $F96B + dw $F9CA + dw $FA23 + dw $FA77 + dw $FAC7 + dw $FB12 + dw $FB58 + dw $FB9B + dw $FBDA + + diff --git a/audio/engine_3.asm b/audio/engine_3.asm new file mode 100644 index 00000000..1f285ee6 --- /dev/null +++ b/audio/engine_3.asm @@ -0,0 +1,1682 @@ +; The third of three duplicated sound engines. + +Func_7d177: ; 7d177 (1f:5177) + ld c, CH0 +.loop + ld b, $0 + ld hl, $c026 + add hl, bc + ld a, [hl] + and a + jr z, .nextChannel + ld a, c + cp CH4 + jr nc, .applyAffects ; if sfx channel + ld a, [$c002] + and a + jr z, .applyAffects + bit 7, a + jr nz, .nextChannel + set 7, a + ld [$c002], a + xor a + ld [$FF00+$25], a + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a + jr .nextChannel +.applyAffects + call Music1f_Music2_ApplyMusicAffects +.nextChannel + ld a, c + inc c ; inc channel number + cp CH7 + jr nz, .loop + ret + +; this routine checks flags for music effects currently applied +; to the channel and calls certain functions based on flags. +; known flags for $c02e: +; 1: call has been used +; 3: a toggle used only by this routine for vibrato +; 4: pitchbend flag +; 6: dutycycle flag +Music1f_Music2_ApplyMusicAffects: ; 7d1ac (1f:51ac) + ld b, $0 + ld hl, $c0b6 ; delay until next note + add hl, bc + ld a, [hl] + cp $1 ; if delay is 1, play next note + jp z, Music1f_Music2_PlayNextNote + dec a ; otherwise, decrease the delay timer + ld [hl], a + ld a, c + cp CH4 + jr nc, .startChecks ; if a sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr z, .startChecks + ret +.startChecks + ld hl, $c02e + add hl, bc + bit 6, [hl] ; dutycycle + jr z, .checkForExecuteMusic + call Music1f_ApplyDutyCycle +.checkForExecuteMusic + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, .checkForPitchBend + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr nz, .disablePitchBendVibrato +.checkForPitchBend + ld hl, $c02e + add hl, bc + bit 4, [hl] ; pitchbend + jr z, .checkVibratoDelay + jp Music1f_ApplyPitchBend +.checkVibratoDelay + ld hl, $c04e ; vibrato delay + add hl, bc + ld a, [hl] + and a ; check if delay is over + jr z, .checkForVibrato + dec [hl] ; otherwise, dec delay +.disablePitchBendVibrato + ret +.checkForVibrato + ld hl, $c056 ; vibrato rate + add hl, bc + ld a, [hl] + and a + jr nz, .vibrato + ret ; no vibrato +.vibrato + ld d, a + ld hl, $c05e + add hl, bc + ld a, [hl] + and $f + and a + jr z, .vibratoAlreadyDone + dec [hl] ; apply vibrato pitch change + ret +.vibratoAlreadyDone + ld a, [hl] + swap [hl] + or [hl] + ld [hl], a ; reset the vibrato value and start again + ld hl, $c066 + add hl, bc + ld e, [hl] ; get note pitch + ld hl, $c02e + add hl, bc + bit 3, [hl] ; this is the only code that sets/resets bit three so + jr z, .unset ; it continuously alternates which path it takes + res 3, [hl] + ld a, d + and $f + ld d, a + ld a, e + sub d + jr nc, .noCarry + ld a, $0 +.noCarry + jr .done +.unset + set 3, [hl] + ld a, d + and $f0 + swap a + add e + jr nc, .done + ld a, $ff +.done + ld d, a + ld b, $3 + call Func_7d8ac + ld [hl], d + ret + +; this routine executes all music commands that take up no time, +; like tempo changes, duty changes etc. and doesn't return +; until the first note is reached +Music1f_Music2_PlayNextNote: ; 7d244 (1f:5244) + ld hl, $c06e + add hl, bc + ld a, [hl] + ld hl, $c04e + add hl, bc + ld [hl], a + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + call Music1f_endchannel + ret + +Music1f_endchannel: ; 7d25a (1f:525a) + call Music1f_GetNextMusicByte + ld d, a + cp $ff ; is this command an endchannel? + jp nz, Music1f_callchannel ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + bit 1, [hl] + jr nz, .returnFromCall + ld a, c + cp CH3 + jr nc, .noiseOrSfxChannel + jr .asm_7d2b3 +.noiseOrSfxChannel + res 2, [hl] + ld hl, $c036 + add hl, bc + res 0, [hl] + cp CH6 + jr nz, .notSfxChannel3 + ld a, $0 + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a +.notSfxChannel3 + jr nz, .asm_7d296 + ld a, [$c003] + and a + jr z, .asm_7d296 + xor a + ld [$c003], a + jr .asm_7d2b3 +.asm_7d296 + jr .asm_7d2bc +.returnFromCall + res 1, [hl] + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl ; store current channel address + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [de] + ld [hli], a + inc de + ld a, [de] + ld [hl], a ; loads channel address to return to + jp Music1f_endchannel +.asm_7d2b3 + ld hl, Unknown_7db93 + add hl, bc + ld a, [$FF00+$25] + and [hl] + ld [$FF00+$25], a +.asm_7d2bc + ld a, [$c02a] + cp $14 + jr nc, .asm_7d2c5 + jr .asm_7d2e2 +.asm_7d2c5 + ld a, [$c02a] + cp $86 + jr z, .asm_7d2e2 + jr c, .asm_7d2d0 + jr .asm_7d2e2 +.asm_7d2d0 + ld a, c + cp CH4 + jr z, .asm_7d2d9 + call Func_7d73b + ret c +.asm_7d2d9 + ld a, [$c005] + ld [$FF00+$24], a + xor a + ld [$c005], a +.asm_7d2e2 + ld hl, $c026 + add hl, bc + ld [hl], b + ret + +Music1f_callchannel: ; 7d2e8 (1f:52e8) + cp $fd ; is this command a callchannel? + jp nz, Music1f_loopchannel ; no + call Music1f_GetNextMusicByte ; yes + push af + call Music1f_GetNextMusicByte + ld d, a + pop af + ld e, a + push de ; store pointer + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + push hl + ld hl, $c016 + add hl, de + ld e, l + ld d, h + pop hl + ld a, [hli] + ld [de], a + inc de + ld a, [hld] + ld [de], a ; copy current channel address + pop de + ld [hl], e + inc hl + ld [hl], d ; overwrite current address with pointer + ld b, $0 + ld hl, $c02e + add hl, bc + set 1, [hl] ; set the call flag + jp Music1f_endchannel + +Music1f_loopchannel: ; 7d31d (1f:531d) + cp $fe ; is this command a loopchannel? + jp nz, Music1f_notetype ; no + call Music1f_GetNextMusicByte ; yes + ld e, a + and a + jr z, .infiniteLoop + ld b, $0 + ld hl, $c0be + add hl, bc + ld a, [hl] + cp e + jr nz, .loopAgain + ld a, $1 ; if no more loops to make + ld [hl], a + call Music1f_GetNextMusicByte ; skip pointer + call Music1f_GetNextMusicByte + jp Music1f_endchannel +.loopAgain ; inc loop count + inc a + ld [hl], a + ; fall through +.infiniteLoop ; overwrite current address with pointer + call Music1f_GetNextMusicByte + push af + call Music1f_GetNextMusicByte + ld b, a + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + pop af + ld [hli], a + ld [hl], b + jp Music1f_endchannel + +Music1f_notetype: ; 7d358 (1f:5358) + and $f0 + cp $d0 ; is this command a notetype? + jp nz, Music1f_togglecall ; no + ld a, d ; yes + and $f + ld b, $0 + ld hl, $c0c6 + add hl, bc + ld [hl], a ; store low nibble as speed + ld a, c + cp CH3 + jr z, .noiseChannel ; noise channel has 0 params + call Music1f_GetNextMusicByte + ld d, a + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notChannel3 + ld hl, $c0e7 + jr .sfxChannel3 +.musicChannel3 + ld hl, $c0e6 +.sfxChannel3 + ld a, d + and $f + ld [hl], a ; store low nibble of param as duty + ld a, d + and $30 + sla a + ld d, a + ; fall through + + ; if channel 3, store high nibble as volume + ; else, store volume (high nibble) and fade (low nibble) +.notChannel3 + ld b, $0 + ld hl, $c0de + add hl, bc + ld [hl], d +.noiseChannel + jp Music1f_endchannel + +Music1f_togglecall: ; 7d397 (1f:5397) + ld a, d + cp $e8 ; is this command an togglecall? + jr nz, Music1f_vibrato ; no + ld b, $0 ; yes + ld hl, $c02e + add hl, bc + ld a, [hl] + xor $1 + ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) + jp Music1f_endchannel + +Music1f_vibrato: ; 7d3a9 (1f:53a9) + cp $ea ; is this command a vibrato? + jr nz, Music1f_pitchbend ; no + call Music1f_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c04e + add hl, bc + ld [hl], a ; store delay + ld hl, $c06e + add hl, bc + ld [hl], a ; store delay + call Music1f_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, $0 + ld hl, $c056 + add hl, bc + srl a + ld e, a + adc b + swap a + or e + ld [hl], a ; store rate as both high and low nibbles + ld a, d + and $f + ld d, a + ld hl, $c05e + add hl, bc + swap a + or d + ld [hl], a ; store depth as both high and low nibbles + jp Music1f_endchannel + +Music1f_pitchbend: ; 7d3e1 (1f:53e1) + cp $eb ; is this command a pitchbend? + jr nz, Music1f_duty ; no + call Music1f_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c076 + add hl, bc + ld [hl], a ; store first param + call Music1f_GetNextMusicByte + ld d, a + and $f0 + swap a + ld b, a + ld a, d + and $f + call Func_7d8cc + ld b, $0 + ld hl, $c0a6 + add hl, bc + ld [hl], d ; store unknown part of second param + ld hl, $c0ae + add hl, bc + ld [hl], e ; store unknown part of second param + ld b, $0 + ld hl, $c02e + add hl, bc + set 4, [hl] ; set pitchbend flag + call Music1f_GetNextMusicByte + ld d, a + jp Music1f_notelength + +Music1f_duty: ; 7d419 (1f:5419) + cp $ec ; is this command a duty? + jr nz, Music1f_tempo ; no + call Music1f_GetNextMusicByte ; yes + rrca + rrca + and $c0 + ld b, $0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store duty + jp Music1f_endchannel + +Music1f_tempo: ; 7d42e (1f:542e) + cp $ed ; is this command a tempo? + jr nz, Music1f_unknownmusic0xee ; no + ld a, c ; yes + cp CH4 + jr nc, .sfxChannel + call Music1f_GetNextMusicByte + ld [$c0e8], a ; store first param + call Music1f_GetNextMusicByte + ld [$c0e9], a ; store second param + xor a + ld [$c0ce], a ; clear RAM + ld [$c0cf], a + ld [$c0d0], a + ld [$c0d1], a + jr .musicChannelDone +.sfxChannel + call Music1f_GetNextMusicByte + ld [$c0ea], a ; store first param + call Music1f_GetNextMusicByte + ld [$c0eb], a ; store second param + xor a + ld [$c0d2], a ; clear RAM + ld [$c0d3], a + ld [$c0d4], a + ld [$c0d5], a +.musicChannelDone + jp Music1f_endchannel + +Music1f_unknownmusic0xee: ; 7d46e (1f:546e) + cp $ee ; is this command an unknownmusic0xee? + jr nz, Music1f_unknownmusic0xef ; no + call Music1f_GetNextMusicByte ; yes + ld [$c004], a ; store first param + jp Music1f_endchannel + +; this appears to never be used +Music1f_unknownmusic0xef: ; 7d47b (1f:547b) + cp $ef ; is this command an unknownmusic0xef? + jr nz, Music1f_dutycycle ; no + call Music1f_GetNextMusicByte ; yes + push bc + call Func_7d8ea + pop bc + ld a, [$c003] + and a + jr nz, .skip + ld a, [$c02d] + ld [$c003], a + xor a + ld [$c02d], a +.skip + jp Music1f_endchannel + +Music1f_dutycycle: ; 7d49a (1f:549a) + cp $fc ; is this command a dutycycle? + jr nz, Music1f_stereopanning ; no + call Music1f_GetNextMusicByte ; yes + ld b, $0 + ld hl, $c046 + add hl, bc + ld [hl], a ; store full cycle + and $c0 + ld hl, $c03e + add hl, bc + ld [hl], a ; store first duty + ld hl, $c02e + add hl, bc + set 6, [hl] ; set duty flag + jp Music1f_endchannel + +Music1f_stereopanning: ; 7d4b8 (1f:54b8) + cp $f0 ; is this command a stereopanning? + jr nz, Music1f_executemusic ; no + call Music1f_GetNextMusicByte ; yes + ld [$FF00+$24], a ; store stereopanning + jp Music1f_endchannel + +Music1f_executemusic: ; 7d4c4 (1f:54c4) + cp $f8 ; is this command an executemusic? + jr nz, Music1f_octave ; no + ld b, $0 ; yes + ld hl, $c036 + add hl, bc + set 0, [hl] + jp Music1f_endchannel + +Music1f_octave: ; 7d4d3 (1f:54d3) + and $f0 + cp $e0 ; is this command an octave? + jr nz, Music1f_unknownsfx0x20 ; no + ld hl, $c0d6 ; yes + ld b, $0 + add hl, bc + ld a, d + and $f + ld [hl], a ; store low nibble as octave + jp Music1f_endchannel + +Music1f_unknownsfx0x20: ; 7d4e6 (1f:54e6) + cp $20 ; is this command an unknownsfx0x20? + jr nz, Music1f_unknownsfx0x10 ; no + ld a, c + cp CH3 ; is this a noise or sfx channel? + jr c, Music1f_unknownsfx0x10 ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music1f_unknownsfx0x10 ; no + call Music1f_notelength ; yes + ld d, a + ld b, $0 + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a + ld b, $1 + call Func_7d8ac + ld [hl], d + call Music1f_GetNextMusicByte + ld d, a + ld b, $2 + call Func_7d8ac + ld [hl], d + call Music1f_GetNextMusicByte + ld e, a + ld a, c + cp CH7 + ld a, $0 + jr z, .sfxNoiseChannel ; only two params for noise channel + push de + call Music1f_GetNextMusicByte + pop de +.sfxNoiseChannel + ld d, a + push de + call Func_7d69d + call Func_7d66c + pop de + call Func_7d6bf + ret + +Music1f_unknownsfx0x10 ; 7d533 (1f:5533) + ld a, c + cp CH4 + jr c, Music1f_note ; if not a sfx + ld a, d + cp $10 ; is this command an unknownsfx0x10? + jr nz, Music1f_note ; no + ld b, $0 + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music1f_note ; no + call Music1f_GetNextMusicByte ; yes + ld [$FF00+$10], a + jp Music1f_endchannel + +Music1f_note: ; 7d54f (1f:554f) + ld a, c + cp CH3 + jr nz, Music1f_notelength ; if not noise channel + ld a, d + and $f0 + cp $b0 ; is this command a dnote? + jr z, Music1f_dnote ; yes + jr nc, Music1f_notelength ; no + swap a + ld b, a + ld a, d + and $f + ld d, a + ld a, b + push de + push bc + jr asm_7d571 + +Music1f_dnote: ; 7d569 (1f:5569) + ld a, d + and $f + push af + push bc + call Music1f_GetNextMusicByte ; get dnote instrument +asm_7d571 + ld d, a + ld a, [$c003] + and a + jr nz, .asm_7d57c + ld a, d + call Func_7d8ea +.asm_7d57c + pop bc + pop de + +Music1f_notelength: ; 7d57e (1f:557e) + ld a, d + push af + and $f + inc a + ld b, $0 + ld e, a ; store note length (in 16ths) + ld d, b + ld hl, $c0c6 + add hl, bc + ld a, [hl] + ld l, b + call Func_7d8bb + ld a, c + cp CH4 + jr nc, .sfxChannel + ld a, [$c0e8] + ld d, a + ld a, [$c0e9] + ld e, a + jr .skip +.sfxChannel + ld d, $1 + ld e, $0 + cp CH7 + jr z, .skip ; if noise channel + call Func_7d707 + ld a, [$c0ea] + ld d, a + ld a, [$c0eb] + ld e, a +.skip + ld a, l + ld b, $0 + ld hl, $c0ce + add hl, bc + ld l, [hl] + call Func_7d8bb + ld e, l + ld d, h + ld hl, $c0ce + add hl, bc + ld [hl], e + ld a, d + ld hl, $c0b6 + add hl, bc + ld [hl], a + ld hl, $c036 + add hl, bc + bit 0, [hl] + jr nz, Music1f_notepitch + ld hl, $c02e + add hl, bc + bit 2, [hl] + jr z, Music1f_notepitch + pop hl + ret + +Music1f_notepitch: ; 7d5dc (1f:55dc) + pop af + and $f0 + cp $c0 ; compare to rest + jr nz, .notRest + ld a, c + cp CH4 + jr nc, .sfxChannel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .quit + ; fall through +.sfxChannel + ld a, c + cp CH2 + jr z, .musicChannel3 + cp CH6 + jr nz, .notSfxChannel3 +.musicChannel3 + ld b, $0 + ld hl, Unknown_7db93 + add hl, bc + ld a, [$FF00+$25] + and [hl] + ld [$FF00+$25], a + jr .quit +.notSfxChannel3 + ld b, $2 + call Func_7d8ac + ld a, $8 + ld [hli], a + inc hl + ld a, $80 + ld [hl], a +.quit + ret +.notRest + swap a + ld b, $0 + ld hl, $c0d6 + add hl, bc + ld b, [hl] + call Func_7d8cc + ld b, $0 + ld hl, $c02e + add hl, bc + bit 4, [hl] + jr z, .asm_7d62c + call Func_7d803 +.asm_7d62c + push de + ld a, c + cp CH4 + jr nc, .skip ; if sfx Channel + ld hl, $c02a + ld d, $0 + ld e, a + add hl, de + ld a, [hl] + and a + jr nz, .done + jr .skip +.done + pop de + ret +.skip + ld b, $0 + ld hl, $c0de + add hl, bc + ld d, [hl] + ld b, $2 + call Func_7d8ac + ld [hl], d + call Func_7d69d + call Func_7d66c + pop de + ld b, $0 + ld hl, $c02e + add hl, bc + bit 0, [hl] + jr z, .asm_7d663 + inc e + jr nc, .asm_7d663 + inc d +.asm_7d663 + ld hl, $c066 + add hl, bc + ld [hl], e + call Func_7d6bf + ret + +Func_7d66c: ; 7d66c (1f:566c) + ld b, $0 + ld hl, Unknown_7db9b + add hl, bc + ld a, [$FF00+$25] + or [hl] + ld d, a + ld a, c + cp CH7 + jr z, .sfxNoiseChannel + cp CH4 + jr nc, .skip ; if sfx channel + ld hl, $c02a + add hl, bc + ld a, [hl] + and a + jr nz, .skip +.sfxNoiseChannel + ld a, [$c004] + ld hl, Unknown_7db9b + add hl, bc + and [hl] + ld d, a + ld a, [$FF00+$25] + ld hl, Unknown_7db93 + add hl, bc + and [hl] + or d + ld d, a +.skip + ld a, d + ld [$FF00+$25], a + ret + +Func_7d69d: ; 7d69d (1f:569d) + ld b, $0 + ld hl, $c0b6 + add hl, bc + ld d, [hl] + ld a, c + cp CH2 + jr z, .channel3 ; if music channel 3 + cp CH6 + jr z, .channel3 ; if sfx channel 3 + ld a, d + and $3f + ld d, a + ld hl, $c03e + add hl, bc + ld a, [hl] + or d + ld d, a +.channel3 + ld b, $1 + call Func_7d8ac + ld [hl], d + ret + +Func_7d6bf: ; 7d6bf (1f:56bf) + ld a, c + cp CH2 + jr z, .channel3 + cp CH6 + jr nz, .notSfxChannel3 + ; fall through +.channel3 + push de + ld de, $c0e6 + cp CH2 + jr z, .musicChannel3 + ld de, $c0e7 +.musicChannel3 + ld a, [de] + add a + ld d, $0 + ld e, a + ld hl, Music1f_Channel3DutyPointers + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld hl, $ff30 + ld b, $f + ld a, $0 + ld [$FF00+$1a], a +.loop + ld a, [de] + inc de + ld [hli], a + ld a, b + dec b + and a + jr nz, .loop + ld a, $80 + ld [$FF00+$1a], a + pop de +.notSfxChannel3 + ld a, d + or $80 + and $c7 + ld d, a + ld b, $3 + call Func_7d8ac + ld [hl], e + inc hl + ld [hl], d + call Func_7d729 + ret + +Func_7d707: ; 7d707 (1f:5707) + call Func_7d759 + jr nc, .asm_7d71f + ld d, $0 + ld a, [$c0f2] + add $80 + jr nc, .asm_7d716 + inc d +.asm_7d716 + ld [$c0eb], a + ld a, d + ld [$c0ea], a + jr .asm_7d728 +.asm_7d71f + xor a + ld [$c0eb], a + ld a, $1 + ld [$c0ea], a +.asm_7d728 + ret + +Func_7d729: ; 7d729 (1f:5729) + call Func_7d759 + jr nc, .asm_7d73a + ld a, [$c0f1] + add e + jr nc, .asm_7d735 + inc d +.asm_7d735 + dec hl + ld e, a + ld [hl], e + inc hl + ld [hl], d +.asm_7d73a + ret + +Func_7d73b: ; 7d73b (1f:573b) + call Func_7d759 + jr nc, .asm_7d756 + ld hl, $c006 + ld e, c + ld d, $0 + sla e + rl d + add hl, de + ld a, [hl] + sub $1 + ld [hl], a + inc hl + ld a, [hl] + sbc $0 + ld [hl], a + scf + ret +.asm_7d756 + scf + ccf + ret + +Func_7d759: ; 7d759 (1f:5759) + ld a, [$c02a] + cp $14 + jr nc, .asm_7d762 + jr .asm_7d768 +.asm_7d762 + cp $86 + jr z, .asm_7d768 + jr c, .asm_7d76b +.asm_7d768 + scf + ccf + ret +.asm_7d76b + scf + ret + +Music1f_ApplyPitchBend: ; 7d76d (1f:576d) + ld hl, $c02e + add hl, bc + bit 5, [hl] + jp nz, .asm_7d7b4 + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld l, [hl] + ld h, b + add hl, de + ld d, h + ld e, l + ld hl, $c08e + add hl, bc + push hl + ld hl, $c086 + add hl, bc + ld a, [hl] + pop hl + add [hl] + ld [hl], a + ld a, $0 + adc e + ld e, a + ld a, $0 + adc d + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + cp d + jp c, .asm_7d7fa + jr nz, .asm_7d7e7 + ld hl, $c0ae + add hl, bc + ld a, [hl] + cp e + jp c, .asm_7d7fa + jr .asm_7d7e7 +.asm_7d7b4 + ld hl, $c09e + add hl, bc + ld a, [hl] + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c07e + add hl, bc + ld e, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c086 + add hl, bc + ld a, [hl] + add a + ld [hl], a + ld a, e + sbc b + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, d + cp [hl] + jr c, .asm_7d7fa + jr nz, .asm_7d7e7 + ld hl, $c0ae + add hl, bc + ld a, e + cp [hl] + jr c, .asm_7d7fa +.asm_7d7e7 + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c096 + add hl, bc + ld [hl], d + ld b, $3 + call Func_7d8ac + ld a, e + ld [hli], a + ld [hl], d + ret +.asm_7d7fa + ld hl, $c02e + add hl, bc + res 4, [hl] + res 5, [hl] + ret + +Func_7d803: ; 7d803 (1f:5803) + ld hl, $c096 + add hl, bc + ld [hl], d + ld hl, $c09e + add hl, bc + ld [hl], e + ld hl, $c0b6 + add hl, bc + ld a, [hl] + ld hl, $c076 + add hl, bc + sub [hl] + jr nc, .asm_7d81b + ld a, $1 +.asm_7d81b + ld [hl], a + ld hl, $c0ae + add hl, bc + ld a, e + sub [hl] + ld e, a + ld a, d + sbc b + ld hl, $c0a6 + add hl, bc + sub [hl] + jr c, .asm_7d837 + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + set 5, [hl] + jr .asm_7d85a +.asm_7d837 + ld hl, $c096 + add hl, bc + ld d, [hl] + ld hl, $c09e + add hl, bc + ld e, [hl] + ld hl, $c0ae + add hl, bc + ld a, [hl] + sub e + ld e, a + ld a, d + sbc b + ld d, a + ld hl, $c0a6 + add hl, bc + ld a, [hl] + sub d + ld d, a + ld b, $0 + ld hl, $c02e + add hl, bc + res 5, [hl] +.asm_7d85a + ld hl, $c076 + add hl, bc +.asm_7d85e + inc b + ld a, e + sub [hl] + ld e, a + jr nc, .asm_7d85e + ld a, d + and a + jr z, .asm_7d86c + dec a + ld d, a + jr .asm_7d85e +.asm_7d86c + ld a, e + add [hl] + ld d, b + ld b, $0 + ld hl, $c07e + add hl, bc + ld [hl], d + ld hl, $c086 + add hl, bc + ld [hl], a + ld hl, $c08e + add hl, bc + ld [hl], a + ret + +Music1f_ApplyDutyCycle: ; 7d881 (1f:5881) + ld b, $0 + ld hl, $c046 + add hl, bc + ld a, [hl] + rlca + rlca + ld [hl], a + and $c0 + ld d, a + ld b, $1 + call Func_7d8ac + ld a, [hl] + and $3f + or d + ld [hl], a + ret + +Music1f_GetNextMusicByte: ; 7d899 (1f:5899) + ld d, $0 + ld a, c + add a + ld e, a + ld hl, $c006 + add hl, de + ld a, [hli] + ld e, a + ld a, [hld] + ld d, a + ld a, [de] ; get next music command + inc de + ld [hl], e ; store address of next command + inc hl + ld [hl], d + ret + +Func_7d8ac: ; 7d8ac (1f:58ac) + ld a, c + ld hl, Unknown_7db8b + add l + jr nc, .noCarry + inc h +.noCarry + ld l, a + ld a, [hl] + add b + ld l, a + ld h, $ff + ret + +Func_7d8bb: ; 7d8bb (1f:58bb) + ld h, $0 +.loop + srl a + jr nc, .noCarry + add hl, de +.noCarry + sla e + rl d + and a + jr z, .done + jr .loop +.done + ret + +Func_7d8cc: ; 7d8cc (1f:58cc) + ld h, $0 + ld l, a + add hl, hl + ld d, h + ld e, l + ld hl, Unknown_7dba3 + add hl, de + ld e, [hl] + inc hl + ld d, [hl] + ld a, b +.loop + cp $7 + jr z, .done + sra d + rr e + inc a + jr .loop +.done + ld a, $8 + add d + ld d, a + ret + +Func_7d8ea: ; 7d8ea (1f:58ea) + ld [$c001], a + cp $ff + jp z, Func_7daa8 + cp $c2 + jp z, Func_7d9c2 + jp c, Func_7d9c2 + cp $fe + jr z, .asm_7d901 + jp nc, Func_7d9c2 +.asm_7d901 + xor a + ld [$c000], a + ld [$c003], a + ld [$c0e9], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $8 + ld hl, $c016 + call FillMusicRAM1f + ld hl, $c006 + call FillMusicRAM1f + ld d, $4 + ld hl, $c026 + call FillMusicRAM1f + ld hl, $c02e + call FillMusicRAM1f + ld hl, $c03e + call FillMusicRAM1f + ld hl, $c046 + call FillMusicRAM1f + ld hl, $c04e + call FillMusicRAM1f + ld hl, $c056 + call FillMusicRAM1f + ld hl, $c05e + call FillMusicRAM1f + ld hl, $c066 + call FillMusicRAM1f + ld hl, $c06e + call FillMusicRAM1f + ld hl, $c036 + call FillMusicRAM1f + ld hl, $c076 + call FillMusicRAM1f + ld hl, $c07e + call FillMusicRAM1f + ld hl, $c086 + call FillMusicRAM1f + ld hl, $c08e + call FillMusicRAM1f + ld hl, $c096 + call FillMusicRAM1f + ld hl, $c09e + call FillMusicRAM1f + ld hl, $c0a6 + call FillMusicRAM1f + ld hl, $c0ae + call FillMusicRAM1f + ld a, $1 + ld hl, $c0be + call FillMusicRAM1f + ld hl, $c0b6 + call FillMusicRAM1f + ld hl, $c0c6 + call FillMusicRAM1f + ld [$c0e8], a + ld a, $ff + ld [$c004], a + xor a + ld [$FF00+$24], a + ld a, $8 + ld [$FF00+$10], a + ld a, $0 + ld [$FF00+$25], a + xor a + ld [$FF00+$1a], a + ld a, $80 + ld [$FF00+$1a], a + ld a, $77 + ld [$FF00+$24], a + jp Func_7db03 + +Func_7d9c2: ; 7d9c2 (1f:59c2) + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_1f + add hl, de + ld a, h + ld [$c0ec], a + ld a, l + ld [$c0ed], a + ld a, [hl] + and $c0 + rlca + rlca + ld c, a +.asm_7d9db + ld d, c + ld a, c + add a + add c + ld c, a + ld b, $0 + ld a, [$c0ec] + ld h, a + ld a, [$c0ed] + ld l, a + add hl, bc + ld c, d + ld a, [hl] + and $f + ld e, a + ld d, $0 + ld hl, $c026 + add hl, de + ld a, [hl] + and a + jr z, .asm_7da17 + ld a, e + cp $7 + jr nz, .asm_7da0e + ld a, [$c001] + cp $14 + jr nc, .asm_7da07 + ret +.asm_7da07 + ld a, [hl] + cp $14 + jr z, .asm_7da17 + jr c, .asm_7da17 +.asm_7da0e + ld a, [$c001] + cp [hl] + jr z, .asm_7da17 + jr c, .asm_7da17 + ret +.asm_7da17 + xor a + push de + ld h, d + ld l, e + add hl, hl + ld d, h + ld e, l + ld hl, $c016 + add hl, de + ld [hli], a + ld [hl], a + ld hl, $c006 + add hl, de + ld [hli], a + ld [hl], a + pop de + ld hl, $c026 + add hl, de + ld [hl], a + ld hl, $c02e + add hl, de + ld [hl], a + ld hl, $c03e + add hl, de + ld [hl], a + ld hl, $c046 + add hl, de + ld [hl], a + ld hl, $c04e + add hl, de + ld [hl], a + ld hl, $c056 + add hl, de + ld [hl], a + ld hl, $c05e + add hl, de + ld [hl], a + ld hl, $c066 + add hl, de + ld [hl], a + ld hl, $c06e + add hl, de + ld [hl], a + ld hl, $c076 + add hl, de + ld [hl], a + ld hl, $c07e + add hl, de + ld [hl], a + ld hl, $c086 + add hl, de + ld [hl], a + ld hl, $c08e + add hl, de + ld [hl], a + ld hl, $c096 + add hl, de + ld [hl], a + ld hl, $c09e + add hl, de + ld [hl], a + ld hl, $c0a6 + add hl, de + ld [hl], a + ld hl, $c0ae + add hl, de + ld [hl], a + ld hl, $c036 + add hl, de + ld [hl], a + ld a, $1 + ld hl, $c0be + add hl, de + ld [hl], a + ld hl, $c0b6 + add hl, de + ld [hl], a + ld hl, $c0c6 + add hl, de + ld [hl], a + ld a, e + cp $4 + jr nz, .asm_7da9f + ld a, $8 + ld [$FF00+$10], a +.asm_7da9f + ld a, c + and a + jp z, Func_7db03 + dec c + jp .asm_7d9db + +Func_7daa8: ; 7daa8 (1f:5aa8) + ld a, $80 + ld [$FF00+$26], a + ld [$FF00+$1a], a + xor a + ld [$FF00+$25], a + ld [$FF00+$1c], a + ld a, $8 + ld [$FF00+$10], a + ld [$FF00+$12], a + ld [$FF00+$17], a + ld [$FF00+$21], a + ld a, $40 + ld [$FF00+$14], a + ld [$FF00+$19], a + ld [$FF00+$23], a + ld a, $77 + ld [$FF00+$24], a + xor a + ld [$c000], a + ld [$c003], a + ld [$c002], a + ld [$c0e9], a + ld [$c0eb], a + ld [$c0e6], a + ld [$c0e7], a + ld d, $a0 + ld hl, $c006 + call FillMusicRAM1f + ld a, $1 + ld d, $18 + ld hl, $c0b6 + call FillMusicRAM1f + ld [$c0e8], a + ld [$c0ea], a + ld a, $ff + ld [$c004], a + ret + +; fills d bytes at hl with a +FillMusicRAM1f: ; 7dafd (1f:5afd) + ld b, d +.loop + ld [hli], a + dec b + jr nz, .loop + ret + +Func_7db03: ; 7db03 (1f:5b03) + ld a, [$c001] + ld l, a + ld e, a + ld h, $0 + ld d, h + add hl, hl + add hl, de + ld de, SFX_Headers_1f + add hl, de + ld e, l + ld d, h + ld hl, $c006 + ld a, [de] ; get channel number + ld b, a + rlca + rlca + and $3 + ld c, a + ld a, b + and $f + ld b, c + inc b + inc de + ld c, $0 +.asm_7db25 + cp c + jr z, .asm_7db2d + inc c + inc hl + inc hl + jr .asm_7db25 +.asm_7db2d + push hl + push bc + push af + ld b, $0 + ld c, a + ld hl, $c026 + add hl, bc + ld a, [$c001] + ld [hl], a + pop af + cp $3 + jr c, .asm_7db46 + ld hl, $c02e + add hl, bc + set 2, [hl] +.asm_7db46 + pop bc + pop hl + ld a, [de] ; get channel pointer + ld [hli], a + inc de + ld a, [de] + ld [hli], a + inc de + inc c + dec b + ld a, b + and a + ld a, [de] + inc de + jr nz, .asm_7db25 + ld a, [$c001] + cp $14 + jr nc, .asm_7db5f + jr .asm_7db89 +.asm_7db5f + ld a, [$c001] + cp $86 + jr z, .asm_7db89 + jr c, .asm_7db6a + jr .asm_7db89 +.asm_7db6a + ld hl, $c02a + ld [hli], a + ld [hli], a + ld [hli], a + ld [hl], a + ld hl, $c012 ; sfx noise channel pointer + ld de, Noise1f_endchannel + ld [hl], e + inc hl + ld [hl], d ; overwrite pointer to point to endchannel + ld a, [$c005] + and a + jr nz, .asm_7db89 + ld a, [$FF00+$24] + ld [$c005], a + ld a, $77 + ld [$FF00+$24], a +.asm_7db89 + ret + +Noise1f_endchannel: ; 7db8a (1f:5b8a) + endchannel + +Unknown_7db8b: ; 7db8b (1f:5b8b) + db $10, $15, $1A, $1F ; channels 0-3 + db $10, $15, $1A, $1F ; channels 4-7 + +Unknown_7db93: ; 7db93 (1f:5b93) + db $EE, $DD, $BB, $77 ; channels 0-3 + db $EE, $DD, $BB, $77 ; channels 4-7 + +Unknown_7db9b: ; 7db9b (1f:5b9b) + db $11, $22, $44, $88 ; channels 0-3 + db $11, $22, $44, $88 ; channels 4-7 + +Unknown_7dba3: ; 7dba3 (1f:5ba3) + dw $F82C + dw $F89D + dw $F907 + dw $F96B + dw $F9CA + dw $FA23 + dw $FA77 + dw $FAC7 + dw $FB12 + dw $FB58 + dw $FB9B + dw $FBDA + + diff --git a/main.asm b/main.asm index 8ebf2ebb..fc08389e 100755 --- a/main.asm +++ b/main.asm @@ -18485,1684 +18485,9 @@ PlayBattleMusic: ; 0x90c6 .playSong jp PlayMusic -Func_9103: ; 0x9103 - ld c, CH0 -.loop - ld b, $0 - ld hl, $c026 - add hl, bc - ld a, [hl] - and a - jr z, .nextChannel - ld a, c - cp CH4 - jr nc, .asm_912e ; if sfx channel - ld a, [$c002] - and a - jr z, .asm_912e - bit 7, a - jr nz, .nextChannel - set 7, a - ld [$c002], a - xor a - ld [$ff00+$25], a - ld [$ff00+$1a], a - ld a, $80 - ld [$ff00+$1a], a - jr .nextChannel -.asm_912e - call Music2_ApplyMusicAffects -.nextChannel - ld a, c - inc c ; inc channel number - cp CH7 - jr nz, .loop - ret -; this routine checks flags for music effects currently applied -; to the channel and calls certain functions based on flags. -; known flags for $c02e: -; 1: call has been used -; 3: a toggle used only by this routine for vibrato -; 4: pitchbend flag -; 6: dutycycle flag -Music2_ApplyMusicAffects: ; 0x9138 - ld b, $0 - ld hl, $c0b6 ; delay unitl next note - add hl, bc - ld a, [hl] - cp $1 ; if the delay is 1, play next note - jp z, Music2_PlayNextNote - dec a ; otherwise, decrease the delay timer - ld [hl], a - ld a, c - cp CH4 - jr nc, .startChecks ; if a sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr z, .startChecks - ret -.startChecks - ld hl, $c02e - add hl, bc - bit 6, [hl] ; dutycycle - jr z, .checkForExecuteMusic - call Music2_ApplyDutyCycle -.checkForExecuteMusic - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, .checkForPitchBend - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr nz, .disablePitchBendVibrato -.checkForPitchBend - ld hl, $c02e - add hl, bc - bit 4, [hl] ; pitchbend - jr z, .checkVibratoDelay - jp Music2_ApplyPitchBend -.checkVibratoDelay - ld hl, $c04e ; vibrato delay - add hl, bc - ld a, [hl] - and a ; check if delay is over - jr z, .checkForVibrato - dec [hl] ; otherwise, dec delay -.disablePitchBendVibrato - ret -.checkForVibrato - ld hl, $c056 ; vibrato rate - add hl, bc - ld a, [hl] - and a - jr nz, .vibrato - ret ; no vibrato -.vibrato - ld d, a - ld hl, $c05e - add hl, bc - ld a, [hl] - and $f - and a - jr z, .vibratoAlreadyDone - dec [hl] ; apply vibrato pitch change - ret -.vibratoAlreadyDone - ld a, [hl] - swap [hl] - or [hl] - ld [hl], a ; reset the vibrato value and start again - ld hl, $c066 - add hl, bc - ld e, [hl] ; get note pitch - ld hl, $c02e - add hl, bc - bit 3, [hl] ; this is the only code that sets/resets bit three so - jr z, .unset ; it continuously alternates which path it takes - res 3, [hl] - ld a, d - and $f - ld d, a - ld a, e - sub d - jr nc, .noCarry - ld a, $0 -.noCarry - jr .done -.unset - set 3, [hl] - ld a, d - and $f0 - swap a - add e - jr nc, .done - ld a, $ff -.done - ld d, a - ld b, $3 - call Func_9838 - ld [hl], d - ret +INCLUDE "audio/engine_1.asm" -; this routine executes all music commands that take up no time, -; like tempo changes, duty changes etc. and doesn't return -; until the first note is reached -Music2_PlayNextNote ; 0x91d0 - ld hl, $c06e - add hl, bc - ld a, [hl] - ld hl, $c04e - add hl, bc - ld [hl], a - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - call Music2_endchannel - ret - -Music2_endchannel: ; 0x91e6 - call Music2_GetNextMusicByte - ld d, a - cp $ff ; is this command an endchannel? - jp nz, Music2_callchannel ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - bit 1, [hl] - jr nz, .returnFromCall - ld a, c - cp CH3 - jr nc, .noiseOrSfxChannel - jr .asm_923f -.noiseOrSfxChannel - res 2, [hl] - ld hl, $c036 - add hl, bc - res 0, [hl] - cp CH6 - jr nz, .notSfxChannel3 - ld a, $0 - ld [$ff00+$1a], a - ld a, $80 - ld [$ff00+$1a], a -.notSfxChannel3 - jr nz, .asm_9222 - ld a, [$c003] - and a - jr z, .asm_9222 - xor a - ld [$c003], a - jr .asm_923f -.asm_9222 - jr .asm_9248 -.returnFromCall - res 1, [hl] - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl ; store current channel address - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [de] - ld [hli], a - inc de - ld a, [de] - ld [hl], a ; loads channel address to return to - jp Music2_endchannel -.asm_923f - ld hl, Unknown_9b1f - add hl, bc - ld a, [$ff00+$25] - and [hl] - ld [$ff00+$25], a -.asm_9248 - ld a, [$c02a] - cp $14 - jr nc, .asm_9251 - jr .asm_926e -.asm_9251 - ld a, [$c02a] - cp $86 - jr z, .asm_926e - jr c, .asm_925c - jr .asm_926e -.asm_925c - ld a, c - cp CH4 - jr z, .asm_9265 - call Func_96c7 - ret c -.asm_9265 - ld a, [$c005] - ld [$ff00+$24], a - xor a - ld [$c005], a -.asm_926e - ld hl, $c026 - add hl, bc - ld [hl], b - ret - -Music2_callchannel: ; 0x9274 - cp $fd ; is this command a callchannel? - jp nz, Music2_loopchannel ; no - call Music2_GetNextMusicByte ; yes - push af - call Music2_GetNextMusicByte - ld d, a - pop af - ld e, a - push de ; store pointer - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [hli] - ld [de], a - inc de - ld a, [hld] - ld [de], a ; copy current channel address - pop de - ld [hl], e - inc hl - ld [hl], d ; overwrite current address with pointer - ld b, $0 - ld hl, $c02e - add hl, bc - set 1, [hl] ; set the call flag - jp Music2_endchannel - -Music2_loopchannel: ; 0x92a9 - cp $fe ; is this command a loopchannel? - jp nz, Music2_notetype ; no - call Music2_GetNextMusicByte ; yes - ld e, a - and a - jr z, .infiniteLoop - ld b, $0 - ld hl, $c0be - add hl, bc - ld a, [hl] - cp e - jr nz, .loopAgain - ld a, $1 ; if no more loops to make, - ld [hl], a - call Music2_GetNextMusicByte ; skip pointer - call Music2_GetNextMusicByte - jp Music2_endchannel -.loopAgain ; inc loop count - inc a - ld [hl], a - ; fall through -.infiniteLoop ; overwrite current address with pointer - call Music2_GetNextMusicByte - push af - call Music2_GetNextMusicByte - ld b, a - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - pop af - ld [hli], a - ld [hl], b - jp Music2_endchannel - -Music2_notetype: ; 0x92e4 - and $f0 - cp $d0 ; is this command a notetype? - jp nz, Music2_togglecall ; no - ld a, d ; yes - and $f - ld b, $0 - ld hl, $c0c6 - add hl, bc - ld [hl], a ; store low nibble as speed - ld a, c - cp CH3 - jr z, .noiseChannel ; noise channel has 0 params - call Music2_GetNextMusicByte - ld d, a - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notChannel3 - ld hl, $c0e7 - jr .sfxChannel3 -.musicChannel3 - ld hl, $c0e6 -.sfxChannel3 - ld a, d - and $f - ld [hl], a ; store low nibble of param as duty - ld a, d - and $30 - sla a - ld d, a - ; fall through - - ; if channel 3, store high nibble as volume - ; else, store volume (high nibble) and fade (low nibble) -.notChannel3 - ld b, $0 - ld hl, $c0de - add hl, bc - ld [hl], d -.noiseChannel - jp Music2_endchannel - -Music2_togglecall: ; 0x9323 - ld a, d - cp $e8 ; is this command an togglecall? - jr nz, Music2_vibrato ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - ld a, [hl] - xor $1 - ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) - jp Music2_endchannel - -Music2_vibrato: ; 0x9335 - cp $ea ; is this command a vibrato? - jr nz, Music2_pitchbend ; no - call Music2_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c04e - add hl, bc - ld [hl], a ; store delay - ld hl, $c06e - add hl, bc - ld [hl], a ; store delay - call Music2_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, $0 - ld hl, $c056 - add hl, bc - srl a - ld e, a - adc b - swap a - or e - ld [hl], a ; store rate as both high and low nibbles - ld a, d - and $f - ld d, a - ld hl, $c05e - add hl, bc - swap a - or d - ld [hl], a ; store depth as both high and low nibbles - jp Music2_endchannel - -Music2_pitchbend: ; 0x936d - cp $eb ; is this command a pitchbend? - jr nz, Music2_duty ; no - call Music2_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c076 - add hl, bc - ld [hl], a ; store first param - call Music2_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, a - ld a, d - and $f - call Func_9858 - ld b, $0 - ld hl, $c0a6 - add hl, bc - ld [hl], d ; store unknown part of second param - ld hl, $c0ae - add hl, bc - ld [hl], e ; store unknown part of second param - ld b, $0 - ld hl, $c02e - add hl, bc - set 4, [hl] ; set pitchbend flag - call Music2_GetNextMusicByte - ld d, a - jp Music2_notelength - -Music2_duty: ; 0x93a5 - cp $ec ; is this command a duty? - jr nz, Music2_tempo ; no - call Music2_GetNextMusicByte ; yes - rrca - rrca - and $c0 - ld b, $0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store duty - jp Music2_endchannel - -Music2_tempo: ; 0x93ba - cp $ed ; is this command a tempo? - jr nz, Music2_unknownmusic0xee ; no - ld a, c ; yes - cp CH4 - jr nc, .sfxChannel - call Music2_GetNextMusicByte - ld [$c0e8], a ; store first param - call Music2_GetNextMusicByte - ld [$c0e9], a ; store second param - xor a - ld [$c0ce], a ; clear RAM - ld [$c0cf], a - ld [$c0d0], a - ld [$c0d1], a - jr .musicChannelDone -.sfxChannel - call Music2_GetNextMusicByte - ld [$c0ea], a ; store first param - call Music2_GetNextMusicByte - ld [$c0eb], a ; store second param - xor a - ld [$c0d2], a ; clear RAM - ld [$c0d3], a - ld [$c0d4], a - ld [$c0d5], a -.musicChannelDone - jp Music2_endchannel - -Music2_unknownmusic0xee: ; 0x93fa - cp $ee ; is this command an unknownmusic0xee? - jr nz, Music2_unknownmusic0xef ; no - call Music2_GetNextMusicByte ; yes - ld [$c004], a ; store first param - jp Music2_endchannel - -; this appears to never be used -Music2_unknownmusic0xef ; 0x9407 - cp $ef ; is this command an unknownmusic0xef? - jr nz, Music2_dutycycle ; no - call Music2_GetNextMusicByte ; yes - push bc - call Func_9876 - pop bc - ld a, [$c003] - and a - jr nz, .skip - ld a, [$c02d] - ld [$c003], a - xor a - ld [$c02d], a -.skip - jp Music2_endchannel - -Music2_dutycycle: ; 0x9426 - cp $fc ; is this command a dutycycle? - jr nz, Music2_stereopanning ; no - call Music2_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c046 - add hl, bc - ld [hl], a ; store full cycle - and $c0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store first duty - ld hl, $c02e - add hl, bc - set 6, [hl] ; set dutycycle flag - jp Music2_endchannel - -Music2_stereopanning: ; 0x9444 - cp $f0 ; is this command a stereopanning? - jr nz, Music2_executemusic ; no - call Music2_GetNextMusicByte ; yes - ld [$ff00+$24], a ; store stereopanning - jp Music2_endchannel - -Music2_executemusic: ; 0x9450 - cp $f8 ; is this command an executemusic? - jr nz, Music2_octave ; no - ld b, $0 ; yes - ld hl, $c036 - add hl, bc - set 0, [hl] - jp Music2_endchannel - -Music2_octave: ; 0x945f - and $f0 - cp $e0 ; is this command an octave? - jr nz, Music2_unknownsfx0x20 ; no - ld hl, $c0d6 ; yes - ld b, $0 - add hl, bc - ld a, d - and $f - ld [hl], a ; store low nibble as octave - jp Music2_endchannel - -Music2_unknownsfx0x20: ; 0x9472 - cp $20 ; is this command an unknownsfx0x20? - jr nz, Music2_unknownsfx0x10 ; no - ld a, c - cp CH3 ; is this a noise or sfx channel? - jr c, Music2_unknownsfx0x10 ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music2_unknownsfx0x10 ; no - call Music2_notelength ; yes - ld d, a - ld b, $0 - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a - ld b, $1 - call Func_9838 - ld [hl], d - call Music2_GetNextMusicByte - ld d, a - ld b, $2 - call Func_9838 - ld [hl], d - call Music2_GetNextMusicByte - ld e, a - ld a, c - cp CH7 - ld a, $0 - jr z, .sfxNoiseChannel ; only two params for noise channel - push de - call Music2_GetNextMusicByte - pop de -.sfxNoiseChannel - ld d, a - push de - call Func_9629 - call Func_95f8 - pop de - call Func_964b - ret - -Music2_unknownsfx0x10: - ld a, c - cp CH4 - jr c, Music2_note ; if not a sfx - ld a, d - cp $10 ; is this command a unknownsfx0x10? - jr nz, Music2_note ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music2_note ; no - call Music2_GetNextMusicByte ; yes - ld [$ff00+$10], a - jp Music2_endchannel - -Music2_note: - ld a, c - cp CH3 - jr nz, Music2_notelength ; if not noise channel - ld a, d - and $f0 - cp $b0 ; is this command a dnote? - jr z, Music2_dnote ; yes - jr nc, Music2_notelength ; no - swap a - ld b, a - ld a, d - and $f - ld d, a - ld a, b - push de - push bc - jr asm_94fd - -Music2_dnote: - ld a, d - and $f - push af - push bc - call Music2_GetNextMusicByte ; get dnote instrument -asm_94fd - ld d, a - ld a, [$c003] - and a - jr nz, .asm_9508 - ld a, d - call Func_9876 -.asm_9508 - pop bc - pop de - -Music2_notelength: ; 0x950a - ld a, d - push af - and $f - inc a - ld b, $0 - ld e, a ; store note length (in 16ths) - ld d, b - ld hl, $c0c6 - add hl, bc - ld a, [hl] - ld l, b - call Func_9847 - ld a, c - cp CH4 - jr nc, .sfxChannel - ld a, [$c0e8] - ld d, a - ld a, [$c0e9] - ld e, a - jr .skip -.sfxChannel - ld d, $1 - ld e, $0 - cp CH7 - jr z, .skip ; if noise channel - call Func_9693 - ld a, [$c0ea] - ld d, a - ld a, [$c0eb] - ld e, a -.skip - ld a, l - ld b, $0 - ld hl, $c0ce - add hl, bc - ld l, [hl] - call Func_9847 - ld e, l - ld d, h - ld hl, $c0ce - add hl, bc - ld [hl], e - ld a, d - ld hl, $c0b6 - add hl, bc - ld [hl], a - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music2_notepitch - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr z, Music2_notepitch - pop hl - ret - -Music2_notepitch: ; 0x9568 - pop af - and $f0 - cp $c0 ; compare to rest - jr nz, .notRest - ld a, c - cp CH4 - jr nc, .sfxChannel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .done - ; fall through -.sfxChannel - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notSfxChannel3 -.musicChannel3 - ld b, $0 - ld hl, Unknown_9b1f - add hl, bc - ld a, [$ff00+$25] - and [hl] - ld [$ff00+$25], a - jr .done -.notSfxChannel3 - ld b, $2 - call Func_9838 - ld a, $8 - ld [hli], a - inc hl - ld a, $80 - ld [hl], a -.done - ret -.notRest - swap a - ld b, $0 - ld hl, $c0d6 - add hl, bc - ld b, [hl] - call Func_9858 - ld b, $0 - ld hl, $c02e - add hl, bc - bit 4, [hl] - jr z, .asm_95b8 - call Func_978f -.asm_95b8 - push de - ld a, c - cp CH4 - jr nc, .skip ; if sfx channel - ld hl, $c02a - ld d, $0 - ld e, a - add hl, de - ld a, [hl] - and a - jr nz, .asm_95cb - jr .skip -.asm_95cb - pop de - ret -.skip - ld b, $0 - ld hl, $c0de - add hl, bc - ld d, [hl] - ld b, $2 - call Func_9838 - ld [hl], d - call Func_9629 - call Func_95f8 - pop de - ld b, $0 - ld hl, $c02e - add hl, bc - bit 0, [hl] - jr z, .asm_95ef - inc e - jr nc, .asm_95ef - inc d -.asm_95ef - ld hl, $c066 - add hl, bc - ld [hl], e - call Func_964b - ret - -Func_95f8: ; 0x95f8 - ld b, $0 - ld hl, Unknown_9b27 - add hl, bc - ld a, [$ff00+$25] - or [hl] - ld d, a - ld a, c - cp CH7 - jr z, .sfxNoiseChannel - cp CH4 - jr nc, .skip ; if sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .skip -.sfxNoiseChannel - ld a, [$c004] - ld hl, Unknown_9b27 - add hl, bc - and [hl] - ld d, a - ld a, [$ff00+$25] - ld hl, Unknown_9b1f - add hl, bc - and [hl] - or d - ld d, a -.skip - ld a, d - ld [$ff00+$25], a - ret - -Func_9629: ; 0x9629 - ld b, $0 - ld hl, $c0b6 - add hl, bc - ld d, [hl] - ld a, c - cp CH2 - jr z, .channel3 ; if music channel 3 - cp CH6 - jr z, .channel3 ; if sfx channel 3 - ld a, d - and $3f - ld d, a - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a -.channel3 - ld b, $1 - call Func_9838 - ld [hl], d - ret - -Func_964b: ; 0x964b - ld a, c - cp CH2 - jr z, .channel3 - cp CH6 - jr nz, .notSfxChannel3 - ; fall through -.channel3 - push de - ld de, $c0e6 - cp CH2 - jr z, .musicChannel3 - ld de, $c0e7 -.musicChannel3 - ld a, [de] - add a - ld d, $0 - ld e, a - ld hl, Music2_Channel3DutyPointers - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld hl, $ff30 - ld b, $f - ld a, $0 - ld [$ff00+$1a], a -.loop - ld a, [de] - inc de - ld [hli], a - ld a, b - dec b - and a - jr nz, .loop - ld a, $80 - ld [$ff00+$1a], a - pop de -.notSfxChannel3 - ld a, d - or $80 - and $c7 - ld d, a - ld b, $3 - call Func_9838 - ld [hl], e - inc hl - ld [hl], d - call Func_96b5 - ret - -Func_9693: ; 0x9693 - call Func_96e5 - jr nc, .asm_96ab - ld d, $0 - ld a, [$c0f2] - add $80 - jr nc, .asm_96a2 - inc d -.asm_96a2 - ld [$c0eb], a - ld a, d - ld [$c0ea], a - jr .asm_96b4 -.asm_96ab - xor a - ld [$c0eb], a - ld a, $1 - ld [$c0ea], a -.asm_96b4 - ret - -Func_96b5: ; 0x96b5 - call Func_96e5 - jr nc, .asm_96c6 - ld a, [$c0f1] - add e - jr nc, .asm_96c1 - inc d -.asm_96c1 - dec hl - ld e, a - ld [hl], e - inc hl - ld [hl], d -.asm_96c6 - ret - -Func_96c7: ; 0x96c7 - call Func_96e5 - jr nc, .asm_96e2 - ld hl, $c006 - ld e, c - ld d, $0 - sla e - rl d - add hl, de - ld a, [hl] - sub $1 - ld [hl], a - inc hl - ld a, [hl] - sbc $0 - ld [hl], a - scf - ret -.asm_96e2 - scf - ccf - ret - -Func_96e5: ; 0x96e5 - ld a, [$c02a] - cp $14 - jr nc, .asm_96ee - jr .asm_96f4 -.asm_96ee - cp $86 - jr z, .asm_96f4 - jr c, .asm_96f7 -.asm_96f4 - scf - ccf - ret -.asm_96f7 - scf - ret - -Music2_ApplyPitchBend: ; 0x96f9 - ld hl, $c02e - add hl, bc - bit 5, [hl] - jp nz, .asm_9740 - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld l, [hl] - ld h, b - add hl, de - ld d, h - ld e, l - ld hl, $c08e - add hl, bc - push hl - ld hl, $c086 - add hl, bc - ld a, [hl] - pop hl - add [hl] - ld [hl], a - ld a, $0 - adc e - ld e, a - ld a, $0 - adc d - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - cp d - jp c, .asm_9786 - jr nz, .asm_9773 - ld hl, $c0ae - add hl, bc - ld a, [hl] - cp e - jp c, .asm_9786 - jr .asm_9773 -.asm_9740 - ld hl, $c09e - add hl, bc - ld a, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld e, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c086 - add hl, bc - ld a, [hl] - add a - ld [hl], a - ld a, e - sbc b - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, d - cp [hl] - jr c, .asm_9786 - jr nz, .asm_9773 - ld hl, $c0ae - add hl, bc - ld a, e - cp [hl] - jr c, .asm_9786 -.asm_9773 - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c096 - add hl, bc - ld [hl], d - ld b, $3 - call Func_9838 - ld a, e - ld [hli], a - ld [hl], d - ret -.asm_9786 - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - ret - -Func_978f: ; 0x978f - ld hl, $c096 - add hl, bc - ld [hl], d - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c0b6 - add hl, bc - ld a, [hl] - ld hl, $c076 - add hl, bc - sub [hl] - jr nc, .asm_97a7 - ld a, $1 -.asm_97a7 - ld [hl], a - ld hl, $c0ae - add hl, bc - ld a, e - sub [hl] - ld e, a - ld a, d - sbc b - ld hl, $c0a6 - add hl, bc - sub [hl] - jr c, .asm_97c3 - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - set 5, [hl] - jr .asm_97e6 -.asm_97c3 - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c0ae - add hl, bc - ld a, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - sub d - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - res 5, [hl] -.asm_97e6 - ld hl, $c076 - add hl, bc -.asm_97ea - inc b - ld a, e - sub [hl] - ld e, a - jr nc, .asm_97ea - ld a, d - and a - jr z, .asm_97f8 - dec a - ld d, a - jr .asm_97ea -.asm_97f8 - ld a, e - add [hl] - ld d, b - ld b, $0 - ld hl, $c07e - add hl, bc - ld [hl], d - ld hl, $c086 - add hl, bc - ld [hl], a - ld hl, $c08e - add hl, bc - ld [hl], a - ret - -Music2_ApplyDutyCycle: ; 0x980d - ld b, $0 - ld hl, $c046 - add hl, bc - ld a, [hl] - rlca - rlca - ld [hl], a - and $c0 - ld d, a - ld b, $1 - call Func_9838 - ld a, [hl] - and $3f - or d - ld [hl], a - ret - -Music2_GetNextMusicByte: ; 0x9825 - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - ld a, [hli] - ld e, a - ld a, [hld] - ld d, a - ld a, [de] ; get next music command - inc de - ld [hl], e ; store address of next command - inc hl - ld [hl], d - ret - -Func_9838: ; 0x9838 - ld a, c - ld hl, Unknown_9b17 - add l - jr nc, .noCarry - inc h -.noCarry - ld l, a - ld a, [hl] - add b - ld l, a - ld h, $ff - ret - -Func_9847: ; 0x9847 - ld h, $0 -.loop - srl a - jr nc, .noCarry - add hl, de -.noCarry - sla e - rl d - and a - jr z, .done - jr .loop -.done - ret - -Func_9858: ; 0x9858 - ld h, $0 - ld l, a - add hl, hl - ld d, h - ld e, l - ld hl, Unknown_9b2f - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld a, b -.loop - cp $7 - jr z, .done - sra d - rr e - inc a - jr .loop -.done - ld a, $8 - add d - ld d, a - ret - -Func_9876: ; 0x9876 - ld [$c001], a - cp $ff - jp z, Func_9a34 - cp $b9 - jp z, Func_994e - jp c, Func_994e - cp $fe - jr z, .asm_988d - jp nc, Func_994e -.asm_988d - xor a - ld [$c000], a - ld [$c003], a - ld [$c0e9], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $8 - ld hl, $c016 - call FillMusicRAM2 - ld hl, $c006 - call FillMusicRAM2 - ld d, $4 - ld hl, $c026 - call FillMusicRAM2 - ld hl, $c02e - call FillMusicRAM2 - ld hl, $c03e - call FillMusicRAM2 - ld hl, $c046 - call FillMusicRAM2 - ld hl, $c04e - call FillMusicRAM2 - ld hl, $c056 - call FillMusicRAM2 - ld hl, $c05e - call FillMusicRAM2 - ld hl, $c066 - call FillMusicRAM2 - ld hl, $c06e - call FillMusicRAM2 - ld hl, $c036 - call FillMusicRAM2 - ld hl, $c076 - call FillMusicRAM2 - ld hl, $c07e - call FillMusicRAM2 - ld hl, $c086 - call FillMusicRAM2 - ld hl, $c08e - call FillMusicRAM2 - ld hl, $c096 - call FillMusicRAM2 - ld hl, $c09e - call FillMusicRAM2 - ld hl, $c0a6 - call FillMusicRAM2 - ld hl, $c0ae - call FillMusicRAM2 - ld a, $1 - ld hl, $c0be - call FillMusicRAM2 - ld hl, $c0b6 - call FillMusicRAM2 - ld hl, $c0c6 - call FillMusicRAM2 - ld [$c0e8], a - ld a, $ff - ld [$c004], a - xor a - ld [$ff00+$24], a - ld a, $8 - ld [$ff00+$10], a - ld a, $0 - ld [$ff00+$25], a - xor a - ld [$ff00+$1a], a - ld a, $80 - ld [$ff00+$1a], a - ld a, $77 - ld [$ff00+$24], a - jp Func_9a8f - -Func_994e: ; 0x994e - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_02 - add hl, de - ld a, h - ld [$c0ec], a - ld a, l - ld [$c0ed], a - ld a, [hl] - and $c0 - rlca - rlca - ld c, a -.asm_9967 - ld d, c - ld a, c - add a - add c - ld c, a - ld b, $0 - ld a, [$c0ec] - ld h, a - ld a, [$c0ed] - ld l, a - add hl, bc - ld c, d - ld a, [hl] - and $f - ld e, a - ld d, $0 - ld hl, $c026 - add hl, de - ld a, [hl] - and a - jr z, .asm_99a3 - ld a, e - cp $7 - jr nz, .asm_999a - ld a, [$c001] - cp $14 - jr nc, .asm_9993 - ret -.asm_9993 - ld a, [hl] - cp $14 - jr z, .asm_99a3 - jr c, .asm_99a3 -.asm_999a - ld a, [$c001] - cp [hl] - jr z, .asm_99a3 - jr c, .asm_99a3 - ret -.asm_99a3 - xor a - push de - ld h, d - ld l, e - add hl, hl - ld d, h - ld e, l - ld hl, $c016 - add hl, de - ld [hli], a - ld [hl], a - ld hl, $c006 - add hl, de - ld [hli], a - ld [hl], a - pop de - ld hl, $c026 - add hl, de - ld [hl], a - ld hl, $c02e - add hl, de - ld [hl], a - ld hl, $c03e - add hl, de - ld [hl], a - ld hl, $c046 - add hl, de - ld [hl], a - ld hl, $c04e - add hl, de - ld [hl], a - ld hl, $c056 - add hl, de - ld [hl], a - ld hl, $c05e - add hl, de - ld [hl], a - ld hl, $c066 - add hl, de - ld [hl], a - ld hl, $c06e - add hl, de - ld [hl], a - ld hl, $c076 - add hl, de - ld [hl], a - ld hl, $c07e - add hl, de - ld [hl], a - ld hl, $c086 - add hl, de - ld [hl], a - ld hl, $c08e - add hl, de - ld [hl], a - ld hl, $c096 - add hl, de - ld [hl], a - ld hl, $c09e - add hl, de - ld [hl], a - ld hl, $c0a6 - add hl, de - ld [hl], a - ld hl, $c0ae - add hl, de - ld [hl], a - ld hl, $c036 - add hl, de - ld [hl], a - ld a, $1 - ld hl, $c0be - add hl, de - ld [hl], a - ld hl, $c0b6 - add hl, de - ld [hl], a - ld hl, $c0c6 - add hl, de - ld [hl], a - ld a, e - cp $4 - jr nz, .asm_9a2b - ld a, $8 - ld [$ff00+$10], a -.asm_9a2b - ld a, c - and a - jp z, Func_9a8f - dec c - jp .asm_9967 - -Func_9a34: ; 0x9a34 - ld a, $80 - ld [$ff00+$26], a - ld [$ff00+$1a], a - xor a - ld [$ff00+$25], a - ld [$ff00+$1c], a - ld a, $8 - ld [$ff00+$10], a - ld [$ff00+$12], a - ld [$ff00+$17], a - ld [$ff00+$21], a - ld a, $40 - ld [$ff00+$14], a - ld [$ff00+$19], a - ld [$ff00+$23], a - ld a, $77 - ld [$ff00+$24], a - xor a - ld [$c000], a - ld [$c003], a - ld [$c002], a - ld [$c0e9], a - ld [$c0eb], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $a0 - ld hl, $c006 - call FillMusicRAM2 - ld a, $1 - ld d, $18 - ld hl, $c0b6 - call FillMusicRAM2 - ld [$c0e8], a - ld [$c0ea], a - ld a, $ff - ld [$c004], a - ret - -; fills d bytes at hl with a -FillMusicRAM2: ; 0x9a89 - ld b, d -.loop - ld [hli], a - dec b - jr nz, .loop - ret - -Func_9a8f: ; 0x9a8f - ld a, [$c001] - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_02 - add hl, de - ld e, l - ld d, h - ld hl, $c006 - ld a, [de] ; get channel number - ld b, a - rlca - rlca - and $3 - ld c, a - ld a, b - and $f - ld b, c - inc b - inc de - ld c, $0 -.asm_9ab1 - cp c - jr z, .asm_9ab9 - inc c - inc hl - inc hl - jr .asm_9ab1 -.asm_9ab9 - push hl - push bc - push af - ld b, $0 - ld c, a - ld hl, $c026 - add hl, bc - ld a, [$c001] - ld [hl], a - pop af - cp $3 - jr c, .asm_9ad2 - ld hl, $c02e - add hl, bc - set 2, [hl] -.asm_9ad2 - pop bc - pop hl - ld a, [de] ; get channel pointer - ld [hli], a - inc de - ld a, [de] - ld [hli], a - inc de - inc c - dec b - ld a, b - and a - ld a, [de] - inc de - jr nz, .asm_9ab1 - ld a, [$c001] - cp $14 - jr nc, .asm_9aeb - jr .asm_9b15 -.asm_9aeb - ld a, [$c001] - cp $86 - jr z, .asm_9b15 - jr c, .asm_9af6 - jr .asm_9b15 -.asm_9af6 - ld hl, $c02a - ld [hli], a - ld [hli], a - ld [hli], a - ld [hl], a - ld hl, $c012 ; sfx noise channel pointer - ld de, Noise2_endchannel - ld [hl], e - inc hl - ld [hl], d ; overwrite pointer to point to endchannel - ld a, [$c005] - and a - jr nz, .asm_9b15 - ld a, [$ff00+$24] - ld [$c005], a - ld a, $77 - ld [$ff00+$24], a -.asm_9b15 - ret - -Noise2_endchannel: ; 0x9b16 - endchannel - -Unknown_9b17: ; 0x9b17 - db $10, $15, $1A, $1F ; channels 0-3 - db $10, $15, $1A, $1F ; channels 4-7 - -Unknown_9b1f: ; 0x9b1f - db $EE, $DD, $BB, $77 ; channels 0-3 - db $EE, $DD, $BB, $77 ; channels 4-7 - -Unknown_9b27: ; 0x9b27 - db $11, $22, $44, $88 ; channels 0-3 - db $11, $22, $44, $88 ; channels 4-7 - -Unknown_9b2f: ; 0x9b2f - dw $F82C - dw $F89D - dw $F907 - dw $F96B - dw $F9CA - dw $FA23 - dw $FA77 - dw $FAC7 - dw $FB12 - dw $FB58 - dw $FB9B - dw $FBDA ; an alternate start for MeetRival which has a different first measure Music_RivalAlternateStart: ; 0x9b47 @@ -45308,1735 +43633,9 @@ UnnamedText_21865: ; 21865 (8:5865) Unknown_21878: ; 21878 (8:5878) db $FD -Func_21879: ; 21879 (8:5879) - ld c, CH0 -.loop - ld b, $0 - ld hl, $c026 - add hl, bc - ld a, [hl] - and a - jr z, .nextChannel - ld a, c - cp CH4 - jr nc, .applyAffects ; if sfx channel - ld a, [$c002] - and a - jr z, .applyAffects - bit 7, a - jr nz, .nextChannel - set 7, a - ld [$c002], a - xor a - ld [$FF00+$25], a - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a - jr .nextChannel -.applyAffects - call Music8_ApplyMusicAffects -.nextChannel - ld a, c - inc c - cp CH7 - jr nz, .loop - ret -; this routine checks flags for music effects currently applied -; to the channel and calls certain functions based on flags. -; known flags for $c02e: -; 1: call has been used -; 3: a toggle used only by this routine for vibrato -; 4: pitchbend flag -; 6: dutycycle flag -Music8_ApplyMusicAffects: ; 218ae (8:58ae) - ld b, $0 - ld hl, $c0b6 ; delay unitl next note - add hl, bc - ld a, [hl] - cp $1 ; if the delay is 1, play next note - jp z, Music8_PlayNextNote - dec a ; otherwise, decrease the delay timer - ld [hl], a - ld a, c - cp CH4 - jr nc, .startChecks ; if a sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr z, .startChecks - ret -.startChecks - ld hl, $c02e - add hl, bc - bit 6, [hl] ; dutycycle - jr z, .checkForExecuteMusic - call Music8_ApplyDutyCycle -.checkForExecuteMusic - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, .checkForPitchBend - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr nz, .disablePitchBendVibrato -.checkForPitchBend - ld hl, $c02e - add hl, bc - bit 4, [hl] ; pitchbend - jr z, .checkVibratoDelay - jp Music8_ApplyPitchBend -.checkVibratoDelay - ld hl, $c04e ; vibrato delay - add hl, bc - ld a, [hl] - and a ; check if delay is over - jr z, .checkForVibrato - dec [hl] ; otherwise, dec delay -.disablePitchBendVibrato - ret -.checkForVibrato - ld hl, $c056 ; vibrato rate - add hl, bc - ld a, [hl] - and a - jr nz, .vibrato - ret ; no vibrato -.vibrato - ld d, a - ld hl, $c05e - add hl, bc - ld a, [hl] - and $f - and a - jr z, .vibratoAlreadyDone - dec [hl] ; apply vibrato pitch change - ret -.vibratoAlreadyDone - ld a, [hl] - swap [hl] - or [hl] - ld [hl], a ; reset the vibrato value and start again - ld hl, $c066 - add hl, bc - ld e, [hl] ; get note pitch - ld hl, $c02e - add hl, bc - bit 3, [hl] ; this is the only code that sets/resets bit three so - jr z, .unset ; it continuously alternates which path it takes - res 3, [hl] - ld a, d - and $f - ld d, a - ld a, e - sub d - jr nc, .noCarry - ld a, $0 -.noCarry - jr .done -.unset - set 3, [hl] - ld a, d - and $f0 - swap a - add e - jr nc, .done - ld a, $ff -.done - ld d, a - ld b, $3 - call Func_21ff7 - ld [hl], d - ret +INCLUDE "audio/engine_2.asm" -; this routine executes all music commands that take up no time, -; like tempo changes, duty changes etc. and doesn't return -; until the first note is reached -Music8_PlayNextNote: ; 21946 (8:5946) - ld hl, $c06e - add hl, bc - ld a, [hl] - ld hl, $c04e - add hl, bc - ld [hl], a - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - ld a, c - cp CH4 - jr nz, .beginChecks - ld a, [$d083] - bit 7, a - ret nz -.beginChecks - call Music8_endchannel - ret - -Music8_endchannel: ; 21967 (8:5967) - call Music8_GetNextMusicByte - ld d, a - cp $ff ; is this command an endchannel? - jp nz, Music8_callchannel ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - bit 1, [hl] - jr nz, .returnFromCall - ld a, c - cp CH3 - jr nc, .noiseOrSfxChannel - jr .asm_219c0 -.noiseOrSfxChannel - res 2, [hl] - ld hl, $c036 - add hl, bc - res 0, [hl] - cp CH6 - jr nz, .notSfxChannel3 - ld a, $0 - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a -.notSfxChannel3 - jr nz, .asm_219a3 - ld a, [$c003] - and a - jr z, .asm_219a3 - xor a - ld [$c003], a - jr .asm_219c0 -.asm_219a3 - jr .asm_219c9 -.returnFromCall - res 1, [hl] - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl ; store current channel address - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [de] - ld [hli], a - inc de - ld a, [de] - ld [hl], a ; loads channel address to return to - jp Music8_endchannel -.asm_219c0 - ld hl, Unknown_222de - add hl, bc - ld a, [$FF00+$25] - and [hl] - ld [$FF00+$25], a -.asm_219c9 - ld a, [$c02a] - cp $14 - jr nc, .asm_219d2 - jr .asm_219ef -.asm_219d2 - ld a, [$c02a] - cp $86 - jr z, .asm_219ef - jr c, .asm_219dd - jr .asm_219ef -.asm_219dd - ld a, c - cp CH4 - jr z, .asm_219e6 - call Func_21e6d - ret c -.asm_219e6 - ld a, [$c005] - ld [$FF00+$24], a - xor a - ld [$c005], a -.asm_219ef - ld hl, $c026 - add hl, bc - ld [hl], b - ret - -Music8_callchannel: ; 219f5 (8:59f5) - cp $fd ; is this command a callchannel? - jp nz, Music8_loopchannel ; no - call Music8_GetNextMusicByte ; yes - push af - call Music8_GetNextMusicByte - ld d, a - pop af - ld e, a - push de ; store pointer - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [hli] - ld [de], a - inc de - ld a, [hld] - ld [de], a ; copy current channel address - pop de - ld [hl], e - inc hl - ld [hl], d ; overwrite current address with pointer - ld b, $0 - ld hl, $c02e - add hl, bc - set 1, [hl] ; set the call flag - jp Music8_endchannel - -Music8_loopchannel: ; 21a2a (8:5a2a) - cp $fe ; is this command a loopchannel? - jp nz, Music8_notetype ; no - call Music8_GetNextMusicByte ; yes - ld e, a - and a - jr z, .infiniteLoop - ld b, $0 - ld hl, $c0be - add hl, bc - ld a, [hl] - cp e - jr nz, .loopAgain - ld a, $1 ; if no more loops to make, - ld [hl], a - call Music8_GetNextMusicByte ; skip pointer - call Music8_GetNextMusicByte - jp Music8_endchannel -.loopAgain ; inc loop count - inc a - ld [hl], a - ; fall through -.infiniteLoop ; overwrite current address with pointer - call Music8_GetNextMusicByte - push af - call Music8_GetNextMusicByte - ld b, a - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - pop af - ld [hli], a - ld [hl], b - jp Music8_endchannel - -Music8_notetype: ; 21a65 (8:5a65) - and $f0 - cp $d0 ; is this command a notetype? - jp nz, Music8_togglecall ; no - ld a, d ; yes - and $f - ld b, $0 - ld hl, $c0c6 - add hl, bc - ld [hl], a ; store low nibble as speed - ld a, c - cp CH3 - jr z, .noiseChannel ; noise channel has 0 params - call Music8_GetNextMusicByte - ld d, a - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notChannel3 - ld hl, $c0e7 - jr .sfxChannel3 -.musicChannel3 - ld hl, $c0e6 -.sfxChannel3 - ld a, d - and $f - ld [hl], a ; store low nibble of param as duty - ld a, d - and $30 - sla a - ld d, a - ; fall through - - ; if channel 3, store high nibble as volume - ; else, store volume (high nibble) and fade (low nibble) -.notChannel3 - ld b, $0 - ld hl, $c0de - add hl, bc - ld [hl], d -.noiseChannel - jp Music8_endchannel - -Music8_togglecall: ; 21aa4 (8:5aa4) - ld a, d - cp $e8 ; is this command an togglecall? - jr nz, Music8_vibrato ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - ld a, [hl] - xor $1 - ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) - jp Music8_endchannel - -Music8_vibrato: ; 21ab6 (8:5ab6) - cp $ea ; is this command a vibrato? - jr nz, Music8_pitchbend ; no - call Music8_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c04e - add hl, bc - ld [hl], a ; store delay - ld hl, $c06e - add hl, bc - ld [hl], a ; store delay - call Music8_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, $0 - ld hl, $c056 - add hl, bc - srl a - ld e, a - adc b - swap a - or e - ld [hl], a ; store rate as both high and low nibbles - ld a, d - and $f - ld d, a - ld hl, $c05e - add hl, bc - swap a - or d - ld [hl], a ; store depth as both high and low nibbles - jp Music8_endchannel - -Music8_pitchbend: ; 21aee (8:5aee) - cp $eb ; is this command a pitchbend? - jr nz, Music8_duty ; no - call Music8_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c076 - add hl, bc - ld [hl], a ; store first param - call Music8_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, a - ld a, d - and $f - call Func_22017 - ld b, $0 - ld hl, $c0a6 - add hl, bc - ld [hl], d ; store unknown part of second param - ld hl, $c0ae - add hl, bc - ld [hl], e ; store unknown part of second param - ld b, $0 - ld hl, $c02e - add hl, bc - set 4, [hl] ; set pitchbend flag - call Music8_GetNextMusicByte - ld d, a - jp Music8_notelength - -Music8_duty: ; 21b26 (8:5b26) - cp $ec ; is this command a duty? - jr nz, Music8_tempo ; no - call Music8_GetNextMusicByte ; yes - rrca - rrca - and $c0 - ld b, $0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store duty - jp Music8_endchannel - -Music8_tempo: ; 21b3b (8:5b3b) - cp $ed ; is this command a tempo? - jr nz, Music8_unknownmusic0xee ; no - ld a, c ; yes - cp CH4 - jr nc, .sfxChannel - call Music8_GetNextMusicByte - ld [$c0e8], a ; store first param - call Music8_GetNextMusicByte - ld [$c0e9], a ; store second param - xor a - ld [$c0ce], a ; clear RAM - ld [$c0cf], a - ld [$c0d0], a - ld [$c0d1], a - jr .musicChannelDone -.sfxChannel - call Music8_GetNextMusicByte - ld [$c0ea], a ; store first param - call Music8_GetNextMusicByte - ld [$c0eb], a ; store second param - xor a - ld [$c0d2], a ; clear RAM - ld [$c0d3], a - ld [$c0d4], a - ld [$c0d5], a -.musicChannelDone - jp Music8_endchannel - -Music8_unknownmusic0xee: ; 21b7b (8:5b7b) - cp $ee ; is this command an unknownmusic0xee? - jr nz, Music8_unknownmusic0xef ; no - call Music8_GetNextMusicByte ; yes - ld [$c004], a ; store first param - jp Music8_endchannel - -; this appears to never be used -Music8_unknownmusic0xef: ; 21b88 (8:5b88) - cp $ef ; is this command an unknownmusic0xef? - jr nz, Music8_dutycycle ; no - call Music8_GetNextMusicByte ; yes - push bc - call Func_22035 - pop bc - ld a, [$c003] - and a - jr nz, .skip - ld a, [$c02d] - ld [$c003], a - xor a - ld [$c02d], a -.skip - jp Music8_endchannel - -Music8_dutycycle: ; 21ba7 (8:5ba7) - cp $fc ; is this command a dutycycle? - jr nz, Music8_stereopanning ; no - call Music8_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c046 - add hl, bc - ld [hl], a ; store full cycle - and $c0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store first duty - ld hl, $c02e - add hl, bc - set 6, [hl] ; set dutycycle flag - jp Music8_endchannel - -Music8_stereopanning: ; 21bc5 (8:5bc5) - cp $f0 ; is this command a stereopanning? - jr nz, Music8_executemusic ; no - call Music8_GetNextMusicByte ; yes - ld [$FF00+$24], a - jp Music8_endchannel - -Music8_executemusic: ; 21bd1 (8:5bd1) - cp $f8 ; is this command an executemusic? - jr nz, Music8_octave ; no - ld b, $0 ; yes - ld hl, $c036 - add hl, bc - set 0, [hl] - jp Music8_endchannel - -Music8_octave: ; 21be0 (8:5be0) - and $f0 - cp $e0 ; is this command an octave? - jr nz, Music8_unknownsfx0x20 ; no - ld hl, $c0d6 ; yes - ld b, $0 - add hl, bc - ld a, d - and $f - ld [hl], a ; store low nibble as octave - jp Music8_endchannel - -Music8_unknownsfx0x20: ; 21bf3 - cp $20 ; is this command an unknownsfx0x20? - jr nz, Music8_unknownsfx0x10 ; no - ld a, c - cp CH3 ; is this a noise or sfx channel? - jr c, Music8_unknownsfx0x10 ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music8_unknownsfx0x10 ; no - call Music8_notelength - ld d, a - ld b, $0 - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a - ld b, $1 - call Func_21ff7 - ld [hl], d - call Music8_GetNextMusicByte - ld d, a - ld b, $2 - call Func_21ff7 - ld [hl], d - call Music8_GetNextMusicByte - ld e, a - ld a, c - cp CH7 - ld a, $0 - jr z, .sfxNoiseChannel ; only two params for noise channel - push de - call Music8_GetNextMusicByte - pop de -.sfxNoiseChannel - ld d, a - push de - call Func_21daa - call Func_21d79 - pop de - call Func_21dcc - ret - -Music8_unknownsfx0x10: ; 21c40 (8:5c40) - ld a, c - cp CH4 - jr c, Music8_note ; if not a sfx - ld a, d - cp $10 ; is this command a unknownsfx0x10? - jr nz, Music8_note ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music8_note ; no - call Music8_GetNextMusicByte ; yes - ld [$FF00+$10], a - jp Music8_endchannel - -Music8_note: ; 21c5c (8:5c5c) - ld a, c - cp CH3 - jr nz, Music8_notelength ; if not noise channel - ld a, d - and $f0 - cp $b0 ; is this command a dnote? - jr z, Music8_dnote ; yes - jr nc, Music8_notelength ; no - swap a - ld b, a - ld a, d - and $f - ld d, a - ld a, b - push de - push bc - jr asm_21c7e - -Music8_dnote: ; 21c76 (8:5c76) - ld a, d - and $f - push af - push bc - call Music8_GetNextMusicByte ; get dnote instrument -asm_21c7e - ld d, a - ld a, [$c003] - and a - jr nz, .asm_21c89 - ld a, d - call Func_22035 -.asm_21c89 - pop bc - pop de - -Music8_notelength: ; 21c8b (8:5c8b) - ld a, d - push af - and $f - inc a - ld b, $0 - ld e, a ; store note length (in 16ths) - ld d, b - ld hl, $c0c6 - add hl, bc - ld a, [hl] - ld l, b - call Func_22006 - ld a, c - cp CH4 - jr nc, .sfxChannel - ld a, [$c0e8] - ld d, a - ld a, [$c0e9] - ld e, a - jr .skip -.sfxChannel - ld d, $1 - ld e, $0 - cp CH7 - jr z, .skip ; if noise channel - call Func_21e2f - ld a, [$c0ea] - ld d, a - ld a, [$c0eb] - ld e, a -.skip - ld a, l - ld b, $0 - ld hl, $c0ce - add hl, bc - ld l, [hl] - call Func_22006 - ld e, l - ld d, h - ld hl, $c0ce - add hl, bc - ld [hl], e - ld a, d - ld hl, $c0b6 - add hl, bc - ld [hl], a - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music8_notepitch - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr z, Music8_notepitch - pop hl - ret - -Music8_notepitch: ; 21ce9 (8:5ce9) - pop af - and $f0 - cp $c0 ; compare to rest - jr nz, .notRest - ld a, c - cp CH4 - jr nc, .sfxChannel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .done - ; fall through -.sfxChannel - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notSfxChannel3 -.musicChannel3 - ld b, $0 - ld hl, Unknown_222de - add hl, bc - ld a, [$FF00+$25] - and [hl] - ld [$FF00+$25], a - jr .done -.notSfxChannel3 - ld b, $2 - call Func_21ff7 - ld a, $8 - ld [hli], a - inc hl - ld a, $80 - ld [hl], a -.done - ret -.notRest - swap a - ld b, $0 - ld hl, $c0d6 - add hl, bc - ld b, [hl] - call Func_22017 - ld b, $0 - ld hl, $c02e - add hl, bc - bit 4, [hl] - jr z, .asm_21d39 - call Func_21f4e -.asm_21d39 - push de - ld a, c - cp CH4 - jr nc, .skip ; if sfx channel - ld hl, $c02a - ld d, $0 - ld e, a - add hl, de - ld a, [hl] - and a - jr nz, .asm_21d4c - jr .skip -.asm_21d4c - pop de - ret -.skip - ld b, $0 - ld hl, $c0de - add hl, bc - ld d, [hl] - ld b, $2 - call Func_21ff7 - ld [hl], d - call Func_21daa - call Func_21d79 - pop de - ld b, $0 - ld hl, $c02e - add hl, bc - bit 0, [hl] - jr z, .asm_21d70 - inc e - jr nc, .asm_21d70 - inc d -.asm_21d70 - ld hl, $c066 - add hl, bc - ld [hl], e - call Func_21dcc - ret - -Func_21d79: ; 21d79 (8:5d79) - ld b, $0 - ld hl, Unknown_222e6 - add hl, bc - ld a, [$FF00+$25] - or [hl] - ld d, a - ld a, c - cp CH7 - jr z, .sfxNoiseChannel - cp CH4 - jr nc, .skip ; if sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .skip -.sfxNoiseChannel - ld a, [$c004] - ld hl, Unknown_222e6 - add hl, bc - and [hl] - ld d, a - ld a, [$FF00+$25] - ld hl, Unknown_222de - add hl, bc - and [hl] - or d - ld d, a -.skip - ld a, d - ld [$FF00+$25], a - ret - -Func_21daa: ; 21daa (8:5daa) - ld b, $0 - ld hl, $c0b6 - add hl, bc - ld d, [hl] - ld a, c - cp CH2 - jr z, .channel3 ; if music channel 3 - cp CH6 - jr z, .channel3 ; if sfx channel 3 - ld a, d - and $3f - ld d, a - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a -.channel3 - ld b, $1 - call Func_21ff7 - ld [hl], d - ret - -Func_21dcc: ; 21dcc (8:5dcc) - ld a, c - cp CH2 - jr z, .channel3 - cp CH6 - jr nz, .notSfxChannel3 - ; fall through -.channel3 - push de - ld de, $c0e6 - cp CH2 - jr z, .musicChannel3 - ld de, $c0e7 -.musicChannel3 - ld a, [de] - add a - ld d, $0 - ld e, a - ld hl, Music8_Channel3DutyPointers - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld hl, $ff30 - ld b, $f - ld a, $0 - ld [$FF00+$1a], a -.loop - ld a, [de] - inc de - ld [hli], a - ld a, b - dec b - and a - jr nz, .loop - ld a, $80 - ld [$FF00+$1a], a - pop de -.notSfxChannel3 - ld a, d - or $80 - and $c7 - ld d, a - ld b, $3 - call Func_21ff7 - ld [hl], e - inc hl - ld [hl], d - ld a, c - cp CH4 - jr c, .musicChannel - call Func_21e56 -.musicChannel - ret - -Func_21e19: ; 21e19 (8:5e19) - ld a, c - cp CH4 - jr nz, .asm_21e2e - ld a, [$d083] - bit 7, a - jr z, .asm_21e2e - xor a - ld [$c0f1], a - ld a, $80 - ld [$c0f2], a -.asm_21e2e - ret - -Func_21e2f: ; 21e2f (8:5e2f) - call Func_21e8b - jr c, .asm_21e39 - call Func_21e9f - jr nc, .asm_21e4c -.asm_21e39 - ld d, $0 - ld a, [$c0f2] - add $80 - jr nc, .asm_21e43 - inc d -.asm_21e43 - ld [$c0eb], a - ld a, d - ld [$c0ea], a - jr .asm_21e55 -.asm_21e4c - xor a - ld [$c0eb], a - ld a, $1 - ld [$c0ea], a -.asm_21e55 - ret - -Func_21e56: ; 21e56 (8:5e56) - call Func_21e8b - jr c, .asm_21e60 - call Func_21e9f - jr nc, .asm_21e6c -.asm_21e60 - ld a, [$c0f1] - add e - jr nc, .asm_21e67 - inc d -.asm_21e67 - dec hl - ld e, a - ld [hl], e - inc hl - ld [hl], d -.asm_21e6c - ret - -Func_21e6d: ; 21e6d (8:5e6d) - call Func_21e8b - jr nc, .asm_21e88 - ld hl, $c006 - ld e, c - ld d, $0 - sla e - rl d - add hl, de - ld a, [hl] - sub $1 - ld [hl], a - inc hl - ld a, [hl] - sbc $0 - ld [hl], a - scf - ret -.asm_21e88 - scf - ccf - ret - -Func_21e8b: ; 21e8b (8:5e8b) - ld a, [$c02a] - cp $14 - jr nc, .asm_21e94 - jr .asm_21e9a -.asm_21e94 - cp $86 - jr z, .asm_21e9a - jr c, .asm_21e9d -.asm_21e9a - scf - ccf - ret -.asm_21e9d - scf - ret - -Func_21e9f: ; 21e9f (8:5e9f) - ld a, [$c02d] - ld b, a - ld a, [$c02a] - or b - cp $9d - jr nc, .asm_21ead - jr .asm_21eb3 -.asm_21ead - cp $ea - jr z, .asm_21eb3 - jr c, .asm_21eb6 -.asm_21eb3 - scf - ccf - ret -.asm_21eb6 - scf - ret - -Music8_ApplyPitchBend: ; 21eb8 (8:5eb8) - ld hl, $c02e - add hl, bc - bit 5, [hl] - jp nz, .asm_21eff - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld l, [hl] - ld h, b - add hl, de - ld d, h - ld e, l - ld hl, $c08e - add hl, bc - push hl - ld hl, $c086 - add hl, bc - ld a, [hl] - pop hl - add [hl] - ld [hl], a - ld a, $0 - adc e - ld e, a - ld a, $0 - adc d - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - cp d - jp c, .asm_21f45 - jr nz, .asm_21f32 - ld hl, $c0ae - add hl, bc - ld a, [hl] - cp e - jp c, .asm_21f45 - jr .asm_21f32 -.asm_21eff - ld hl, $c09e - add hl, bc - ld a, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld e, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c086 - add hl, bc - ld a, [hl] - add a - ld [hl], a - ld a, e - sbc b - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, d - cp [hl] - jr c, .asm_21f45 - jr nz, .asm_21f32 - ld hl, $c0ae - add hl, bc - ld a, e - cp [hl] - jr c, .asm_21f45 -.asm_21f32 - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c096 - add hl, bc - ld [hl], d - ld b, $3 - call Func_21ff7 - ld a, e - ld [hli], a - ld [hl], d - ret -.asm_21f45 - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - ret - -Func_21f4e: ; 21f4e (8:5f4e) - ld hl, $c096 - add hl, bc - ld [hl], d - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c0b6 - add hl, bc - ld a, [hl] - ld hl, $c076 - add hl, bc - sub [hl] - jr nc, .asm_21f66 - ld a, $1 -.asm_21f66 - ld [hl], a - ld hl, $c0ae - add hl, bc - ld a, e - sub [hl] - ld e, a - ld a, d - sbc b - ld hl, $c0a6 - add hl, bc - sub [hl] - jr c, .asm_21f82 - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - set 5, [hl] - jr .asm_21fa5 -.asm_21f82 - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c0ae - add hl, bc - ld a, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - sub d - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - res 5, [hl] -.asm_21fa5 - ld hl, $c076 - add hl, bc -.asm_21fa9 - inc b - ld a, e - sub [hl] - ld e, a - jr nc, .asm_21fa9 - ld a, d - and a - jr z, .asm_21fb7 - dec a - ld d, a - jr .asm_21fa9 -.asm_21fb7 - ld a, e - add [hl] - ld d, b - ld b, $0 - ld hl, $c07e - add hl, bc - ld [hl], d - ld hl, $c086 - add hl, bc - ld [hl], a - ld hl, $c08e - add hl, bc - ld [hl], a - ret - -Music8_ApplyDutyCycle: ; 21fcc (8:5fcc) - ld b, $0 - ld hl, $c046 - add hl, bc - ld a, [hl] - rlca - rlca - ld [hl], a - and $c0 - ld d, a - ld b, $1 - call Func_21ff7 - ld a, [hl] - and $3f - or d - ld [hl], a - ret - -Music8_GetNextMusicByte: ; 21fe4 (8:5fe4) - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - ld a, [hli] - ld e, a - ld a, [hld] - ld d, a - ld a, [de] ; get next music command - inc de - ld [hl], e ; store address of next command - inc hl - ld [hl], d - ret - -Func_21ff7: ; 21ff7 (8:5ff7) - ld a, c - ld hl, Unknown_222d6 - add l - jr nc, .noCarry - inc h -.noCarry - ld l, a - ld a, [hl] - add b - ld l, a - ld h, $ff - ret - -Func_22006: ; 22006 (8:6006) - ld h, $0 -.loop - srl a - jr nc, .noCarry - add hl, de -.noCarry - sla e - rl d - and a - jr z, .done - jr .loop -.done - ret - -Func_22017: ; 22017 (8:6017) - ld h, $0 - ld l, a - add hl, hl - ld d, h - ld e, l - ld hl, Unknown_222ee - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld a, b -.loop - cp CH7 - jr z, .done - sra d - rr e - inc a - jr .loop -.done - ld a, $8 - add d - ld d, a - ret - -Func_22035: ; 22035 (8:6035) - ld [$c001], a - cp $ff - jp z, Func_221f3 - cp $e9 - jp z, Func_2210d - jp c, Func_2210d - cp $fe - jr z, .asm_2204c - jp nc, Func_2210d -.asm_2204c - xor a - ld [$c000], a - ld [$c003], a - ld [$c0e9], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $8 - ld hl, $c016 - call FillMusicRAM8 - ld hl, $c006 - call FillMusicRAM8 - ld d, $4 - ld hl, $c026 - call FillMusicRAM8 - ld hl, $c02e - call FillMusicRAM8 - ld hl, $c03e - call FillMusicRAM8 - ld hl, $c046 - call FillMusicRAM8 - ld hl, $c04e - call FillMusicRAM8 - ld hl, $c056 - call FillMusicRAM8 - ld hl, $c05e - call FillMusicRAM8 - ld hl, $c066 - call FillMusicRAM8 - ld hl, $c06e - call FillMusicRAM8 - ld hl, $c036 - call FillMusicRAM8 - ld hl, $c076 - call FillMusicRAM8 - ld hl, $c07e - call FillMusicRAM8 - ld hl, $c086 - call FillMusicRAM8 - ld hl, $c08e - call FillMusicRAM8 - ld hl, $c096 - call FillMusicRAM8 - ld hl, $c09e - call FillMusicRAM8 - ld hl, $c0a6 - call FillMusicRAM8 - ld hl, $c0ae - call FillMusicRAM8 - ld a, $1 - ld hl, $c0be - call FillMusicRAM8 - ld hl, $c0b6 - call FillMusicRAM8 - ld hl, $c0c6 - call FillMusicRAM8 - ld [$c0e8], a - ld a, $ff - ld [$c004], a - xor a - ld [$FF00+$24], a - ld a, $8 - ld [$FF00+$10], a - ld a, $0 - ld [$FF00+$25], a - xor a - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a - ld a, $77 - ld [$FF00+$24], a - jp Func_2224e - -Func_2210d: ; 2210d (8:610d) - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_08 - add hl, de - ld a, h - ld [$c0ec], a - ld a, l - ld [$c0ed], a - ld a, [hl] - and $c0 - rlca - rlca - ld c, a -.asm_22126 - ld d, c - ld a, c - add a - add c - ld c, a - ld b, $0 - ld a, [$c0ec] - ld h, a - ld a, [$c0ed] - ld l, a - add hl, bc - ld c, d - ld a, [hl] - and $f - ld e, a - ld d, $0 - ld hl, $c026 - add hl, de - ld a, [hl] - and a - jr z, .asm_22162 - ld a, e - cp $7 - jr nz, .asm_22159 - ld a, [$c001] - cp $14 - jr nc, .asm_22152 - ret -.asm_22152 - ld a, [hl] - cp $14 - jr z, .asm_22162 - jr c, .asm_22162 -.asm_22159 - ld a, [$c001] - cp [hl] - jr z, .asm_22162 - jr c, .asm_22162 - ret -.asm_22162 - xor a - push de - ld h, d - ld l, e - add hl, hl - ld d, h - ld e, l - ld hl, $c016 - add hl, de - ld [hli], a - ld [hl], a - ld hl, $c006 - add hl, de - ld [hli], a - ld [hl], a - pop de - ld hl, $c026 - add hl, de - ld [hl], a - ld hl, $c02e - add hl, de - ld [hl], a - ld hl, $c03e - add hl, de - ld [hl], a - ld hl, $c046 - add hl, de - ld [hl], a - ld hl, $c04e - add hl, de - ld [hl], a - ld hl, $c056 - add hl, de - ld [hl], a - ld hl, $c05e - add hl, de - ld [hl], a - ld hl, $c066 - add hl, de - ld [hl], a - ld hl, $c06e - add hl, de - ld [hl], a - ld hl, $c076 - add hl, de - ld [hl], a - ld hl, $c07e - add hl, de - ld [hl], a - ld hl, $c086 - add hl, de - ld [hl], a - ld hl, $c08e - add hl, de - ld [hl], a - ld hl, $c096 - add hl, de - ld [hl], a - ld hl, $c09e - add hl, de - ld [hl], a - ld hl, $c0a6 - add hl, de - ld [hl], a - ld hl, $c0ae - add hl, de - ld [hl], a - ld hl, $c036 - add hl, de - ld [hl], a - ld a, $1 - ld hl, $c0be - add hl, de - ld [hl], a - ld hl, $c0b6 - add hl, de - ld [hl], a - ld hl, $c0c6 - add hl, de - ld [hl], a - ld a, e - cp $4 - jr nz, .asm_221ea - ld a, $8 - ld [$FF00+$10], a -.asm_221ea - ld a, c - and a - jp z, Func_2224e - dec c - jp .asm_22126 - -Func_221f3: ; 221f3 (8:61f3) - ld a, $80 - ld [$FF00+$26], a - ld [$FF00+$1a], a - xor a - ld [$FF00+$25], a - ld [$FF00+$1c], a - ld a, $8 - ld [$FF00+$10], a - ld [$FF00+$12], a - ld [$FF00+$17], a - ld [$FF00+$21], a - ld a, $40 - ld [$FF00+$14], a - ld [$FF00+$19], a - ld [$FF00+$23], a - ld a, $77 - ld [$FF00+$24], a - xor a - ld [$c000], a - ld [$c003], a - ld [$c002], a - ld [$c0e9], a - ld [$c0eb], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $a0 - ld hl, $c006 - call FillMusicRAM8 - ld a, $1 - ld d, $18 - ld hl, $c0b6 - call FillMusicRAM8 - ld [$c0e8], a - ld [$c0ea], a - ld a, $ff - ld [$c004], a - ret - -; fills d bytes at hl with a -FillMusicRAM8: ; 22248 (8:6248) - ld b, d -.loop - ld [hli], a - dec b - jr nz, .loop - ret - -Func_2224e: ; 2224e (8:624e) - ld a, [$c001] - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_08 - add hl, de - ld e, l - ld d, h - ld hl, $c006 - ld a, [de] ; get channel number - ld b, a - rlca - rlca - and $3 - ld c, a - ld a, b - and $f - ld b, c - inc b - inc de - ld c, $0 -.asm_22270 - cp c - jr z, .asm_22278 - inc c - inc hl - inc hl - jr .asm_22270 -.asm_22278 - push hl - push bc - push af - ld b, $0 - ld c, a - ld hl, $c026 - add hl, bc - ld a, [$c001] - ld [hl], a - pop af - cp $3 - jr c, .asm_22291 - ld hl, $c02e - add hl, bc - set 2, [hl] -.asm_22291 - pop bc - pop hl - ld a, [de] ; get channel pointer - ld [hli], a - inc de - ld a, [de] - ld [hli], a - inc de - inc c - dec b - ld a, b - and a - ld a, [de] - inc de - jr nz, .asm_22270 - ld a, [$c001] - cp $14 - jr nc, .asm_222aa - jr .asm_222d4 -.asm_222aa - ld a, [$c001] - cp $86 - jr z, .asm_222d4 - jr c, .asm_222b5 - jr .asm_222d4 -.asm_222b5 - ld hl, $c02a - ld [hli], a - ld [hli], a - ld [hli], a - ld [hl], a - ld hl, $c012 ; sfx noise channel pointer - ld de, Noise8_endchannel - ld [hl], e - inc hl - ld [hl], d ; overwrite pointer to point to endchannel - ld a, [$c005] - and a - jr nz, .asm_222d4 - ld a, [$FF00+$24] - ld [$c005], a - ld a, $77 - ld [$FF00+$24], a -.asm_222d4 - ret - -Noise8_endchannel: ; 222d5 (8:62d5) - endchannel - -Unknown_222d6: ; 222d6 (8:62d6) - db $10, $15, $1A, $1F ; channels 0-3 - db $10, $15, $1A, $1F ; channels 4-7 - -Unknown_222de: ; 222de (8:62de) - db $EE, $DD, $BB, $77 ; channels 0-3 - db $EE, $DD, $BB, $77 ; channels 4-7 - -Unknown_222e6: ; 222e6 (8:62e6) - db $11, $22, $44, $88 ; channels 0-3 - db $11, $22, $44, $88 ; channels 4-7 - -Unknown_222ee: ; 222ee (8:62ee) - dw $F82C - dw $F89D - dw $F907 - dw $F96B - dw $F9CA - dw $FA23 - dw $FA77 - dw $FAC7 - dw $FB12 - dw $FB58 - dw $FB9B - dw $FBDA Music_PokeFluteInBattle: ; 22306 (8:6306) ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle @@ -120486,1684 +117085,9 @@ PokedexRatingSfxPointers: ; 7d162 (1f:5162) OwnedMonValues: ; 7d170 (1f:5170) db 10, 40, 60, 90, 120, 150, $ff -Func_7d177: ; 7d177 (1f:5177) - ld c, CH0 -.loop - ld b, $0 - ld hl, $c026 - add hl, bc - ld a, [hl] - and a - jr z, .nextChannel - ld a, c - cp CH4 - jr nc, .applyAffects ; if sfx channel - ld a, [$c002] - and a - jr z, .applyAffects - bit 7, a - jr nz, .nextChannel - set 7, a - ld [$c002], a - xor a - ld [$FF00+$25], a - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a - jr .nextChannel -.applyAffects - call Music1f_Music2_ApplyMusicAffects -.nextChannel - ld a, c - inc c ; inc channel number - cp CH7 - jr nz, .loop - ret -; this routine checks flags for music effects currently applied -; to the channel and calls certain functions based on flags. -; known flags for $c02e: -; 1: call has been used -; 3: a toggle used only by this routine for vibrato -; 4: pitchbend flag -; 6: dutycycle flag -Music1f_Music2_ApplyMusicAffects: ; 7d1ac (1f:51ac) - ld b, $0 - ld hl, $c0b6 ; delay until next note - add hl, bc - ld a, [hl] - cp $1 ; if delay is 1, play next note - jp z, Music1f_Music2_PlayNextNote - dec a ; otherwise, decrease the delay timer - ld [hl], a - ld a, c - cp CH4 - jr nc, .startChecks ; if a sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr z, .startChecks - ret -.startChecks - ld hl, $c02e - add hl, bc - bit 6, [hl] ; dutycycle - jr z, .checkForExecuteMusic - call Music1f_ApplyDutyCycle -.checkForExecuteMusic - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, .checkForPitchBend - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr nz, .disablePitchBendVibrato -.checkForPitchBend - ld hl, $c02e - add hl, bc - bit 4, [hl] ; pitchbend - jr z, .checkVibratoDelay - jp Music1f_ApplyPitchBend -.checkVibratoDelay - ld hl, $c04e ; vibrato delay - add hl, bc - ld a, [hl] - and a ; check if delay is over - jr z, .checkForVibrato - dec [hl] ; otherwise, dec delay -.disablePitchBendVibrato - ret -.checkForVibrato - ld hl, $c056 ; vibrato rate - add hl, bc - ld a, [hl] - and a - jr nz, .vibrato - ret ; no vibrato -.vibrato - ld d, a - ld hl, $c05e - add hl, bc - ld a, [hl] - and $f - and a - jr z, .vibratoAlreadyDone - dec [hl] ; apply vibrato pitch change - ret -.vibratoAlreadyDone - ld a, [hl] - swap [hl] - or [hl] - ld [hl], a ; reset the vibrato value and start again - ld hl, $c066 - add hl, bc - ld e, [hl] ; get note pitch - ld hl, $c02e - add hl, bc - bit 3, [hl] ; this is the only code that sets/resets bit three so - jr z, .unset ; it continuously alternates which path it takes - res 3, [hl] - ld a, d - and $f - ld d, a - ld a, e - sub d - jr nc, .noCarry - ld a, $0 -.noCarry - jr .done -.unset - set 3, [hl] - ld a, d - and $f0 - swap a - add e - jr nc, .done - ld a, $ff -.done - ld d, a - ld b, $3 - call Func_7d8ac - ld [hl], d - ret +INCLUDE "audio/engine_3.asm" -; this routine executes all music commands that take up no time, -; like tempo changes, duty changes etc. and doesn't return -; until the first note is reached -Music1f_Music2_PlayNextNote: ; 7d244 (1f:5244) - ld hl, $c06e - add hl, bc - ld a, [hl] - ld hl, $c04e - add hl, bc - ld [hl], a - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - call Music1f_endchannel - ret - -Music1f_endchannel: ; 7d25a (1f:525a) - call Music1f_GetNextMusicByte - ld d, a - cp $ff ; is this command an endchannel? - jp nz, Music1f_callchannel ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - bit 1, [hl] - jr nz, .returnFromCall - ld a, c - cp CH3 - jr nc, .noiseOrSfxChannel - jr .asm_7d2b3 -.noiseOrSfxChannel - res 2, [hl] - ld hl, $c036 - add hl, bc - res 0, [hl] - cp CH6 - jr nz, .notSfxChannel3 - ld a, $0 - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a -.notSfxChannel3 - jr nz, .asm_7d296 - ld a, [$c003] - and a - jr z, .asm_7d296 - xor a - ld [$c003], a - jr .asm_7d2b3 -.asm_7d296 - jr .asm_7d2bc -.returnFromCall - res 1, [hl] - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl ; store current channel address - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [de] - ld [hli], a - inc de - ld a, [de] - ld [hl], a ; loads channel address to return to - jp Music1f_endchannel -.asm_7d2b3 - ld hl, Unknown_7db93 - add hl, bc - ld a, [$FF00+$25] - and [hl] - ld [$FF00+$25], a -.asm_7d2bc - ld a, [$c02a] - cp $14 - jr nc, .asm_7d2c5 - jr .asm_7d2e2 -.asm_7d2c5 - ld a, [$c02a] - cp $86 - jr z, .asm_7d2e2 - jr c, .asm_7d2d0 - jr .asm_7d2e2 -.asm_7d2d0 - ld a, c - cp CH4 - jr z, .asm_7d2d9 - call Func_7d73b - ret c -.asm_7d2d9 - ld a, [$c005] - ld [$FF00+$24], a - xor a - ld [$c005], a -.asm_7d2e2 - ld hl, $c026 - add hl, bc - ld [hl], b - ret - -Music1f_callchannel: ; 7d2e8 (1f:52e8) - cp $fd ; is this command a callchannel? - jp nz, Music1f_loopchannel ; no - call Music1f_GetNextMusicByte ; yes - push af - call Music1f_GetNextMusicByte - ld d, a - pop af - ld e, a - push de ; store pointer - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - push hl - ld hl, $c016 - add hl, de - ld e, l - ld d, h - pop hl - ld a, [hli] - ld [de], a - inc de - ld a, [hld] - ld [de], a ; copy current channel address - pop de - ld [hl], e - inc hl - ld [hl], d ; overwrite current address with pointer - ld b, $0 - ld hl, $c02e - add hl, bc - set 1, [hl] ; set the call flag - jp Music1f_endchannel - -Music1f_loopchannel: ; 7d31d (1f:531d) - cp $fe ; is this command a loopchannel? - jp nz, Music1f_notetype ; no - call Music1f_GetNextMusicByte ; yes - ld e, a - and a - jr z, .infiniteLoop - ld b, $0 - ld hl, $c0be - add hl, bc - ld a, [hl] - cp e - jr nz, .loopAgain - ld a, $1 ; if no more loops to make - ld [hl], a - call Music1f_GetNextMusicByte ; skip pointer - call Music1f_GetNextMusicByte - jp Music1f_endchannel -.loopAgain ; inc loop count - inc a - ld [hl], a - ; fall through -.infiniteLoop ; overwrite current address with pointer - call Music1f_GetNextMusicByte - push af - call Music1f_GetNextMusicByte - ld b, a - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - pop af - ld [hli], a - ld [hl], b - jp Music1f_endchannel - -Music1f_notetype: ; 7d358 (1f:5358) - and $f0 - cp $d0 ; is this command a notetype? - jp nz, Music1f_togglecall ; no - ld a, d ; yes - and $f - ld b, $0 - ld hl, $c0c6 - add hl, bc - ld [hl], a ; store low nibble as speed - ld a, c - cp CH3 - jr z, .noiseChannel ; noise channel has 0 params - call Music1f_GetNextMusicByte - ld d, a - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notChannel3 - ld hl, $c0e7 - jr .sfxChannel3 -.musicChannel3 - ld hl, $c0e6 -.sfxChannel3 - ld a, d - and $f - ld [hl], a ; store low nibble of param as duty - ld a, d - and $30 - sla a - ld d, a - ; fall through - - ; if channel 3, store high nibble as volume - ; else, store volume (high nibble) and fade (low nibble) -.notChannel3 - ld b, $0 - ld hl, $c0de - add hl, bc - ld [hl], d -.noiseChannel - jp Music1f_endchannel - -Music1f_togglecall: ; 7d397 (1f:5397) - ld a, d - cp $e8 ; is this command an togglecall? - jr nz, Music1f_vibrato ; no - ld b, $0 ; yes - ld hl, $c02e - add hl, bc - ld a, [hl] - xor $1 - ld [hl], a ; flip bit 0 of $c02e (toggle returning from call) - jp Music1f_endchannel - -Music1f_vibrato: ; 7d3a9 (1f:53a9) - cp $ea ; is this command a vibrato? - jr nz, Music1f_pitchbend ; no - call Music1f_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c04e - add hl, bc - ld [hl], a ; store delay - ld hl, $c06e - add hl, bc - ld [hl], a ; store delay - call Music1f_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, $0 - ld hl, $c056 - add hl, bc - srl a - ld e, a - adc b - swap a - or e - ld [hl], a ; store rate as both high and low nibbles - ld a, d - and $f - ld d, a - ld hl, $c05e - add hl, bc - swap a - or d - ld [hl], a ; store depth as both high and low nibbles - jp Music1f_endchannel - -Music1f_pitchbend: ; 7d3e1 (1f:53e1) - cp $eb ; is this command a pitchbend? - jr nz, Music1f_duty ; no - call Music1f_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c076 - add hl, bc - ld [hl], a ; store first param - call Music1f_GetNextMusicByte - ld d, a - and $f0 - swap a - ld b, a - ld a, d - and $f - call Func_7d8cc - ld b, $0 - ld hl, $c0a6 - add hl, bc - ld [hl], d ; store unknown part of second param - ld hl, $c0ae - add hl, bc - ld [hl], e ; store unknown part of second param - ld b, $0 - ld hl, $c02e - add hl, bc - set 4, [hl] ; set pitchbend flag - call Music1f_GetNextMusicByte - ld d, a - jp Music1f_notelength - -Music1f_duty: ; 7d419 (1f:5419) - cp $ec ; is this command a duty? - jr nz, Music1f_tempo ; no - call Music1f_GetNextMusicByte ; yes - rrca - rrca - and $c0 - ld b, $0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store duty - jp Music1f_endchannel - -Music1f_tempo: ; 7d42e (1f:542e) - cp $ed ; is this command a tempo? - jr nz, Music1f_unknownmusic0xee ; no - ld a, c ; yes - cp CH4 - jr nc, .sfxChannel - call Music1f_GetNextMusicByte - ld [$c0e8], a ; store first param - call Music1f_GetNextMusicByte - ld [$c0e9], a ; store second param - xor a - ld [$c0ce], a ; clear RAM - ld [$c0cf], a - ld [$c0d0], a - ld [$c0d1], a - jr .musicChannelDone -.sfxChannel - call Music1f_GetNextMusicByte - ld [$c0ea], a ; store first param - call Music1f_GetNextMusicByte - ld [$c0eb], a ; store second param - xor a - ld [$c0d2], a ; clear RAM - ld [$c0d3], a - ld [$c0d4], a - ld [$c0d5], a -.musicChannelDone - jp Music1f_endchannel - -Music1f_unknownmusic0xee: ; 7d46e (1f:546e) - cp $ee ; is this command an unknownmusic0xee? - jr nz, Music1f_unknownmusic0xef ; no - call Music1f_GetNextMusicByte ; yes - ld [$c004], a ; store first param - jp Music1f_endchannel - -; this appears to never be used -Music1f_unknownmusic0xef: ; 7d47b (1f:547b) - cp $ef ; is this command an unknownmusic0xef? - jr nz, Music1f_dutycycle ; no - call Music1f_GetNextMusicByte ; yes - push bc - call Func_7d8ea - pop bc - ld a, [$c003] - and a - jr nz, .skip - ld a, [$c02d] - ld [$c003], a - xor a - ld [$c02d], a -.skip - jp Music1f_endchannel - -Music1f_dutycycle: ; 7d49a (1f:549a) - cp $fc ; is this command a dutycycle? - jr nz, Music1f_stereopanning ; no - call Music1f_GetNextMusicByte ; yes - ld b, $0 - ld hl, $c046 - add hl, bc - ld [hl], a ; store full cycle - and $c0 - ld hl, $c03e - add hl, bc - ld [hl], a ; store first duty - ld hl, $c02e - add hl, bc - set 6, [hl] ; set duty flag - jp Music1f_endchannel - -Music1f_stereopanning: ; 7d4b8 (1f:54b8) - cp $f0 ; is this command a stereopanning? - jr nz, Music1f_executemusic ; no - call Music1f_GetNextMusicByte ; yes - ld [$FF00+$24], a ; store stereopanning - jp Music1f_endchannel - -Music1f_executemusic: ; 7d4c4 (1f:54c4) - cp $f8 ; is this command an executemusic? - jr nz, Music1f_octave ; no - ld b, $0 ; yes - ld hl, $c036 - add hl, bc - set 0, [hl] - jp Music1f_endchannel - -Music1f_octave: ; 7d4d3 (1f:54d3) - and $f0 - cp $e0 ; is this command an octave? - jr nz, Music1f_unknownsfx0x20 ; no - ld hl, $c0d6 ; yes - ld b, $0 - add hl, bc - ld a, d - and $f - ld [hl], a ; store low nibble as octave - jp Music1f_endchannel - -Music1f_unknownsfx0x20: ; 7d4e6 (1f:54e6) - cp $20 ; is this command an unknownsfx0x20? - jr nz, Music1f_unknownsfx0x10 ; no - ld a, c - cp CH3 ; is this a noise or sfx channel? - jr c, Music1f_unknownsfx0x10 ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music1f_unknownsfx0x10 ; no - call Music1f_notelength ; yes - ld d, a - ld b, $0 - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a - ld b, $1 - call Func_7d8ac - ld [hl], d - call Music1f_GetNextMusicByte - ld d, a - ld b, $2 - call Func_7d8ac - ld [hl], d - call Music1f_GetNextMusicByte - ld e, a - ld a, c - cp CH7 - ld a, $0 - jr z, .sfxNoiseChannel ; only two params for noise channel - push de - call Music1f_GetNextMusicByte - pop de -.sfxNoiseChannel - ld d, a - push de - call Func_7d69d - call Func_7d66c - pop de - call Func_7d6bf - ret - -Music1f_unknownsfx0x10 ; 7d533 (1f:5533) - ld a, c - cp CH4 - jr c, Music1f_note ; if not a sfx - ld a, d - cp $10 ; is this command an unknownsfx0x10? - jr nz, Music1f_note ; no - ld b, $0 - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music1f_note ; no - call Music1f_GetNextMusicByte ; yes - ld [$FF00+$10], a - jp Music1f_endchannel - -Music1f_note: ; 7d54f (1f:554f) - ld a, c - cp CH3 - jr nz, Music1f_notelength ; if not noise channel - ld a, d - and $f0 - cp $b0 ; is this command a dnote? - jr z, Music1f_dnote ; yes - jr nc, Music1f_notelength ; no - swap a - ld b, a - ld a, d - and $f - ld d, a - ld a, b - push de - push bc - jr asm_7d571 - -Music1f_dnote: ; 7d569 (1f:5569) - ld a, d - and $f - push af - push bc - call Music1f_GetNextMusicByte ; get dnote instrument -asm_7d571 - ld d, a - ld a, [$c003] - and a - jr nz, .asm_7d57c - ld a, d - call Func_7d8ea -.asm_7d57c - pop bc - pop de - -Music1f_notelength: ; 7d57e (1f:557e) - ld a, d - push af - and $f - inc a - ld b, $0 - ld e, a ; store note length (in 16ths) - ld d, b - ld hl, $c0c6 - add hl, bc - ld a, [hl] - ld l, b - call Func_7d8bb - ld a, c - cp CH4 - jr nc, .sfxChannel - ld a, [$c0e8] - ld d, a - ld a, [$c0e9] - ld e, a - jr .skip -.sfxChannel - ld d, $1 - ld e, $0 - cp CH7 - jr z, .skip ; if noise channel - call Func_7d707 - ld a, [$c0ea] - ld d, a - ld a, [$c0eb] - ld e, a -.skip - ld a, l - ld b, $0 - ld hl, $c0ce - add hl, bc - ld l, [hl] - call Func_7d8bb - ld e, l - ld d, h - ld hl, $c0ce - add hl, bc - ld [hl], e - ld a, d - ld hl, $c0b6 - add hl, bc - ld [hl], a - ld hl, $c036 - add hl, bc - bit 0, [hl] - jr nz, Music1f_notepitch - ld hl, $c02e - add hl, bc - bit 2, [hl] - jr z, Music1f_notepitch - pop hl - ret - -Music1f_notepitch: ; 7d5dc (1f:55dc) - pop af - and $f0 - cp $c0 ; compare to rest - jr nz, .notRest - ld a, c - cp CH4 - jr nc, .sfxChannel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .quit - ; fall through -.sfxChannel - ld a, c - cp CH2 - jr z, .musicChannel3 - cp CH6 - jr nz, .notSfxChannel3 -.musicChannel3 - ld b, $0 - ld hl, Unknown_7db93 - add hl, bc - ld a, [$FF00+$25] - and [hl] - ld [$FF00+$25], a - jr .quit -.notSfxChannel3 - ld b, $2 - call Func_7d8ac - ld a, $8 - ld [hli], a - inc hl - ld a, $80 - ld [hl], a -.quit - ret -.notRest - swap a - ld b, $0 - ld hl, $c0d6 - add hl, bc - ld b, [hl] - call Func_7d8cc - ld b, $0 - ld hl, $c02e - add hl, bc - bit 4, [hl] - jr z, .asm_7d62c - call Func_7d803 -.asm_7d62c - push de - ld a, c - cp CH4 - jr nc, .skip ; if sfx Channel - ld hl, $c02a - ld d, $0 - ld e, a - add hl, de - ld a, [hl] - and a - jr nz, .done - jr .skip -.done - pop de - ret -.skip - ld b, $0 - ld hl, $c0de - add hl, bc - ld d, [hl] - ld b, $2 - call Func_7d8ac - ld [hl], d - call Func_7d69d - call Func_7d66c - pop de - ld b, $0 - ld hl, $c02e - add hl, bc - bit 0, [hl] - jr z, .asm_7d663 - inc e - jr nc, .asm_7d663 - inc d -.asm_7d663 - ld hl, $c066 - add hl, bc - ld [hl], e - call Func_7d6bf - ret - -Func_7d66c: ; 7d66c (1f:566c) - ld b, $0 - ld hl, Unknown_7db9b - add hl, bc - ld a, [$FF00+$25] - or [hl] - ld d, a - ld a, c - cp CH7 - jr z, .sfxNoiseChannel - cp CH4 - jr nc, .skip ; if sfx channel - ld hl, $c02a - add hl, bc - ld a, [hl] - and a - jr nz, .skip -.sfxNoiseChannel - ld a, [$c004] - ld hl, Unknown_7db9b - add hl, bc - and [hl] - ld d, a - ld a, [$FF00+$25] - ld hl, Unknown_7db93 - add hl, bc - and [hl] - or d - ld d, a -.skip - ld a, d - ld [$FF00+$25], a - ret - -Func_7d69d: ; 7d69d (1f:569d) - ld b, $0 - ld hl, $c0b6 - add hl, bc - ld d, [hl] - ld a, c - cp CH2 - jr z, .channel3 ; if music channel 3 - cp CH6 - jr z, .channel3 ; if sfx channel 3 - ld a, d - and $3f - ld d, a - ld hl, $c03e - add hl, bc - ld a, [hl] - or d - ld d, a -.channel3 - ld b, $1 - call Func_7d8ac - ld [hl], d - ret - -Func_7d6bf: ; 7d6bf (1f:56bf) - ld a, c - cp CH2 - jr z, .channel3 - cp CH6 - jr nz, .notSfxChannel3 - ; fall through -.channel3 - push de - ld de, $c0e6 - cp CH2 - jr z, .musicChannel3 - ld de, $c0e7 -.musicChannel3 - ld a, [de] - add a - ld d, $0 - ld e, a - ld hl, Music1f_Channel3DutyPointers - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld hl, $ff30 - ld b, $f - ld a, $0 - ld [$FF00+$1a], a -.loop - ld a, [de] - inc de - ld [hli], a - ld a, b - dec b - and a - jr nz, .loop - ld a, $80 - ld [$FF00+$1a], a - pop de -.notSfxChannel3 - ld a, d - or $80 - and $c7 - ld d, a - ld b, $3 - call Func_7d8ac - ld [hl], e - inc hl - ld [hl], d - call Func_7d729 - ret - -Func_7d707: ; 7d707 (1f:5707) - call Func_7d759 - jr nc, .asm_7d71f - ld d, $0 - ld a, [$c0f2] - add $80 - jr nc, .asm_7d716 - inc d -.asm_7d716 - ld [$c0eb], a - ld a, d - ld [$c0ea], a - jr .asm_7d728 -.asm_7d71f - xor a - ld [$c0eb], a - ld a, $1 - ld [$c0ea], a -.asm_7d728 - ret - -Func_7d729: ; 7d729 (1f:5729) - call Func_7d759 - jr nc, .asm_7d73a - ld a, [$c0f1] - add e - jr nc, .asm_7d735 - inc d -.asm_7d735 - dec hl - ld e, a - ld [hl], e - inc hl - ld [hl], d -.asm_7d73a - ret - -Func_7d73b: ; 7d73b (1f:573b) - call Func_7d759 - jr nc, .asm_7d756 - ld hl, $c006 - ld e, c - ld d, $0 - sla e - rl d - add hl, de - ld a, [hl] - sub $1 - ld [hl], a - inc hl - ld a, [hl] - sbc $0 - ld [hl], a - scf - ret -.asm_7d756 - scf - ccf - ret - -Func_7d759: ; 7d759 (1f:5759) - ld a, [$c02a] - cp $14 - jr nc, .asm_7d762 - jr .asm_7d768 -.asm_7d762 - cp $86 - jr z, .asm_7d768 - jr c, .asm_7d76b -.asm_7d768 - scf - ccf - ret -.asm_7d76b - scf - ret - -Music1f_ApplyPitchBend: ; 7d76d (1f:576d) - ld hl, $c02e - add hl, bc - bit 5, [hl] - jp nz, .asm_7d7b4 - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld l, [hl] - ld h, b - add hl, de - ld d, h - ld e, l - ld hl, $c08e - add hl, bc - push hl - ld hl, $c086 - add hl, bc - ld a, [hl] - pop hl - add [hl] - ld [hl], a - ld a, $0 - adc e - ld e, a - ld a, $0 - adc d - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - cp d - jp c, .asm_7d7fa - jr nz, .asm_7d7e7 - ld hl, $c0ae - add hl, bc - ld a, [hl] - cp e - jp c, .asm_7d7fa - jr .asm_7d7e7 -.asm_7d7b4 - ld hl, $c09e - add hl, bc - ld a, [hl] - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c07e - add hl, bc - ld e, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c086 - add hl, bc - ld a, [hl] - add a - ld [hl], a - ld a, e - sbc b - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, d - cp [hl] - jr c, .asm_7d7fa - jr nz, .asm_7d7e7 - ld hl, $c0ae - add hl, bc - ld a, e - cp [hl] - jr c, .asm_7d7fa -.asm_7d7e7 - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c096 - add hl, bc - ld [hl], d - ld b, $3 - call Func_7d8ac - ld a, e - ld [hli], a - ld [hl], d - ret -.asm_7d7fa - ld hl, $c02e - add hl, bc - res 4, [hl] - res 5, [hl] - ret - -Func_7d803: ; 7d803 (1f:5803) - ld hl, $c096 - add hl, bc - ld [hl], d - ld hl, $c09e - add hl, bc - ld [hl], e - ld hl, $c0b6 - add hl, bc - ld a, [hl] - ld hl, $c076 - add hl, bc - sub [hl] - jr nc, .asm_7d81b - ld a, $1 -.asm_7d81b - ld [hl], a - ld hl, $c0ae - add hl, bc - ld a, e - sub [hl] - ld e, a - ld a, d - sbc b - ld hl, $c0a6 - add hl, bc - sub [hl] - jr c, .asm_7d837 - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - set 5, [hl] - jr .asm_7d85a -.asm_7d837 - ld hl, $c096 - add hl, bc - ld d, [hl] - ld hl, $c09e - add hl, bc - ld e, [hl] - ld hl, $c0ae - add hl, bc - ld a, [hl] - sub e - ld e, a - ld a, d - sbc b - ld d, a - ld hl, $c0a6 - add hl, bc - ld a, [hl] - sub d - ld d, a - ld b, $0 - ld hl, $c02e - add hl, bc - res 5, [hl] -.asm_7d85a - ld hl, $c076 - add hl, bc -.asm_7d85e - inc b - ld a, e - sub [hl] - ld e, a - jr nc, .asm_7d85e - ld a, d - and a - jr z, .asm_7d86c - dec a - ld d, a - jr .asm_7d85e -.asm_7d86c - ld a, e - add [hl] - ld d, b - ld b, $0 - ld hl, $c07e - add hl, bc - ld [hl], d - ld hl, $c086 - add hl, bc - ld [hl], a - ld hl, $c08e - add hl, bc - ld [hl], a - ret - -Music1f_ApplyDutyCycle: ; 7d881 (1f:5881) - ld b, $0 - ld hl, $c046 - add hl, bc - ld a, [hl] - rlca - rlca - ld [hl], a - and $c0 - ld d, a - ld b, $1 - call Func_7d8ac - ld a, [hl] - and $3f - or d - ld [hl], a - ret - -Music1f_GetNextMusicByte: ; 7d899 (1f:5899) - ld d, $0 - ld a, c - add a - ld e, a - ld hl, $c006 - add hl, de - ld a, [hli] - ld e, a - ld a, [hld] - ld d, a - ld a, [de] ; get next music command - inc de - ld [hl], e ; store address of next command - inc hl - ld [hl], d - ret - -Func_7d8ac: ; 7d8ac (1f:58ac) - ld a, c - ld hl, Unknown_7db8b - add l - jr nc, .noCarry - inc h -.noCarry - ld l, a - ld a, [hl] - add b - ld l, a - ld h, $ff - ret - -Func_7d8bb: ; 7d8bb (1f:58bb) - ld h, $0 -.loop - srl a - jr nc, .noCarry - add hl, de -.noCarry - sla e - rl d - and a - jr z, .done - jr .loop -.done - ret - -Func_7d8cc: ; 7d8cc (1f:58cc) - ld h, $0 - ld l, a - add hl, hl - ld d, h - ld e, l - ld hl, Unknown_7dba3 - add hl, de - ld e, [hl] - inc hl - ld d, [hl] - ld a, b -.loop - cp $7 - jr z, .done - sra d - rr e - inc a - jr .loop -.done - ld a, $8 - add d - ld d, a - ret - -Func_7d8ea: ; 7d8ea (1f:58ea) - ld [$c001], a - cp $ff - jp z, Func_7daa8 - cp $c2 - jp z, Func_7d9c2 - jp c, Func_7d9c2 - cp $fe - jr z, .asm_7d901 - jp nc, Func_7d9c2 -.asm_7d901 - xor a - ld [$c000], a - ld [$c003], a - ld [$c0e9], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $8 - ld hl, $c016 - call FillMusicRAM1f - ld hl, $c006 - call FillMusicRAM1f - ld d, $4 - ld hl, $c026 - call FillMusicRAM1f - ld hl, $c02e - call FillMusicRAM1f - ld hl, $c03e - call FillMusicRAM1f - ld hl, $c046 - call FillMusicRAM1f - ld hl, $c04e - call FillMusicRAM1f - ld hl, $c056 - call FillMusicRAM1f - ld hl, $c05e - call FillMusicRAM1f - ld hl, $c066 - call FillMusicRAM1f - ld hl, $c06e - call FillMusicRAM1f - ld hl, $c036 - call FillMusicRAM1f - ld hl, $c076 - call FillMusicRAM1f - ld hl, $c07e - call FillMusicRAM1f - ld hl, $c086 - call FillMusicRAM1f - ld hl, $c08e - call FillMusicRAM1f - ld hl, $c096 - call FillMusicRAM1f - ld hl, $c09e - call FillMusicRAM1f - ld hl, $c0a6 - call FillMusicRAM1f - ld hl, $c0ae - call FillMusicRAM1f - ld a, $1 - ld hl, $c0be - call FillMusicRAM1f - ld hl, $c0b6 - call FillMusicRAM1f - ld hl, $c0c6 - call FillMusicRAM1f - ld [$c0e8], a - ld a, $ff - ld [$c004], a - xor a - ld [$FF00+$24], a - ld a, $8 - ld [$FF00+$10], a - ld a, $0 - ld [$FF00+$25], a - xor a - ld [$FF00+$1a], a - ld a, $80 - ld [$FF00+$1a], a - ld a, $77 - ld [$FF00+$24], a - jp Func_7db03 - -Func_7d9c2: ; 7d9c2 (1f:59c2) - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_1f - add hl, de - ld a, h - ld [$c0ec], a - ld a, l - ld [$c0ed], a - ld a, [hl] - and $c0 - rlca - rlca - ld c, a -.asm_7d9db - ld d, c - ld a, c - add a - add c - ld c, a - ld b, $0 - ld a, [$c0ec] - ld h, a - ld a, [$c0ed] - ld l, a - add hl, bc - ld c, d - ld a, [hl] - and $f - ld e, a - ld d, $0 - ld hl, $c026 - add hl, de - ld a, [hl] - and a - jr z, .asm_7da17 - ld a, e - cp $7 - jr nz, .asm_7da0e - ld a, [$c001] - cp $14 - jr nc, .asm_7da07 - ret -.asm_7da07 - ld a, [hl] - cp $14 - jr z, .asm_7da17 - jr c, .asm_7da17 -.asm_7da0e - ld a, [$c001] - cp [hl] - jr z, .asm_7da17 - jr c, .asm_7da17 - ret -.asm_7da17 - xor a - push de - ld h, d - ld l, e - add hl, hl - ld d, h - ld e, l - ld hl, $c016 - add hl, de - ld [hli], a - ld [hl], a - ld hl, $c006 - add hl, de - ld [hli], a - ld [hl], a - pop de - ld hl, $c026 - add hl, de - ld [hl], a - ld hl, $c02e - add hl, de - ld [hl], a - ld hl, $c03e - add hl, de - ld [hl], a - ld hl, $c046 - add hl, de - ld [hl], a - ld hl, $c04e - add hl, de - ld [hl], a - ld hl, $c056 - add hl, de - ld [hl], a - ld hl, $c05e - add hl, de - ld [hl], a - ld hl, $c066 - add hl, de - ld [hl], a - ld hl, $c06e - add hl, de - ld [hl], a - ld hl, $c076 - add hl, de - ld [hl], a - ld hl, $c07e - add hl, de - ld [hl], a - ld hl, $c086 - add hl, de - ld [hl], a - ld hl, $c08e - add hl, de - ld [hl], a - ld hl, $c096 - add hl, de - ld [hl], a - ld hl, $c09e - add hl, de - ld [hl], a - ld hl, $c0a6 - add hl, de - ld [hl], a - ld hl, $c0ae - add hl, de - ld [hl], a - ld hl, $c036 - add hl, de - ld [hl], a - ld a, $1 - ld hl, $c0be - add hl, de - ld [hl], a - ld hl, $c0b6 - add hl, de - ld [hl], a - ld hl, $c0c6 - add hl, de - ld [hl], a - ld a, e - cp $4 - jr nz, .asm_7da9f - ld a, $8 - ld [$FF00+$10], a -.asm_7da9f - ld a, c - and a - jp z, Func_7db03 - dec c - jp .asm_7d9db - -Func_7daa8: ; 7daa8 (1f:5aa8) - ld a, $80 - ld [$FF00+$26], a - ld [$FF00+$1a], a - xor a - ld [$FF00+$25], a - ld [$FF00+$1c], a - ld a, $8 - ld [$FF00+$10], a - ld [$FF00+$12], a - ld [$FF00+$17], a - ld [$FF00+$21], a - ld a, $40 - ld [$FF00+$14], a - ld [$FF00+$19], a - ld [$FF00+$23], a - ld a, $77 - ld [$FF00+$24], a - xor a - ld [$c000], a - ld [$c003], a - ld [$c002], a - ld [$c0e9], a - ld [$c0eb], a - ld [$c0e6], a - ld [$c0e7], a - ld d, $a0 - ld hl, $c006 - call FillMusicRAM1f - ld a, $1 - ld d, $18 - ld hl, $c0b6 - call FillMusicRAM1f - ld [$c0e8], a - ld [$c0ea], a - ld a, $ff - ld [$c004], a - ret - -; fills d bytes at hl with a -FillMusicRAM1f: ; 7dafd (1f:5afd) - ld b, d -.loop - ld [hli], a - dec b - jr nz, .loop - ret - -Func_7db03: ; 7db03 (1f:5b03) - ld a, [$c001] - ld l, a - ld e, a - ld h, $0 - ld d, h - add hl, hl - add hl, de - ld de, SFX_Headers_1f - add hl, de - ld e, l - ld d, h - ld hl, $c006 - ld a, [de] ; get channel number - ld b, a - rlca - rlca - and $3 - ld c, a - ld a, b - and $f - ld b, c - inc b - inc de - ld c, $0 -.asm_7db25 - cp c - jr z, .asm_7db2d - inc c - inc hl - inc hl - jr .asm_7db25 -.asm_7db2d - push hl - push bc - push af - ld b, $0 - ld c, a - ld hl, $c026 - add hl, bc - ld a, [$c001] - ld [hl], a - pop af - cp $3 - jr c, .asm_7db46 - ld hl, $c02e - add hl, bc - set 2, [hl] -.asm_7db46 - pop bc - pop hl - ld a, [de] ; get channel pointer - ld [hli], a - inc de - ld a, [de] - ld [hli], a - inc de - inc c - dec b - ld a, b - and a - ld a, [de] - inc de - jr nz, .asm_7db25 - ld a, [$c001] - cp $14 - jr nc, .asm_7db5f - jr .asm_7db89 -.asm_7db5f - ld a, [$c001] - cp $86 - jr z, .asm_7db89 - jr c, .asm_7db6a - jr .asm_7db89 -.asm_7db6a - ld hl, $c02a - ld [hli], a - ld [hli], a - ld [hli], a - ld [hl], a - ld hl, $c012 ; sfx noise channel pointer - ld de, Noise1f_endchannel - ld [hl], e - inc hl - ld [hl], d ; overwrite pointer to point to endchannel - ld a, [$c005] - and a - jr nz, .asm_7db89 - ld a, [$FF00+$24] - ld [$c005], a - ld a, $77 - ld [$FF00+$24], a -.asm_7db89 - ret - -Noise1f_endchannel: ; 7db8a (1f:5b8a) - endchannel - -Unknown_7db8b: ; 7db8b (1f:5b8b) - db $10, $15, $1A, $1F ; channels 0-3 - db $10, $15, $1A, $1F ; channels 4-7 - -Unknown_7db93: ; 7db93 (1f:5b93) - db $EE, $DD, $BB, $77 ; channels 0-3 - db $EE, $DD, $BB, $77 ; channels 4-7 - -Unknown_7db9b: ; 7db9b (1f:5b9b) - db $11, $22, $44, $88 ; channels 0-3 - db $11, $22, $44, $88 ; channels 4-7 - -Unknown_7dba3: ; 7dba3 (1f:5ba3) - dw $F82C - dw $F89D - dw $F907 - dw $F96B - dw $F9CA - dw $FA23 - dw $FA77 - dw $FAC7 - dw $FB12 - dw $FB58 - dw $FB9B - dw $FBDA INCLUDE "music/bikeriding.asm" INCLUDE "music/dungeon1.asm" From 5acb7d8294525c63b9cc5bf66229f6ca2ab9847f Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 7 Jan 2014 19:13:37 -0500 Subject: [PATCH 02/41] dedicated version includes --- blue.asm | 2 ++ pokeblue.asm | 3 +-- pokered.asm | 3 +-- red.asm | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 blue.asm create mode 100644 red.asm diff --git a/blue.asm b/blue.asm new file mode 100644 index 00000000..abbd4b0f --- /dev/null +++ b/blue.asm @@ -0,0 +1,2 @@ +_BLUE EQU 1 +_RED EQU 0 diff --git a/pokeblue.asm b/pokeblue.asm index dd621ca4..254e4b38 100644 --- a/pokeblue.asm +++ b/pokeblue.asm @@ -1,5 +1,4 @@ -_RED EQU 0 -_BLUE EQU 1 +INCLUDE "blue.asm" INCLUDE "globals.asm" INCLUDE "wram.asm" INCLUDE "main.asm" diff --git a/pokered.asm b/pokered.asm index bcc826c8..c2d3a507 100644 --- a/pokered.asm +++ b/pokered.asm @@ -1,5 +1,4 @@ -_RED EQU 1 -_BLUE EQU 0 +INCLUDE "red.asm" INCLUDE "globals.asm" INCLUDE "wram.asm" INCLUDE "main.asm" diff --git a/red.asm b/red.asm new file mode 100644 index 00000000..882bf66a --- /dev/null +++ b/red.asm @@ -0,0 +1,2 @@ +_RED EQU 1 +_BLUE EQU 0 From 10bb09c4e210ab8d922081a221ce4833b5d50def Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 02:59:53 -0500 Subject: [PATCH 03/41] split audio components into audio_red.o and audio_blue.o --- Makefile | 9 +- audio.asm | 778 +++++++++++++++++++++++++++++ audio_blue.asm | 2 + audio_red.asm | 2 + main.asm | 1294 +----------------------------------------------- menu/pc.asm | 588 ++++++++++++++++++++++ 6 files changed, 1378 insertions(+), 1295 deletions(-) create mode 100644 audio.asm create mode 100644 audio_blue.asm create mode 100644 audio_red.asm create mode 100644 menu/pc.asm diff --git a/Makefile b/Makefile index 0d2d88df..a61875e9 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,13 @@ PYTHON := python TEXTQUEUE := -RED_OBJS := pokered.o -BLUE_OBJS := pokeblue.o +RED_OBJS := \ +pokered.o \ +audio_red.o + +BLUE_OBJS := \ +pokeblue.o \ +audio_blue.o OBJS := $(RED_OBJS) $(BLUE_OBJS) diff --git a/audio.asm b/audio.asm new file mode 100644 index 00000000..c2e0db45 --- /dev/null +++ b/audio.asm @@ -0,0 +1,778 @@ +INCLUDE "globals.asm" + +AUDIO_1 EQU $2 +AUDIO_2 EQU $8 +AUDIO_3 EQU $1f + +INCLUDE "macros.asm" +INCLUDE "constants/trainer_constants.asm" + +; PC +INCLUDE "hram.asm" +INCLUDE "constants/move_constants.asm" + + + +SECTION "Sound Effect Headers 1", ROMX, BANK[AUDIO_1] + +INCLUDE "music/headers/sfxheaders02.asm" + + +SECTION "Music Headers 1", ROMX, BANK[AUDIO_1] + +INCLUDE "music/headers/musicheaders02.asm" + + +SECTION "Sound Effects 1", ROMX, BANK[AUDIO_1] + +INCLUDE "music/sfx/sfx_02_01.asm" +INCLUDE "music/sfx/sfx_02_02.asm" +INCLUDE "music/sfx/sfx_02_03.asm" +INCLUDE "music/sfx/sfx_02_04.asm" +INCLUDE "music/sfx/sfx_02_05.asm" +INCLUDE "music/sfx/sfx_02_06.asm" +INCLUDE "music/sfx/sfx_02_07.asm" +INCLUDE "music/sfx/sfx_02_08.asm" +INCLUDE "music/sfx/sfx_02_09.asm" +INCLUDE "music/sfx/sfx_02_0a.asm" +INCLUDE "music/sfx/sfx_02_0b.asm" +INCLUDE "music/sfx/sfx_02_0c.asm" +INCLUDE "music/sfx/sfx_02_0d.asm" +INCLUDE "music/sfx/sfx_02_0e.asm" +INCLUDE "music/sfx/sfx_02_0f.asm" +INCLUDE "music/sfx/sfx_02_10.asm" +INCLUDE "music/sfx/sfx_02_11.asm" +INCLUDE "music/sfx/sfx_02_12.asm" +INCLUDE "music/sfx/sfx_02_13.asm" + + +Music2_Channel3DutyPointers: ; 0x8361 + dw Music2_Channel3Duty0 + dw Music2_Channel3Duty1 + dw Music2_Channel3Duty2 + dw Music2_Channel3Duty3 + dw Music2_Channel3Duty4 + dw Music2_Channel3Duty5 ; used in the Lavender Town theme + dw SFX_02_3f_Ch1 ; unused + dw SFX_02_3f_Ch1 ; unused + dw SFX_02_3f_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music2_Channel3Duty0: ; 0x8373 + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music2_Channel3Duty1: ; 0x8383 + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music2_Channel3Duty2: ; 0x8393 + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music2_Channel3Duty3: ; 0x83a3 + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music2_Channel3Duty4: ; 0x83b3 + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + +; duty 5 reads from sfx data +Music2_Channel3Duty5: ; 0x83c3 + + +INCLUDE "music/sfx/sfx_02_3f.asm" +INCLUDE "music/sfx/sfx_02_5e.asm" +INCLUDE "music/sfx/sfx_02_56.asm" +INCLUDE "music/sfx/sfx_02_57.asm" +INCLUDE "music/sfx/sfx_02_58.asm" +INCLUDE "music/sfx/sfx_02_3c.asm" +INCLUDE "music/sfx/sfx_02_59.asm" +INCLUDE "music/sfx/sfx_02_5a.asm" +INCLUDE "music/sfx/sfx_02_5b.asm" +INCLUDE "music/sfx/sfx_02_5c.asm" +INCLUDE "music/sfx/sfx_02_40.asm" +INCLUDE "music/sfx/sfx_02_5d.asm" +INCLUDE "music/sfx/sfx_02_3d.asm" +INCLUDE "music/sfx/sfx_02_43.asm" +INCLUDE "music/sfx/sfx_02_3e.asm" +INCLUDE "music/sfx/sfx_02_44.asm" +INCLUDE "music/sfx/sfx_02_45.asm" +INCLUDE "music/sfx/sfx_02_46.asm" +INCLUDE "music/sfx/sfx_02_47.asm" +INCLUDE "music/sfx/sfx_02_48.asm" +INCLUDE "music/sfx/sfx_02_49.asm" +INCLUDE "music/sfx/sfx_02_4a.asm" +INCLUDE "music/sfx/sfx_02_4b.asm" +INCLUDE "music/sfx/sfx_02_4c.asm" +INCLUDE "music/sfx/sfx_02_4d.asm" +INCLUDE "music/sfx/sfx_02_4e.asm" +INCLUDE "music/sfx/sfx_02_4f.asm" +INCLUDE "music/sfx/sfx_02_50.asm" +INCLUDE "music/sfx/sfx_02_51.asm" +INCLUDE "music/sfx/sfx_02_52.asm" +INCLUDE "music/sfx/sfx_02_53.asm" +INCLUDE "music/sfx/sfx_02_54.asm" +INCLUDE "music/sfx/sfx_02_55.asm" +INCLUDE "music/sfx/sfx_02_5f.asm" +INCLUDE "music/sfx/sfx_02_unused.asm" +INCLUDE "music/sfx/sfx_02_1d.asm" +INCLUDE "music/sfx/sfx_02_37.asm" +INCLUDE "music/sfx/sfx_02_38.asm" +INCLUDE "music/sfx/sfx_02_25.asm" +INCLUDE "music/sfx/sfx_02_39.asm" +INCLUDE "music/sfx/sfx_02_17.asm" +INCLUDE "music/sfx/sfx_02_23.asm" +INCLUDE "music/sfx/sfx_02_24.asm" +INCLUDE "music/sfx/sfx_02_14.asm" +INCLUDE "music/sfx/sfx_02_22.asm" +INCLUDE "music/sfx/sfx_02_1a.asm" +INCLUDE "music/sfx/sfx_02_1b.asm" +INCLUDE "music/sfx/sfx_02_19.asm" +INCLUDE "music/sfx/sfx_02_1f.asm" +INCLUDE "music/sfx/sfx_02_20.asm" +INCLUDE "music/sfx/sfx_02_16.asm" +INCLUDE "music/sfx/sfx_02_21.asm" +INCLUDE "music/sfx/sfx_02_15.asm" +INCLUDE "music/sfx/sfx_02_1e.asm" +INCLUDE "music/sfx/sfx_02_1c.asm" +INCLUDE "music/sfx/sfx_02_18.asm" +INCLUDE "music/sfx/sfx_02_2d.asm" +INCLUDE "music/sfx/sfx_02_2a.asm" +INCLUDE "music/sfx/sfx_02_2f.asm" +INCLUDE "music/sfx/sfx_02_26.asm" +INCLUDE "music/sfx/sfx_02_27.asm" +INCLUDE "music/sfx/sfx_02_28.asm" +INCLUDE "music/sfx/sfx_02_32.asm" +INCLUDE "music/sfx/sfx_02_29.asm" +INCLUDE "music/sfx/sfx_02_2b.asm" +INCLUDE "music/sfx/sfx_02_30.asm" +INCLUDE "music/sfx/sfx_02_2e.asm" +INCLUDE "music/sfx/sfx_02_31.asm" +INCLUDE "music/sfx/sfx_02_2c.asm" +INCLUDE "music/sfx/sfx_02_33.asm" +INCLUDE "music/sfx/sfx_02_34.asm" +INCLUDE "music/sfx/sfx_02_35.asm" +INCLUDE "music/sfx/sfx_02_36.asm" + + +SECTION "Audio Engine 1", ROMX, BANK[AUDIO_1] + +PlayBattleMusic:: ; 0x90c6 + xor a + ld [wMusicHeaderPointer], a + ld [$d083], a + dec a + ld [$c0ee], a + call PlaySound ; stop music + call DelayFrame + ld c, BANK(Music_GymLeaderBattle) + ld a, [W_GYMLEADERNO] + and a + jr z, .notGymLeaderBattle + ld a, (Music_GymLeaderBattle - $4000) / 3 + jr .playSong +.notGymLeaderBattle + ld a, [W_CUROPPONENT] + cp $c8 + jr c, .wildBattle + cp SONY3 + $c8 + jr z, .finalBattle + cp LANCE + $c8 + jr nz, .normalTrainerBattle + ld a, (Music_GymLeaderBattle - $4000) / 3 ; lance also plays gym leader theme + jr .playSong +.normalTrainerBattle + ld a, (Music_TrainerBattle - $4000) / 3 + jr .playSong +.finalBattle + ld a, (Music_FinalBattle - $4000) / 3 + jr .playSong +.wildBattle + ld a, (Music_WildBattle - $4000) / 3 +.playSong + jp PlayMusic + + +INCLUDE "audio/engine_1.asm" + + +; an alternate start for MeetRival which has a different first measure +Music_RivalAlternateStart:: ; 0x9b47 + ld c, BANK(Music_MeetRival) + ld a, (Music_MeetRival - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_MeetRival_branch_b1a2 + call Music2_OverwriteChannelPointer + ld de, Music_MeetRival_branch_b21d + call Music2_OverwriteChannelPointer + ld de, Music_MeetRival_branch_b2b5 + +Music2_OverwriteChannelPointer: ; 0x9b60 + ld a, e + ld [hli], a + ld a, d + ld [hli], a + ret + +; an alternate tempo for MeetRival which is slightly slower +Music_RivalAlternateTempo:: ; 0x9b65 + ld c, BANK(Music_MeetRival) + ld a, (Music_MeetRival - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_MeetRival_branch_b119 + jp Music2_OverwriteChannelPointer + +; applies both the alternate start and alternate tempo +Music_RivalAlternateStartAndTempo:: ; 0x9b75 + call Music_RivalAlternateStart + ld hl, $c006 + ld de, Music_MeetRival_branch_b19b + jp Music2_OverwriteChannelPointer + +; an alternate tempo for Cities1 which is used for the Hall of Fame room +Music_Cities1AlternateTempo:: ; 0x9b81 + ld a, $a + ld [$cfc8], a + ld [$cfc9], a + ld a, $ff + ld [wMusicHeaderPointer], a + ld c, $64 + call DelayFrames + ld c, BANK(Music_Cities1) + ld a, (Music_Cities1 - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_Cities1_branch_aa6f + jp Music2_OverwriteChannelPointer + + +SECTION "Music 1", ROMX, BANK[AUDIO_1] + +INCLUDE "music/pkmnhealed.asm" +INCLUDE "music/routes1.asm" +INCLUDE "music/routes2.asm" +INCLUDE "music/routes3.asm" +INCLUDE "music/routes4.asm" +INCLUDE "music/indigoplateau.asm" +INCLUDE "music/pallettown.asm" +INCLUDE "music/unusedsong.asm" +INCLUDE "music/cities1.asm" +INCLUDE "music/sfx/sfx_02_3a.asm" +INCLUDE "music/museumguy.asm" +INCLUDE "music/meetprofoak.asm" +INCLUDE "music/meetrival.asm" +INCLUDE "music/sfx/sfx_02_41.asm" +INCLUDE "music/sfx/sfx_02_3b.asm" +INCLUDE "music/sfx/sfx_02_42.asm" +INCLUDE "music/ssanne.asm" +INCLUDE "music/cities2.asm" +INCLUDE "music/celadon.asm" +INCLUDE "music/cinnabar.asm" +INCLUDE "music/vermilion.asm" +INCLUDE "music/lavender.asm" +INCLUDE "music/safarizone.asm" +INCLUDE "music/gym.asm" +INCLUDE "music/pokecenter.asm" + + + +SECTION "Sound Effect Headers 2", ROMX, BANK[AUDIO_2] + +INCLUDE "music/headers/sfxheaders08.asm" + + +SECTION "Music Headers 2", ROMX, BANK[AUDIO_2] + +INCLUDE "music/headers/musicheaders08.asm" + + +SECTION "Sound Effects 2", ROMX, BANK[AUDIO_2] + +INCLUDE "music/sfx/sfx_08_01.asm" +INCLUDE "music/sfx/sfx_08_02.asm" +INCLUDE "music/sfx/sfx_08_03.asm" +INCLUDE "music/sfx/sfx_08_04.asm" +INCLUDE "music/sfx/sfx_08_05.asm" +INCLUDE "music/sfx/sfx_08_06.asm" +INCLUDE "music/sfx/sfx_08_07.asm" +INCLUDE "music/sfx/sfx_08_08.asm" +INCLUDE "music/sfx/sfx_08_09.asm" +INCLUDE "music/sfx/sfx_08_0a.asm" +INCLUDE "music/sfx/sfx_08_0b.asm" +INCLUDE "music/sfx/sfx_08_0c.asm" +INCLUDE "music/sfx/sfx_08_0d.asm" +INCLUDE "music/sfx/sfx_08_0e.asm" +INCLUDE "music/sfx/sfx_08_0f.asm" +INCLUDE "music/sfx/sfx_08_10.asm" +INCLUDE "music/sfx/sfx_08_11.asm" +INCLUDE "music/sfx/sfx_08_12.asm" +INCLUDE "music/sfx/sfx_08_13.asm" + + +Music8_Channel3DutyPointers: ; 20361 (8:4361) + dw Music8_Channel3Duty0 + dw Music8_Channel3Duty1 + dw Music8_Channel3Duty2 + dw Music8_Channel3Duty3 + dw Music8_Channel3Duty4 + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music8_Channel3Duty0: ; 20373 (8:4373) + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music8_Channel3Duty1: ; 20383 (8:4383) + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music8_Channel3Duty2: ; 20393 (8:4393) + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music8_Channel3Duty3: ; 203a3 (8:43a3) + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music8_Channel3Duty4: ; 203b3 (8:43b3) + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + + +INCLUDE "music/sfx/sfx_08_40.asm" +INCLUDE "music/sfx/sfx_08_3f.asm" +INCLUDE "music/sfx/sfx_08_3c.asm" +INCLUDE "music/sfx/sfx_08_3d.asm" +INCLUDE "music/sfx/sfx_08_3e.asm" +INCLUDE "music/sfx/sfx_08_77.asm" +INCLUDE "music/sfx/sfx_08_41.asm" +INCLUDE "music/sfx/sfx_08_42.asm" +INCLUDE "music/sfx/sfx_08_43.asm" +INCLUDE "music/sfx/sfx_08_44.asm" +INCLUDE "music/sfx/sfx_08_45.asm" +INCLUDE "music/sfx/sfx_08_pokeflute_ch3.asm" +INCLUDE "music/sfx/sfx_08_47.asm" +INCLUDE "music/sfx/sfx_08_48.asm" +INCLUDE "music/sfx/sfx_08_49.asm" +INCLUDE "music/sfx/sfx_08_4a.asm" +INCLUDE "music/sfx/sfx_08_4b.asm" +INCLUDE "music/sfx/sfx_08_4c.asm" +INCLUDE "music/sfx/sfx_08_4d.asm" +INCLUDE "music/sfx/sfx_08_4e.asm" +INCLUDE "music/sfx/sfx_08_4f.asm" +INCLUDE "music/sfx/sfx_08_50.asm" +INCLUDE "music/sfx/sfx_08_51.asm" +INCLUDE "music/sfx/sfx_08_52.asm" +INCLUDE "music/sfx/sfx_08_53.asm" +INCLUDE "music/sfx/sfx_08_54.asm" +INCLUDE "music/sfx/sfx_08_55.asm" +INCLUDE "music/sfx/sfx_08_56.asm" +INCLUDE "music/sfx/sfx_08_57.asm" +INCLUDE "music/sfx/sfx_08_58.asm" +INCLUDE "music/sfx/sfx_08_59.asm" +INCLUDE "music/sfx/sfx_08_5a.asm" +INCLUDE "music/sfx/sfx_08_5b.asm" +INCLUDE "music/sfx/sfx_08_5c.asm" +INCLUDE "music/sfx/sfx_08_5d.asm" +INCLUDE "music/sfx/sfx_08_5e.asm" +INCLUDE "music/sfx/sfx_08_5f.asm" +INCLUDE "music/sfx/sfx_08_60.asm" +INCLUDE "music/sfx/sfx_08_61.asm" +INCLUDE "music/sfx/sfx_08_62.asm" +INCLUDE "music/sfx/sfx_08_63.asm" +INCLUDE "music/sfx/sfx_08_64.asm" +INCLUDE "music/sfx/sfx_08_65.asm" +INCLUDE "music/sfx/sfx_08_66.asm" +INCLUDE "music/sfx/sfx_08_67.asm" +INCLUDE "music/sfx/sfx_08_68.asm" +INCLUDE "music/sfx/sfx_08_69.asm" +INCLUDE "music/sfx/sfx_08_6a.asm" +INCLUDE "music/sfx/sfx_08_6b.asm" +INCLUDE "music/sfx/sfx_08_6c.asm" +INCLUDE "music/sfx/sfx_08_6d.asm" +INCLUDE "music/sfx/sfx_08_6e.asm" +INCLUDE "music/sfx/sfx_08_6f.asm" +INCLUDE "music/sfx/sfx_08_70.asm" +INCLUDE "music/sfx/sfx_08_71.asm" +INCLUDE "music/sfx/sfx_08_72.asm" +INCLUDE "music/sfx/sfx_08_73.asm" +INCLUDE "music/sfx/sfx_08_74.asm" +INCLUDE "music/sfx/sfx_08_75.asm" +INCLUDE "music/sfx/sfx_08_76.asm" +INCLUDE "music/sfx/sfx_08_unused.asm" +INCLUDE "music/sfx/sfx_08_1d.asm" +INCLUDE "music/sfx/sfx_08_37.asm" +INCLUDE "music/sfx/sfx_08_38.asm" +INCLUDE "music/sfx/sfx_08_25.asm" +INCLUDE "music/sfx/sfx_08_39.asm" +INCLUDE "music/sfx/sfx_08_17.asm" +INCLUDE "music/sfx/sfx_08_23.asm" +INCLUDE "music/sfx/sfx_08_24.asm" +INCLUDE "music/sfx/sfx_08_14.asm" +INCLUDE "music/sfx/sfx_08_22.asm" +INCLUDE "music/sfx/sfx_08_1a.asm" +INCLUDE "music/sfx/sfx_08_1b.asm" +INCLUDE "music/sfx/sfx_08_19.asm" +INCLUDE "music/sfx/sfx_08_1f.asm" +INCLUDE "music/sfx/sfx_08_20.asm" +INCLUDE "music/sfx/sfx_08_16.asm" +INCLUDE "music/sfx/sfx_08_21.asm" +INCLUDE "music/sfx/sfx_08_15.asm" +INCLUDE "music/sfx/sfx_08_1e.asm" +INCLUDE "music/sfx/sfx_08_1c.asm" +INCLUDE "music/sfx/sfx_08_18.asm" +INCLUDE "music/sfx/sfx_08_2d.asm" +INCLUDE "music/sfx/sfx_08_2a.asm" +INCLUDE "music/sfx/sfx_08_2f.asm" +INCLUDE "music/sfx/sfx_08_26.asm" +INCLUDE "music/sfx/sfx_08_27.asm" +INCLUDE "music/sfx/sfx_08_28.asm" +INCLUDE "music/sfx/sfx_08_32.asm" +INCLUDE "music/sfx/sfx_08_29.asm" +INCLUDE "music/sfx/sfx_08_2b.asm" +INCLUDE "music/sfx/sfx_08_30.asm" +INCLUDE "music/sfx/sfx_08_2e.asm" +INCLUDE "music/sfx/sfx_08_31.asm" +INCLUDE "music/sfx/sfx_08_2c.asm" +INCLUDE "music/sfx/sfx_08_33.asm" +INCLUDE "music/sfx/sfx_08_34.asm" +INCLUDE "music/sfx/sfx_08_35.asm" +INCLUDE "music/sfx/sfx_08_36.asm" + + + +SECTION "Audio Engine 2", ROMX, BANK[AUDIO_2] + +Func_2136e: ; 2136e (8:536e) + ld a, [$d083] + cp $ff + jr z, .asm_2139b + bit 7, a + ret z + and $7f + jr nz, .asm_21383 + call Func_213a7 + ld a, $1e + jr .asm_21395 +.asm_21383 + cp $14 + jr nz, .asm_2138a + call Func_213ac +.asm_2138a + ld a, $86 + ld [$c02a], a + ld a, [$d083] + and $7f + dec a +.asm_21395 + set 7, a + ld [$d083], a + ret +.asm_2139b + xor a + ld [$d083], a + ld [$c02a], a + ld de, Unknown_213c4 ; $53c4 + jr asm_213af + +Func_213a7: ; 213a7 (8:53a7) + ld de, Unknown_213bc ; $53bc + jr asm_213af + +Func_213ac: ; 213ac (8:53ac) + ld de, Unknown_213c0 ; $53c0 +asm_213af: ; 213af (8:53af) + ld hl, $ff10 + ld c, $5 + xor a +.asm_213b5 + ld [hli], a + ld a, [de] + inc de + dec c + jr nz, .asm_213b5 + ret + +Unknown_213bc: ; 213bc (8:53bc) + db $A0,$E2,$50,$87 + +Unknown_213c0: ; 213c0 (8:53c0) + db $B0,$E2,$EE,$86 + +Unknown_213c4: ; 213c4 (8:53c4) + db $00,$00,$00,$80 + + +INCLUDE "menu/pc.asm" + +INCLUDE "audio/engine_2.asm" + + +Music_PokeFluteInBattle: ; 22306 (8:6306) + ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle + call PlaySoundWaitForCurrent + ld hl, $c00e + ld de, SFX_08_PokeFlute_Ch1 + call Music8_OverwriteChannelPointer + ld de, SFX_08_PokeFlute_Ch2 + call Music8_OverwriteChannelPointer + ld de, SFX_08_PokeFlute_Ch3 + +Music8_OverwriteChannelPointer: ; 2231d (8:631d) + ld a, e + ld [hli], a + ld a, d + ld [hli], a + ret + + +SECTION "Music 2", ROMX, BANK[AUDIO_2] + +INCLUDE "music/sfx/sfx_08_pokeflute.asm" +INCLUDE "music/sfx/sfx_08_unused2.asm" +INCLUDE "music/gymleaderbattle.asm" +INCLUDE "music/trainerbattle.asm" +INCLUDE "music/wildbattle.asm" +INCLUDE "music/finalbattle.asm" +INCLUDE "music/sfx/sfx_08_3a.asm" +INCLUDE "music/sfx/sfx_08_3b.asm" +INCLUDE "music/sfx/sfx_08_46.asm" +INCLUDE "music/defeatedtrainer.asm" +INCLUDE "music/defeatedwildmon.asm" +INCLUDE "music/defeatedgymleader.asm" + + + +SECTION "Sound Effect Headers 3", ROMX, BANK[AUDIO_3] + +INCLUDE "music/headers/sfxheaders1f.asm" + + +SECTION "Music Headers 3", ROMX, BANK[AUDIO_3] + +INCLUDE "music/headers/musicheaders1f.asm" + + +SECTION "Sound Effects 3", ROMX, BANK[AUDIO_3] + +INCLUDE "music/sfx/sfx_1f_01.asm" +INCLUDE "music/sfx/sfx_1f_02.asm" +INCLUDE "music/sfx/sfx_1f_03.asm" +INCLUDE "music/sfx/sfx_1f_04.asm" +INCLUDE "music/sfx/sfx_1f_05.asm" +INCLUDE "music/sfx/sfx_1f_06.asm" +INCLUDE "music/sfx/sfx_1f_07.asm" +INCLUDE "music/sfx/sfx_1f_08.asm" +INCLUDE "music/sfx/sfx_1f_09.asm" +INCLUDE "music/sfx/sfx_1f_0a.asm" +INCLUDE "music/sfx/sfx_1f_0b.asm" +INCLUDE "music/sfx/sfx_1f_0c.asm" +INCLUDE "music/sfx/sfx_1f_0d.asm" +INCLUDE "music/sfx/sfx_1f_0e.asm" +INCLUDE "music/sfx/sfx_1f_0f.asm" +INCLUDE "music/sfx/sfx_1f_10.asm" +INCLUDE "music/sfx/sfx_1f_11.asm" +INCLUDE "music/sfx/sfx_1f_12.asm" +INCLUDE "music/sfx/sfx_1f_13.asm" + + +Music1f_Channel3DutyPointers: ; 7c361 (1f:4361) + dw Music1f_Channel3Duty0 + dw Music1f_Channel3Duty1 + dw Music1f_Channel3Duty2 + dw Music1f_Channel3Duty3 + dw Music1f_Channel3Duty4 + dw Music1f_Channel3Duty5 ; used in the Pokemon Tower theme + dw SFX_1f_3f_Ch1 ; unused + dw SFX_1f_3f_Ch1 ; unused + dw SFX_1f_3f_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music1f_Channel3Duty0: ; 7c373 (1f:4373) + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music1f_Channel3Duty1: ; 7c383 (1f:4383) + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music1f_Channel3Duty2: ; 7c393 (1f:4393) + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music1f_Channel3Duty3: ; 7c3a3 (1f:43a3) + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music1f_Channel3Duty4: ; 7c3b3 (1f:43b3) + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + +; duty 5 reads from sfx data +Music1f_Channel3Duty5: ; 7c3c3 (1f:43c3) + + +INCLUDE "music/sfx/sfx_1f_3f.asm" +INCLUDE "music/sfx/sfx_1f_56.asm" +INCLUDE "music/sfx/sfx_1f_57.asm" +INCLUDE "music/sfx/sfx_1f_58.asm" +INCLUDE "music/sfx/sfx_1f_3c.asm" +INCLUDE "music/sfx/sfx_1f_59.asm" +INCLUDE "music/sfx/sfx_1f_5a.asm" +INCLUDE "music/sfx/sfx_1f_5b.asm" +INCLUDE "music/sfx/sfx_1f_5c.asm" +INCLUDE "music/sfx/sfx_1f_40.asm" +IF _RED + INCLUDE "music/sfx/sfx_1f_5d.asm" +ENDC +IF _BLUE + INCLUDE "music/blue/sfx_1f_5d.asm" +ENDC +INCLUDE "music/sfx/sfx_1f_3d.asm" +INCLUDE "music/sfx/sfx_1f_43.asm" +INCLUDE "music/sfx/sfx_1f_3e.asm" +INCLUDE "music/sfx/sfx_1f_44.asm" +INCLUDE "music/sfx/sfx_1f_45.asm" +INCLUDE "music/sfx/sfx_1f_46.asm" +INCLUDE "music/sfx/sfx_1f_47.asm" +INCLUDE "music/sfx/sfx_1f_48.asm" +INCLUDE "music/sfx/sfx_1f_49.asm" +INCLUDE "music/sfx/sfx_1f_4a.asm" +INCLUDE "music/sfx/sfx_1f_4b.asm" +INCLUDE "music/sfx/sfx_1f_4c.asm" +INCLUDE "music/sfx/sfx_1f_4d.asm" +INCLUDE "music/sfx/sfx_1f_4e.asm" +INCLUDE "music/sfx/sfx_1f_4f.asm" +INCLUDE "music/sfx/sfx_1f_50.asm" +INCLUDE "music/sfx/sfx_1f_51.asm" +INCLUDE "music/sfx/sfx_1f_52.asm" +INCLUDE "music/sfx/sfx_1f_53.asm" +INCLUDE "music/sfx/sfx_1f_54.asm" +INCLUDE "music/sfx/sfx_1f_55.asm" +INCLUDE "music/sfx/sfx_1f_5e.asm" +INCLUDE "music/sfx/sfx_1f_5f.asm" +INCLUDE "music/sfx/sfx_1f_60.asm" +INCLUDE "music/sfx/sfx_1f_61.asm" +INCLUDE "music/sfx/sfx_1f_62.asm" +INCLUDE "music/sfx/sfx_1f_63.asm" +INCLUDE "music/sfx/sfx_1f_64.asm" +INCLUDE "music/sfx/sfx_1f_65.asm" +INCLUDE "music/sfx/sfx_1f_66.asm" +INCLUDE "music/sfx/sfx_1f_67.asm" +INCLUDE "music/sfx/sfx_1f_unused.asm" +INCLUDE "music/sfx/sfx_1f_1d.asm" +INCLUDE "music/sfx/sfx_1f_37.asm" +INCLUDE "music/sfx/sfx_1f_38.asm" +INCLUDE "music/sfx/sfx_1f_25.asm" +INCLUDE "music/sfx/sfx_1f_39.asm" +INCLUDE "music/sfx/sfx_1f_17.asm" +INCLUDE "music/sfx/sfx_1f_23.asm" +INCLUDE "music/sfx/sfx_1f_24.asm" +INCLUDE "music/sfx/sfx_1f_14.asm" +INCLUDE "music/sfx/sfx_1f_22.asm" +INCLUDE "music/sfx/sfx_1f_1a.asm" +INCLUDE "music/sfx/sfx_1f_1b.asm" +INCLUDE "music/sfx/sfx_1f_19.asm" +INCLUDE "music/sfx/sfx_1f_1f.asm" +INCLUDE "music/sfx/sfx_1f_20.asm" +INCLUDE "music/sfx/sfx_1f_16.asm" +INCLUDE "music/sfx/sfx_1f_21.asm" +INCLUDE "music/sfx/sfx_1f_15.asm" +INCLUDE "music/sfx/sfx_1f_1e.asm" +INCLUDE "music/sfx/sfx_1f_1c.asm" +INCLUDE "music/sfx/sfx_1f_18.asm" +INCLUDE "music/sfx/sfx_1f_2d.asm" +INCLUDE "music/sfx/sfx_1f_2a.asm" +INCLUDE "music/sfx/sfx_1f_2f.asm" +INCLUDE "music/sfx/sfx_1f_26.asm" +INCLUDE "music/sfx/sfx_1f_27.asm" +INCLUDE "music/sfx/sfx_1f_28.asm" +INCLUDE "music/sfx/sfx_1f_32.asm" +INCLUDE "music/sfx/sfx_1f_29.asm" +INCLUDE "music/sfx/sfx_1f_2b.asm" +INCLUDE "music/sfx/sfx_1f_30.asm" +INCLUDE "music/sfx/sfx_1f_2e.asm" +INCLUDE "music/sfx/sfx_1f_31.asm" +INCLUDE "music/sfx/sfx_1f_2c.asm" +INCLUDE "music/sfx/sfx_1f_33.asm" +INCLUDE "music/sfx/sfx_1f_34.asm" +INCLUDE "music/sfx/sfx_1f_35.asm" +INCLUDE "music/sfx/sfx_1f_36.asm" + + +SECTION "Audio Engine 3", ROMX, BANK[AUDIO_3] + +Func_7d13b:: ; 7d13b (1f:513b) + ld a, [$FF00+$dc] + ld c, $0 + ld hl, OwnedMonValues +.getSfxPointer + cp [hl] + jr c, .gotSfxPointer + inc c + inc hl + jr .getSfxPointer +.gotSfxPointer + push bc + ld a, $ff + ld [$c0ee], a + call PlaySoundWaitForCurrent + pop bc + ld b, $0 + ld hl, PokedexRatingSfxPointers + add hl, bc + add hl, bc + ld a, [hli] + ld c, [hl] + call PlayMusic + jp Func_2307 + +PokedexRatingSfxPointers: ; 7d162 (1f:5162) + db (SFX_1f_51 - $4000) / 3 + db BANK(SFX_1f_51) + db (SFX_02_41 - $4000) / 3 + db BANK(SFX_02_41) + db (SFX_02_3a - $4000) / 3 + db BANK(SFX_02_3a) + db (SFX_08_46 - $4000) / 3 + db BANK(SFX_08_46) + db (SFX_08_3a - $4000) / 3 + db BANK(SFX_08_3a) + db (SFX_02_42 - $4000) / 3 + db BANK(SFX_02_42) + db (SFX_02_3b - $4000) / 3 + db BANK(SFX_02_3b) + +OwnedMonValues: ; 7d170 (1f:5170) + db 10, 40, 60, 90, 120, 150, $ff + + +INCLUDE "audio/engine_3.asm" + + +SECTION "Music 3", ROMX, BANK[AUDIO_3] + +INCLUDE "music/bikeriding.asm" +INCLUDE "music/dungeon1.asm" +INCLUDE "music/gamecorner.asm" +INCLUDE "music/titlescreen.asm" +INCLUDE "music/sfx/sfx_1f_3a.asm" +INCLUDE "music/dungeon2.asm" +INCLUDE "music/dungeon3.asm" +INCLUDE "music/cinnabarmansion.asm" +INCLUDE "music/sfx/sfx_1f_41.asm" +INCLUDE "music/sfx/sfx_1f_3b.asm" +INCLUDE "music/sfx/sfx_1f_42.asm" +INCLUDE "music/oakslab.asm" +INCLUDE "music/pokemontower.asm" +INCLUDE "music/silphco.asm" +INCLUDE "music/meeteviltrainer.asm" +INCLUDE "music/meetfemaletrainer.asm" +INCLUDE "music/meetmaletrainer.asm" +INCLUDE "music/introbattle.asm" +INCLUDE "music/surfing.asm" +INCLUDE "music/jigglypuffsong.asm" +INCLUDE "music/halloffame.asm" +INCLUDE "music/credits.asm" + diff --git a/audio_blue.asm b/audio_blue.asm new file mode 100644 index 00000000..53e37a2d --- /dev/null +++ b/audio_blue.asm @@ -0,0 +1,2 @@ +INCLUDE "blue.asm" +INCLUDE "audio.asm" diff --git a/audio_red.asm b/audio_red.asm new file mode 100644 index 00000000..6c90a7c1 --- /dev/null +++ b/audio_red.asm @@ -0,0 +1,2 @@ +INCLUDE "red.asm" +INCLUDE "audio.asm" diff --git a/main.asm b/main.asm index fc08389e..ab25f0e4 100755 --- a/main.asm +++ b/main.asm @@ -18319,252 +18319,6 @@ Func_7c18: ; 7c18 (1:7c18) ld [$cc3c], a ret -SECTION "bank2",ROMX,BANK[$2] - -INCLUDE "music/headers/sfxheaders02.asm" -INCLUDE "music/headers/musicheaders02.asm" - -INCLUDE "music/sfx/sfx_02_01.asm" -INCLUDE "music/sfx/sfx_02_02.asm" -INCLUDE "music/sfx/sfx_02_03.asm" -INCLUDE "music/sfx/sfx_02_04.asm" -INCLUDE "music/sfx/sfx_02_05.asm" -INCLUDE "music/sfx/sfx_02_06.asm" -INCLUDE "music/sfx/sfx_02_07.asm" -INCLUDE "music/sfx/sfx_02_08.asm" -INCLUDE "music/sfx/sfx_02_09.asm" -INCLUDE "music/sfx/sfx_02_0a.asm" -INCLUDE "music/sfx/sfx_02_0b.asm" -INCLUDE "music/sfx/sfx_02_0c.asm" -INCLUDE "music/sfx/sfx_02_0d.asm" -INCLUDE "music/sfx/sfx_02_0e.asm" -INCLUDE "music/sfx/sfx_02_0f.asm" -INCLUDE "music/sfx/sfx_02_10.asm" -INCLUDE "music/sfx/sfx_02_11.asm" -INCLUDE "music/sfx/sfx_02_12.asm" -INCLUDE "music/sfx/sfx_02_13.asm" - -Music2_Channel3DutyPointers: ; 0x8361 - dw Music2_Channel3Duty0 - dw Music2_Channel3Duty1 - dw Music2_Channel3Duty2 - dw Music2_Channel3Duty3 - dw Music2_Channel3Duty4 - dw Music2_Channel3Duty5 ; used in the Lavender Town theme - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music2_Channel3Duty0: ; 0x8373 - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music2_Channel3Duty1: ; 0x8383 - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music2_Channel3Duty2: ; 0x8393 - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music2_Channel3Duty3: ; 0x83a3 - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music2_Channel3Duty4: ; 0x83b3 - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - -; duty 5 reads from sfx data -Music2_Channel3Duty5: ; 0x83c3 -INCLUDE "music/sfx/sfx_02_3f.asm" -INCLUDE "music/sfx/sfx_02_5e.asm" -INCLUDE "music/sfx/sfx_02_56.asm" -INCLUDE "music/sfx/sfx_02_57.asm" -INCLUDE "music/sfx/sfx_02_58.asm" -INCLUDE "music/sfx/sfx_02_3c.asm" -INCLUDE "music/sfx/sfx_02_59.asm" -INCLUDE "music/sfx/sfx_02_5a.asm" -INCLUDE "music/sfx/sfx_02_5b.asm" -INCLUDE "music/sfx/sfx_02_5c.asm" -INCLUDE "music/sfx/sfx_02_40.asm" -INCLUDE "music/sfx/sfx_02_5d.asm" -INCLUDE "music/sfx/sfx_02_3d.asm" -INCLUDE "music/sfx/sfx_02_43.asm" -INCLUDE "music/sfx/sfx_02_3e.asm" -INCLUDE "music/sfx/sfx_02_44.asm" -INCLUDE "music/sfx/sfx_02_45.asm" -INCLUDE "music/sfx/sfx_02_46.asm" -INCLUDE "music/sfx/sfx_02_47.asm" -INCLUDE "music/sfx/sfx_02_48.asm" -INCLUDE "music/sfx/sfx_02_49.asm" -INCLUDE "music/sfx/sfx_02_4a.asm" -INCLUDE "music/sfx/sfx_02_4b.asm" -INCLUDE "music/sfx/sfx_02_4c.asm" -INCLUDE "music/sfx/sfx_02_4d.asm" -INCLUDE "music/sfx/sfx_02_4e.asm" -INCLUDE "music/sfx/sfx_02_4f.asm" -INCLUDE "music/sfx/sfx_02_50.asm" -INCLUDE "music/sfx/sfx_02_51.asm" -INCLUDE "music/sfx/sfx_02_52.asm" -INCLUDE "music/sfx/sfx_02_53.asm" -INCLUDE "music/sfx/sfx_02_54.asm" -INCLUDE "music/sfx/sfx_02_55.asm" -INCLUDE "music/sfx/sfx_02_5f.asm" -INCLUDE "music/sfx/sfx_02_unused.asm" -INCLUDE "music/sfx/sfx_02_1d.asm" -INCLUDE "music/sfx/sfx_02_37.asm" -INCLUDE "music/sfx/sfx_02_38.asm" -INCLUDE "music/sfx/sfx_02_25.asm" -INCLUDE "music/sfx/sfx_02_39.asm" -INCLUDE "music/sfx/sfx_02_17.asm" -INCLUDE "music/sfx/sfx_02_23.asm" -INCLUDE "music/sfx/sfx_02_24.asm" -INCLUDE "music/sfx/sfx_02_14.asm" -INCLUDE "music/sfx/sfx_02_22.asm" -INCLUDE "music/sfx/sfx_02_1a.asm" -INCLUDE "music/sfx/sfx_02_1b.asm" -INCLUDE "music/sfx/sfx_02_19.asm" -INCLUDE "music/sfx/sfx_02_1f.asm" -INCLUDE "music/sfx/sfx_02_20.asm" -INCLUDE "music/sfx/sfx_02_16.asm" -INCLUDE "music/sfx/sfx_02_21.asm" -INCLUDE "music/sfx/sfx_02_15.asm" -INCLUDE "music/sfx/sfx_02_1e.asm" -INCLUDE "music/sfx/sfx_02_1c.asm" -INCLUDE "music/sfx/sfx_02_18.asm" -INCLUDE "music/sfx/sfx_02_2d.asm" -INCLUDE "music/sfx/sfx_02_2a.asm" -INCLUDE "music/sfx/sfx_02_2f.asm" -INCLUDE "music/sfx/sfx_02_26.asm" -INCLUDE "music/sfx/sfx_02_27.asm" -INCLUDE "music/sfx/sfx_02_28.asm" -INCLUDE "music/sfx/sfx_02_32.asm" -INCLUDE "music/sfx/sfx_02_29.asm" -INCLUDE "music/sfx/sfx_02_2b.asm" -INCLUDE "music/sfx/sfx_02_30.asm" -INCLUDE "music/sfx/sfx_02_2e.asm" -INCLUDE "music/sfx/sfx_02_31.asm" -INCLUDE "music/sfx/sfx_02_2c.asm" -INCLUDE "music/sfx/sfx_02_33.asm" -INCLUDE "music/sfx/sfx_02_34.asm" -INCLUDE "music/sfx/sfx_02_35.asm" -INCLUDE "music/sfx/sfx_02_36.asm" - -PlayBattleMusic: ; 0x90c6 - xor a - ld [wMusicHeaderPointer], a - ld [$d083], a - dec a - ld [$c0ee], a - call PlaySound ; stop music - call DelayFrame - ld c, BANK(Music_GymLeaderBattle) - ld a, [W_GYMLEADERNO] - and a - jr z, .notGymLeaderBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 - jr .playSong -.notGymLeaderBattle - ld a, [W_CUROPPONENT] - cp $c8 - jr c, .wildBattle - cp SONY3 + $c8 - jr z, .finalBattle - cp LANCE + $c8 - jr nz, .normalTrainerBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 ; lance also plays gym leader theme - jr .playSong -.normalTrainerBattle - ld a, (Music_TrainerBattle - $4000) / 3 - jr .playSong -.finalBattle - ld a, (Music_FinalBattle - $4000) / 3 - jr .playSong -.wildBattle - ld a, (Music_WildBattle - $4000) / 3 -.playSong - jp PlayMusic - - -INCLUDE "audio/engine_1.asm" - - -; an alternate start for MeetRival which has a different first measure -Music_RivalAlternateStart: ; 0x9b47 - ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_MeetRival_branch_b1a2 - call Music2_OverwriteChannelPointer - ld de, Music_MeetRival_branch_b21d - call Music2_OverwriteChannelPointer - ld de, Music_MeetRival_branch_b2b5 - -Music2_OverwriteChannelPointer: ; 0x9b60 - ld a, e - ld [hli], a - ld a, d - ld [hli], a - ret - -; an alternate tempo for MeetRival which is slightly slower -Music_RivalAlternateTempo: ; 0x9b65 - ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_MeetRival_branch_b119 - jp Music2_OverwriteChannelPointer - -; applies both the alternate start and alternate tempo -Music_RivalAlternateStartAndTempo: ; 0x9b75 - call Music_RivalAlternateStart - ld hl, $c006 - ld de, Music_MeetRival_branch_b19b - jp Music2_OverwriteChannelPointer - -; an alternate tempo for Cities1 which is used for the Hall of Fame room -Music_Cities1AlternateTempo: ; 0x9b81 - ld a, $a - ld [$cfc8], a - ld [$cfc9], a - ld a, $ff - ld [wMusicHeaderPointer], a - ld c, $64 - call DelayFrames - ld c, BANK(Music_Cities1) - ld a, (Music_Cities1 - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_Cities1_branch_aa6f - jp Music2_OverwriteChannelPointer - -INCLUDE "music/pkmnhealed.asm" -INCLUDE "music/routes1.asm" -INCLUDE "music/routes2.asm" -INCLUDE "music/routes3.asm" -INCLUDE "music/routes4.asm" -INCLUDE "music/indigoplateau.asm" -INCLUDE "music/pallettown.asm" -INCLUDE "music/unusedsong.asm" -INCLUDE "music/cities1.asm" -INCLUDE "music/sfx/sfx_02_3a.asm" -INCLUDE "music/museumguy.asm" -INCLUDE "music/meetprofoak.asm" -INCLUDE "music/meetrival.asm" -INCLUDE "music/sfx/sfx_02_41.asm" -INCLUDE "music/sfx/sfx_02_3b.asm" -INCLUDE "music/sfx/sfx_02_42.asm" -INCLUDE "music/ssanne.asm" -INCLUDE "music/cities2.asm" -INCLUDE "music/celadon.asm" -INCLUDE "music/cinnabar.asm" -INCLUDE "music/vermilion.asm" -INCLUDE "music/lavender.asm" -INCLUDE "music/safarizone.asm" -INCLUDE "music/gym.asm" -INCLUDE "music/pokecenter.asm" SECTION "bank3",ROMX,BANK[$3] @@ -42832,840 +42586,7 @@ OakLabEmailText: ; 1ecbd (7:6cbd) TX_FAR _OakLabEmailText db "@" -SECTION "bank8",ROMX,BANK[$8] -INCLUDE "music/headers/sfxheaders08.asm" -INCLUDE "music/headers/musicheaders08.asm" - -INCLUDE "music/sfx/sfx_08_01.asm" -INCLUDE "music/sfx/sfx_08_02.asm" -INCLUDE "music/sfx/sfx_08_03.asm" -INCLUDE "music/sfx/sfx_08_04.asm" -INCLUDE "music/sfx/sfx_08_05.asm" -INCLUDE "music/sfx/sfx_08_06.asm" -INCLUDE "music/sfx/sfx_08_07.asm" -INCLUDE "music/sfx/sfx_08_08.asm" -INCLUDE "music/sfx/sfx_08_09.asm" -INCLUDE "music/sfx/sfx_08_0a.asm" -INCLUDE "music/sfx/sfx_08_0b.asm" -INCLUDE "music/sfx/sfx_08_0c.asm" -INCLUDE "music/sfx/sfx_08_0d.asm" -INCLUDE "music/sfx/sfx_08_0e.asm" -INCLUDE "music/sfx/sfx_08_0f.asm" -INCLUDE "music/sfx/sfx_08_10.asm" -INCLUDE "music/sfx/sfx_08_11.asm" -INCLUDE "music/sfx/sfx_08_12.asm" -INCLUDE "music/sfx/sfx_08_13.asm" - -Music8_Channel3DutyPointers: ; 20361 (8:4361) - dw Music8_Channel3Duty0 - dw Music8_Channel3Duty1 - dw Music8_Channel3Duty2 - dw Music8_Channel3Duty3 - dw Music8_Channel3Duty4 - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music8_Channel3Duty0: ; 20373 (8:4373) - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music8_Channel3Duty1: ; 20383 (8:4383) - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music8_Channel3Duty2: ; 20393 (8:4393) - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music8_Channel3Duty3: ; 203a3 (8:43a3) - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music8_Channel3Duty4: ; 203b3 (8:43b3) - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - -INCLUDE "music/sfx/sfx_08_40.asm" -INCLUDE "music/sfx/sfx_08_3f.asm" -INCLUDE "music/sfx/sfx_08_3c.asm" -INCLUDE "music/sfx/sfx_08_3d.asm" -INCLUDE "music/sfx/sfx_08_3e.asm" -INCLUDE "music/sfx/sfx_08_77.asm" -INCLUDE "music/sfx/sfx_08_41.asm" -INCLUDE "music/sfx/sfx_08_42.asm" -INCLUDE "music/sfx/sfx_08_43.asm" -INCLUDE "music/sfx/sfx_08_44.asm" -INCLUDE "music/sfx/sfx_08_45.asm" -INCLUDE "music/sfx/sfx_08_pokeflute_ch3.asm" -INCLUDE "music/sfx/sfx_08_47.asm" -INCLUDE "music/sfx/sfx_08_48.asm" -INCLUDE "music/sfx/sfx_08_49.asm" -INCLUDE "music/sfx/sfx_08_4a.asm" -INCLUDE "music/sfx/sfx_08_4b.asm" -INCLUDE "music/sfx/sfx_08_4c.asm" -INCLUDE "music/sfx/sfx_08_4d.asm" -INCLUDE "music/sfx/sfx_08_4e.asm" -INCLUDE "music/sfx/sfx_08_4f.asm" -INCLUDE "music/sfx/sfx_08_50.asm" -INCLUDE "music/sfx/sfx_08_51.asm" -INCLUDE "music/sfx/sfx_08_52.asm" -INCLUDE "music/sfx/sfx_08_53.asm" -INCLUDE "music/sfx/sfx_08_54.asm" -INCLUDE "music/sfx/sfx_08_55.asm" -INCLUDE "music/sfx/sfx_08_56.asm" -INCLUDE "music/sfx/sfx_08_57.asm" -INCLUDE "music/sfx/sfx_08_58.asm" -INCLUDE "music/sfx/sfx_08_59.asm" -INCLUDE "music/sfx/sfx_08_5a.asm" -INCLUDE "music/sfx/sfx_08_5b.asm" -INCLUDE "music/sfx/sfx_08_5c.asm" -INCLUDE "music/sfx/sfx_08_5d.asm" -INCLUDE "music/sfx/sfx_08_5e.asm" -INCLUDE "music/sfx/sfx_08_5f.asm" -INCLUDE "music/sfx/sfx_08_60.asm" -INCLUDE "music/sfx/sfx_08_61.asm" -INCLUDE "music/sfx/sfx_08_62.asm" -INCLUDE "music/sfx/sfx_08_63.asm" -INCLUDE "music/sfx/sfx_08_64.asm" -INCLUDE "music/sfx/sfx_08_65.asm" -INCLUDE "music/sfx/sfx_08_66.asm" -INCLUDE "music/sfx/sfx_08_67.asm" -INCLUDE "music/sfx/sfx_08_68.asm" -INCLUDE "music/sfx/sfx_08_69.asm" -INCLUDE "music/sfx/sfx_08_6a.asm" -INCLUDE "music/sfx/sfx_08_6b.asm" -INCLUDE "music/sfx/sfx_08_6c.asm" -INCLUDE "music/sfx/sfx_08_6d.asm" -INCLUDE "music/sfx/sfx_08_6e.asm" -INCLUDE "music/sfx/sfx_08_6f.asm" -INCLUDE "music/sfx/sfx_08_70.asm" -INCLUDE "music/sfx/sfx_08_71.asm" -INCLUDE "music/sfx/sfx_08_72.asm" -INCLUDE "music/sfx/sfx_08_73.asm" -INCLUDE "music/sfx/sfx_08_74.asm" -INCLUDE "music/sfx/sfx_08_75.asm" -INCLUDE "music/sfx/sfx_08_76.asm" -INCLUDE "music/sfx/sfx_08_unused.asm" -INCLUDE "music/sfx/sfx_08_1d.asm" -INCLUDE "music/sfx/sfx_08_37.asm" -INCLUDE "music/sfx/sfx_08_38.asm" -INCLUDE "music/sfx/sfx_08_25.asm" -INCLUDE "music/sfx/sfx_08_39.asm" -INCLUDE "music/sfx/sfx_08_17.asm" -INCLUDE "music/sfx/sfx_08_23.asm" -INCLUDE "music/sfx/sfx_08_24.asm" -INCLUDE "music/sfx/sfx_08_14.asm" -INCLUDE "music/sfx/sfx_08_22.asm" -INCLUDE "music/sfx/sfx_08_1a.asm" -INCLUDE "music/sfx/sfx_08_1b.asm" -INCLUDE "music/sfx/sfx_08_19.asm" -INCLUDE "music/sfx/sfx_08_1f.asm" -INCLUDE "music/sfx/sfx_08_20.asm" -INCLUDE "music/sfx/sfx_08_16.asm" -INCLUDE "music/sfx/sfx_08_21.asm" -INCLUDE "music/sfx/sfx_08_15.asm" -INCLUDE "music/sfx/sfx_08_1e.asm" -INCLUDE "music/sfx/sfx_08_1c.asm" -INCLUDE "music/sfx/sfx_08_18.asm" -INCLUDE "music/sfx/sfx_08_2d.asm" -INCLUDE "music/sfx/sfx_08_2a.asm" -INCLUDE "music/sfx/sfx_08_2f.asm" -INCLUDE "music/sfx/sfx_08_26.asm" -INCLUDE "music/sfx/sfx_08_27.asm" -INCLUDE "music/sfx/sfx_08_28.asm" -INCLUDE "music/sfx/sfx_08_32.asm" -INCLUDE "music/sfx/sfx_08_29.asm" -INCLUDE "music/sfx/sfx_08_2b.asm" -INCLUDE "music/sfx/sfx_08_30.asm" -INCLUDE "music/sfx/sfx_08_2e.asm" -INCLUDE "music/sfx/sfx_08_31.asm" -INCLUDE "music/sfx/sfx_08_2c.asm" -INCLUDE "music/sfx/sfx_08_33.asm" -INCLUDE "music/sfx/sfx_08_34.asm" -INCLUDE "music/sfx/sfx_08_35.asm" -INCLUDE "music/sfx/sfx_08_36.asm" - -Func_2136e: ; 2136e (8:536e) - ld a, [$d083] - cp $ff - jr z, .asm_2139b - bit 7, a - ret z - and $7f - jr nz, .asm_21383 - call Func_213a7 - ld a, $1e - jr .asm_21395 -.asm_21383 - cp $14 - jr nz, .asm_2138a - call Func_213ac -.asm_2138a - ld a, $86 - ld [$c02a], a - ld a, [$d083] - and $7f - dec a -.asm_21395 - set 7, a - ld [$d083], a - ret -.asm_2139b - xor a - ld [$d083], a - ld [$c02a], a - ld de, Unknown_213c4 ; $53c4 - jr asm_213af - -Func_213a7: ; 213a7 (8:53a7) - ld de, Unknown_213bc ; $53bc - jr asm_213af - -Func_213ac: ; 213ac (8:53ac) - ld de, Unknown_213c0 ; $53c0 -asm_213af: ; 213af (8:53af) - ld hl, $ff10 - ld c, $5 - xor a -.asm_213b5 - ld [hli], a - ld a, [de] - inc de - dec c - jr nz, .asm_213b5 - ret - -Unknown_213bc: ; 213bc (8:53bc) - db $A0,$E2,$50,$87 - -Unknown_213c0: ; 213c0 (8:53c0) - db $B0,$E2,$EE,$86 - -Unknown_213c4: ; 213c4 (8:53c4) - db $00,$00,$00,$80 - -Func_213c8: ; 213c8 (8:53c8) - xor a - ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba - call SaveScreenTilesToBuffer2 - ld a, [$d5a2] - and a - jr nz, .asm_213f3 - ld a, [$d74b] - bit 5, a - jr z, .asm_213ea - ld a, [$d5a2] - and a - jr nz, .asm_213f3 - ld hl, wTileMap - ld b, $8 - ld c, $e - jr .asm_213fa -.asm_213ea - ld hl, wTileMap - ld b, $6 - ld c, $e - jr .asm_213fa -.asm_213f3 - ld hl, wTileMap - ld b, $a - ld c, $e -.asm_213fa - call TextBoxBorder - call UpdateSprites - ld a, $3 - ld [wMaxMenuItem], a ; $cc28 - ld a, [$d7f1] - bit 0, a - jr nz, .asm_21414 - FuncCoord 2, 2 ; $c3ca - ld hl, Coord - ld de, SomeonesPCText ; $548b - jr .asm_2141a -.asm_21414 - FuncCoord 2, 2 ; $c3ca - ld hl, Coord - ld de, BillsPCText ; $5497 -.asm_2141a - call PlaceString - FuncCoord 2, 4 ; $c3f2 - ld hl, Coord - ld de, W_PLAYERNAME ; $d158 - call PlaceString - ld l, c - ld h, b - ld de, PlayersPCText ; $54a0 - call PlaceString - ld a, [$d74b] - bit 5, a - jr z, .asm_21462 - FuncCoord 2, 6 ; $c41a - ld hl, Coord - ld de, OaksPCText ; $54a5 - call PlaceString - ld a, [$d5a2] - and a - jr z, .asm_2145a - ld a, $4 - ld [wMaxMenuItem], a ; $cc28 - FuncCoord 2, 8 ; $c442 - ld hl, Coord - ld de, PKMNLeaguePCText ; $54b2 - call PlaceString - FuncCoord 2, 10 ; $c46a - ld hl, Coord - ld de, LogOffPCText ; $54ba - jr .asm_2146d -.asm_2145a - FuncCoord 2, 8 ; $c442 - ld hl, Coord - ld de, LogOffPCText ; $54ba - jr .asm_2146d -.asm_21462 - ld a, $2 - ld [wMaxMenuItem], a ; $cc28 - FuncCoord 2, 6 ; $c41a - ld hl, Coord - ld de, LogOffPCText ; $54ba -.asm_2146d - call PlaceString - ld a, $3 - ld [wMenuWatchedKeys], a ; $cc29 - ld a, $2 - ld [wTopMenuItemY], a ; $cc24 - ld a, $1 - ld [wTopMenuItemX], a ; $cc25 - xor a - ld [wCurrentMenuItem], a ; $cc26 - ld [wLastMenuItem], a ; $cc2a - ld a, $1 - ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba - ret - -SomeonesPCText: ; 2148b (8:548b) - db "SOMEONE's PC@" - -BillsPCText: ; 21497 (8:5497) - db "BILL's PC@" - -PlayersPCText: ; 214a0 (8:54a0) - db "'s PC@" - -OaksPCText: ; 214a5 (8:54a5) - db "PROF.OAK's PC@" - -PKMNLeaguePCText: ; 214b2 (8:54b2) - db $4a,"LEAGUE@" - -LogOffPCText: ; 214ba (8:54ba) - db "LOG OFF@" - -Func_214c2: ; 214c2 (8:54c2) -BillsPC_: ; 0x214c2 - ld hl, $d730 - set 6, [hl] - xor a - ld [$ccd3], a - inc a ; MONSTER_NAME - ld [W_LISTTYPE], a - call LoadHpBarAndStatusTilePatterns - ld a, [wListScrollOffset] ; $cc36 - push af - ld a, [wFlags_0xcd60] - bit 3, a - jr nz, BillsPCMenu - ld a, $99 - call PlaySound - ld hl, SwitchOnText - call PrintText - -Func_214e8: ; 214e8 (8:54e8) -BillsPCMenu: - ld a, [$ccd3] - ld [wCurrentMenuItem], a ; $cc26 - ld hl, $9780 - ld de, PokeballTileGraphics ; $697e - ld bc, (BANK(PokeballTileGraphics) << 8) + $01 - call CopyVideoData - call LoadScreenTilesFromBuffer2DisableBGTransfer - ld hl, wTileMap - ld b, $a - ld c, $c - call TextBoxBorder - FuncCoord 2, 2 ; $c3ca - ld hl, Coord - ld de, BillsPCMenuText ; $56e1 - call PlaceString - ld hl, wTopMenuItemY ; $cc24 - ld a, $2 - ld [hli], a - dec a - ld [hli], a - inc hl - inc hl - ld a, $4 - ld [hli], a - ld a, $3 - ld [hli], a - xor a - ld [hli], a - ld [hli], a - ld hl, wListScrollOffset ; $cc36 - ld [hli], a - ld [hl], a - ld [wPlayerMonNumber], a ; $cc2f - ld hl, WhatText - call PrintText - FuncCoord 9, 14 ; $c4c1 - ld hl, Coord - ld b, $2 - ld c, $9 - call TextBoxBorder - ld a, [$d5a0] - and $7f - cp $9 - jr c, .asm_2154f - sub $9 - FuncCoord 17, 16 ; $c4f1 - ld hl, Coord - ld [hl], $f7 - add $f6 - jr .asm_21551 -.asm_2154f - add $f7 -.asm_21551 - FuncCoord 18, 16 ; $c4f2 - ld [Coord], a - FuncCoord 10, 16 ; $c4ea - ld hl, Coord - ld de, BoxNoPCText ; $5713 - call PlaceString - ld a, $1 - ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba - call Delay3 - call HandleMenuInput - bit 1, a - jp nz, Func_21588 ; b button - call PlaceUnfilledArrowMenuCursor - ld a, [wCurrentMenuItem] ; $cc26 - ld [$ccd3], a - and a - jp z, Func_21618 ; withdraw - cp $1 - jp z, Func_215ac ; deposit - cp $2 - jp z, Func_21673 ; release - cp $3 - jp z, Func_216b3 ; change box - -Func_21588: ; 21588 (8:5588) - ld a, [wFlags_0xcd60] - bit 3, a - jr nz, .asm_2159a - call LoadTextBoxTilePatterns - ld a, $9a - call PlaySound - call WaitForSoundToFinish -.asm_2159a - ld hl, wFlags_0xcd60 - res 5, [hl] - call LoadScreenTilesFromBuffer2 - pop af - ld [wListScrollOffset], a ; $cc36 - ld hl, $d730 - res 6, [hl] - ret - -Func_215ac: ; 215ac (8:55ac) -BillsPCDeposit: - ld a, [W_NUMINPARTY] ; $d163 - dec a - jr nz, .asm_215bb - ld hl, CantDepositLastMonText - call PrintText - jp BillsPCMenu -.asm_215bb - ld a, [W_NUMINBOX] ; $da80 - cp $14 - jr nz, .asm_215cb - ld hl, BoxFullText ; $5802 - call PrintText - jp BillsPCMenu -.asm_215cb - ld hl, W_NUMINPARTY ; $d163 - call Func_216be - jp c, BillsPCMenu - call Func_2174b - jp nc, BillsPCMenu - ld a, [$cf91] - call GetCryData - call PlaySoundWaitForCurrent - ld a, $1 - ld [$cf95], a - call Func_3a68 - xor a - ld [$cf95], a - call RemovePokemon - call WaitForSoundToFinish - ld hl, wWhichTrade ; $cd3d - ld a, [$d5a0] - and $7f - cp $9 - jr c, .asm_2160a - sub $9 - ld [hl], $f7 - inc hl - add $f6 - jr .asm_2160c -.asm_2160a - add $f7 -.asm_2160c - ld [hli], a - ld [hl], $50 - ld hl, MonWasStoredText ; $57f8 - call PrintText - jp BillsPCMenu - -Func_21618: ; 21618 (8:5618) - ld a, [W_NUMINBOX] ; $da80 - and a - jr nz, .asm_21627 - ld hl, NoMonText ; $580c - call PrintText - jp Func_214e8 -.asm_21627 - ld a, [W_NUMINPARTY] ; $d163 - cp $6 - jr nz, .asm_21637 - ld hl, CantTakeMonText ; $5811 - call PrintText - jp Func_214e8 -.asm_21637 - ld hl, W_NUMINBOX ; $da80 - call Func_216be - jp c, Func_214e8 - call Func_2174b - jp nc, Func_214e8 - ld a, [wWhichPokemon] ; $cf92 - ld hl, $de06 - call GetPartyMonName - ld a, [$cf91] - call GetCryData - call PlaySoundWaitForCurrent - xor a - ld [$cf95], a - call Func_3a68 - ld a, $1 - ld [$cf95], a - call RemovePokemon - call WaitForSoundToFinish - ld hl, MonIsTakenOutText ; $5807 - call PrintText - jp Func_214e8 - -Func_21673: ; 21673 (8:5673) - ld a, [W_NUMINBOX] ; $da80 - and a - jr nz, .asm_21682 - ld hl, NoMonText ; $580c - call PrintText - jp Func_214e8 -.asm_21682 - ld hl, W_NUMINBOX ; $da80 - call Func_216be - jp c, Func_214e8 - ld hl, OnceReleasedText ; $581b - call PrintText - call YesNoChoice - ld a, [wCurrentMenuItem] ; $cc26 - and a - jr nz, .asm_21682 - inc a - ld [$cf95], a - call RemovePokemon - call WaitForSoundToFinish - ld a, [$cf91] - call PlayCry - ld hl, MonWasReleasedText ; $5820 - call PrintText - jp Func_214e8 - -Func_216b3: ; 216b3 (8:56b3) - ld b, BANK(Func_738a1) - ld hl, Func_738a1 - call Bankswitch ; indirect jump to Func_738a1 (738a1 (1c:78a1)) - jp Func_214e8 - -Func_216be: ; 216be (8:56be) - ld a, l - ld [$cf8b], a - ld a, h - ld [$cf8c], a - xor a - ld [$cf93], a - ld [wListMenuID], a ; $cf94 - inc a ; MONSTER_NAME - ld [W_LISTTYPE], a - ld a, [$cc2b] - ld [wCurrentMenuItem], a ; $cc26 - call DisplayListMenuID - ld a, [wCurrentMenuItem] ; $cc26 - ld [$cc2b], a - ret - -BillsPCMenuText: ; 216e1 (8:56e1) - db "WITHDRAW ",$4a,$4e,"DEPOSIT ",$4a,$4e,"RELEASE ",$4a,$4e,"CHANGE BOX",$4e,"SEE YA!@" - -BoxNoPCText: ; 21713 (8:5713) - db "BOX No.@" - -Func_2171b: ; 2171b (8:571b) - ld hl, $d173 - ld bc, $002c - jr .asm_21729 ; 0x21721 $6 - ld hl, $da9e - ld bc, $0021 -.asm_21729 - ld a, [$cf92] - call AddNTimes - ld b, $4 -.asm_21731 - ld a, [hli] - push hl - push bc - ld hl, HMMoveArray ; $5745 - ld de, $0001 - call IsInArray - pop bc - pop hl - ret c - dec b - jr nz, .asm_21731 ; 0x21741 $ee - and a - ret - -HMMoveArray: ; 21745 (8:5745) - db CUT - db FLY - db SURF - db STRENGTH - db FLASH - db $ff - -Func_2174b: ; 2174b (8:574b) - FuncCoord 9, 10 ; $c471 - ld hl, Coord - ld b, $6 - ld c, $9 - call TextBoxBorder - ld a, [$ccd3] - and a - ld de, DepositPCText ; $57cb - jr nz, .asm_21761 - ld de, WithdrawPCText ; $57d3 -.asm_21761 - FuncCoord 11, 12 ; $c49b - ld hl, Coord - call PlaceString - FuncCoord 11, 14 ; $c4c3 - ld hl, Coord - ld de, StatsCancelPCText ; $57dc - call PlaceString - ld hl, wTopMenuItemY ; $cc24 - ld a, $c - ld [hli], a - ld a, $a - ld [hli], a - xor a - ld [hli], a - inc hl - ld a, $2 - ld [hli], a - ld a, $3 - ld [hli], a - xor a - ld [hl], a - ld hl, wListScrollOffset ; $cc36 - ld [hli], a - ld [hl], a - ld [wPlayerMonNumber], a ; $cc2f - ld [$cc2b], a -.asm_2178f - call HandleMenuInput - bit 1, a - jr nz, .asm_2179f - ld a, [wCurrentMenuItem] ; $cc26 - and a - jr z, .asm_217a1 - dec a - jr z, .asm_217a3 -.asm_2179f - and a - ret -.asm_217a1 - scf - ret -.asm_217a3 - call SaveScreenTilesToBuffer1 - ld a, [$ccd3] - and a - ld a, $0 - jr nz, .asm_217b0 - ld a, $2 -.asm_217b0 - ld [$cc49], a - ld a, $36 - call Predef ; indirect jump to StatusScreen (12953 (4:6953)) - ld a, $37 - call Predef ; indirect jump to StatusScreen2 (12b57 (4:6b57)) - call LoadScreenTilesFromBuffer1 - call ReloadTilesetTilePatterns - call GoPAL_SET_CF1C - call LoadGBPal - jr .asm_2178f - -DepositPCText: ; 217cb (8:57cb) - db "DEPOSIT@" - -WithdrawPCText: ; 217d3 (8:57d3) - db "WITHDRAW@" - -StatsCancelPCText: ; 217dc (8:57dc) - db "STATS",$4e,"CANCEL@" - -SwitchOnText: ; 0x217e9 - TX_FAR _SwitchOnText - db "@" - -WhatText: ; 0x217ee - TX_FAR _WhatText - db "@" - -DepositWhichMonText: ; 0x217f3 - TX_FAR _DepositWhichMonText - db "@" - -MonWasStoredText: ; 0x217f8 - TX_FAR _MonWasStoredText - db "@" - -CantDepositLastMonText: ; 0x217fd - TX_FAR _CantDepositLastMonText - db "@" - -BoxFullText: ; 0x21802 - TX_FAR _BoxFullText - db "@" - -MonIsTakenOutText: ; 0x21807 - TX_FAR _MonIsTakenOutText - db "@" - -NoMonText: ; 0x2180c - TX_FAR _NoMonText - db "@" - -CantTakeMonText: ; 0x21811 - TX_FAR _CantTakeMonText - db "@" - -ReleaseWhichMonText: ; 0x21816 - TX_FAR _ReleaseWhichMonText - db "@" - -OnceReleasedText: ; 0x2181b - TX_FAR _OnceReleasedText - db "@" - -MonWasReleasedText: ; 0x21820 - TX_FAR _MonWasReleasedText - db "@" - -Func_21825: ; 5824 (8:5825) - ld a, [$ff00+$aa] - cp $1 - ret z - ld a, [$c109] - cp $c - ret nz - ld a, [$d35e] - cp $ef - ld a, $2 - jr z, .asm_2183a - inc a -.asm_2183a - ld [$d12b], a - call EnableAutoTextBoxDrawing - ld a, $22 - jp Func_3ef5 - -Func_21845: ; 5845 (8:5845) - ld a, [$ff00+$aa] - cp $2 - ret z - ld a, [$c109] - cp $8 - ret nz - ld a, [$d35e] - cp $ef - ld a, $2 - jr z, .asm_2185a - inc a -.asm_2185a - ld [$d12b], a - call EnableAutoTextBoxDrawing - ld a, $22 - jp Func_3ef5 - -UnnamedText_21865: ; 21865 (8:5865) - TX_FAR _UnnamedText_21865 - db "@" - - ld a, [$c109] - cp $4 - ret nz - call EnableAutoTextBoxDrawing - ld a, $23 - jp Func_3ef5 - -Unknown_21878: ; 21878 (8:5878) - db $FD - - -INCLUDE "audio/engine_2.asm" - - -Music_PokeFluteInBattle: ; 22306 (8:6306) - ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle - call PlaySoundWaitForCurrent - ld hl, $c00e - ld de, SFX_08_PokeFlute_Ch1 - call Music8_OverwriteChannelPointer - ld de, SFX_08_PokeFlute_Ch2 - call Music8_OverwriteChannelPointer - ld de, SFX_08_PokeFlute_Ch3 - -Music8_OverwriteChannelPointer: ; 2231d (8:631d) - ld a, e - ld [hli], a - ld a, d - ld [hli], a - ret - -INCLUDE "music/sfx/sfx_08_pokeflute.asm" -INCLUDE "music/sfx/sfx_08_unused2.asm" -INCLUDE "music/gymleaderbattle.asm" -INCLUDE "music/trainerbattle.asm" -INCLUDE "music/wildbattle.asm" -INCLUDE "music/finalbattle.asm" -INCLUDE "music/sfx/sfx_08_3a.asm" -INCLUDE "music/sfx/sfx_08_3b.asm" -INCLUDE "music/sfx/sfx_08_46.asm" -INCLUDE "music/defeatedtrainer.asm" -INCLUDE "music/defeatedwildmon.asm" -INCLUDE "music/defeatedgymleader.asm" SECTION "bank9",ROMX,BANK[$9] @@ -79370,6 +78291,7 @@ IndigoPlateauObject: ; 0x50936 (size=20) IndigoPlateauBlocks: ; 5094a (14:494a) INCBIN "maps/indigoplateau.blk" +GLOBAL SaffronCity_h SaffronCity_h: ; 0x509a4 to 0x509dc (56 bytes) (id=10) db $00 ; tileset db SAFFRON_CITY_HEIGHT, SAFFRON_CITY_WIDTH ; dimensions (y, x) @@ -116897,220 +115819,6 @@ TechnicalMachinePrices: ; 7bfa7 (1e:7fa7) db $21, $12, $42, $25, $24 db $22, $52, $24, $34, $42 -SECTION "bank1F",ROMX,BANK[$1F] - -INCLUDE "music/headers/sfxheaders1f.asm" -INCLUDE "music/headers/musicheaders1f.asm" - -INCLUDE "music/sfx/sfx_1f_01.asm" -INCLUDE "music/sfx/sfx_1f_02.asm" -INCLUDE "music/sfx/sfx_1f_03.asm" -INCLUDE "music/sfx/sfx_1f_04.asm" -INCLUDE "music/sfx/sfx_1f_05.asm" -INCLUDE "music/sfx/sfx_1f_06.asm" -INCLUDE "music/sfx/sfx_1f_07.asm" -INCLUDE "music/sfx/sfx_1f_08.asm" -INCLUDE "music/sfx/sfx_1f_09.asm" -INCLUDE "music/sfx/sfx_1f_0a.asm" -INCLUDE "music/sfx/sfx_1f_0b.asm" -INCLUDE "music/sfx/sfx_1f_0c.asm" -INCLUDE "music/sfx/sfx_1f_0d.asm" -INCLUDE "music/sfx/sfx_1f_0e.asm" -INCLUDE "music/sfx/sfx_1f_0f.asm" -INCLUDE "music/sfx/sfx_1f_10.asm" -INCLUDE "music/sfx/sfx_1f_11.asm" -INCLUDE "music/sfx/sfx_1f_12.asm" -INCLUDE "music/sfx/sfx_1f_13.asm" - -Music1f_Channel3DutyPointers: ; 7c361 (1f:4361) - dw Music1f_Channel3Duty0 - dw Music1f_Channel3Duty1 - dw Music1f_Channel3Duty2 - dw Music1f_Channel3Duty3 - dw Music1f_Channel3Duty4 - dw Music1f_Channel3Duty5 ; used in the Pokemon Tower theme - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music1f_Channel3Duty0: ; 7c373 (1f:4373) - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music1f_Channel3Duty1: ; 7c383 (1f:4383) - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music1f_Channel3Duty2: ; 7c393 (1f:4393) - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music1f_Channel3Duty3: ; 7c3a3 (1f:43a3) - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music1f_Channel3Duty4: ; 7c3b3 (1f:43b3) - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - -; duty 5 reads from sfx data -Music1f_Channel3Duty5: ; 7c3c3 (1f:43c3) -INCLUDE "music/sfx/sfx_1f_3f.asm" -INCLUDE "music/sfx/sfx_1f_56.asm" -INCLUDE "music/sfx/sfx_1f_57.asm" -INCLUDE "music/sfx/sfx_1f_58.asm" -INCLUDE "music/sfx/sfx_1f_3c.asm" -INCLUDE "music/sfx/sfx_1f_59.asm" -INCLUDE "music/sfx/sfx_1f_5a.asm" -INCLUDE "music/sfx/sfx_1f_5b.asm" -INCLUDE "music/sfx/sfx_1f_5c.asm" -INCLUDE "music/sfx/sfx_1f_40.asm" -IF _RED - INCLUDE "music/sfx/sfx_1f_5d.asm" -ENDC -IF _BLUE - INCLUDE "music/blue/sfx_1f_5d.asm" -ENDC -INCLUDE "music/sfx/sfx_1f_3d.asm" -INCLUDE "music/sfx/sfx_1f_43.asm" -INCLUDE "music/sfx/sfx_1f_3e.asm" -INCLUDE "music/sfx/sfx_1f_44.asm" -INCLUDE "music/sfx/sfx_1f_45.asm" -INCLUDE "music/sfx/sfx_1f_46.asm" -INCLUDE "music/sfx/sfx_1f_47.asm" -INCLUDE "music/sfx/sfx_1f_48.asm" -INCLUDE "music/sfx/sfx_1f_49.asm" -INCLUDE "music/sfx/sfx_1f_4a.asm" -INCLUDE "music/sfx/sfx_1f_4b.asm" -INCLUDE "music/sfx/sfx_1f_4c.asm" -INCLUDE "music/sfx/sfx_1f_4d.asm" -INCLUDE "music/sfx/sfx_1f_4e.asm" -INCLUDE "music/sfx/sfx_1f_4f.asm" -INCLUDE "music/sfx/sfx_1f_50.asm" -INCLUDE "music/sfx/sfx_1f_51.asm" -INCLUDE "music/sfx/sfx_1f_52.asm" -INCLUDE "music/sfx/sfx_1f_53.asm" -INCLUDE "music/sfx/sfx_1f_54.asm" -INCLUDE "music/sfx/sfx_1f_55.asm" -INCLUDE "music/sfx/sfx_1f_5e.asm" -INCLUDE "music/sfx/sfx_1f_5f.asm" -INCLUDE "music/sfx/sfx_1f_60.asm" -INCLUDE "music/sfx/sfx_1f_61.asm" -INCLUDE "music/sfx/sfx_1f_62.asm" -INCLUDE "music/sfx/sfx_1f_63.asm" -INCLUDE "music/sfx/sfx_1f_64.asm" -INCLUDE "music/sfx/sfx_1f_65.asm" -INCLUDE "music/sfx/sfx_1f_66.asm" -INCLUDE "music/sfx/sfx_1f_67.asm" -INCLUDE "music/sfx/sfx_1f_unused.asm" -INCLUDE "music/sfx/sfx_1f_1d.asm" -INCLUDE "music/sfx/sfx_1f_37.asm" -INCLUDE "music/sfx/sfx_1f_38.asm" -INCLUDE "music/sfx/sfx_1f_25.asm" -INCLUDE "music/sfx/sfx_1f_39.asm" -INCLUDE "music/sfx/sfx_1f_17.asm" -INCLUDE "music/sfx/sfx_1f_23.asm" -INCLUDE "music/sfx/sfx_1f_24.asm" -INCLUDE "music/sfx/sfx_1f_14.asm" -INCLUDE "music/sfx/sfx_1f_22.asm" -INCLUDE "music/sfx/sfx_1f_1a.asm" -INCLUDE "music/sfx/sfx_1f_1b.asm" -INCLUDE "music/sfx/sfx_1f_19.asm" -INCLUDE "music/sfx/sfx_1f_1f.asm" -INCLUDE "music/sfx/sfx_1f_20.asm" -INCLUDE "music/sfx/sfx_1f_16.asm" -INCLUDE "music/sfx/sfx_1f_21.asm" -INCLUDE "music/sfx/sfx_1f_15.asm" -INCLUDE "music/sfx/sfx_1f_1e.asm" -INCLUDE "music/sfx/sfx_1f_1c.asm" -INCLUDE "music/sfx/sfx_1f_18.asm" -INCLUDE "music/sfx/sfx_1f_2d.asm" -INCLUDE "music/sfx/sfx_1f_2a.asm" -INCLUDE "music/sfx/sfx_1f_2f.asm" -INCLUDE "music/sfx/sfx_1f_26.asm" -INCLUDE "music/sfx/sfx_1f_27.asm" -INCLUDE "music/sfx/sfx_1f_28.asm" -INCLUDE "music/sfx/sfx_1f_32.asm" -INCLUDE "music/sfx/sfx_1f_29.asm" -INCLUDE "music/sfx/sfx_1f_2b.asm" -INCLUDE "music/sfx/sfx_1f_30.asm" -INCLUDE "music/sfx/sfx_1f_2e.asm" -INCLUDE "music/sfx/sfx_1f_31.asm" -INCLUDE "music/sfx/sfx_1f_2c.asm" -INCLUDE "music/sfx/sfx_1f_33.asm" -INCLUDE "music/sfx/sfx_1f_34.asm" -INCLUDE "music/sfx/sfx_1f_35.asm" -INCLUDE "music/sfx/sfx_1f_36.asm" - -Func_7d13b: ; 7d13b (1f:513b) - ld a, [$FF00+$dc] - ld c, $0 - ld hl, OwnedMonValues -.getSfxPointer - cp [hl] - jr c, .gotSfxPointer - inc c - inc hl - jr .getSfxPointer -.gotSfxPointer - push bc - ld a, $ff - ld [$c0ee], a - call PlaySoundWaitForCurrent - pop bc - ld b, $0 - ld hl, PokedexRatingSfxPointers - add hl, bc - add hl, bc - ld a, [hli] - ld c, [hl] - call PlayMusic - jp Func_2307 - -PokedexRatingSfxPointers: ; 7d162 (1f:5162) - db (SFX_1f_51 - $4000) / 3 - db BANK(SFX_1f_51) - db (SFX_02_41 - $4000) / 3 - db BANK(SFX_02_41) - db (SFX_02_3a - $4000) / 3 - db BANK(SFX_02_3a) - db (SFX_08_46 - $4000) / 3 - db BANK(SFX_08_46) - db (SFX_08_3a - $4000) / 3 - db BANK(SFX_08_3a) - db (SFX_02_42 - $4000) / 3 - db BANK(SFX_02_42) - db (SFX_02_3b - $4000) / 3 - db BANK(SFX_02_3b) - -OwnedMonValues: ; 7d170 (1f:5170) - db 10, 40, 60, 90, 120, 150, $ff - - -INCLUDE "audio/engine_3.asm" - - -INCLUDE "music/bikeriding.asm" -INCLUDE "music/dungeon1.asm" -INCLUDE "music/gamecorner.asm" -INCLUDE "music/titlescreen.asm" -INCLUDE "music/sfx/sfx_1f_3a.asm" -INCLUDE "music/dungeon2.asm" -INCLUDE "music/dungeon3.asm" -INCLUDE "music/cinnabarmansion.asm" -INCLUDE "music/sfx/sfx_1f_41.asm" -INCLUDE "music/sfx/sfx_1f_3b.asm" -INCLUDE "music/sfx/sfx_1f_42.asm" -INCLUDE "music/oakslab.asm" -INCLUDE "music/pokemontower.asm" -INCLUDE "music/silphco.asm" -INCLUDE "music/meeteviltrainer.asm" -INCLUDE "music/meetfemaletrainer.asm" -INCLUDE "music/meetmaletrainer.asm" -INCLUDE "music/introbattle.asm" -INCLUDE "music/surfing.asm" -INCLUDE "music/jigglypuffsong.asm" -INCLUDE "music/halloffame.asm" -INCLUDE "music/credits.asm" SECTION "bank20",ROMX,BANK[$20] diff --git a/menu/pc.asm b/menu/pc.asm new file mode 100644 index 00000000..8b31f822 --- /dev/null +++ b/menu/pc.asm @@ -0,0 +1,588 @@ + +Func_213c8: ; 213c8 (8:53c8) + xor a + ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba + call SaveScreenTilesToBuffer2 + ld a, [$d5a2] + and a + jr nz, .asm_213f3 + ld a, [$d74b] + bit 5, a + jr z, .asm_213ea + ld a, [$d5a2] + and a + jr nz, .asm_213f3 + ld hl, wTileMap + ld b, $8 + ld c, $e + jr .asm_213fa +.asm_213ea + ld hl, wTileMap + ld b, $6 + ld c, $e + jr .asm_213fa +.asm_213f3 + ld hl, wTileMap + ld b, $a + ld c, $e +.asm_213fa + call TextBoxBorder + call UpdateSprites + ld a, $3 + ld [wMaxMenuItem], a ; $cc28 + ld a, [$d7f1] + bit 0, a + jr nz, .asm_21414 + FuncCoord 2, 2 ; $c3ca + ld hl, Coord + ld de, SomeonesPCText ; $548b + jr .asm_2141a +.asm_21414 + FuncCoord 2, 2 ; $c3ca + ld hl, Coord + ld de, BillsPCText ; $5497 +.asm_2141a + call PlaceString + FuncCoord 2, 4 ; $c3f2 + ld hl, Coord + ld de, W_PLAYERNAME ; $d158 + call PlaceString + ld l, c + ld h, b + ld de, PlayersPCText ; $54a0 + call PlaceString + ld a, [$d74b] + bit 5, a + jr z, .asm_21462 + FuncCoord 2, 6 ; $c41a + ld hl, Coord + ld de, OaksPCText ; $54a5 + call PlaceString + ld a, [$d5a2] + and a + jr z, .asm_2145a + ld a, $4 + ld [wMaxMenuItem], a ; $cc28 + FuncCoord 2, 8 ; $c442 + ld hl, Coord + ld de, PKMNLeaguePCText ; $54b2 + call PlaceString + FuncCoord 2, 10 ; $c46a + ld hl, Coord + ld de, LogOffPCText ; $54ba + jr .asm_2146d +.asm_2145a + FuncCoord 2, 8 ; $c442 + ld hl, Coord + ld de, LogOffPCText ; $54ba + jr .asm_2146d +.asm_21462 + ld a, $2 + ld [wMaxMenuItem], a ; $cc28 + FuncCoord 2, 6 ; $c41a + ld hl, Coord + ld de, LogOffPCText ; $54ba +.asm_2146d + call PlaceString + ld a, $3 + ld [wMenuWatchedKeys], a ; $cc29 + ld a, $2 + ld [wTopMenuItemY], a ; $cc24 + ld a, $1 + ld [wTopMenuItemX], a ; $cc25 + xor a + ld [wCurrentMenuItem], a ; $cc26 + ld [wLastMenuItem], a ; $cc2a + ld a, $1 + ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba + ret + +SomeonesPCText: ; 2148b (8:548b) + db "SOMEONE's PC@" + +BillsPCText: ; 21497 (8:5497) + db "BILL's PC@" + +PlayersPCText: ; 214a0 (8:54a0) + db "'s PC@" + +OaksPCText: ; 214a5 (8:54a5) + db "PROF.OAK's PC@" + +PKMNLeaguePCText: ; 214b2 (8:54b2) + db $4a,"LEAGUE@" + +LogOffPCText: ; 214ba (8:54ba) + db "LOG OFF@" + +Func_214c2: ; 214c2 (8:54c2) +BillsPC_: ; 0x214c2 + ld hl, $d730 + set 6, [hl] + xor a + ld [$ccd3], a + inc a ; MONSTER_NAME + ld [W_LISTTYPE], a + call LoadHpBarAndStatusTilePatterns + ld a, [wListScrollOffset] ; $cc36 + push af + ld a, [wFlags_0xcd60] + bit 3, a + jr nz, BillsPCMenu + ld a, $99 + call PlaySound + ld hl, SwitchOnText + call PrintText + +Func_214e8: ; 214e8 (8:54e8) +BillsPCMenu: + ld a, [$ccd3] + ld [wCurrentMenuItem], a ; $cc26 + ld hl, $9780 + ld de, PokeballTileGraphics ; $697e + ld bc, (BANK(PokeballTileGraphics) << 8) + $01 + call CopyVideoData + call LoadScreenTilesFromBuffer2DisableBGTransfer + ld hl, wTileMap + ld b, $a + ld c, $c + call TextBoxBorder + FuncCoord 2, 2 ; $c3ca + ld hl, Coord + ld de, BillsPCMenuText ; $56e1 + call PlaceString + ld hl, wTopMenuItemY ; $cc24 + ld a, $2 + ld [hli], a + dec a + ld [hli], a + inc hl + inc hl + ld a, $4 + ld [hli], a + ld a, $3 + ld [hli], a + xor a + ld [hli], a + ld [hli], a + ld hl, wListScrollOffset ; $cc36 + ld [hli], a + ld [hl], a + ld [wPlayerMonNumber], a ; $cc2f + ld hl, WhatText + call PrintText + FuncCoord 9, 14 ; $c4c1 + ld hl, Coord + ld b, $2 + ld c, $9 + call TextBoxBorder + ld a, [$d5a0] + and $7f + cp $9 + jr c, .asm_2154f + sub $9 + FuncCoord 17, 16 ; $c4f1 + ld hl, Coord + ld [hl], $f7 + add $f6 + jr .asm_21551 +.asm_2154f + add $f7 +.asm_21551 + FuncCoord 18, 16 ; $c4f2 + ld [Coord], a + FuncCoord 10, 16 ; $c4ea + ld hl, Coord + ld de, BoxNoPCText ; $5713 + call PlaceString + ld a, $1 + ld [H_AUTOBGTRANSFERENABLED], a ; $FF00+$ba + call Delay3 + call HandleMenuInput + bit 1, a + jp nz, Func_21588 ; b button + call PlaceUnfilledArrowMenuCursor + ld a, [wCurrentMenuItem] ; $cc26 + ld [$ccd3], a + and a + jp z, Func_21618 ; withdraw + cp $1 + jp z, Func_215ac ; deposit + cp $2 + jp z, Func_21673 ; release + cp $3 + jp z, Func_216b3 ; change box + +Func_21588: ; 21588 (8:5588) + ld a, [wFlags_0xcd60] + bit 3, a + jr nz, .asm_2159a + call LoadTextBoxTilePatterns + ld a, $9a + call PlaySound + call WaitForSoundToFinish +.asm_2159a + ld hl, wFlags_0xcd60 + res 5, [hl] + call LoadScreenTilesFromBuffer2 + pop af + ld [wListScrollOffset], a ; $cc36 + ld hl, $d730 + res 6, [hl] + ret + +Func_215ac: ; 215ac (8:55ac) +BillsPCDeposit: + ld a, [W_NUMINPARTY] ; $d163 + dec a + jr nz, .asm_215bb + ld hl, CantDepositLastMonText + call PrintText + jp BillsPCMenu +.asm_215bb + ld a, [W_NUMINBOX] ; $da80 + cp $14 + jr nz, .asm_215cb + ld hl, BoxFullText ; $5802 + call PrintText + jp BillsPCMenu +.asm_215cb + ld hl, W_NUMINPARTY ; $d163 + call Func_216be + jp c, BillsPCMenu + call Func_2174b + jp nc, BillsPCMenu + ld a, [$cf91] + call GetCryData + call PlaySoundWaitForCurrent + ld a, $1 + ld [$cf95], a + call Func_3a68 + xor a + ld [$cf95], a + call RemovePokemon + call WaitForSoundToFinish + ld hl, wWhichTrade ; $cd3d + ld a, [$d5a0] + and $7f + cp $9 + jr c, .asm_2160a + sub $9 + ld [hl], $f7 + inc hl + add $f6 + jr .asm_2160c +.asm_2160a + add $f7 +.asm_2160c + ld [hli], a + ld [hl], $50 + ld hl, MonWasStoredText ; $57f8 + call PrintText + jp BillsPCMenu + +Func_21618: ; 21618 (8:5618) + ld a, [W_NUMINBOX] ; $da80 + and a + jr nz, .asm_21627 + ld hl, NoMonText ; $580c + call PrintText + jp Func_214e8 +.asm_21627 + ld a, [W_NUMINPARTY] ; $d163 + cp $6 + jr nz, .asm_21637 + ld hl, CantTakeMonText ; $5811 + call PrintText + jp Func_214e8 +.asm_21637 + ld hl, W_NUMINBOX ; $da80 + call Func_216be + jp c, Func_214e8 + call Func_2174b + jp nc, Func_214e8 + ld a, [wWhichPokemon] ; $cf92 + ld hl, $de06 + call GetPartyMonName + ld a, [$cf91] + call GetCryData + call PlaySoundWaitForCurrent + xor a + ld [$cf95], a + call Func_3a68 + ld a, $1 + ld [$cf95], a + call RemovePokemon + call WaitForSoundToFinish + ld hl, MonIsTakenOutText ; $5807 + call PrintText + jp Func_214e8 + +Func_21673: ; 21673 (8:5673) + ld a, [W_NUMINBOX] ; $da80 + and a + jr nz, .asm_21682 + ld hl, NoMonText ; $580c + call PrintText + jp Func_214e8 +.asm_21682 + ld hl, W_NUMINBOX ; $da80 + call Func_216be + jp c, Func_214e8 + ld hl, OnceReleasedText ; $581b + call PrintText + call YesNoChoice + ld a, [wCurrentMenuItem] ; $cc26 + and a + jr nz, .asm_21682 + inc a + ld [$cf95], a + call RemovePokemon + call WaitForSoundToFinish + ld a, [$cf91] + call PlayCry + ld hl, MonWasReleasedText ; $5820 + call PrintText + jp Func_214e8 + +Func_216b3: ; 216b3 (8:56b3) + ld b, BANK(Func_738a1) + ld hl, Func_738a1 + call Bankswitch ; indirect jump to Func_738a1 (738a1 (1c:78a1)) + jp Func_214e8 + +Func_216be: ; 216be (8:56be) + ld a, l + ld [$cf8b], a + ld a, h + ld [$cf8c], a + xor a + ld [$cf93], a + ld [wListMenuID], a ; $cf94 + inc a ; MONSTER_NAME + ld [W_LISTTYPE], a + ld a, [$cc2b] + ld [wCurrentMenuItem], a ; $cc26 + call DisplayListMenuID + ld a, [wCurrentMenuItem] ; $cc26 + ld [$cc2b], a + ret + +BillsPCMenuText: ; 216e1 (8:56e1) + db "WITHDRAW ",$4a,$4e,"DEPOSIT ",$4a,$4e,"RELEASE ",$4a,$4e,"CHANGE BOX",$4e,"SEE YA!@" + +BoxNoPCText: ; 21713 (8:5713) + db "BOX No.@" + +Func_2171b: ; 2171b (8:571b) + ld hl, $d173 + ld bc, $002c + jr .asm_21729 ; 0x21721 $6 + ld hl, $da9e + ld bc, $0021 +.asm_21729 + ld a, [$cf92] + call AddNTimes + ld b, $4 +.asm_21731 + ld a, [hli] + push hl + push bc + ld hl, HMMoveArray ; $5745 + ld de, $0001 + call IsInArray + pop bc + pop hl + ret c + dec b + jr nz, .asm_21731 ; 0x21741 $ee + and a + ret + +HMMoveArray: ; 21745 (8:5745) + db CUT + db FLY + db SURF + db STRENGTH + db FLASH + db $ff + +Func_2174b: ; 2174b (8:574b) + FuncCoord 9, 10 ; $c471 + ld hl, Coord + ld b, $6 + ld c, $9 + call TextBoxBorder + ld a, [$ccd3] + and a + ld de, DepositPCText ; $57cb + jr nz, .asm_21761 + ld de, WithdrawPCText ; $57d3 +.asm_21761 + FuncCoord 11, 12 ; $c49b + ld hl, Coord + call PlaceString + FuncCoord 11, 14 ; $c4c3 + ld hl, Coord + ld de, StatsCancelPCText ; $57dc + call PlaceString + ld hl, wTopMenuItemY ; $cc24 + ld a, $c + ld [hli], a + ld a, $a + ld [hli], a + xor a + ld [hli], a + inc hl + ld a, $2 + ld [hli], a + ld a, $3 + ld [hli], a + xor a + ld [hl], a + ld hl, wListScrollOffset ; $cc36 + ld [hli], a + ld [hl], a + ld [wPlayerMonNumber], a ; $cc2f + ld [$cc2b], a +.asm_2178f + call HandleMenuInput + bit 1, a + jr nz, .asm_2179f + ld a, [wCurrentMenuItem] ; $cc26 + and a + jr z, .asm_217a1 + dec a + jr z, .asm_217a3 +.asm_2179f + and a + ret +.asm_217a1 + scf + ret +.asm_217a3 + call SaveScreenTilesToBuffer1 + ld a, [$ccd3] + and a + ld a, $0 + jr nz, .asm_217b0 + ld a, $2 +.asm_217b0 + ld [$cc49], a + ld a, $36 + call Predef ; indirect jump to StatusScreen (12953 (4:6953)) + ld a, $37 + call Predef ; indirect jump to StatusScreen2 (12b57 (4:6b57)) + call LoadScreenTilesFromBuffer1 + call ReloadTilesetTilePatterns + call GoPAL_SET_CF1C + call LoadGBPal + jr .asm_2178f + +DepositPCText: ; 217cb (8:57cb) + db "DEPOSIT@" + +WithdrawPCText: ; 217d3 (8:57d3) + db "WITHDRAW@" + +StatsCancelPCText: ; 217dc (8:57dc) + db "STATS",$4e,"CANCEL@" + +SwitchOnText: ; 0x217e9 + TX_FAR _SwitchOnText + db "@" + +WhatText: ; 0x217ee + TX_FAR _WhatText + db "@" + +DepositWhichMonText: ; 0x217f3 + TX_FAR _DepositWhichMonText + db "@" + +MonWasStoredText: ; 0x217f8 + TX_FAR _MonWasStoredText + db "@" + +CantDepositLastMonText: ; 0x217fd + TX_FAR _CantDepositLastMonText + db "@" + +BoxFullText: ; 0x21802 + TX_FAR _BoxFullText + db "@" + +MonIsTakenOutText: ; 0x21807 + TX_FAR _MonIsTakenOutText + db "@" + +NoMonText: ; 0x2180c + TX_FAR _NoMonText + db "@" + +CantTakeMonText: ; 0x21811 + TX_FAR _CantTakeMonText + db "@" + +ReleaseWhichMonText: ; 0x21816 + TX_FAR _ReleaseWhichMonText + db "@" + +OnceReleasedText: ; 0x2181b + TX_FAR _OnceReleasedText + db "@" + +MonWasReleasedText: ; 0x21820 + TX_FAR _MonWasReleasedText + db "@" + +Func_21825: ; 5824 (8:5825) + ld a, [$ff00+$aa] + cp $1 + ret z + ld a, [$c109] + cp $c + ret nz + ld a, [$d35e] + cp $ef + ld a, $2 + jr z, .asm_2183a + inc a +.asm_2183a + ld [$d12b], a + call EnableAutoTextBoxDrawing + ld a, $22 + jp Func_3ef5 + +Func_21845: ; 5845 (8:5845) + ld a, [$ff00+$aa] + cp $2 + ret z + ld a, [$c109] + cp $8 + ret nz + ld a, [$d35e] + cp $ef + ld a, $2 + jr z, .asm_2185a + inc a +.asm_2185a + ld [$d12b], a + call EnableAutoTextBoxDrawing + ld a, $22 + jp Func_3ef5 + +UnnamedText_21865: ; 21865 (8:5865) + TX_FAR _UnnamedText_21865 + db "@" + + ld a, [$c109] + cp $4 + ret nz + call EnableAutoTextBoxDrawing + ld a, $23 + jp Func_3ef5 + +Unknown_21878: ; 21878 (8:5878) + db $FD + From 4cdc06b2c34d9699bb64de40dcd27062d66dbf99 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 14:17:58 -0500 Subject: [PATCH 04/41] consolidate red/blue diffs in sfx --- audio.asm | 7 +------ music/blue/sfx_1f_5d.asm | 20 -------------------- music/sfx/sfx_1f_5d.asm | 19 ++++++++++++++++++- 3 files changed, 19 insertions(+), 27 deletions(-) delete mode 100644 music/blue/sfx_1f_5d.asm diff --git a/audio.asm b/audio.asm index c2e0db45..4451b42a 100644 --- a/audio.asm +++ b/audio.asm @@ -623,12 +623,7 @@ INCLUDE "music/sfx/sfx_1f_5a.asm" INCLUDE "music/sfx/sfx_1f_5b.asm" INCLUDE "music/sfx/sfx_1f_5c.asm" INCLUDE "music/sfx/sfx_1f_40.asm" -IF _RED - INCLUDE "music/sfx/sfx_1f_5d.asm" -ENDC -IF _BLUE - INCLUDE "music/blue/sfx_1f_5d.asm" -ENDC +INCLUDE "music/sfx/sfx_1f_5d.asm" INCLUDE "music/sfx/sfx_1f_3d.asm" INCLUDE "music/sfx/sfx_1f_43.asm" INCLUDE "music/sfx/sfx_1f_3e.asm" diff --git a/music/blue/sfx_1f_5d.asm b/music/blue/sfx_1f_5d.asm deleted file mode 100644 index 8b1ce426..00000000 --- a/music/blue/sfx_1f_5d.asm +++ /dev/null @@ -1,20 +0,0 @@ -SFX_1f_5d_Ch1: ; 7c45e (1f:445e) - duty 2 - unknownsfx0x20 3, 228, 0, 6 - unknownsfx0x20 3, 228, 128, 6 - unknownsfx0x20 3, 228, 192, 6 - unknownsfx0x20 3, 228, 0, 7 - unknownsfx0x20 15, 242, 224, 7 - endchannel - - -SFX_1f_5d_Ch2: ; 7c475 (1f:4475) - duty 2 - unknownsfx0x20 3, 8, 0, 0 - unknownsfx0x20 3, 196, 1, 6 - unknownsfx0x20 3, 196, 129, 6 - unknownsfx0x20 3, 196, 193, 6 - unknownsfx0x20 3, 196, 1, 7 - unknownsfx0x20 15, 210, 225, 7 - endchannel -; 0x7c490 \ No newline at end of file diff --git a/music/sfx/sfx_1f_5d.asm b/music/sfx/sfx_1f_5d.asm index f8ce8d23..297f826d 100644 --- a/music/sfx/sfx_1f_5d.asm +++ b/music/sfx/sfx_1f_5d.asm @@ -1,20 +1,37 @@ SFX_1f_5d_Ch1: ; 7c45e (1f:445e) duty 2 +IF _RED unknownsfx0x20 4, 244, 0, 7 unknownsfx0x20 3, 228, 128, 6 unknownsfx0x20 3, 228, 192, 6 unknownsfx0x20 3, 228, 0, 7 unknownsfx0x20 2, 228, 160, 7 +ELSE + unknownsfx0x20 3, 228, 0, 6 + unknownsfx0x20 3, 228, 128, 6 + unknownsfx0x20 3, 228, 192, 6 + unknownsfx0x20 3, 228, 0, 7 + unknownsfx0x20 15, 242, 224, 7 +ENDC endchannel SFX_1f_5d_Ch2: ; 7c475 (1f:4475) duty 2 +IF _RED unknownsfx0x20 4, 8, 0, 0 unknownsfx0x20 3, 212, 1, 7 unknownsfx0x20 3, 196, 129, 6 unknownsfx0x20 3, 196, 193, 6 unknownsfx0x20 3, 196, 1, 7 unknownsfx0x20 2, 196, 161, 7 +ELSE + unknownsfx0x20 3, 8, 0, 0 + unknownsfx0x20 3, 196, 1, 6 + unknownsfx0x20 3, 196, 129, 6 + unknownsfx0x20 3, 196, 193, 6 + unknownsfx0x20 3, 196, 1, 7 + unknownsfx0x20 15, 210, 225, 7 +ENDC endchannel -; 0x7c490 \ No newline at end of file +; 0x7c490 From 068992617de2044a4271c1b3b054a6dcb9b216da Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 14:24:57 -0500 Subject: [PATCH 05/41] split instrument duty into audio/ --- audio.asm | 102 ++--------------------------------------------- audio/duty_1.asm | 33 +++++++++++++++ audio/duty_2.asm | 30 ++++++++++++++ audio/duty_3.asm | 33 +++++++++++++++ 4 files changed, 99 insertions(+), 99 deletions(-) create mode 100644 audio/duty_1.asm create mode 100644 audio/duty_2.asm create mode 100644 audio/duty_3.asm diff --git a/audio.asm b/audio.asm index 4451b42a..34c7f4c7 100644 --- a/audio.asm +++ b/audio.asm @@ -45,40 +45,7 @@ INCLUDE "music/sfx/sfx_02_11.asm" INCLUDE "music/sfx/sfx_02_12.asm" INCLUDE "music/sfx/sfx_02_13.asm" - -Music2_Channel3DutyPointers: ; 0x8361 - dw Music2_Channel3Duty0 - dw Music2_Channel3Duty1 - dw Music2_Channel3Duty2 - dw Music2_Channel3Duty3 - dw Music2_Channel3Duty4 - dw Music2_Channel3Duty5 ; used in the Lavender Town theme - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music2_Channel3Duty0: ; 0x8373 - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music2_Channel3Duty1: ; 0x8383 - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music2_Channel3Duty2: ; 0x8393 - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music2_Channel3Duty3: ; 0x83a3 - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music2_Channel3Duty4: ; 0x83b3 - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - -; duty 5 reads from sfx data -Music2_Channel3Duty5: ; 0x83c3 - +INCLUDE "audio/duty_1.asm" INCLUDE "music/sfx/sfx_02_3f.asm" INCLUDE "music/sfx/sfx_02_5e.asm" @@ -310,37 +277,7 @@ INCLUDE "music/sfx/sfx_08_11.asm" INCLUDE "music/sfx/sfx_08_12.asm" INCLUDE "music/sfx/sfx_08_13.asm" - -Music8_Channel3DutyPointers: ; 20361 (8:4361) - dw Music8_Channel3Duty0 - dw Music8_Channel3Duty1 - dw Music8_Channel3Duty2 - dw Music8_Channel3Duty3 - dw Music8_Channel3Duty4 - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music8_Channel3Duty0: ; 20373 (8:4373) - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music8_Channel3Duty1: ; 20383 (8:4383) - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music8_Channel3Duty2: ; 20393 (8:4393) - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music8_Channel3Duty3: ; 203a3 (8:43a3) - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music8_Channel3Duty4: ; 203b3 (8:43b3) - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - +INCLUDE "audio/duty_2.asm" INCLUDE "music/sfx/sfx_08_40.asm" INCLUDE "music/sfx/sfx_08_3f.asm" @@ -578,40 +515,7 @@ INCLUDE "music/sfx/sfx_1f_11.asm" INCLUDE "music/sfx/sfx_1f_12.asm" INCLUDE "music/sfx/sfx_1f_13.asm" - -Music1f_Channel3DutyPointers: ; 7c361 (1f:4361) - dw Music1f_Channel3Duty0 - dw Music1f_Channel3Duty1 - dw Music1f_Channel3Duty2 - dw Music1f_Channel3Duty3 - dw Music1f_Channel3Duty4 - dw Music1f_Channel3Duty5 ; used in the Pokemon Tower theme - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused - -; these are the definitions for the channel 3 instruments -; each instrument definition is made up of 32 points (nibbles) that form -; the graph of the wave -; the current instrument is copied to $FF30 -Music1f_Channel3Duty0: ; 7c373 (1f:4373) - db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 - -Music1f_Channel3Duty1: ; 7c383 (1f:4383) - db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 - -Music1f_Channel3Duty2: ; 7c393 (1f:4393) - db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 - -Music1f_Channel3Duty3: ; 7c3a3 (1f:43a3) - db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 - -Music1f_Channel3Duty4: ; 7c3b3 (1f:43b3) - db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 - -; duty 5 reads from sfx data -Music1f_Channel3Duty5: ; 7c3c3 (1f:43c3) - +INCLUDE "audio/duty_3.asm" INCLUDE "music/sfx/sfx_1f_3f.asm" INCLUDE "music/sfx/sfx_1f_56.asm" diff --git a/audio/duty_1.asm b/audio/duty_1.asm new file mode 100644 index 00000000..0e43feff --- /dev/null +++ b/audio/duty_1.asm @@ -0,0 +1,33 @@ +Music2_Channel3DutyPointers: ; 0x8361 + dw Music2_Channel3Duty0 + dw Music2_Channel3Duty1 + dw Music2_Channel3Duty2 + dw Music2_Channel3Duty3 + dw Music2_Channel3Duty4 + dw Music2_Channel3Duty5 ; used in the Lavender Town theme + dw SFX_02_3f_Ch1 ; unused + dw SFX_02_3f_Ch1 ; unused + dw SFX_02_3f_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music2_Channel3Duty0: ; 0x8373 + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music2_Channel3Duty1: ; 0x8383 + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music2_Channel3Duty2: ; 0x8393 + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music2_Channel3Duty3: ; 0x83a3 + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music2_Channel3Duty4: ; 0x83b3 + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + +; duty 5 reads from sfx data +Music2_Channel3Duty5: ; 0x83c3 + diff --git a/audio/duty_2.asm b/audio/duty_2.asm new file mode 100644 index 00000000..72b73bfd --- /dev/null +++ b/audio/duty_2.asm @@ -0,0 +1,30 @@ +Music8_Channel3DutyPointers: ; 20361 (8:4361) + dw Music8_Channel3Duty0 + dw Music8_Channel3Duty1 + dw Music8_Channel3Duty2 + dw Music8_Channel3Duty3 + dw Music8_Channel3Duty4 + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + dw SFX_08_40_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music8_Channel3Duty0: ; 20373 (8:4373) + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music8_Channel3Duty1: ; 20383 (8:4383) + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music8_Channel3Duty2: ; 20393 (8:4393) + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music8_Channel3Duty3: ; 203a3 (8:43a3) + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music8_Channel3Duty4: ; 203b3 (8:43b3) + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + diff --git a/audio/duty_3.asm b/audio/duty_3.asm new file mode 100644 index 00000000..3c41a764 --- /dev/null +++ b/audio/duty_3.asm @@ -0,0 +1,33 @@ +Music1f_Channel3DutyPointers: ; 7c361 (1f:4361) + dw Music1f_Channel3Duty0 + dw Music1f_Channel3Duty1 + dw Music1f_Channel3Duty2 + dw Music1f_Channel3Duty3 + dw Music1f_Channel3Duty4 + dw Music1f_Channel3Duty5 ; used in the Pokemon Tower theme + dw SFX_1f_3f_Ch1 ; unused + dw SFX_1f_3f_Ch1 ; unused + dw SFX_1f_3f_Ch1 ; unused + +; these are the definitions for the channel 3 instruments +; each instrument definition is made up of 32 points (nibbles) that form +; the graph of the wave +; the current instrument is copied to $FF30 +Music1f_Channel3Duty0: ; 7c373 (1f:4373) + db $02,$46,$8A,$CE,$FF,$FE,$ED,$DC,$CB,$A9,$87,$65,$44,$33,$22,$11 + +Music1f_Channel3Duty1: ; 7c383 (1f:4383) + db $02,$46,$8A,$CE,$EF,$FF,$FE,$EE,$DD,$CB,$A9,$87,$65,$43,$22,$11 + +Music1f_Channel3Duty2: ; 7c393 (1f:4393) + db $13,$69,$BD,$EE,$EE,$FF,$FF,$ED,$DE,$FF,$FF,$EE,$EE,$DB,$96,$31 + +Music1f_Channel3Duty3: ; 7c3a3 (1f:43a3) + db $02,$46,$8A,$CD,$EF,$FE,$DE,$FF,$EE,$DC,$BA,$98,$76,$54,$32,$10 + +Music1f_Channel3Duty4: ; 7c3b3 (1f:43b3) + db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 + +; duty 5 reads from sfx data +Music1f_Channel3Duty5: ; 7c3c3 (1f:43c3) + From 1107dff7c1dea4ff264388ef0f44072fb0d3d1ad Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 14:27:26 -0500 Subject: [PATCH 06/41] fix some duty labels --- audio/duty_1.asm | 6 +++--- audio/duty_2.asm | 10 ++++++---- audio/duty_3.asm | 6 +++--- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/audio/duty_1.asm b/audio/duty_1.asm index 0e43feff..2c650ac1 100644 --- a/audio/duty_1.asm +++ b/audio/duty_1.asm @@ -5,9 +5,9 @@ Music2_Channel3DutyPointers: ; 0x8361 dw Music2_Channel3Duty3 dw Music2_Channel3Duty4 dw Music2_Channel3Duty5 ; used in the Lavender Town theme - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused - dw SFX_02_3f_Ch1 ; unused + dw Music2_Channel3Duty5 ; unused + dw Music2_Channel3Duty5 ; unused + dw Music2_Channel3Duty5 ; unused ; these are the definitions for the channel 3 instruments ; each instrument definition is made up of 32 points (nibbles) that form diff --git a/audio/duty_2.asm b/audio/duty_2.asm index 72b73bfd..b4561091 100644 --- a/audio/duty_2.asm +++ b/audio/duty_2.asm @@ -4,10 +4,10 @@ Music8_Channel3DutyPointers: ; 20361 (8:4361) dw Music8_Channel3Duty2 dw Music8_Channel3Duty3 dw Music8_Channel3Duty4 - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused - dw SFX_08_40_Ch1 ; unused + dw Music8_Channel3Duty5 ; unused + dw Music8_Channel3Duty5 ; unused + dw Music8_Channel3Duty5 ; unused + dw Music8_Channel3Duty5 ; unused ; these are the definitions for the channel 3 instruments ; each instrument definition is made up of 32 points (nibbles) that form @@ -28,3 +28,5 @@ Music8_Channel3Duty3: ; 203a3 (8:43a3) Music8_Channel3Duty4: ; 203b3 (8:43b3) db $01,$23,$45,$67,$8A,$CD,$EE,$F7,$7F,$EE,$DC,$A8,$76,$54,$32,$10 +Music8_Channel3Duty5: + diff --git a/audio/duty_3.asm b/audio/duty_3.asm index 3c41a764..b9702a7f 100644 --- a/audio/duty_3.asm +++ b/audio/duty_3.asm @@ -5,9 +5,9 @@ Music1f_Channel3DutyPointers: ; 7c361 (1f:4361) dw Music1f_Channel3Duty3 dw Music1f_Channel3Duty4 dw Music1f_Channel3Duty5 ; used in the Pokemon Tower theme - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused - dw SFX_1f_3f_Ch1 ; unused + dw Music1f_Channel3Duty5 ; unused + dw Music1f_Channel3Duty5 ; unused + dw Music1f_Channel3Duty5 ; unused ; these are the definitions for the channel 3 instruments ; each instrument definition is made up of 32 points (nibbles) that form From 2622824f1bde260c7206ac49461a26238e6271d9 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 14:41:40 -0500 Subject: [PATCH 07/41] rearrange audio.asm --- audio.asm | 487 +++++++++++++++++++++++++++--------------------------- 1 file changed, 239 insertions(+), 248 deletions(-) diff --git a/audio.asm b/audio.asm index 34c7f4c7..acfeffc5 100644 --- a/audio.asm +++ b/audio.asm @@ -14,14 +14,26 @@ INCLUDE "constants/move_constants.asm" SECTION "Sound Effect Headers 1", ROMX, BANK[AUDIO_1] - INCLUDE "music/headers/sfxheaders02.asm" +SECTION "Sound Effect Headers 2", ROMX, BANK[AUDIO_2] +INCLUDE "music/headers/sfxheaders08.asm" + +SECTION "Sound Effect Headers 3", ROMX, BANK[AUDIO_3] +INCLUDE "music/headers/sfxheaders1f.asm" + + SECTION "Music Headers 1", ROMX, BANK[AUDIO_1] - INCLUDE "music/headers/musicheaders02.asm" +SECTION "Music Headers 2", ROMX, BANK[AUDIO_2] +INCLUDE "music/headers/musicheaders08.asm" + +SECTION "Music Headers 3", ROMX, BANK[AUDIO_3] +INCLUDE "music/headers/musicheaders1f.asm" + + SECTION "Sound Effects 1", ROMX, BANK[AUDIO_1] @@ -122,139 +134,6 @@ INCLUDE "music/sfx/sfx_02_35.asm" INCLUDE "music/sfx/sfx_02_36.asm" -SECTION "Audio Engine 1", ROMX, BANK[AUDIO_1] - -PlayBattleMusic:: ; 0x90c6 - xor a - ld [wMusicHeaderPointer], a - ld [$d083], a - dec a - ld [$c0ee], a - call PlaySound ; stop music - call DelayFrame - ld c, BANK(Music_GymLeaderBattle) - ld a, [W_GYMLEADERNO] - and a - jr z, .notGymLeaderBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 - jr .playSong -.notGymLeaderBattle - ld a, [W_CUROPPONENT] - cp $c8 - jr c, .wildBattle - cp SONY3 + $c8 - jr z, .finalBattle - cp LANCE + $c8 - jr nz, .normalTrainerBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 ; lance also plays gym leader theme - jr .playSong -.normalTrainerBattle - ld a, (Music_TrainerBattle - $4000) / 3 - jr .playSong -.finalBattle - ld a, (Music_FinalBattle - $4000) / 3 - jr .playSong -.wildBattle - ld a, (Music_WildBattle - $4000) / 3 -.playSong - jp PlayMusic - - -INCLUDE "audio/engine_1.asm" - - -; an alternate start for MeetRival which has a different first measure -Music_RivalAlternateStart:: ; 0x9b47 - ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_MeetRival_branch_b1a2 - call Music2_OverwriteChannelPointer - ld de, Music_MeetRival_branch_b21d - call Music2_OverwriteChannelPointer - ld de, Music_MeetRival_branch_b2b5 - -Music2_OverwriteChannelPointer: ; 0x9b60 - ld a, e - ld [hli], a - ld a, d - ld [hli], a - ret - -; an alternate tempo for MeetRival which is slightly slower -Music_RivalAlternateTempo:: ; 0x9b65 - ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_MeetRival_branch_b119 - jp Music2_OverwriteChannelPointer - -; applies both the alternate start and alternate tempo -Music_RivalAlternateStartAndTempo:: ; 0x9b75 - call Music_RivalAlternateStart - ld hl, $c006 - ld de, Music_MeetRival_branch_b19b - jp Music2_OverwriteChannelPointer - -; an alternate tempo for Cities1 which is used for the Hall of Fame room -Music_Cities1AlternateTempo:: ; 0x9b81 - ld a, $a - ld [$cfc8], a - ld [$cfc9], a - ld a, $ff - ld [wMusicHeaderPointer], a - ld c, $64 - call DelayFrames - ld c, BANK(Music_Cities1) - ld a, (Music_Cities1 - $4000) / 3 - call PlayMusic - ld hl, $c006 - ld de, Music_Cities1_branch_aa6f - jp Music2_OverwriteChannelPointer - - -SECTION "Music 1", ROMX, BANK[AUDIO_1] - -INCLUDE "music/pkmnhealed.asm" -INCLUDE "music/routes1.asm" -INCLUDE "music/routes2.asm" -INCLUDE "music/routes3.asm" -INCLUDE "music/routes4.asm" -INCLUDE "music/indigoplateau.asm" -INCLUDE "music/pallettown.asm" -INCLUDE "music/unusedsong.asm" -INCLUDE "music/cities1.asm" -INCLUDE "music/sfx/sfx_02_3a.asm" -INCLUDE "music/museumguy.asm" -INCLUDE "music/meetprofoak.asm" -INCLUDE "music/meetrival.asm" -INCLUDE "music/sfx/sfx_02_41.asm" -INCLUDE "music/sfx/sfx_02_3b.asm" -INCLUDE "music/sfx/sfx_02_42.asm" -INCLUDE "music/ssanne.asm" -INCLUDE "music/cities2.asm" -INCLUDE "music/celadon.asm" -INCLUDE "music/cinnabar.asm" -INCLUDE "music/vermilion.asm" -INCLUDE "music/lavender.asm" -INCLUDE "music/safarizone.asm" -INCLUDE "music/gym.asm" -INCLUDE "music/pokecenter.asm" - - - -SECTION "Sound Effect Headers 2", ROMX, BANK[AUDIO_2] - -INCLUDE "music/headers/sfxheaders08.asm" - - -SECTION "Music Headers 2", ROMX, BANK[AUDIO_2] - -INCLUDE "music/headers/musicheaders08.asm" - - SECTION "Sound Effects 2", ROMX, BANK[AUDIO_2] INCLUDE "music/sfx/sfx_08_01.asm" @@ -380,119 +259,6 @@ INCLUDE "music/sfx/sfx_08_35.asm" INCLUDE "music/sfx/sfx_08_36.asm" - -SECTION "Audio Engine 2", ROMX, BANK[AUDIO_2] - -Func_2136e: ; 2136e (8:536e) - ld a, [$d083] - cp $ff - jr z, .asm_2139b - bit 7, a - ret z - and $7f - jr nz, .asm_21383 - call Func_213a7 - ld a, $1e - jr .asm_21395 -.asm_21383 - cp $14 - jr nz, .asm_2138a - call Func_213ac -.asm_2138a - ld a, $86 - ld [$c02a], a - ld a, [$d083] - and $7f - dec a -.asm_21395 - set 7, a - ld [$d083], a - ret -.asm_2139b - xor a - ld [$d083], a - ld [$c02a], a - ld de, Unknown_213c4 ; $53c4 - jr asm_213af - -Func_213a7: ; 213a7 (8:53a7) - ld de, Unknown_213bc ; $53bc - jr asm_213af - -Func_213ac: ; 213ac (8:53ac) - ld de, Unknown_213c0 ; $53c0 -asm_213af: ; 213af (8:53af) - ld hl, $ff10 - ld c, $5 - xor a -.asm_213b5 - ld [hli], a - ld a, [de] - inc de - dec c - jr nz, .asm_213b5 - ret - -Unknown_213bc: ; 213bc (8:53bc) - db $A0,$E2,$50,$87 - -Unknown_213c0: ; 213c0 (8:53c0) - db $B0,$E2,$EE,$86 - -Unknown_213c4: ; 213c4 (8:53c4) - db $00,$00,$00,$80 - - -INCLUDE "menu/pc.asm" - -INCLUDE "audio/engine_2.asm" - - -Music_PokeFluteInBattle: ; 22306 (8:6306) - ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle - call PlaySoundWaitForCurrent - ld hl, $c00e - ld de, SFX_08_PokeFlute_Ch1 - call Music8_OverwriteChannelPointer - ld de, SFX_08_PokeFlute_Ch2 - call Music8_OverwriteChannelPointer - ld de, SFX_08_PokeFlute_Ch3 - -Music8_OverwriteChannelPointer: ; 2231d (8:631d) - ld a, e - ld [hli], a - ld a, d - ld [hli], a - ret - - -SECTION "Music 2", ROMX, BANK[AUDIO_2] - -INCLUDE "music/sfx/sfx_08_pokeflute.asm" -INCLUDE "music/sfx/sfx_08_unused2.asm" -INCLUDE "music/gymleaderbattle.asm" -INCLUDE "music/trainerbattle.asm" -INCLUDE "music/wildbattle.asm" -INCLUDE "music/finalbattle.asm" -INCLUDE "music/sfx/sfx_08_3a.asm" -INCLUDE "music/sfx/sfx_08_3b.asm" -INCLUDE "music/sfx/sfx_08_46.asm" -INCLUDE "music/defeatedtrainer.asm" -INCLUDE "music/defeatedwildmon.asm" -INCLUDE "music/defeatedgymleader.asm" - - - -SECTION "Sound Effect Headers 3", ROMX, BANK[AUDIO_3] - -INCLUDE "music/headers/sfxheaders1f.asm" - - -SECTION "Music Headers 3", ROMX, BANK[AUDIO_3] - -INCLUDE "music/headers/musicheaders1f.asm" - - SECTION "Sound Effects 3", ROMX, BANK[AUDIO_3] INCLUDE "music/sfx/sfx_1f_01.asm" @@ -600,6 +366,185 @@ INCLUDE "music/sfx/sfx_1f_35.asm" INCLUDE "music/sfx/sfx_1f_36.asm" + +SECTION "Audio Engine 1", ROMX, BANK[AUDIO_1] + +PlayBattleMusic:: ; 0x90c6 + xor a + ld [wMusicHeaderPointer], a + ld [$d083], a + dec a + ld [$c0ee], a + call PlaySound ; stop music + call DelayFrame + ld c, BANK(Music_GymLeaderBattle) + ld a, [W_GYMLEADERNO] + and a + jr z, .notGymLeaderBattle + ld a, (Music_GymLeaderBattle - $4000) / 3 + jr .playSong +.notGymLeaderBattle + ld a, [W_CUROPPONENT] + cp $c8 + jr c, .wildBattle + cp SONY3 + $c8 + jr z, .finalBattle + cp LANCE + $c8 + jr nz, .normalTrainerBattle + ld a, (Music_GymLeaderBattle - $4000) / 3 ; lance also plays gym leader theme + jr .playSong +.normalTrainerBattle + ld a, (Music_TrainerBattle - $4000) / 3 + jr .playSong +.finalBattle + ld a, (Music_FinalBattle - $4000) / 3 + jr .playSong +.wildBattle + ld a, (Music_WildBattle - $4000) / 3 +.playSong + jp PlayMusic + + +INCLUDE "audio/engine_1.asm" + + +; an alternate start for MeetRival which has a different first measure +Music_RivalAlternateStart:: ; 0x9b47 + ld c, BANK(Music_MeetRival) + ld a, (Music_MeetRival - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_MeetRival_branch_b1a2 + call Music2_OverwriteChannelPointer + ld de, Music_MeetRival_branch_b21d + call Music2_OverwriteChannelPointer + ld de, Music_MeetRival_branch_b2b5 + +Music2_OverwriteChannelPointer: ; 0x9b60 + ld a, e + ld [hli], a + ld a, d + ld [hli], a + ret + +; an alternate tempo for MeetRival which is slightly slower +Music_RivalAlternateTempo:: ; 0x9b65 + ld c, BANK(Music_MeetRival) + ld a, (Music_MeetRival - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_MeetRival_branch_b119 + jp Music2_OverwriteChannelPointer + +; applies both the alternate start and alternate tempo +Music_RivalAlternateStartAndTempo:: ; 0x9b75 + call Music_RivalAlternateStart + ld hl, $c006 + ld de, Music_MeetRival_branch_b19b + jp Music2_OverwriteChannelPointer + +; an alternate tempo for Cities1 which is used for the Hall of Fame room +Music_Cities1AlternateTempo:: ; 0x9b81 + ld a, $a + ld [$cfc8], a + ld [$cfc9], a + ld a, $ff + ld [wMusicHeaderPointer], a + ld c, $64 + call DelayFrames + ld c, BANK(Music_Cities1) + ld a, (Music_Cities1 - $4000) / 3 + call PlayMusic + ld hl, $c006 + ld de, Music_Cities1_branch_aa6f + jp Music2_OverwriteChannelPointer + + +SECTION "Audio Engine 2", ROMX, BANK[AUDIO_2] + +Func_2136e: ; 2136e (8:536e) + ld a, [$d083] + cp $ff + jr z, .asm_2139b + bit 7, a + ret z + and $7f + jr nz, .asm_21383 + call Func_213a7 + ld a, $1e + jr .asm_21395 +.asm_21383 + cp $14 + jr nz, .asm_2138a + call Func_213ac +.asm_2138a + ld a, $86 + ld [$c02a], a + ld a, [$d083] + and $7f + dec a +.asm_21395 + set 7, a + ld [$d083], a + ret +.asm_2139b + xor a + ld [$d083], a + ld [$c02a], a + ld de, Unknown_213c4 ; $53c4 + jr asm_213af + +Func_213a7: ; 213a7 (8:53a7) + ld de, Unknown_213bc ; $53bc + jr asm_213af + +Func_213ac: ; 213ac (8:53ac) + ld de, Unknown_213c0 ; $53c0 +asm_213af: ; 213af (8:53af) + ld hl, $ff10 + ld c, $5 + xor a +.asm_213b5 + ld [hli], a + ld a, [de] + inc de + dec c + jr nz, .asm_213b5 + ret + +Unknown_213bc: ; 213bc (8:53bc) + db $A0,$E2,$50,$87 + +Unknown_213c0: ; 213c0 (8:53c0) + db $B0,$E2,$EE,$86 + +Unknown_213c4: ; 213c4 (8:53c4) + db $00,$00,$00,$80 + + +INCLUDE "menu/pc.asm" + +INCLUDE "audio/engine_2.asm" + + +Music_PokeFluteInBattle: ; 22306 (8:6306) + ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle + call PlaySoundWaitForCurrent + ld hl, $c00e + ld de, SFX_08_PokeFlute_Ch1 + call Music8_OverwriteChannelPointer + ld de, SFX_08_PokeFlute_Ch2 + call Music8_OverwriteChannelPointer + ld de, SFX_08_PokeFlute_Ch3 + +Music8_OverwriteChannelPointer: ; 2231d (8:631d) + ld a, e + ld [hli], a + ld a, d + ld [hli], a + ret + + SECTION "Audio Engine 3", ROMX, BANK[AUDIO_3] Func_7d13b:: ; 7d13b (1f:513b) @@ -650,6 +595,52 @@ OwnedMonValues: ; 7d170 (1f:5170) INCLUDE "audio/engine_3.asm" + +SECTION "Music 1", ROMX, BANK[AUDIO_1] + +INCLUDE "music/pkmnhealed.asm" +INCLUDE "music/routes1.asm" +INCLUDE "music/routes2.asm" +INCLUDE "music/routes3.asm" +INCLUDE "music/routes4.asm" +INCLUDE "music/indigoplateau.asm" +INCLUDE "music/pallettown.asm" +INCLUDE "music/unusedsong.asm" +INCLUDE "music/cities1.asm" +INCLUDE "music/sfx/sfx_02_3a.asm" +INCLUDE "music/museumguy.asm" +INCLUDE "music/meetprofoak.asm" +INCLUDE "music/meetrival.asm" +INCLUDE "music/sfx/sfx_02_41.asm" +INCLUDE "music/sfx/sfx_02_3b.asm" +INCLUDE "music/sfx/sfx_02_42.asm" +INCLUDE "music/ssanne.asm" +INCLUDE "music/cities2.asm" +INCLUDE "music/celadon.asm" +INCLUDE "music/cinnabar.asm" +INCLUDE "music/vermilion.asm" +INCLUDE "music/lavender.asm" +INCLUDE "music/safarizone.asm" +INCLUDE "music/gym.asm" +INCLUDE "music/pokecenter.asm" + + +SECTION "Music 2", ROMX, BANK[AUDIO_2] + +INCLUDE "music/sfx/sfx_08_pokeflute.asm" +INCLUDE "music/sfx/sfx_08_unused2.asm" +INCLUDE "music/gymleaderbattle.asm" +INCLUDE "music/trainerbattle.asm" +INCLUDE "music/wildbattle.asm" +INCLUDE "music/finalbattle.asm" +INCLUDE "music/sfx/sfx_08_3a.asm" +INCLUDE "music/sfx/sfx_08_3b.asm" +INCLUDE "music/sfx/sfx_08_46.asm" +INCLUDE "music/defeatedtrainer.asm" +INCLUDE "music/defeatedwildmon.asm" +INCLUDE "music/defeatedgymleader.asm" + + SECTION "Music 3", ROMX, BANK[AUDIO_3] INCLUDE "music/bikeriding.asm" From 001270908a91e6d0413c485ebe1ed46ef00e40a6 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 14:06:59 -0500 Subject: [PATCH 08/41] define music constants instead of running around with ((label-$4000)/3) --- audio.asm | 1 + constants.asm | 1 + constants/music_constants.asm | 54 +++++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 constants/music_constants.asm diff --git a/audio.asm b/audio.asm index acfeffc5..81fd8b8b 100644 --- a/audio.asm +++ b/audio.asm @@ -5,6 +5,7 @@ AUDIO_2 EQU $8 AUDIO_3 EQU $1f INCLUDE "macros.asm" +INCLUDE "constants/music_constants.asm" INCLUDE "constants/trainer_constants.asm" ; PC diff --git a/constants.asm b/constants.asm index 0f726b6a..2d5b3d9b 100644 --- a/constants.asm +++ b/constants.asm @@ -26,3 +26,4 @@ INCLUDE "constants/map_constants.asm" INCLUDE "constants/map_dimensions.asm" INCLUDE "constants/connection_constants.asm" INCLUDE "constants/credits_constants.asm" +INCLUDE "constants/music_constants.asm" diff --git a/constants/music_constants.asm b/constants/music_constants.asm new file mode 100644 index 00000000..3d2ac3f8 --- /dev/null +++ b/constants/music_constants.asm @@ -0,0 +1,54 @@ +; Song ids are calculated by address to save space. + +music_const: MACRO +\1 EQUS "((\2 - $4000) / 3)" +ENDM + + music_const MUSIC_PALLET_TOWN, Music_PalletTown + music_const MUSIC_POKECENTER, Music_Pokecenter + music_const MUSIC_GYM, Music_Gym + music_const MUSIC_CITIES1, Music_Cities1 + music_const MUSIC_CITIES2, Music_Cities2 + music_const MUSIC_CELADON, Music_Celadon + music_const MUSIC_CINNABAR, Music_Cinnabar + music_const MUSIC_VERMILION, Music_Vermilion + music_const MUSIC_LAVENDER, Music_Lavender + music_const MUSIC_SS_ANNE, Music_SSAnne + music_const MUSIC_MEET_PROF_OAK, Music_MeetProfOak + music_const MUSIC_MEET_RIVAL, Music_MeetRival + music_const MUSIC_MUSEUM_GUY, Music_MuseumGuy + music_const MUSIC_SAFARI_ZONE, Music_SafariZone + music_const MUSIC_PKMN_HEALED, Music_PkmnHealed + music_const MUSIC_ROUTES1, Music_Routes1 + music_const MUSIC_ROUTES2, Music_Routes2 + music_const MUSIC_ROUTES3, Music_Routes3 + music_const MUSIC_ROUTES4, Music_Routes4 + music_const MUSIC_INDIGO_PLATEAU, Music_IndigoPlateau + + music_const MUSIC_GYM_LEADER_BATTLE, Music_GymLeaderBattle + music_const MUSIC_TRAINER_BATTLE, Music_TrainerBattle + music_const MUSIC_WILD_BATTLE, Music_WildBattle + music_const MUSIC_FINAL_BATTLE, Music_FinalBattle + music_const MUSIC_DEFEATED_TRAINER, Music_DefeatedTrainer + music_const MUSIC_DEFEATED_WILD_MON, Music_DefeatedWildMon + music_const MUSIC_DEFEATED_GYM_LEADER, Music_DefeatedGymLeader + + music_const MUSIC_TITLE_SCREEN, Music_TitleScreen + music_const MUSIC_CREDITS, Music_Credits + music_const MUSIC_HALL_OF_FAME, Music_HallOfFame + music_const MUSIC_OAKS_LAB, Music_OaksLab + music_const MUSIC_JIGGLYPUFF_SONG, Music_JigglypuffSong + music_const MUSIC_BIKE_RIDING, Music_BikeRiding + music_const MUSIC_SURFING, Music_Surfing + music_const MUSIC_GAME_CORNER, Music_GameCorner + music_const MUSIC_INTRO_BATTLE, Music_IntroBattle + music_const MUSIC_DUNGEON1, Music_Dungeon1 + music_const MUSIC_DUNGEON2, Music_Dungeon2 + music_const MUSIC_DUNGEON3, Music_Dungeon3 + music_const MUSIC_CINNABAR_MANSION, Music_CinnabarMansion + music_const MUSIC_POKEMON_TOWER, Music_PokemonTower + music_const MUSIC_SILPH_CO, Music_SilphCo + music_const MUSIC_MEET_EVIL_TRAINER, Music_MeetEvilTrainer + music_const MUSIC_MEET_FEMALE_TRAINER, Music_MeetFemaleTrainer + music_const MUSIC_MEET_MALE_TRAINER, Music_MeetMaleTrainer + From 5914bb67acdb18fd490b8433a4f78c9f50ea50e2 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 14:24:40 -0500 Subject: [PATCH 09/41] use music constants everywhere some sfx are treated as music, but don't have constants yet --- audio.asm | 16 +- main.asm | 546 +++++++++++++++++++++++++++--------------------------- 2 files changed, 281 insertions(+), 281 deletions(-) mode change 100755 => 100644 main.asm diff --git a/audio.asm b/audio.asm index 81fd8b8b..a77f6f0c 100644 --- a/audio.asm +++ b/audio.asm @@ -382,7 +382,7 @@ PlayBattleMusic:: ; 0x90c6 ld a, [W_GYMLEADERNO] and a jr z, .notGymLeaderBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 + ld a, MUSIC_GYM_LEADER_BATTLE jr .playSong .notGymLeaderBattle ld a, [W_CUROPPONENT] @@ -392,16 +392,16 @@ PlayBattleMusic:: ; 0x90c6 jr z, .finalBattle cp LANCE + $c8 jr nz, .normalTrainerBattle - ld a, (Music_GymLeaderBattle - $4000) / 3 ; lance also plays gym leader theme + ld a, MUSIC_GYM_LEADER_BATTLE ; lance also plays gym leader theme jr .playSong .normalTrainerBattle - ld a, (Music_TrainerBattle - $4000) / 3 + ld a, MUSIC_TRAINER_BATTLE jr .playSong .finalBattle - ld a, (Music_FinalBattle - $4000) / 3 + ld a, MUSIC_FINAL_BATTLE jr .playSong .wildBattle - ld a, (Music_WildBattle - $4000) / 3 + ld a, MUSIC_WILD_BATTLE .playSong jp PlayMusic @@ -412,7 +412,7 @@ INCLUDE "audio/engine_1.asm" ; an alternate start for MeetRival which has a different first measure Music_RivalAlternateStart:: ; 0x9b47 ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld hl, $c006 ld de, Music_MeetRival_branch_b1a2 @@ -431,7 +431,7 @@ Music2_OverwriteChannelPointer: ; 0x9b60 ; an alternate tempo for MeetRival which is slightly slower Music_RivalAlternateTempo:: ; 0x9b65 ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld hl, $c006 ld de, Music_MeetRival_branch_b119 @@ -454,7 +454,7 @@ Music_Cities1AlternateTempo:: ; 0x9b81 ld c, $64 call DelayFrames ld c, BANK(Music_Cities1) - ld a, (Music_Cities1 - $4000) / 3 + ld a, MUSIC_CITIES1 call PlayMusic ld hl, $c006 ld de, Music_Cities1_branch_aa6f diff --git a/main.asm b/main.asm old mode 100755 new mode 100644 index ab25f0e4..896f32fe --- a/main.asm +++ b/main.asm @@ -5798,10 +5798,10 @@ asm_2324: ; 2324 (0:2324) jr z, .asm_2343 cp $2 jr z, .asm_2332 - ld a, (Music_BikeRiding - $4000) / 3 + ld a, MUSIC_BIKE_RIDING jr .asm_2334 .asm_2332 - ld a, (Music_Surfing - $4000) / 3 + ld a, MUSIC_SURFING .asm_2334 ld b, a ld a, d @@ -8440,7 +8440,7 @@ PlayTrainerMusic: ; 33e8 (0:33e8) jr z, .noEvilTrainer cp b jr nz, .evilTrainerListLoop - ld a, (Music_MeetEvilTrainer - $4000) / 3 + ld a, MUSIC_MEET_EVIL_TRAINER jr .PlaySound .noEvilTrainer ld hl, FemaleTrainerList @@ -8450,10 +8450,10 @@ PlayTrainerMusic: ; 33e8 (0:33e8) jr z, .maleTrainer cp b jr nz, .femaleTrainerListLoop - ld a, (Music_MeetFemaleTrainer - $4000) / 3 + ld a, MUSIC_MEET_FEMALE_TRAINER jr .PlaySound .maleTrainer - ld a, (Music_MeetMaleTrainer - $4000) / 3 + ld a, MUSIC_MEET_MALE_TRAINER .PlaySound ld [$c0ee], a jp PlaySound @@ -11011,7 +11011,7 @@ ENDC call PrintGameVersionOnTitleScreen call Delay3 call WaitForSoundToFinish - ld a, (Music_TitleScreen - $4000) / 3 + ld a, MUSIC_TITLE_SCREEN ld [$c0ee], a call PlaySound xor a @@ -13210,7 +13210,7 @@ Func_5345: ; 5345 jp Func_577d .asm_5506 ld c, BANK(Music_GameCorner) - ld a, (Music_GameCorner - $4000) / 3 + ld a, MUSIC_GAME_CORNER call PlayMusic jr Func_551c @@ -13850,7 +13850,7 @@ Func_5a5f: ; 5a5f (1:5a5f) ld [wMusicHeaderPointer], a ld a, BANK(Music_Celadon) ld [$c0f0], a - ld a, (Music_Celadon - $4000) / 3 + ld a, MUSIC_CELADON ld [$c0ee], a jp PlaySound @@ -14666,7 +14666,7 @@ OakSpeech: ; 6115 (1:6115) call PlaySound ; stop music ld a, BANK(Music_Routes2) ; bank of song ld c,a - ld a, (Music_Routes2 - $4000) / 3 ; song # + ld a, MUSIC_ROUTES2 ; song # call PlayMusic ; plays music call ClearScreen call LoadTextBoxTilePatterns @@ -18374,501 +18374,501 @@ HandleJoypadResetButtons: ; c03c (3:403c) jp GetJoypadState MapSongBanks: ; c04d (3:404d) - db (Music_PalletTown - $4000) / 3 + db MUSIC_PALLET_TOWN db BANK(Music_PalletTown) ;PALLET_TOWN - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; VIRIDIAN_CITY - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; PEWTER_CITY - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; CERULEAN_CITY - db (Music_Lavender - $4000) / 3 + db MUSIC_LAVENDER db BANK(Music_Lavender) ; LAVENDER_TOWN - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; VERMILION_CITY - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CELADON_CITY - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; FUCHSIA_CITY - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) ; CINNABAR_ISLAND - db (Music_IndigoPlateau - $4000) / 3 + db MUSIC_INDIGO_PLATEAU db BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; SAFFRON_CITY - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; unused - db (Music_Routes1 - $4000) / 3 + db MUSIC_ROUTES1 db BANK(Music_Routes1) ; ROUTE_1 - db (Music_Routes1 - $4000) / 3 + db MUSIC_ROUTES1 db BANK(Music_Routes1) ; ROUTE_2 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_3 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_4 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_5 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_6 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_7 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_8 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_9 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_10 - db (Music_Routes4 - $4000) / 3 + db MUSIC_ROUTES4 db BANK(Music_Routes4) ; ROUTE_11 - db (Music_Routes4 - $4000) / 3 + db MUSIC_ROUTES4 db BANK(Music_Routes4) ; ROUTE_12 - db (Music_Routes4 - $4000) / 3 + db MUSIC_ROUTES4 db BANK(Music_Routes4) ; ROUTE_13 - db (Music_Routes4 - $4000) / 3 + db MUSIC_ROUTES4 db BANK(Music_Routes4) ; ROUTE_14 - db (Music_Routes4 - $4000) / 3 + db MUSIC_ROUTES4 db BANK(Music_Routes4) ; ROUTE_15 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_16 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_17 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_18 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_19 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_20 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_21 - db (Music_Routes3 - $4000) / 3 + db MUSIC_ROUTES3 db BANK(Music_Routes3) ; ROUTE_22 - db (Music_IndigoPlateau - $4000) / 3 + db MUSIC_INDIGO_PLATEAU db BANK(Music_IndigoPlateau) ; ROUTE_23 - db (Music_Routes2 - $4000) / 3 + db MUSIC_ROUTES2 db BANK(Music_Routes2) ; ROUTE_24 - db (Music_Routes2 - $4000) / 3 + db MUSIC_ROUTES2 db BANK(Music_Routes2) ; ROUTE_25 - db (Music_PalletTown - $4000) / 3 + db MUSIC_PALLET_TOWN db BANK(Music_PalletTown) ; RedsHouse1F - db (Music_PalletTown - $4000) / 3 + db MUSIC_PALLET_TOWN db BANK(Music_PalletTown) ; RedsHouse2F - db (Music_PalletTown - $4000) / 3 + db MUSIC_PALLET_TOWN db BANK(Music_PalletTown) ; BluesHouse - db (Music_OaksLab - $4000) / 3 + db MUSIC_OAKS_LAB db BANK(Music_OaksLab) ; OaksLab - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; ViridianPokecenter - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; ViridianMart - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; School - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; ViridianHouse - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; ViridianGym - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; DiglettsCaveRoute2 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; ViridianForestexit - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route2House - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route2Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; ViridianForestEntrance - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; ViridianForest - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; MuseumF1 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; MuseumF2 - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; PewterGym - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; PewterHouse1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; PewterMart - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; PewterHouse2 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; PewterPokecenter - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; MtMoon1 - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; MtMoon2 - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; MtMoon3 - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; CeruleanHouseTrashed - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; CeruleanHouse - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeruleanPokecenter - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; CeruleanGym - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; BikeShop - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeruleanMart - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; MtMoonPokecenter - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; CeruleanHouseTrashed - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route5Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute5 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; DayCareM - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route6Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute6 - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; FREEZE - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route7Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; UndergroundPathEntranceRoute7 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ;FREEZE - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route8Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; UndergroundPathEntranceRoute8 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; RockTunnelPokecenter - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; RockTunnel1 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; PowerPlant - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; Route11Gate - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; DiglettsCaveEntranceRoute11 - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; Route11GateUpstairs - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route12Gate - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; BillsHouse - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; VermilionPokecenter - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; FanClub - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; VermilionMart - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; VermilionGym - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; VermilionHouse1 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; VermilionDock - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne1 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne2 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne3 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne4 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne5 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne6 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne7 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne8 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne9 - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ; SSAnne10 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ;unused - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ;unused - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ;unused - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; VictoryRoad1 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ;unused - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ;unused - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ;unused - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ;unused - db (Music_IndigoPlateau - $4000) / 3 + db MUSIC_INDIGO_PLATEAU db BANK(Music_IndigoPlateau) ; Lance - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ;unused - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ;unused - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ;unused - db (Music_SSAnne - $4000) / 3 + db MUSIC_SS_ANNE db BANK(Music_SSAnne) ;unused - db (Music_PalletTown - $4000) / 3 + db MUSIC_PALLET_TOWN db BANK(Music_PalletTown) ; HallofFameRoom - db (Music_Routes1 - $4000) / 3 + db MUSIC_ROUTES1 db BANK(Music_Routes1) ; UndergroundPathNS - db (Music_IndigoPlateau - $4000) / 3 + db MUSIC_INDIGO_PLATEAU db BANK(Music_IndigoPlateau) ; Gary - db (Music_Routes1 - $4000) / 3 + db MUSIC_ROUTES1 db BANK(Music_Routes1) ; UndergroundPathWE - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMart1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMart2 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMart3 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMart4 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMartRoof - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMartElevator - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonMansion1 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonMansion2 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonMansion3 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonMansion4 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonMansion5 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonPokecenter - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; CeladonGym - db (Music_GameCorner - $4000) / 3 + db MUSIC_GAME_CORNER db BANK(Music_GameCorner) ; CeladonGameCorner - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CeladonMart5 - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonPrizeRoom - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonDiner - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonHouse - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; CeladonHotel - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; LavenderPokecenter - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower1 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower2 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower3 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower4 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower5 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower6 - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; PokemonTower7 - db (Music_Lavender - $4000) / 3 + db MUSIC_LAVENDER db BANK(Music_Lavender) ; LavenderHouse1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; LavenderMart - db (Music_Lavender - $4000) / 3 + db MUSIC_LAVENDER db BANK(Music_Lavender) ; LavenderHouse2 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; FuchsiaMart - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; FuchsiaHouse1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; FuchsiaPokecenter - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; FuchsiaHouse2 - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; SafariZoneEntrance - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; FuchsiaGym - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; FuchsiaMeetingRoom - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; SeafoamIslands2 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; SeafoamIslands3 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; SeafoamIslands4 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; SeafoamIslands5 - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; VermilionHouse2 - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; FuchsiaHouse3 - db (Music_CinnabarMansion - $4000) / 3 + db MUSIC_CINNABAR_MANSION db BANK(Music_CinnabarMansion) ; Mansion1 - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; CinnabarGym - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) ; Lab1 - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) ; Lab2 - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) ; Lab3 - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) ; Lab4 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CinnabarPokecenter - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; CinnabarMart - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) - db (Music_IndigoPlateau - $4000) / 3 + db MUSIC_INDIGO_PLATEAU db BANK(Music_IndigoPlateau) ; IndigoPlateauLobby - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; CopycatsHouseF1 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; CopycatsHouseF2 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; FightingDojo - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; SaffronGym - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; SaffronHouse1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; SaffronMart - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo1 - db (Music_Pokecenter - $4000) / 3 + db MUSIC_POKECENTER db BANK(Music_Pokecenter) ; SaffronPokecenter - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; SaffronHouse2 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route15Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route15GateUpstairs - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route16GateMap - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route16GateUpstairs - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; Route16House - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; Route12House - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route18Gate - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route18GateUpstairs - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; SeafoamIslands1 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; Route22Gate - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; VictoryRoad2 - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; Route12GateUpstairs - db (Music_Vermilion - $4000) / 3 + db MUSIC_VERMILION db BANK(Music_Vermilion) ; VermilionHouse3 - db (Music_Dungeon2 - $4000) / 3 + db MUSIC_DUNGEON2 db BANK(Music_Dungeon2) ; DiglettsCave - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; VictoryRoad3 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; RocketHideout1 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; RocketHideout2 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; RocketHideout3 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; RocketHideout4 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; RocketHideoutElevator - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo2 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo3 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo4 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo5 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo6 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo7 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo8 - db (Music_CinnabarMansion - $4000) / 3 + db MUSIC_CINNABAR_MANSION db BANK(Music_CinnabarMansion) ; Mansion2 - db (Music_CinnabarMansion - $4000) / 3 + db MUSIC_CINNABAR_MANSION db BANK(Music_CinnabarMansion) ; Mansion3 - db (Music_CinnabarMansion - $4000) / 3 + db MUSIC_CINNABAR_MANSION db BANK(Music_CinnabarMansion) ; Mansion4 - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneEast - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneNorth - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneWest - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneCenter - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneRestHouse1 - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneSecretHouse - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneRestHouse2 - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneRestHouse3 - db (Music_SafariZone - $4000) / 3 + db MUSIC_SAFARI_ZONE db BANK(Music_SafariZone) ; SafariZoneRestHouse4 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; UnknownDungeon2 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; UnknownDungeon3 - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; UnknownDungeon1 - db (Music_Cities2 - $4000) / 3 + db MUSIC_CITIES2 db BANK(Music_Cities2) ; NameRater - db (Music_Cities1 - $4000) / 3 + db MUSIC_CITIES1 db BANK(Music_Cities1) ; CeruleanHouse2 - db (Music_Cinnabar - $4000) / 3 + db MUSIC_CINNABAR db BANK(Music_Cinnabar) - db (Music_Dungeon3 - $4000) / 3 + db MUSIC_DUNGEON3 db BANK(Music_Dungeon3) ; RockTunnel2 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo9 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo10 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCo11 - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) ; SilphCoElevator - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; BattleCenterM - db (Music_Celadon - $4000) / 3 + db MUSIC_CELADON db BANK(Music_Celadon) ; TradeCenterM - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_SilphCo - $4000) / 3 + db MUSIC_SILPH_CO db BANK(Music_SilphCo) - db (Music_Gym - $4000) / 3 + db MUSIC_GYM db BANK(Music_Gym) ; Lorelei - db (Music_Dungeon1 - $4000) / 3 + db MUSIC_DUNGEON1 db BANK(Music_Dungeon1) ; Bruno - db (Music_PokemonTower - $4000) / 3 + db MUSIC_POKEMON_TOWER db BANK(Music_PokemonTower) ; Agatha ; see also MapHeaderPointers @@ -34223,7 +34223,7 @@ PalletTownScript0: ; 18e81 (6:4e81) call PlaySound ; stop music ld a, BANK(Music_MeetProfOak) ld c,a ; song bank - ld a, (Music_MeetProfOak - $4000) / 3 ; “oak appears” music + ld a, MUSIC_MEET_PROF_OAK ; “oak appears” music call PlayMusic ; plays music ld a,$FC ld [wJoypadForbiddenButtonsMask],a @@ -35147,7 +35147,7 @@ CeruleanCityScript0: ; 194c8 (6:54c8) call PlaySound .asm_19512 ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic xor a ld [H_CURRENTPRESSEDBUTTONS], a @@ -38425,7 +38425,7 @@ OaksLabScript10: ; 1cd6d (7:4d6d) ld a, $8 ld [$d528], a ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ; play music ld a, $f ld [$ff00+$8c], a @@ -40411,7 +40411,7 @@ VermilionDock_1db9b: ; 1db9b (7:5b9b) ld [$c0ee], a call PlaySound ld c, BANK(Music_Surfing) - ld a, (Music_Surfing - $4000) / 3 + ld a, MUSIC_SURFING call PlayMusic ld b, BANK(Func_79fc0) ld hl, Func_79fc0 @@ -57253,7 +57253,7 @@ FaintEnemyPokemon ; 0x3c567 jr .sfxplayed .wild_win call Func_3c643 - ld a, (Music_DefeatedWildMon - $4000) / 3 + ld a, MUSIC_DEFEATED_WILD_MON call Func_3c6ee .sfxplayed ld hl, W_PLAYERMONCURHP ; $d015 @@ -57364,16 +57364,16 @@ Func_3c664: ; 3c664 (f:4664) TrainerBattleVictory: ; 3c696 (f:4696) call Func_3c643 - ld b, (Music_DefeatedGymLeader - $4000) / 3 + ld b, MUSIC_DEFEATED_GYM_LEADER ld a, [W_GYMLEADERNO] ; $d05c and a jr nz, .gymleader - ld b, (Music_DefeatedTrainer - $4000) / 3 + ld b, MUSIC_DEFEATED_TRAINER .gymleader ld a, [W_TRAINERCLASS] ; $d031 cp SONY3 ; final battle against rival jr nz, .notrival - ld b, (Music_DefeatedGymLeader - $4000) / 3 + ld b, MUSIC_DEFEATED_GYM_LEADER ld hl, W_FLAGS_D733 set 1, [hl] .notrival @@ -78931,7 +78931,7 @@ Route22Script0: ; 50f00 (14:4f00) call PlaySound .asm_50f4e ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld a, $1 ld [$ff00+$8c], a @@ -80651,7 +80651,7 @@ SilphCo7Script0: ; 51c23 (14:5c23) ld [$c0ee], a call PlaySound ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld a, $9 ld [H_DOWNARROWBLINKCNT2], a ; $FF00+$8c @@ -91201,7 +91201,7 @@ PewterPokecenterText3: ; 5c59b (17:459b) dec hl push hl ld c, BANK(Music_JigglypuffSong) - ld a, (Music_JigglypuffSong - $4000) / 3 + ld a, MUSIC_JIGGLYPUFF_SONG call PlayMusic pop hl .asm_5c5d1 @@ -94559,7 +94559,7 @@ PokemonTower2Script0: ; 6050f (18:450f) ld [$c0ee], a call PlaySound ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld hl, $d764 res 6, [hl] @@ -96243,7 +96243,7 @@ SSAnne2Script0: ; 613be (18:53be) ld [$c0ee], a call PlaySound ld c, BANK(Music_MeetRival) - ld a, (Music_MeetRival - $4000) / 3 + ld a, MUSIC_MEET_RIVAL call PlayMusic ld a, [$cd3d] ld [$ff00+$db], a @@ -98652,7 +98652,7 @@ Func_701a0: ; 701a0 (1c:41a0) ld a, $90 ld [$FF00+$b0], a ld c, BANK(Music_HallOfFame) - ld a, (Music_HallOfFame - $4000) / 3 + ld a, MUSIC_HALL_OF_FAME call PlayMusic ld hl, W_PARTYMON1 ; $d164 ld c, $ff @@ -104038,7 +104038,7 @@ Func_7405c: ; 7405c (1d:405c) ld a, $ff call PlaySoundWaitForCurrent ld c, BANK(Music_Credits) - ld a, (Music_Credits - $4000) / 3 + ld a, MUSIC_CREDITS call PlayMusic ld c, $80 call DelayFrames @@ -115604,7 +115604,7 @@ Func_7bde9: ; 7bde9 (1e:7de9) call PlayCry call WaitForSoundToFinish ld c, BANK(Music_SafariZone) - ld a, (Music_SafariZone - $4000) / 3 + ld a, MUSIC_SAFARI_ZONE call PlayMusic ld c, $50 call DelayFrames From ccd5d2387d6fa6d9e17bc159ac60d318df7b92ac Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 14:29:14 -0500 Subject: [PATCH 10/41] condense MapSongBanks --- main.asm | 744 +++++++++++++++++++------------------------------------ 1 file changed, 248 insertions(+), 496 deletions(-) diff --git a/main.asm b/main.asm index 896f32fe..4b74f4c6 100644 --- a/main.asm +++ b/main.asm @@ -18374,502 +18374,254 @@ HandleJoypadResetButtons: ; c03c (3:403c) jp GetJoypadState MapSongBanks: ; c04d (3:404d) - db MUSIC_PALLET_TOWN - db BANK(Music_PalletTown) ;PALLET_TOWN - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; VIRIDIAN_CITY - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; PEWTER_CITY - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; CERULEAN_CITY - db MUSIC_LAVENDER - db BANK(Music_Lavender) ; LAVENDER_TOWN - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; VERMILION_CITY - db MUSIC_CELADON - db BANK(Music_Celadon) ; CELADON_CITY - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; FUCHSIA_CITY - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) ; CINNABAR_ISLAND - db MUSIC_INDIGO_PLATEAU - db BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; SAFFRON_CITY - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; unused - db MUSIC_ROUTES1 - db BANK(Music_Routes1) ; ROUTE_1 - db MUSIC_ROUTES1 - db BANK(Music_Routes1) ; ROUTE_2 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_3 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_4 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_5 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_6 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_7 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_8 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_9 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_10 - db MUSIC_ROUTES4 - db BANK(Music_Routes4) ; ROUTE_11 - db MUSIC_ROUTES4 - db BANK(Music_Routes4) ; ROUTE_12 - db MUSIC_ROUTES4 - db BANK(Music_Routes4) ; ROUTE_13 - db MUSIC_ROUTES4 - db BANK(Music_Routes4) ; ROUTE_14 - db MUSIC_ROUTES4 - db BANK(Music_Routes4) ; ROUTE_15 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_16 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_17 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_18 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_19 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_20 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_21 - db MUSIC_ROUTES3 - db BANK(Music_Routes3) ; ROUTE_22 - db MUSIC_INDIGO_PLATEAU - db BANK(Music_IndigoPlateau) ; ROUTE_23 - db MUSIC_ROUTES2 - db BANK(Music_Routes2) ; ROUTE_24 - db MUSIC_ROUTES2 - db BANK(Music_Routes2) ; ROUTE_25 - db MUSIC_PALLET_TOWN - db BANK(Music_PalletTown) ; RedsHouse1F - db MUSIC_PALLET_TOWN - db BANK(Music_PalletTown) ; RedsHouse2F - db MUSIC_PALLET_TOWN - db BANK(Music_PalletTown) ; BluesHouse - db MUSIC_OAKS_LAB - db BANK(Music_OaksLab) ; OaksLab - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; ViridianPokecenter - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; ViridianMart - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; School - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; ViridianHouse - db MUSIC_GYM - db BANK(Music_Gym) ; ViridianGym - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; DiglettsCaveRoute2 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; ViridianForestexit - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route2House - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route2Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; ViridianForestEntrance - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; ViridianForest - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; MuseumF1 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; MuseumF2 - db MUSIC_GYM - db BANK(Music_Gym) ; PewterGym - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; PewterHouse1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; PewterMart - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; PewterHouse2 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; PewterPokecenter - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; MtMoon1 - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; MtMoon2 - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; MtMoon3 - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; CeruleanHouseTrashed - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; CeruleanHouse - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeruleanPokecenter - db MUSIC_GYM - db BANK(Music_Gym) ; CeruleanGym - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; BikeShop - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeruleanMart - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; MtMoonPokecenter - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; CeruleanHouseTrashed - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route5Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute5 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; DayCareM - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route6Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute6 - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; FREEZE - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route7Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; UndergroundPathEntranceRoute7 - db MUSIC_CELADON - db BANK(Music_Celadon) ;FREEZE - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route8Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; UndergroundPathEntranceRoute8 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; RockTunnelPokecenter - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; RockTunnel1 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; PowerPlant - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; Route11Gate - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; DiglettsCaveEntranceRoute11 - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; Route11GateUpstairs - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route12Gate - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; BillsHouse - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; VermilionPokecenter - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; FanClub - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; VermilionMart - db MUSIC_GYM - db BANK(Music_Gym) ; VermilionGym - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; VermilionHouse1 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; VermilionDock - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne1 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne2 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne3 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne4 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne5 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne6 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne7 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne8 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne9 - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ; SSAnne10 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ;unused - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ;unused - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ;unused - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; VictoryRoad1 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ;unused - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ;unused - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ;unused - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ;unused - db MUSIC_INDIGO_PLATEAU - db BANK(Music_IndigoPlateau) ; Lance - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ;unused - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ;unused - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ;unused - db MUSIC_SS_ANNE - db BANK(Music_SSAnne) ;unused - db MUSIC_PALLET_TOWN - db BANK(Music_PalletTown) ; HallofFameRoom - db MUSIC_ROUTES1 - db BANK(Music_Routes1) ; UndergroundPathNS - db MUSIC_INDIGO_PLATEAU - db BANK(Music_IndigoPlateau) ; Gary - db MUSIC_ROUTES1 - db BANK(Music_Routes1) ; UndergroundPathWE - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMart1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMart2 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMart3 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMart4 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMartRoof - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMartElevator - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonMansion1 - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonMansion2 - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonMansion3 - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonMansion4 - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonMansion5 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonPokecenter - db MUSIC_GYM - db BANK(Music_Gym) ; CeladonGym - db MUSIC_GAME_CORNER - db BANK(Music_GameCorner) ; CeladonGameCorner - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CeladonMart5 - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonPrizeRoom - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonDiner - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonHouse - db MUSIC_CELADON - db BANK(Music_Celadon) ; CeladonHotel - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; LavenderPokecenter - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower1 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower2 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower3 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower4 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower5 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower6 - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; PokemonTower7 - db MUSIC_LAVENDER - db BANK(Music_Lavender) ; LavenderHouse1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; LavenderMart - db MUSIC_LAVENDER - db BANK(Music_Lavender) ; LavenderHouse2 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; FuchsiaMart - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; FuchsiaHouse1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; FuchsiaPokecenter - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; FuchsiaHouse2 - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; SafariZoneEntrance - db MUSIC_GYM - db BANK(Music_Gym) ; FuchsiaGym - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; FuchsiaMeetingRoom - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; SeafoamIslands2 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; SeafoamIslands3 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; SeafoamIslands4 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; SeafoamIslands5 - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; VermilionHouse2 - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; FuchsiaHouse3 - db MUSIC_CINNABAR_MANSION - db BANK(Music_CinnabarMansion) ; Mansion1 - db MUSIC_GYM - db BANK(Music_Gym) ; CinnabarGym - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) ; Lab1 - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) ; Lab2 - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) ; Lab3 - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) ; Lab4 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CinnabarPokecenter - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; CinnabarMart - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) - db MUSIC_INDIGO_PLATEAU - db BANK(Music_IndigoPlateau) ; IndigoPlateauLobby - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; CopycatsHouseF1 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; CopycatsHouseF2 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; FightingDojo - db MUSIC_GYM - db BANK(Music_Gym) ; SaffronGym - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; SaffronHouse1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; SaffronMart - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo1 - db MUSIC_POKECENTER - db BANK(Music_Pokecenter) ; SaffronPokecenter - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; SaffronHouse2 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route15Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route15GateUpstairs - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route16GateMap - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route16GateUpstairs - db MUSIC_CELADON - db BANK(Music_Celadon) ; Route16House - db MUSIC_CELADON - db BANK(Music_Celadon) ; Route12House - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route18Gate - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route18GateUpstairs - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; SeafoamIslands1 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; Route22Gate - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; VictoryRoad2 - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; Route12GateUpstairs - db MUSIC_VERMILION - db BANK(Music_Vermilion) ; VermilionHouse3 - db MUSIC_DUNGEON2 - db BANK(Music_Dungeon2) ; DiglettsCave - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; VictoryRoad3 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; RocketHideout1 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; RocketHideout2 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; RocketHideout3 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; RocketHideout4 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; RocketHideoutElevator - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo2 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo3 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo4 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo5 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo6 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo7 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo8 - db MUSIC_CINNABAR_MANSION - db BANK(Music_CinnabarMansion) ; Mansion2 - db MUSIC_CINNABAR_MANSION - db BANK(Music_CinnabarMansion) ; Mansion3 - db MUSIC_CINNABAR_MANSION - db BANK(Music_CinnabarMansion) ; Mansion4 - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneEast - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneNorth - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneWest - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneCenter - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneRestHouse1 - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneSecretHouse - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneRestHouse2 - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneRestHouse3 - db MUSIC_SAFARI_ZONE - db BANK(Music_SafariZone) ; SafariZoneRestHouse4 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; UnknownDungeon2 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; UnknownDungeon3 - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; UnknownDungeon1 - db MUSIC_CITIES2 - db BANK(Music_Cities2) ; NameRater - db MUSIC_CITIES1 - db BANK(Music_Cities1) ; CeruleanHouse2 - db MUSIC_CINNABAR - db BANK(Music_Cinnabar) - db MUSIC_DUNGEON3 - db BANK(Music_Dungeon3) ; RockTunnel2 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo9 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo10 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCo11 - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) ; SilphCoElevator - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_CELADON - db BANK(Music_Celadon) ; BattleCenterM - db MUSIC_CELADON - db BANK(Music_Celadon) ; TradeCenterM - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_SILPH_CO - db BANK(Music_SilphCo) - db MUSIC_GYM - db BANK(Music_Gym) ; Lorelei - db MUSIC_DUNGEON1 - db BANK(Music_Dungeon1) ; Bruno - db MUSIC_POKEMON_TOWER - db BANK(Music_PokemonTower) ; Agatha + db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ;PALLET_TOWN + db MUSIC_CITIES1, BANK(Music_Cities1) ; VIRIDIAN_CITY + db MUSIC_CITIES1, BANK(Music_Cities1) ; PEWTER_CITY + db MUSIC_CITIES2, BANK(Music_Cities2) ; CERULEAN_CITY + db MUSIC_LAVENDER, BANK(Music_Lavender) ; LAVENDER_TOWN + db MUSIC_VERMILION, BANK(Music_Vermilion) ; VERMILION_CITY + db MUSIC_CELADON, BANK(Music_Celadon) ; CELADON_CITY + db MUSIC_CITIES2, BANK(Music_Cities2) ; FUCHSIA_CITY + db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; CINNABAR_ISLAND + db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; INDIGO_PLATEAU + db MUSIC_CITIES1, BANK(Music_Cities1) ; SAFFRON_CITY + db MUSIC_CITIES1, BANK(Music_Cities1) ; unused + db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_1 + db MUSIC_ROUTES1, BANK(Music_Routes1) ; ROUTE_2 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_3 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_4 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_5 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_6 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_7 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_8 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_9 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_10 + db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_11 + db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_12 + db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_13 + db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_14 + db MUSIC_ROUTES4, BANK(Music_Routes4) ; ROUTE_15 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_16 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_17 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_18 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_19 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_20 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_21 + db MUSIC_ROUTES3, BANK(Music_Routes3) ; ROUTE_22 + db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; ROUTE_23 + db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_24 + db MUSIC_ROUTES2, BANK(Music_Routes2) ; ROUTE_25 + db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; RedsHouse1F + db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; RedsHouse2F + db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; BluesHouse + db MUSIC_OAKS_LAB, BANK(Music_OaksLab) ; OaksLab + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; ViridianPokecenter + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; ViridianMart + db MUSIC_CITIES1, BANK(Music_Cities1) ; School + db MUSIC_CITIES1, BANK(Music_Cities1) ; ViridianHouse + db MUSIC_GYM, BANK(Music_Gym) ; ViridianGym + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DiglettsCaveRoute2 + db MUSIC_CITIES1, BANK(Music_Cities1) ; ViridianForestexit + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route2House + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route2Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; ViridianForestEntrance + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; ViridianForest + db MUSIC_CITIES1, BANK(Music_Cities1) ; MuseumF1 + db MUSIC_CITIES1, BANK(Music_Cities1) ; MuseumF2 + db MUSIC_GYM, BANK(Music_Gym) ; PewterGym + db MUSIC_CITIES1, BANK(Music_Cities1) ; PewterHouse1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PewterMart + db MUSIC_CITIES1, BANK(Music_Cities1) ; PewterHouse2 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; PewterPokecenter + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MtMoon1 + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MtMoon2 + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; MtMoon3 + db MUSIC_CITIES2, BANK(Music_Cities2) ; CeruleanHouseTrashed + db MUSIC_CITIES2, BANK(Music_Cities2) ; CeruleanHouse + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeruleanPokecenter + db MUSIC_GYM, BANK(Music_Gym) ; CeruleanGym + db MUSIC_CITIES2, BANK(Music_Cities2) ; BikeShop + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeruleanMart + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; MtMoonPokecenter + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; CeruleanHouseTrashed + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route5Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute5 + db MUSIC_CITIES1, BANK(Music_Cities1) ; DayCareM + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route6Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; UndergroundTunnelEntranceRoute6 + db MUSIC_VERMILION, BANK(Music_Vermilion) ; FREEZE + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route7Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; UndergroundPathEntranceRoute7 + db MUSIC_CELADON, BANK(Music_Celadon) ;FREEZE + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route8Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; UndergroundPathEntranceRoute8 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; RockTunnelPokecenter + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; RockTunnel1 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; PowerPlant + db MUSIC_VERMILION, BANK(Music_Vermilion) ; Route11Gate + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DiglettsCaveEntranceRoute11 + db MUSIC_VERMILION, BANK(Music_Vermilion) ; Route11GateUpstairs + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route12Gate + db MUSIC_CITIES2, BANK(Music_Cities2) ; BillsHouse + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VermilionPokecenter + db MUSIC_VERMILION, BANK(Music_Vermilion) ; FanClub + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; VermilionMart + db MUSIC_GYM, BANK(Music_Gym) ; VermilionGym + db MUSIC_VERMILION, BANK(Music_Vermilion) ; VermilionHouse1 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; VermilionDock + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne1 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne2 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne3 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne4 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne5 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne6 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne7 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne8 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne9 + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ; SSAnne10 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ;unused + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ;unused + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ;unused + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VictoryRoad1 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ;unused + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ;unused + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ;unused + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ;unused + db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; Lance + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ;unused + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ;unused + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ;unused + db MUSIC_SS_ANNE, BANK(Music_SSAnne) ;unused + db MUSIC_PALLET_TOWN, BANK(Music_PalletTown) ; HallofFameRoom + db MUSIC_ROUTES1, BANK(Music_Routes1) ; UndergroundPathNS + db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; Gary + db MUSIC_ROUTES1, BANK(Music_Routes1) ; UndergroundPathWE + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMart1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMart2 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMart3 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMart4 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMartRoof + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMartElevator + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonMansion1 + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonMansion2 + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonMansion3 + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonMansion4 + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonMansion5 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonPokecenter + db MUSIC_GYM, BANK(Music_Gym) ; CeladonGym + db MUSIC_GAME_CORNER, BANK(Music_GameCorner) ; CeladonGameCorner + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CeladonMart5 + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonPrizeRoom + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonDiner + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonHouse + db MUSIC_CELADON, BANK(Music_Celadon) ; CeladonHotel + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LavenderPokecenter + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower1 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower2 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower3 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower4 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower5 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower6 + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; PokemonTower7 + db MUSIC_LAVENDER, BANK(Music_Lavender) ; LavenderHouse1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; LavenderMart + db MUSIC_LAVENDER, BANK(Music_Lavender) ; LavenderHouse2 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FuchsiaMart + db MUSIC_CITIES2, BANK(Music_Cities2) ; FuchsiaHouse1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; FuchsiaPokecenter + db MUSIC_CITIES2, BANK(Music_Cities2) ; FuchsiaHouse2 + db MUSIC_CITIES2, BANK(Music_Cities2) ; SafariZoneEntrance + db MUSIC_GYM, BANK(Music_Gym) ; FuchsiaGym + db MUSIC_CITIES2, BANK(Music_Cities2) ; FuchsiaMeetingRoom + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SeafoamIslands2 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SeafoamIslands3 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SeafoamIslands4 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SeafoamIslands5 + db MUSIC_CITIES2, BANK(Music_Cities2) ; VermilionHouse2 + db MUSIC_CITIES2, BANK(Music_Cities2) ; FuchsiaHouse3 + db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; Mansion1 + db MUSIC_GYM, BANK(Music_Gym) ; CinnabarGym + db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; Lab1 + db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; Lab2 + db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; Lab3 + db MUSIC_CINNABAR, BANK(Music_Cinnabar) ; Lab4 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CinnabarPokecenter + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CinnabarMart + db MUSIC_CINNABAR, BANK(Music_Cinnabar) + db MUSIC_INDIGO_PLATEAU, BANK(Music_IndigoPlateau) ; IndigoPlateauLobby + db MUSIC_CITIES1, BANK(Music_Cities1) ; CopycatsHouseF1 + db MUSIC_CITIES1, BANK(Music_Cities1) ; CopycatsHouseF2 + db MUSIC_CITIES1, BANK(Music_Cities1) ; FightingDojo + db MUSIC_GYM, BANK(Music_Gym) ; SaffronGym + db MUSIC_CITIES1, BANK(Music_Cities1) ; SaffronHouse1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SaffronMart + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo1 + db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; SaffronPokecenter + db MUSIC_CITIES1, BANK(Music_Cities1) ; SaffronHouse2 + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route15Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route15GateUpstairs + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route16GateMap + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route16GateUpstairs + db MUSIC_CELADON, BANK(Music_Celadon) ; Route16House + db MUSIC_CELADON, BANK(Music_Celadon) ; Route12House + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route18Gate + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route18GateUpstairs + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; SeafoamIslands1 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; Route22Gate + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VictoryRoad2 + db MUSIC_CITIES1, BANK(Music_Cities1) ; Route12GateUpstairs + db MUSIC_VERMILION, BANK(Music_Vermilion) ; VermilionHouse3 + db MUSIC_DUNGEON2, BANK(Music_Dungeon2) ; DiglettsCave + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; VictoryRoad3 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; RocketHideout1 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; RocketHideout2 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; RocketHideout3 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; RocketHideout4 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; RocketHideoutElevator + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo2 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo3 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo4 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo5 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo6 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo7 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo8 + db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; Mansion2 + db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; Mansion3 + db MUSIC_CINNABAR_MANSION, BANK(Music_CinnabarMansion) ; Mansion4 + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneEast + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneNorth + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneWest + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneCenter + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneRestHouse1 + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneSecretHouse + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneRestHouse2 + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneRestHouse3 + db MUSIC_SAFARI_ZONE, BANK(Music_SafariZone) ; SafariZoneRestHouse4 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UnknownDungeon2 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UnknownDungeon3 + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; UnknownDungeon1 + db MUSIC_CITIES2, BANK(Music_Cities2) ; NameRater + db MUSIC_CITIES1, BANK(Music_Cities1) ; CeruleanHouse2 + db MUSIC_CINNABAR, BANK(Music_Cinnabar) + db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; RockTunnel2 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo9 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo10 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCo11 + db MUSIC_SILPH_CO, BANK(Music_SilphCo) ; SilphCoElevator + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_CELADON, BANK(Music_Celadon) ; BattleCenterM + db MUSIC_CELADON, BANK(Music_Celadon) ; TradeCenterM + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_SILPH_CO, BANK(Music_SilphCo) + db MUSIC_GYM, BANK(Music_Gym) ; Lorelei + db MUSIC_DUNGEON1, BANK(Music_Dungeon1) ; Bruno + db MUSIC_POKEMON_TOWER, BANK(Music_PokemonTower) ; Agatha ; see also MapHeaderPointers MapHeaderBanks: ; c23d (3:423d) From 93e1316e3db579cdbe95c86af09a97a9d7508308 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 17:49:30 -0500 Subject: [PATCH 11/41] bump pokemontools to play nice with EQUS --- extras | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras b/extras index d8f4e687..89ca24a9 160000 --- a/extras +++ b/extras @@ -1 +1 @@ -Subproject commit d8f4e687ebc49d4b135f0d8b7f10a643114a0d8a +Subproject commit 89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 From 795decd080dceed76c99bc16f044d50a696992be Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 19:15:48 -0500 Subject: [PATCH 12/41] Add text macros Before text looked like: _CeladonCityText2: ; a5a4b (29:5a4b) db $0, "Heheh! This GYM", $4f db "is great! It's", $55 db "full of women!", $57 Now it looks like: _CeladonCityText2: ; a5a4b (29:5a4b) text "Heheh! This GYM" line "is great! It's" next "full of women!" done --- macros.asm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/macros.asm b/macros.asm index be1879b7..e07e0404 100644 --- a/macros.asm +++ b/macros.asm @@ -1,4 +1,12 @@ +text EQUS "db $00," ; Start writing text. +line EQUS "db $4f," ; Start writing at the bottom line. +page EQUS "db $51," ; Start a new page. +next EQUS "db $55," ; Scroll to the next line. +done EQUS "db $57" ; End a text box. +prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event). + + ;\1 = X ;\2 = Y FuncCoord: MACRO From 3964e6a137f72bf45518e3142c099093fdeface9 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 19:48:44 -0500 Subject: [PATCH 13/41] use text macros in main.asm --- main.asm | 16960 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 9882 insertions(+), 7078 deletions(-) diff --git a/main.asm b/main.asm index 4b74f4c6..c7279038 100644 --- a/main.asm +++ b/main.asm @@ -115575,61 +115575,72 @@ TechnicalMachinePrices: ; 7bfa7 (1e:7fa7) SECTION "bank20",ROMX,BANK[$20] _CardKeySuccessText1: ; 80000 (20:4000) - db $0, "Bingo!@@" + text "Bingo!@@" _CardKeySuccessText2: ; 80009 (20:4009) - db $0, $4f - db "The CARD KEY", $55 - db "opened the door!", $57 + db $0 + line "The CARD KEY" + next "opened the door!" + done _CardKeyFailText: ; 80029 (20:4029) - db $0, "Darn! It needs a", $4f - db "CARD KEY!", $57 + text "Darn! It needs a" + line "CARD KEY!" + done _UnnamedText_33cf: ; 80045 (20:4045) TX_RAM $cd6d db $0, ": @@" _UnnamedText_70847: ; 8004d (20:404d) - db $0, "Not even a nibble!", $58 + text "Not even a nibble!" + prompt _UnnamedText_7084c: ; 80061 (20:4061) - db $0, "Looks like there's", $4f - db "nothing here.", $58 + text "Looks like there's" + line "nothing here." + prompt _UnnamedText_70851: ; 80082 (20:4082) - db $0, "Oh!", $4f - db "It's a bite!", $58 + text "Oh!" + line "It's a bite!" + prompt _UnnamedText_24db: ; 80093 (20:4093) - db $0, "!", $57 + text "!" + done _UnnamedText_24e0: ; 80096 (20:4096) - db $0, "Ground rose up", $4f - db "somewhere!", $57 + text "Ground rose up" + line "somewhere!" + done _BoulderText: ; 800b1 (20:40b1) - db $0, "This requires", $4f - db "STRENGTH to move!", $57 + text "This requires" + line "STRENGTH to move!" + done _MartSignText: ; 800d2 (20:40d2) - db $0, "All your item", $4f - db "needs fulfilled!", $55 - db "#MON MART", $57 + text "All your item" + line "needs fulfilled!" + next "#MON MART" + done _PokeCenterSignText: ; 800fc (20:40fc) - db $0, "Heal Your #MON!", $4f - db "#MON CENTER", $57 + text "Heal Your #MON!" + line "#MON CENTER" + done _FoundItemText: ; 80119 (20:4119) - db $0, $52, " found", $4f - db "@" + text $52, " found" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _NoMoreRoomForItemText: ; 8012a (20:412a) - db $0, "No more room for", $4f - db "items!", $57 + text "No more room for" + line "items!" + done _UnnamedText_59091: ; 80143 (20:4143) db $0, "Hi! Remember me?", $4f @@ -115639,19 +115650,21 @@ _UnnamedText_59091: ; 80143 (20:4143) UnnamedText_80177: ; 80177 (20:4177) TX_NUM $ffdb, 1, 3 - db $0, $4f - db "kinds of #MON,", $55 - db "I'm supposed to", $55 - db "give you an", $55 - db "@" + db $0 + line "kinds of #MON," + next "I'm supposed to" + next "give you an" + next "@" TX_RAM $cc5b - db $0, "!", $51 - db "So, ", $52, "! Have", $4f - db "you caught at", $55 - db "least @" + text "!" + + page "So, ", $52, "! Have" + line "you caught at" + next "least @" TX_NUM $ffdb, 1, 3 - db $0, " kinds of", $55 - db "#MON?", $57 + text " kinds of" + next "#MON?" + done _UnnamedText_59096: ; 801e4 (20:41e4) db $0, "Let's see...", $4f @@ -115660,25 +115673,29 @@ _UnnamedText_59096: ; 801e4 (20:41e4) UnnamedText_8020e: ; 8020e (20:420e) TX_NUM $ffdd, 1, 3 - db $0, $55 - db "kinds of #MON!", $51 - db "You need @" + text $55 + db "kinds of #MON!" + + page "You need @" TX_NUM $ffdb, 1, 3 - db $0, " kinds", $4f - db "if you want the", $55 - db "@" + text " kinds" + line "if you want the" + next "@" TX_RAM $cc5b - db $0, ".", $57 + text "." + done _UnnamedText_5909b: ; 80250 (20:4250) - db $0, "Oh. I see.", $51 - db "When you get @" + text "Oh. I see." + + page "When you get @" TX_NUM $ffdb, 1, 3 - db $0, $4f - db "kinds, come back", $55 - db "for @" + db $0 + line "kinds, come back" + next "for @" TX_RAM $cc5b - db $0, ".", $57 + text "." + done _UnnamedText_590a0: ; 8028c (20:428c) db $0, "Great! You have", $4f @@ -115686,16 +115703,18 @@ _UnnamedText_590a0: ; 8028c (20:428c) UnnamedText_802a5: ; 802a5 (20:42a5) TX_NUM $ffdd, 1, 3 - db $0, " kinds ", $55 - db "of #MON!", $55 - db "Congratulations!", $51 - db "Here you go!", $58 + text " kinds " + next "of #MON!" + next "Congratulations!" + + page "Here you go!" + prompt _UnnamedText_590a5: ; 802d9 (20:42d9) - db $0, $52, " got the", $4f - db "@" + text $52, " got the" + line "@" TX_RAM $cc5b - db $0, "!@@" + text "!@@" _UnnamedText_590ab: ; 802ec (20:42ec) db $0, "Oh! I see you", $4f @@ -115705,335 +115724,410 @@ _UnnamedText_590ab: ; 802ec (20:42ec) UnnamedText_80317: ; 80317 (20:4317) TX_RAM $cc5b - db $0, ".", $57 + text "." + done _ViridianForestText1: ; 8031d (20:431d) - db $0, "I came here with", $4f - db "some friends!", $51 - db "They're out for", $4f - db "#MON fights!", $57 + text "I came here with" + line "some friends!" + + page "They're out for" + line "#MON fights!" + done _ViridianForestBattleText1: ; 80359 (20:4359) - db $0, "Hey! You have", $4f - db "#MON! Come on!", $55 - db "Let's battle'em!", $57 + text "Hey! You have" + line "#MON! Come on!" + next "Let's battle'em!" + done _ViridianForestEndBattleText1: ; 80387 (20:4387) - db $0, "No!", $4f - db "CATERPIE can't", $55 - db "cut it!", $58 + text "No!" + line "CATERPIE can't" + next "cut it!" + prompt _ViridianFrstAfterBattleText1: ; 803a2 (20:43a2) - db $0, "Ssh! You'll scare", $4f - db "the bugs away!", $57 + text "Ssh! You'll scare" + line "the bugs away!" + done _ViridianForestBattleText2: ; 803c3 (20:43c3) - db $0, "Yo! You can't jam", $4f - db "out if you're a", $55 - db "#MON trainer!", $57 + text "Yo! You can't jam" + line "out if you're a" + next "#MON trainer!" + done _ViridianForestEndBattleText2: ; 803f2 (20:43f2) - db $0, "Huh?", $4f - db "I ran out of", $55 - db "#MON!", $58 + text "Huh?" + line "I ran out of" + next "#MON!" + prompt _ViridianFrstAfterBattleText2: ; 8040b (20:440b) - db $0, "Darn! I'm going", $4f - db "to catch some", $55 - db "stronger ones!", $57 + text "Darn! I'm going" + line "to catch some" + next "stronger ones!" + done _ViridianForestBattleText3: ; 80438 (20:4438) - db $0, "Hey, wait up!", $4f - db "What's the hurry?", $57 + text "Hey, wait up!" + line "What's the hurry?" + done _ViridianForestEndBattleText3: ; 80458 (20:4458) - db $0, "I", $4f - db "give! You're good", $55 - db "at this!", $58 + text "I" + line "give! You're good" + next "at this!" + prompt _ViridianFrstAfterBattleText3: ; 80475 (20:4475) - db $0, "Sometimes, you", $4f - db "can find stuff on", $55 - db "the ground!", $51 - db "I'm looking for", $4f - db "the stuff I", $55 - db "dropped!", $57 + text "Sometimes, you" + line "can find stuff on" + next "the ground!" + + page "I'm looking for" + line "the stuff I" + next "dropped!" + done _ViridianForestText8: ; 804c7 (20:44c7) - db $0, "I ran out of #", $4f - db "BALLs to catch", $55 - db "#MON with!", $51 - db "You should carry", $4f - db "extras!", $57 + text "I ran out of #" + line "BALLs to catch" + next "#MON with!" + + page "You should carry" + line "extras!" + done _ViridianForestText9: ; 8050a (20:450a) - db $0, "TRAINER TIPS", $51 - db "If you want to", $4f - db "avoid battles,", $55 - db "stay away from", $55 - db "grassy areas!", $57 + text "TRAINER TIPS" + + page "If you want to" + line "avoid battles," + next "stay away from" + next "grassy areas!" + done _ViridianForestText10: ; 80553 (20:4553) - db $0, "For poison, use", $4f - db "ANTIDOTE! Get it", $55 - db "at #MON MARTs!", $57 + text "For poison, use" + line "ANTIDOTE! Get it" + next "at #MON MARTs!" + done _ViridianForestText11: ; 80584 (20:4584) - db $0, "TRAINER TIPS", $51 - db "Contact PROF.OAK", $4f - db "via PC to get", $55 - db "your #DEX", $55 - db "evaluated!", $57 + text "TRAINER TIPS" + + page "Contact PROF.OAK" + line "via PC to get" + next "your #DEX" + next "evaluated!" + done _ViridianForestText12: ; 805c6 (20:45c6) - db $0, "TRAINER TIPS", $51 - db "No stealing of", $4f - db "#MON from", $55 - db "other trainers!", $55 - db "Catch only wild", $55 - db "#MON!", $57 + text "TRAINER TIPS" + + page "No stealing of" + line "#MON from" + next "other trainers!" + next "Catch only wild" + next "#MON!" + done _ViridianForestText13: ; 80613 (20:4613) - db $0, "TRAINER TIPS", $51 - db "Weaken #MON", $4f - db "before attempting", $55 - db "capture!", $51 - db "When healthy,", $4f - db "they may escape!", $57 + text "TRAINER TIPS" + + page "Weaken #MON" + line "before attempting" + next "capture!" + + page "When healthy," + line "they may escape!" + done _ViridianForestText14: ; 80667 (20:4667) - db $0, "LEAVING", $4f - db "VIRIDIAN FOREST", $55 - db "PEWTER CITY AHEAD", $57 + text "LEAVING" + line "VIRIDIAN FOREST" + next "PEWTER CITY AHEAD" + done _MtMoon1BattleText2: ; 80692 (20:4692) - db $0, "WHOA! You shocked", $4f - db "me! Oh, you're", $55 - db "just a kid!", $57 + text "WHOA! You shocked" + line "me! Oh, you're" + next "just a kid!" + done _MtMoon1EndBattleText2: ; 806bf (20:46bf) - db $0, "Wow!", $4f - db "Shocked again!", $58 + text "Wow!" + line "Shocked again!" + prompt _MtMoon1AfterBattleText2: ; 806d4 (20:46d4) - db $0, "Kids like you", $4f - db "shouldn't be", $55 - db "here!", $57 + text "Kids like you" + line "shouldn't be" + next "here!" + done _MtMoon1BattleText3: ; 806f5 (20:46f5) - db $0, "Did you come to", $4f - db "explore too?", $57 + text "Did you come to" + line "explore too?" + done _MtMoon1EndBattleText3: ; 80713 (20:4713) - db $0, "Losing", $4f - db "stinks!", $58 + text "Losing" + line "stinks!" + prompt _MtMoon1AfterBattleText3: ; 80723 (20:4723) - db $0, "I came down here", $4f - db "to show off to", $55 - db "girls.", $57 + text "I came down here" + line "to show off to" + next "girls." + done _MtMoon1BattleText4: ; 8074b (20:474b) - db $0, "Wow! It's way", $4f - db "bigger in here", $55 - db "than I thought!", $57 + text "Wow! It's way" + line "bigger in here" + next "than I thought!" + done _MtMoon1EndBattleText4: ; 80778 (20:4778) - db $0, "Oh!", $4f - db "I lost it!", $58 + text "Oh!" + line "I lost it!" + prompt _MtMoon1AfterBattleText4: ; 80788 (20:4788) - db $0, "How do you get", $4f - db "out of here?", $57 + text "How do you get" + line "out of here?" + done _MtMoon1BattleText5: ; 807a5 (20:47a5) - db $0, "What! Don't sneak", $4f - db "up on me!", $57 + text "What! Don't sneak" + line "up on me!" + done _MtMoon1EndBattleText5: ; 807c1 (20:47c1) - db $0, "My", $4f - db "#MON won't do!", $58 + text "My" + line "#MON won't do!" + prompt _MtMoon1AfterBattleText5: ; 807d3 (20:47d3) - db $0, "I have to find", $4f - db "stronger #MON.", $57 + text "I have to find" + line "stronger #MON." + done _MtMoon1BattleText6: ; 807f2 (20:47f2) - db $0, "What? I'm waiting", $4f - db "for my friends to", $55 - db "find me here.", $57 + text "What? I'm waiting" + line "for my friends to" + next "find me here." + done _MtMoon1EndBattleText6: ; 80824 (20:4824) - db $0, "I lost?", $58 + text "I lost?" + prompt _MtMoon1AfterBattleText6: ; 8082d (20:482d) - db $0, "I heard there are", $4f - db "some very rare", $55 - db "fossils here.", $57 + text "I heard there are" + line "some very rare" + next "fossils here." + done _MtMoon1BattleText7: ; 8085d (20:485d) - db $0, "Suspicious men", $4f - db "are in the cave.", $55 - db "What about you?", $57 + text "Suspicious men" + line "are in the cave." + next "What about you?" + done _MtMoon1EndBattleText7: ; 8088e (20:488e) - db $0, "You", $4f - db "got me!", $58 + text "You" + line "got me!" + prompt _MtMoon1AfterBattleText7: ; 8089b (20:489b) - db $0, "I saw them! I'm", $4f - db "sure they're from", $55 - db "TEAM ROCKET!", $57 + text "I saw them! I'm" + line "sure they're from" + next "TEAM ROCKET!" + done _MtMoon1BattleText8: ; 808c9 (20:48c9) - db $0, "Go through this", $4f - db "cave to get to", $55 - db "CERULEAN CITY!", $57 + text "Go through this" + line "cave to get to" + next "CERULEAN CITY!" + done _MtMoon1EndBattleText8: ; 808f8 (20:48f8) - db $0, "I", $4f - db "lost.", $58 + text "I" + line "lost." + prompt _MtMoon1AfterBattleText8: ; 80901 (20:4901) - db $0, "ZUBAT is tough!", $4f - db "But, it can be", $55 - db "useful if you", $55 - db "catch one.", $57 + text "ZUBAT is tough!" + line "But, it can be" + next "useful if you" + next "catch one." + done _MtMoon1Text14: ; 8093a (20:493a) - db $0, "Beware! ZUBAT is", $4f - db "a blood sucker!", $57 + text "Beware! ZUBAT is" + line "a blood sucker!" + done _UnnamedText_51a48: ; 8095c (20:495c) db $0, $57 _UnnamedText_49f24: ; 8095e (20:495e) - db $0, "You want the", $4f - db "DOME FOSSIL?", $57 + text "You want the" + line "DOME FOSSIL?" + done _UnnamedText_49f64: ; 80979 (20:4979) - db $0, "You want the", $4f - db "HELIX FOSSIL?", $57 + text "You want the" + line "HELIX FOSSIL?" + done _UnnamedText_49f6f: ; 80995 (20:4995) - db $0, $52, " got the", $4f - db "@" + text $52, " got the" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_49f7f: ; 809a8 (20:49a8) - db $0, "Look, you've got", $4f - db "no room for this.@@" + text "Look, you've got" + line "no room for this.@@" _UnnamedText_49f85: ; 809cc (20:49cc) - db $0, "Hey, stop!", $51 - db "I found these", $4f - db "fossils! They're", $55 - db "both mine!", $57 + text "Hey, stop!" + + page "I found these" + line "fossils! They're" + next "both mine!" + done _UnnamedText_49f8a: ; 80a01 (20:4a01) - db $0, "OK!", $4f - db "I'll share!", $58 + text "OK!" + line "I'll share!" + prompt _UnnamedText_49f8f: ; 80a11 (20:4a11) - db $0, "We'll each take", $4f - db "one!", $55 - db "No being greedy!", $57 + text "We'll each take" + line "one!" + next "No being greedy!" + done _UnnamedText_49f94: ; 80a37 (20:4a37) - db $0, "Far away, on", $4f - db "CINNABAR ISLAND,", $55 - db "there's a #MON", $55 - db "LAB.", $51 - db "They do research", $4f - db "on regenerating", $55 - db "fossils.", $57 + text "Far away, on" + line "CINNABAR ISLAND," + next "there's a #MON" + next "LAB." + + page "They do research" + line "on regenerating" + next "fossils." + done _UnnamedText_49f99: ; 80a93 (20:4a93) - db $0, "All right. Then", $4f - db "this is mine!@@" + text "All right. Then" + line "this is mine!@@" _MtMoon3BattleText2: ; 80ab3 (20:4ab3) - db $0, "TEAM ROCKET will", $4f - db "find the fossils,", $55 - db "revive and sell", $55 - db "them for cash!", $57 + text "TEAM ROCKET will" + line "find the fossils," + next "revive and sell" + next "them for cash!" + done _MtMoon3EndBattleText2: ; 80af6 (20:4af6) - db $0, "Urgh!", $4f - db "Now I'm mad!", $58 + text "Urgh!" + line "Now I'm mad!" + prompt _MtMoon3AfterBattleText2: ; 80b09 (20:4b09) - db $0, "You made me mad!", $4f - db "TEAM ROCKET will", $55 - db "blacklist you!", $57 + text "You made me mad!" + line "TEAM ROCKET will" + next "blacklist you!" + done _MtMoon3BattleText3: ; 80b3b (20:4b3b) - db $0, "We, TEAM ROCKET,", $4f - db "are #MON", $55 - db "gangsters!", $57 + text "We, TEAM ROCKET," + line "are #MON" + next "gangsters!" + done _MtMoon3EndBattleText3: ; 80b61 (20:4b61) - db $0, "I blew", $4f - db "it!", $58 + text "I blew" + line "it!" + prompt _MtMoon3AfterBattleText3: ; 80b6d (20:4b6d) - db $0, "Darn it all! My", $4f - db "associates won't", $55 - db "stand for this!", $57 + text "Darn it all! My" + line "associates won't" + next "stand for this!" + done _MtMoon3BattleText4: ; 80b9e (20:4b9e) - db $0, "We're pulling a", $4f - db "big job here!", $55 - db "Get lost, kid!", $57 + text "We're pulling a" + line "big job here!" + next "Get lost, kid!" + done _MtMoon3EndBattleText4: ; 80bcb (20:4bcb) - db $0, "So, you", $4f - db "are good.", $58 + text "So, you" + line "are good." + prompt _MtMoon3AfterBattleText4: ; 80bde (20:4bde) - db $0, "If you find a", $4f - db "fossil, give it", $55 - db "to me and scram!", $57 + text "If you find a" + line "fossil, give it" + next "to me and scram!" + done _MtMoon3BattleText5: ; 80c0e (20:4c0e) - db $0, "Little kids", $4f - db "should leave", $55 - db "grown-ups alone!", $57 + text "Little kids" + line "should leave" + next "grown-ups alone!" + done _MtMoon3EndBattleText5: ; 80c39 (20:4c39) - db $0, "I'm", $4f - db "steamed!", $58 + text "I'm" + line "steamed!" + prompt _MtMoon3AfterBattleText5: ; 80c46 (20:4c46) - db $0, "#MON lived", $4f - db "here long before", $55 - db "people came.", $57 + text "#MON lived" + line "here long before" + next "people came." + done _SSAnne1Text1: ; 80c70 (20:4c70) - db $0, "Bonjour!", $4f - db "I am le waiter on", $55 - db "this ship!", $51 - db "I will be happy", $4f - db "to serve you any-", $55 - db "thing you please!", $51 - db "Ah! Le strong", $4f - db "silent type!", $57 + text "Bonjour!" + line "I am le waiter on" + next "this ship!" + + page "I will be happy" + line "to serve you any-" + next "thing you please!" + + page "Ah! Le strong" + line "silent type!" + done _SSAnne1Text2: ; 80ce6 (20:4ce6) - db $0, "The passengers", $4f - db "are restless!", $51 - db "You might be", $4f - db "challenged by the", $55 - db "more bored ones!", $57 + text "The passengers" + line "are restless!" + + page "You might be" + line "challenged by the" + next "more bored ones!" + done _SSAnne2Text1: ; 80d34 (20:4d34) - db $0, "This ship, she is", $4f - db "a luxury liner", $55 - db "for trainers!", $51 - db "At every port, we", $4f - db "hold parties with", $55 - db "invited trainers!", $57 + text "This ship, she is" + line "a luxury liner" + next "for trainers!" + + page "At every port, we" + line "hold parties with" + next "invited trainers!" + done _SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) db $0, $53, ": Bonjour!", $4f @@ -116052,16 +116146,20 @@ _SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) db "grassy areas!", $57 _SSAnneRivalDefeatedText: ; 80e57 (20:4e57) - db $0, "Humph!", $51 - db "At least you're", $4f - db "raising your", $55 - db "#MON!", $58 + text "Humph!" + + page "At least you're" + line "raising your" + next "#MON!" + prompt _SSAnneRivalWonText: ; 80e81 (20:4e81) - db $0, $52, "! What are", $4f - db "you, seasick?", $51 - db "You should shape", $4f - db "up, pal!", $58 + text $52, "! What are" + line "you, seasick?" + + page "You should shape" + line "up, pal!" + prompt _SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) db $0, $53, ": I heard", $4f @@ -116075,105 +116173,135 @@ _SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) db "him! Smell ya!", $57 _SSAnne3Text1: ; 80f4b (20:4f4b) - db $0, "Our CAPTAIN is a", $4f - db "sword master!", $51 - db "He even teaches", $4f - db "CUT to #MON!", $57 + text "Our CAPTAIN is a" + line "sword master!" + + page "He even teaches" + line "CUT to #MON!" + done _SSAnne5Text1: ; 80f88 (20:4f88) - db $0, "The party's over.", $4f - db "The ship will be", $55 - db "departing soon.", $57 + text "The party's over." + line "The ship will be" + next "departing soon." + done _SSAnne5Text2: ; 80fbb (20:4fbb) - db $0, "Scrubbing decks", $4f - db "is hard work!", $57 + text "Scrubbing decks" + line "is hard work!" + done _SSAnne5Text3: ; 80fda (20:4fda) - db $0, "Urf. I feel ill.", $51 - db "I stepped out to", $4f - db "get some air.", $57 + text "Urf. I feel ill." + + page "I stepped out to" + line "get some air." + done _SSAnneBattleText1: ; 8100b (20:500b) - db $0, "Hey matey!", $51 - db "Let's do a little", $4f - db "jig!", $57 + text "Hey matey!" + + page "Let's do a little" + line "jig!" + done _SSAnneEndBattleText1: ; 8102d (20:502d) - db $0, "You're", $4f - db "impressive!", $58 + text "You're" + line "impressive!" + prompt _SSAnneAfterBattleText1: ; 81040 (20:5040) - db $0, "How many kinds of", $4f - db "#MON do you", $55 - db "think there are?", $57 + text "How many kinds of" + line "#MON do you" + next "think there are?" + done _SSAnneBattleText2: ; 81070 (20:5070) - db $0, "Ahoy there!", $4f - db "Are you seasick?", $57 + text "Ahoy there!" + line "Are you seasick?" + done _SSAnneEndBattleText2: ; 8108e (20:508e) - db $0, "I was", $4f - db "just careless!", $58 + text "I was" + line "just careless!" + prompt _SSAnneAfterBattleText2: ; 810a4 (20:50a4) - db $0, "My Pa said there", $4f - db "are 100 kinds of", $55 - db "#MON. I think", $55 - db "there are more.", $57 + text "My Pa said there" + line "are 100 kinds of" + next "#MON. I think" + next "there are more." + done _SSAnne6Text1: ; 810e5 (20:50e5) - db $0, "You, mon petit!", $4f - db "We're busy here!", $55 - db "Out of the way!", $57 + text "You, mon petit!" + line "We're busy here!" + next "Out of the way!" + done _SSAnne6Text2: ; 81116 (20:5116) - db $0, "I saw an odd ball", $4f - db "in the trash.", $57 + text "I saw an odd ball" + line "in the trash." + done _SSAnne6Text3: ; 81137 (20:5137) - db $0, "I'm so busy I'm", $4f - db "getting dizzy!", $57 + text "I'm so busy I'm" + line "getting dizzy!" + done _SSAnne6Text4: ; 81155 (20:5155) - db $0, "Hum-de-hum-de-", $4f - db "ho...", $51 - db "I peel spuds", $4f - db "every day!", $55 - db "Hum-hum...", $57 + text "Hum-de-hum-de-" + line "ho..." + + page "I peel spuds" + line "every day!" + next "Hum-hum..." + done _SSAnne6Text5: ; 8118e (20:518e) - db $0, "Did you hear about", $4f - db "SNORLAX?", $51 - db "All it does is", $4f - db "eat and sleep!", $57 + text "Did you hear about" + line "SNORLAX?" + + page "All it does is" + line "eat and sleep!" + done _SSAnne6Text6: ; 811c9 (20:51c9) - db $0, "Snivel...Sniff...", $51 - db "I only get to", $4f - db "peel onions...", $55 - db "Snivel...", $57 + text "Snivel...Sniff..." + + page "I only get to" + line "peel onions..." + next "Snivel..." + done _UnnamedText_61807: ; 81203 (20:5203) - db $0, "Er-hem! Indeed I", $4f - db "am le CHEF!", $51 - db "Le main course is", $58 + text "Er-hem! Indeed I" + line "am le CHEF!" + + page "Le main course is" + prompt _UnnamedText_6180c: ; 81233 (20:5233) - db $0, "Salmon du Salad!", $51 - db "Les guests may", $4f - db "gripe it's fish", $55 - db "again, however!", $57 + text "Salmon du Salad!" + + page "Les guests may" + line "gripe it's fish" + next "again, however!" + done _UnnamedText_61811: ; 81273 (20:5273) - db $0, "Eels au Barbecue!", $51 - db "Les guests will", $4f - db "mutiny, I fear.", $57 + text "Eels au Barbecue!" + + page "Les guests will" + line "mutiny, I fear." + done _UnnamedText_61816: ; 812a6 (20:52a6) - db $0, "Prime Beef Steak!", $51 - db "But, have I enough", $4f - db "fillets du beef?", $57 + text "Prime Beef Steak!" + + page "But, have I enough" + line "fillets du beef?" + done _SSAnne7RubText: ; 812dd (20:52dd) db $0, "CAPTAIN: Ooargh...", $4f @@ -116201,10 +116329,10 @@ _ReceivingHM01Text: ; 81347 (20:5347) db "any time!", $58 _ReceivedHM01Text: ; 8140d (20:540d) - db $0, $52, " got", $4f - db "@" + text $52, " got" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_61932: ; 8141c (20:541c) db $0, "CAPTAIN: Whew!", $51 @@ -116213,967 +116341,1189 @@ _UnnamedText_61932: ; 8141c (20:541c) db "guess it's time.", $57 _HM01NoRoomText: ; 8145d (20:545d) - db $0, "Oh no! You have", $4f - db "no room for this!", $57 + text "Oh no! You have" + line "no room for this!" + done _SSAnne7Text2: ; 81480 (20:5480) - db $0, "Yuck! Shouldn't", $4f - db "have looked!", $57 + text "Yuck! Shouldn't" + line "have looked!" + done _SSAnne7Text3: ; 8149d (20:549d) - db $0, "How to Conquer", $4f - db "Seasickness...", $55 - db "The CAPTAIN's", $55 - db "reading this!", $57 + text "How to Conquer" + line "Seasickness..." + next "The CAPTAIN's" + next "reading this!" + done _SSAnne8Text8: ; 814d7 (20:54d7) db $0, "WIGGLYTUFF: Puup", $4f db "pupuu!@@" _SSAnne8BattleText1: ; 814f1 (20:54f1) - db $0, "I travel alone", $4f - db "on my journeys!", $51 - db "My #MON are my", $4f - db "only friends!", $57 + text "I travel alone" + line "on my journeys!" + + page "My #MON are my" + line "only friends!" + done _SSAnne8EndBattleText1: ; 8152e (20:552e) - db $0, "My, my", $4f - db "friends...", $58 + text "My, my" + line "friends..." + prompt _SSAnne8AfterBattleText1: ; 81541 (20:5541) - db $0, "You should be", $4f - db "nice to friends!", $57 + text "You should be" + line "nice to friends!" + done _SSAnne8BattleText2: ; 81561 (20:5561) - db $0, "You pup! How dare", $4f - db "you barge in!", $57 + text "You pup! How dare" + line "you barge in!" + done _SSAnne8EndBattleText2: ; 81582 (20:5582) - db $0, "Humph!", $4f - db "You rude child!", $58 + text "Humph!" + line "You rude child!" + prompt _UnnamedText_61a24: ; 8159a (20:559a) - db $0, "I wish to be left", $4f - db "alone! Get out!", $57 + text "I wish to be left" + line "alone! Get out!" + done _SSAnne8BattleText3: ; 815bd (20:55bd) - db $0, "I love #MON!", $4f - db "Do you?", $57 + text "I love #MON!" + line "Do you?" + done _SSAnne8EndBattleText3: ; 815d3 (20:55d3) - db $0, "Wow! ", $4f - db "You're great!", $58 + text "Wow! " + line "You're great!" + prompt _SSAnne8AfterBattleText3: ; 815e7 (20:55e7) - db $0, "Let me be your", $4f - db "friend, OK?", $51 - db "Then we can trade", $4f - db "#MON!", $57 + text "Let me be your" + line "friend, OK?" + + page "Then we can trade" + line "#MON!" + done _SSAnne8BattleText4: ; 8161b (20:561b) - db $0, "I collected these", $4f - db "#MON from all", $55 - db "around the world!", $57 + text "I collected these" + line "#MON from all" + next "around the world!" + done _SSAnne8EndBattleText4: ; 8164e (20:564e) - db $0, "Oh no!", $4f - db "I went around the", $55 - db "world for these!", $58 + text "Oh no!" + line "I went around the" + next "world for these!" + prompt _SSAnne8AfterBattleText4: ; 81679 (20:5679) - db $0, "You hurt my poor", $4f - db "worldly #MON!", $51 - db "I demand that you", $4f - db "heal them at a", $55 - db "#MON CENTER!", $57 + text "You hurt my poor" + line "worldly #MON!" + + page "I demand that you" + line "heal them at a" + next "#MON CENTER!" + done _SSAnne8Text5: ; 816c7 (20:56c7) - db $0, "Waiter, I would", $4f - db "like a cherry pie", $55 - db "please!", $57 + text "Waiter, I would" + line "like a cherry pie" + next "please!" + done _SSAnne8Text6: ; 816f2 (20:56f2) - db $0, "A cruise is so", $4f - db "elegant yet cozy!", $57 + text "A cruise is so" + line "elegant yet cozy!" + done _SSAnne8Text7: ; 81714 (20:5714) - db $0, "I always travel", $4f - db "with WIGGLYTUFF!", $57 + text "I always travel" + line "with WIGGLYTUFF!" + done _SSAnne8Text9: ; 81736 (20:5736) - db $0, "We are cruising", $4f - db "around the world.", $57 + text "We are cruising" + line "around the world." + done _SSAnne8Text11: ; 81759 (20:5759) - db $0, "Ssh! I'm a GLOBAL", $4f - db "POLICE agent!", $51 - db "I'm on the trail", $4f - db "of TEAM ROCKET!", $57 + text "Ssh! I'm a GLOBAL" + line "POLICE agent!" + + page "I'm on the trail" + line "of TEAM ROCKET!" + done _UnnamedText_61bf2: ; 81799 (20:5799) - db $0, "In all my travels", $4f - db "I've never seen", $55 - db "any #MON sleep", $55 - db "like this one!", $51 - db "It was something", $4f - db "like this!", $58 + text "In all my travels" + line "I've never seen" + next "any #MON sleep" + next "like this one!" + + page "It was something" + line "like this!" + prompt _UnnamedText_61c01: ; 817f5 (20:57f5) - db $0, "Ah yes, I have", $4f - db "seen some #MON", $55 - db "ferry people", $55 - db "across the water!", $57 + text "Ah yes, I have" + line "seen some #MON" + next "ferry people" + next "across the water!" + done _UnnamedText_61c10: ; 81833 (20:5833) - db $0, "#MON can CUT", $4f - db "down small bushes.", $57 + text "#MON can CUT" + line "down small bushes." + done _UnnamedText_61c1f: ; 81854 (20:5854) - db $0, "Have you gone to", $4f - db "the SAFARI ZONE", $55 - db "in FUCHSIA CITY?", $51 - db "It had many rare", $4f - db "kinds of #MON!!", $57 + text "Have you gone to" + line "the SAFARI ZONE" + next "in FUCHSIA CITY?" + + page "It had many rare" + line "kinds of #MON!!" + done _UnnamedText_61c2e: ; 818a8 (20:58a8) - db $0, "Me and my Daddy", $4f - db "think the SAFARI", $55 - db "ZONE is awesome!", $57 + text "Me and my Daddy" + line "think the SAFARI" + next "ZONE is awesome!" + done _UnnamedText_61c3d: ; 818db (20:58db) - db $0, "The CAPTAIN looked", $4f - db "really sick and", $55 - db "pale!", $57 + text "The CAPTAIN looked" + line "really sick and" + next "pale!" + done _UnnamedText_61c4c: ; 81905 (20:5905) - db $0, "I hear many people", $4f - db "get seasick!", $57 + text "I hear many people" + line "get seasick!" + done _SSAnne9BattleText1: ; 81926 (20:5926) - db $0, "Competing against", $4f - db "the young keeps", $55 - db "me youthful.", $57 + text "Competing against" + line "the young keeps" + next "me youthful." + done _SSAnne9EndBattleText1: ; 81956 (20:5956) - db $0, "Good", $4f - db "fight! Ah, I feel", $55 - db "young again!", $58 + text "Good" + line "fight! Ah, I feel" + next "young again!" + prompt _SSAnne9AfterBattleText1: ; 8197b (20:597b) - db $0, "15 years ago, I", $4f - db "would have won!", $57 + text "15 years ago, I" + line "would have won!" + done _SSAnne9BattleText2: ; 8199c (20:599c) - db $0, "Check out what I", $4f - db "fished up!", $57 + text "Check out what I" + line "fished up!" + done _SSAnne9EndBattleText2: ; 819b9 (20:59b9) - db $0, "I'm", $4f - db "all out!", $58 + text "I'm" + line "all out!" + prompt _SSAnne9AfterBattleText2: ; 819c6 (20:59c6) - db $0, "Party?", $51 - db "The cruise ship's", $4f - db "party should be", $55 - db "over by now.", $57 + text "Party?" + + page "The cruise ship's" + line "party should be" + next "over by now." + done _SSAnne9BattleText3: ; 819fc (20:59fc) - db $0, "Which do you like,", $4f - db "a strong or a", $55 - db "rare #MON?", $57 + text "Which do you like," + line "a strong or a" + next "rare #MON?" + done _SSAnne9EndBattleText3: ; 81a29 (20:5a29) - db $0, "I must", $4f - db "salute you!", $58 + text "I must" + line "salute you!" + prompt _SSAnne9AfterBattleText3: ; 81a3d (20:5a3d) - db $0, "I prefer strong", $4f - db "and rare #MON.", $57 + text "I prefer strong" + line "and rare #MON." + done _SSAnne9BattleText4: ; 81a5d (20:5a5d) - db $0, "I never saw you", $4f - db "at the party.", $57 + text "I never saw you" + line "at the party." + done _SSAnne9EndBattleText4: ; 81a7c (20:5a7c) - db $0, "Take", $4f - db "it easy!", $58 + text "Take" + line "it easy!" + prompt _SSAnne9AfterBattleText4: ; 81a8b (20:5a8b) - db $0, "Oh, I adore your", $4f - db "strong #MON!", $57 + text "Oh, I adore your" + line "strong #MON!" + done _SSAnne10Text8: ; 81aaa (20:5aaa) db $0, "MACHOKE: Gwoh!", $4f db "Goggoh!@@" _SSAnne10BattleText1: ; 81ac3 (20:5ac3) - db $0, "You know what they", $4f - db "say about sailors", $55 - db "and fighting!", $57 + text "You know what they" + line "say about sailors" + next "and fighting!" + done _SSAnne10EndBattleText1: ; 81af7 (20:5af7) - db $0, "Right!", $4f - db "Good fight, mate!", $58 + text "Right!" + line "Good fight, mate!" + prompt _SSAnne10AfterBattleText1: ; 81b11 (20:5b11) - db $0, "Haha! Want to be", $4f - db "a sailor, mate?", $57 + text "Haha! Want to be" + line "a sailor, mate?" + done _SSAnne10BattleText2: ; 81b33 (20:5b33) - db $0, "My sailor's pride", $4f - db "is at stake!", $57 + text "My sailor's pride" + line "is at stake!" + done _SSAnne10EndBattleText2: ; 81b52 (20:5b52) - db $0, "Your", $4f - db "spirit sank me!", $58 + text "Your" + line "spirit sank me!" + prompt _SSAnne10AfterBattleText2: ; 81b68 (20:5b68) - db $0, "Did you see the", $4f - db "FISHING GURU in", $55 - db "VERMILION CITY?", $57 + text "Did you see the" + line "FISHING GURU in" + next "VERMILION CITY?" + done _SSAnne10BattleText3: ; 81b99 (20:5b99) - db $0, "Us sailors have", $4f - db "#MON too!", $57 + text "Us sailors have" + line "#MON too!" + done _SSAnne10EndBattleText3: ; 81bb4 (20:5bb4) - db $0, "OK, ", $4f - db "you're not bad.", $58 + text "OK, " + line "you're not bad." + prompt _SSAnne10AfterBattleText3: ; 81bc9 (20:5bc9) - db $0, "We caught all our", $4f - db "#MON while", $55 - db "out at sea!", $57 + text "We caught all our" + line "#MON while" + next "out at sea!" + done _SSAnne10BattleText4: ; 81bf3 (20:5bf3) - db $0, "I like feisty", $4f - db "kids like you!@@" + text "I like feisty" + line "kids like you!@@" _SSAnne10EndBattleText4: ; 81c12 (20:5c12) - db $0, "Argh!", $4f - db "Lost it!", $58 + text "Argh!" + line "Lost it!" + prompt _SSAnne10AfterBattleText4: ; 81c22 (20:5c22) - db $0, "Sea #MON live", $4f - db "in deep water.", $55 - db "You'll need a ROD!", $57 + text "Sea #MON live" + line "in deep water." + next "You'll need a ROD!" + done _SSAnne10BattleText5: ; 81c52 (20:5c52) - db $0, "Matey, you're", $4f - db "walking the plank", $55 - db "if you lose!", $57 + text "Matey, you're" + line "walking the plank" + next "if you lose!" + done _SSAnne10EndBattleText5: ; 81c7f (20:5c7f) - db $0, "Argh!", $4f - db "Beaten by a kid!", $58 + text "Argh!" + line "Beaten by a kid!" + prompt _SSAnne10AfterBattleText5: ; 81c97 (20:5c97) - db $0, "Jellyfish some-", $4f - db "times drift into", $55 - db "the ship.", $57 + text "Jellyfish some-" + line "times drift into" + next "the ship." + done _SSAnne10BattleText6: ; 81cc3 (20:5cc3) - db $0, "Hello stranger!", $4f - db "Stop and chat!", $51 - db "All my #MON", $4f - db "are from the sea!", $57 + text "Hello stranger!" + line "Stop and chat!" + + page "All my #MON" + line "are from the sea!" + done _SSAnne10EndBattleText6: ; 81d01 (20:5d01) - db $0, "Darn!", $4f - db "I let that one", $55 - db "get away!", $58 + text "Darn!" + line "I let that one" + next "get away!" + prompt _SSAnne10AfterBattleText6: ; 81d21 (20:5d21) - db $0, "I was going to", $4f - db "make you my", $55 - db "assistant too!", $57 + text "I was going to" + line "make you my" + next "assistant too!" + done _SSAnne10Text7: ; 81d4c (20:5d4c) - db $0, "My buddy, MACHOKE,", $4f - db "is super strong!", $51 - db "He has enough", $4f - db "STRENGTH to move", $55 - db "big rocks!", $57 + text "My buddy, MACHOKE," + line "is super strong!" + + page "He has enough" + line "STRENGTH to move" + next "big rocks!" + done _VictoryRoad3BattleText2: ; 81d9b (20:5d9b) - db $0, "I heard rumors of", $4f - db "a child prodigy!", $57 + text "I heard rumors of" + line "a child prodigy!" + done _VictoryRoad3EndBattleText2: ; 81dbf (20:5dbf) - db $0, "The", $4f - db "rumors were true!", $58 + text "The" + line "rumors were true!" + prompt _VictoryRoad3AfterBattleText2: ; 81dd6 (20:5dd6) - db $0, "You beat GIOVANNI", $4f - db "of TEAM ROCKET?", $57 + text "You beat GIOVANNI" + line "of TEAM ROCKET?" + done _VictoryRoad3BattleText3: ; 81df9 (20:5df9) - db $0, "I'll show you just", $4f - db "how good you are!", $57 + text "I'll show you just" + line "how good you are!" + done _VictoryRoad3EndBattleText3: ; 81e1e (20:5e1e) - db $0, "I'm", $4f - db "furious!", $58 + text "I'm" + line "furious!" + prompt _VictoryRoad3AfterBattleText3: ; 81e2b (20:5e2b) - db $0, "You showed me just", $4f - db "how good I was!", $57 + text "You showed me just" + line "how good I was!" + done _VictoryRoad3BattleText4: ; 81e4f (20:5e4f) - db $0, "Only the chosen", $4f - db "can pass here!", $57 + text "Only the chosen" + line "can pass here!" + done _VictoryRoad3EndBattleText4: ; 81e6f (20:5e6f) - db $0, "I", $4f - db "don't believe it!", $58 + text "I" + line "don't believe it!" + prompt _VictoryRoad3AfterBattleText4: ; 81e83 (20:5e83) - db $0, "All trainers here", $4f - db "are headed to the", $55 - db "#MON LEAGUE!", $55 - db "Be careful!", $57 + text "All trainers here" + line "are headed to the" + next "#MON LEAGUE!" + next "Be careful!" + done _VictoryRoad3BattleText5: ; 81ec1 (20:5ec1) - db $0, "Trainers live to", $4f - db "seek stronger", $55 - db "opponents!", $57 + text "Trainers live to" + line "seek stronger" + next "opponents!" + done _VictoryRoad3EndBattleText5: ; 81eec (20:5eec) - db $0, "Oh!", $4f - db "So strong!", $58 + text "Oh!" + line "So strong!" + prompt _VictoryRoad3AfterBattleText5: ; 81efc (20:5efc) - db $0, "By fighting tough", $4f - db "battles, you get", $55 - db "stronger!", $57 + text "By fighting tough" + line "battles, you get" + next "stronger!" + done _RocketHideout1EndBattleText6: ; 81f2a (20:5f2a) - db $0, "Why...?@@" + text "Why...?@@" _RocketHideout1BattleText2: ; 81f34 (20:5f34) - db $0, "Who are you? How", $4f - db "did you get here?", $57 + text "Who are you? How" + line "did you get here?" + done _RocketHideout1EndBattleText2: ; 81f58 (20:5f58) - db $0, "Oww!", $4f - db "Beaten!", $58 + text "Oww!" + line "Beaten!" + prompt _RocketHideout1AfterBattleTxt2: ; 81f66 (20:5f66) - db $0, "Are you dissing", $4f - db "TEAM ROCKET?", $57 + text "Are you dissing" + line "TEAM ROCKET?" + done _RocketHideout1BattleText3: ; 81f84 (20:5f84) - db $0, "You broke into", $4f - db "our operation?", $57 + text "You broke into" + line "our operation?" + done _RocketHideout1EndBattleText3: ; 81fa3 (20:5fa3) - db $0, "Burnt!", $58 + text "Burnt!" + prompt _RocketHideout1AfterBattleTxt3: ; 81fab (20:5fab) - db $0, "You're not going", $4f - db "to get away with", $55 - db "this, brat!", $57 + text "You're not going" + line "to get away with" + next "this, brat!" + done _RocketHideout1BattleText4: ; 81fd9 (20:5fd9) - db $0, "Intruder alert!", $57 + text "Intruder alert!" + done _RocketHideout1EndBattleText4: ; 81fea (20:5fea) - db $0, "I", $4f - db "can't do it!", $58 + text "I" + line "can't do it!" + prompt _RocketHideout1AfterBattleTxt4: ; 81ff9 (20:5ff9) - db $0, "SILPH SCOPE?", $4f - db "I don't know", $55 - db "where it is!", $57 + text "SILPH SCOPE?" + line "I don't know" + next "where it is!" + done _RocketHideout1BattleText5: ; 82020 (20:6020) - db $0, "Why did you come", $4f - db "here?", $57 + text "Why did you come" + line "here?" + done _RocketHideout1EndBattleText5: ; 82038 (20:6038) - db $0, "This", $4f - db "won't do!", $58 + text "This" + line "won't do!" + prompt _RocketHideout1AfterBattleTxt5: ; 82047 (20:6047) - db $0, "OK, I'll talk!", $4f - db "Take the elevator", $55 - db "to see my BOSS!", $57 + text "OK, I'll talk!" + line "Take the elevator" + next "to see my BOSS!" + done _RocketHideout1BattleText6: ; 82078 (20:6078) - db $0, "Are you lost, you", $4f - db "little rat?", $57 + text "Are you lost, you" + line "little rat?" + done _RocketHideout1AfterBattleTxt6: ; 82097 (20:6097) - db $0, "Uh-oh, that fight", $4f - db "opened the door!", $57 + text "Uh-oh, that fight" + line "opened the door!" + done _RocketHideout2BattleText2: ; 820bb (20:60bb) - db $0, "BOSS said you can", $4f - db "see GHOSTs with", $55 - db "the SILPH SCOPE!", $57 + text "BOSS said you can" + line "see GHOSTs with" + next "the SILPH SCOPE!" + done _RocketHideout2EndBattleText2: ; 820ef (20:60ef) - db $0, "I", $4f - db "surrender!", $58 + text "I" + line "surrender!" + prompt _RocketHideout2AfterBattleTxt2: ; 820fd (20:60fd) - db $0, "The TEAM ROCKET", $4f - db "HQ has 4 basement", $55 - db "floors. Can you", $55 - db "reach the BOSS?", $57 + text "The TEAM ROCKET" + line "HQ has 4 basement" + next "floors. Can you" + next "reach the BOSS?" + done _RocketHideout3BattleText2: ; 82140 (20:6140) - db $0, "Stop meddling in", $4f - db "TEAM ROCKET's", $55 - db "affairs!", $57 + text "Stop meddling in" + line "TEAM ROCKET's" + next "affairs!" + done _RocketHideout3EndBattleText2: ; 82168 (20:6168) - db $0, "Oof!", $4f - db "Taken down!", $58 + text "Oof!" + line "Taken down!" + prompt _RocketHideout3AfterBattleTxt2: ; 8217a (20:617a) - db $0, "SILPH SCOPE?", $4f - db "The machine the", $55 - db "BOSS stole. It's", $55 - db "here somewhere.", $57 + text "SILPH SCOPE?" + line "The machine the" + next "BOSS stole. It's" + next "here somewhere." + done _RocketHideout3BattleTxt: ; 821b8 (20:61b8) - db $0, "We got word from", $4f - db "upstairs that you", $55 - db "were coming!", $57 + text "We got word from" + line "upstairs that you" + next "were coming!" + done _RocketHideout3EndBattleText3: ; 821e9 (20:61e9) - db $0, "What?", $4f - db "I lost? No!", $58 + text "What?" + line "I lost? No!" + prompt _RocketHide3AfterBattleText3: ; 821fc (20:61fc) - db $0, "Go ahead and go!", $4f - db "But, you need the", $55 - db "LIFT KEY to run", $55 - db "the elevator!", $57 + text "Go ahead and go!" + line "But, you need the" + next "LIFT KEY to run" + next "the elevator!" + done _UnnamedText_4557a: ; 8223e (20:623e) - db $0, "So! I must say, I", $4f - db "am impressed you", $55 - db "got here!", $57 + text "So! I must say, I" + line "am impressed you" + next "got here!" + done _UnnamedText_4557f: ; 8226c (20:626c) - db $0, "WHAT!", $4f - db "This cannot be!", $58 + text "WHAT!" + line "This cannot be!" + prompt _UnnamedText_45584: ; 82283 (20:6283) - db $0, "I see that you", $4f - db "raise #MON", $55 - db "with utmost care.", $51 - db "A child like you", $4f - db "would never", $55 - db "understand what I", $55 - db "hope to achieve.", $51 - db "I shall step", $4f - db "aside this time!", $51 - db "I hope we meet", $4f - db "again...", $57 + text "I see that you" + line "raise #MON" + next "with utmost care." + + page "A child like you" + line "would never" + next "understand what I" + next "hope to achieve." + + page "I shall step" + line "aside this time!" + + page "I hope we meet" + line "again..." + done _RocketHideout4BattleText2: ; 82326 (20:6326) - db $0, "I know you! You", $4f - db "ruined our plans", $55 - db "at MT.MOON!", $57 + text "I know you! You" + line "ruined our plans" + next "at MT.MOON!" + done _RocketHideout4EndBattleText2: ; 82354 (20:6354) - db $0, "Burned", $4f - db "again!", $58 + text "Burned" + line "again!" + prompt _RocketHide4AfterBattleText2: ; 82363 (20:6363) - db $0, "Do you have", $4f - db "something against", $55 - db "TEAM ROCKET?", $57 + text "Do you have" + line "something against" + next "TEAM ROCKET?" + done _RocketHideout4BattleText3: ; 8238f (20:638f) - db $0, "How can you not", $4f - db "see the beauty of", $55 - db "our evil?", $57 + text "How can you not" + line "see the beauty of" + next "our evil?" + done _RocketHideout4EndBattleText3: ; 823bc (20:63bc) - db $0, "Ayaya!", $58 + text "Ayaya!" + prompt _RocketHide4AfterBattleText3: ; 823c4 (20:63c4) - db $0, "BOSS! I'm sorry I", $4f - db "failed you!", $57 + text "BOSS! I'm sorry I" + line "failed you!" + done _RocketHideout4BattleText4: ; 823e2 (20:63e2) - db $0, "The elevator", $4f - db "doesn't work? Who", $55 - db "has the LIFT KEY?", $57 + text "The elevator" + line "doesn't work? Who" + next "has the LIFT KEY?" + done _RocketHideout4EndBattleText4: ; 82413 (20:6413) - db $0, "No!", $58 + text "No!" + prompt _UnnamedText_455ec: ; 82418 (20:6418) - db $0, "Oh no! I dropped", $4f - db "the LIFT KEY!", $57 + text "Oh no! I dropped" + line "the LIFT KEY!" + done _UnnamedText_4578b: ; 82438 (20:6438) - db $0, "It appears to", $4f - db "need a key.@@" + text "It appears to" + line "need a key.@@" _UnnamedText_59ded: ; 82454 (20:6454) - db $0, "Eeek!", $4f - db "No! Stop! Help!", $51 - db "Oh, you're not", $4f - db "with TEAM ROCKET.", $55 - db "I thought...", $55 - db "I'm sorry. Here,", $55 - db "please take this!", $58 + text "Eeek!" + line "No! Stop! Help!" + + page "Oh, you're not" + line "with TEAM ROCKET." + next "I thought..." + next "I'm sorry. Here," + next "please take this!" + prompt _ReceivedTM36Text: ; 824ba (20:64ba) - db $0, $52, " got", $4f - db "@" + text $52, " got" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM36ExplanationText: ; 824c9 (20:64c9) - db $0, "TM36 is", $4f - db "SELFDESTRUCT!", $51 - db "It's powerful, but", $4f - db "the #MON that", $55 - db "uses it faints!", $55 - db "Be careful.", $57 + text "TM36 is" + line "SELFDESTRUCT!" + + page "It's powerful, but" + line "the #MON that" + next "uses it faints!" + next "Be careful." + done _TM36NoRoomText: ; 8251c (20:651c) - db $0, "You don't have any", $4f - db "room for this.", $57 + text "You don't have any" + line "room for this." + done _SilphCo2BattleText1: ; 8253e (20:653e) - db $0, "Help! I'm a SILPH", $4f - db "employee.", $57 + text "Help! I'm a SILPH" + line "employee." + done _SilphCo2EndBattleText1: ; 8255a (20:655a) - db $0, "How", $4f - db "did you know I", $55 - db "was a ROCKET?", $58 + text "How" + line "did you know I" + next "was a ROCKET?" + prompt _SilphCo2AfterBattleText1: ; 8257c (20:657c) - db $0, "I work for both", $4f - db "SILPH and TEAM", $55 - db "ROCKET!", $57 + text "I work for both" + line "SILPH and TEAM" + next "ROCKET!" + done _SilphCo2BattleText2: ; 825a4 (20:65a4) - db $0, "It's off limits", $4f - db "here! Go home!", $57 + text "It's off limits" + line "here! Go home!" + done _SilphCo2EndBattleText2: ; 825c3 (20:65c3) - db $0, "You're", $4f - db "good.", $58 + text "You're" + line "good." + prompt _SilphCo2AfterBattleText2: ; 825d0 (20:65d0) - db $0, "Can you solve the", $4f - db "maze in here?", $57 + text "Can you solve the" + line "maze in here?" + done _SilphCo2BattleText3: ; 825f1 (20:65f1) - db $0, "No kids are", $4f - db "allowed in here!", $57 + text "No kids are" + line "allowed in here!" + done _SilphCo2EndBattleText3: ; 8260f (20:660f) - db $0, "Tough!", $58 + text "Tough!" + prompt _SilphCo2AfterBattleText3: ; 82617 (20:6617) - db $0, "Diamond shaped", $4f - db "tiles are", $55 - db "teleport blocks!", $51 - db "They're hi-tech", $4f - db "transporters!", $57 + text "Diamond shaped" + line "tiles are" + next "teleport blocks!" + + page "They're hi-tech" + line "transporters!" + done _SilphCo2BattleText4: ; 8265f (20:665f) - db $0, "Hey kid! What are", $4f - db "you doing here?", $57 + text "Hey kid! What are" + line "you doing here?" + done _SilphCo2EndBattleText4: ; 82682 (20:6682) - db $0, "I goofed!", $58 + text "I goofed!" + prompt _SilphCo2AfterBattleText4: ; 8268d (20:668d) - db $0, "SILPH CO. will", $4f - db "be merged with", $55 - db "TEAM ROCKET!", $57 + text "SILPH CO. will" + line "be merged with" + next "TEAM ROCKET!" + done _UnnamedText_59ff9: ; 826b9 (20:66b9) - db $0, "I work for SILPH.", $4f - db "What should I do?", $57 + text "I work for SILPH." + line "What should I do?" + done _UnnamedText_59ffe: ; 826de (20:66de) - db $0, $52, "! You and", $4f - db "your #MON", $55 - db "saved us!", $57 + text $52, "! You and" + line "your #MON" + next "saved us!" + done _SilphCo3BattleText1: ; 826fe (20:66fe) - db $0, "Quit messing with", $4f - db "us, kid!", $57 + text "Quit messing with" + line "us, kid!" + done _SilphCo3EndBattleText1: ; 8271a (20:671a) - db $0, "I give", $4f - db "up!", $58 + text "I give" + line "up!" + prompt _SilphCo3AfterBattleText1: ; 82726 (20:6726) - db $0, "A hint? You can", $4f - db "open doors with a", $55 - db "CARD KEY!", $57 + text "A hint? You can" + line "open doors with a" + next "CARD KEY!" + done _SilphCo3BattleText2: ; 82753 (20:6753) - db $0, "I support TEAM", $4f - db "ROCKET more than", $55 - db "I support SILPH!", $57 + text "I support TEAM" + line "ROCKET more than" + next "I support SILPH!" + done _SilphCo3EndBattleText2: ; 82785 (20:6785) - db $0, "You", $4f - db "really got me!", $58 + text "You" + line "really got me!" + prompt _SilphCo3AfterBattleText2: ; 82799 (20:6799) - db $0, "Humph...", $51 - db "TEAM ROCKET said", $4f - db "that if I helped", $55 - db "them, they'd let", $55 - db "me study #MON!", $57 + text "Humph..." + + page "TEAM ROCKET said" + line "that if I helped" + next "them, they'd let" + next "me study #MON!" + done _UnnamedText_19de0: ; 827e4 (20:67e4) - db $0, "Sssh! Can't you", $4f - db "see I'm hiding?", $57 + text "Sssh! Can't you" + line "see I'm hiding?" + done _UnnamedText_19de5: ; 82803 (20:6803) - db $0, "Huh? TEAM ROCKET", $4f - db "is gone?", $57 + text "Huh? TEAM ROCKET" + line "is gone?" + done _SilphCo4BattleText2: ; 8281e (20:681e) - db $0, "TEAM ROCKET has", $4f - db "taken command of", $55 - db "SILPH CO.!", $57 + text "TEAM ROCKET has" + line "taken command of" + next "SILPH CO.!" + done _SilphCo4EndBattleText2: ; 8284b (20:684b) - db $0, "Arrgh!", $58 + text "Arrgh!" + prompt _SilphCo4AfterBattleText2: ; 82853 (20:6853) - db $0, "Fwahahaha!", $4f - db "My BOSS has been", $55 - db "after this place!", $57 + text "Fwahahaha!" + line "My BOSS has been" + next "after this place!" + done _SilphCo4BattleText3: ; 82882 (20:6882) - db $0, "My #MON are my", $4f - db "loyal soldiers!", $57 + text "My #MON are my" + line "loyal soldiers!" + done _SilphCo4EndBattleText3: ; 828a2 (20:68a2) - db $0, "Darn!", $4f - db "You weak #MON!", $58 + text "Darn!" + line "You weak #MON!" + prompt _SilphCo4AfterBattleText3: ; 828b8 (20:68b8) - db $0, "The doors are", $4f - db "electronically", $55 - db "locked! A CARD", $55 - db "KEY opens them!", $57 + text "The doors are" + line "electronically" + next "locked! A CARD" + next "KEY opens them!" + done _SilphCo4BattleText4: ; 828f5 (20:68f5) - db $0, "Intruder spotted!", $57 + text "Intruder spotted!" + done _SilphCo4EndBattleText4: ; 82908 (20:6908) - db $0, "Who", $4f - db "are you?", $58 + text "Who" + line "are you?" + prompt _SilphCo4AfterBattleText4: ; 82916 (20:6916) - db $0, "I better tell the", $4f - db "BOSS on 11F!", $57 + text "I better tell the" + line "BOSS on 11F!" + done _UnnamedText_1a010: ; 82936 (20:6936) - db $0, "TEAM ROCKET is", $4f - db "in an uproar over", $55 - db "some intruder.", $55 - db "That's you right?", $57 + text "TEAM ROCKET is" + line "in an uproar over" + next "some intruder." + next "That's you right?" + done _UnnamedText_1a015: ; 82978 (20:6978) - db $0, "TEAM ROCKET took", $4f - db "off! You're our", $55 - db "hero! Thank you!", $57 + text "TEAM ROCKET took" + line "off! You're our" + next "hero! Thank you!" + done _SilphCo5BattleText2: ; 829aa (20:69aa) - db $0, "I heard a kid was", $4f - db "wandering around.", $57 + text "I heard a kid was" + line "wandering around." + done _SilphCo5EndBattleText2: ; 829cf (20:69cf) - db $0, "Boom!", $58 + text "Boom!" + prompt _SilphCo5AfterBattleText2: ; 829d6 (20:69d6) - db $0, "It's not smart", $4f - db "to pick a fight", $55 - db "with TEAM ROCKET!", $57 + text "It's not smart" + line "to pick a fight" + next "with TEAM ROCKET!" + done _SilphCo5BattleText3: ; 82a07 (20:6a07) - db $0, "We study #", $4f - db "BALL technology", $55 - db "on this floor!", $57 + text "We study #" + line "BALL technology" + next "on this floor!" + done _SilphCo5EndBattleText3: ; 82a32 (20:6a32) - db $0, "Dang!", $4f - db "Blast it!", $58 + text "Dang!" + line "Blast it!" + prompt _SilphCo5AfterBattleText3: ; 82a43 (20:6a43) - db $0, "We worked on the", $4f - db "ultimate #", $55 - db "BALL which would", $55 - db "catch anything!", $57 + text "We worked on the" + line "ultimate #" + next "BALL which would" + next "catch anything!" + done _SilphCo5BattleText4: ; 82a81 (20:6a81) - db $0, "Whaaat? There", $4f - db "shouldn't be any", $55 - db "children here?", $57 + text "Whaaat? There" + line "shouldn't be any" + next "children here?" + done SECTION "bank21",ROMX,BANK[$21] _SilphCo5EndBattleText4: ; 84000 (21:4000) - db $0, "Oh", $4f - db "goodness!", $58 + text "Oh" + line "goodness!" + prompt _SilphCo5AfterBattleText4: ; 8400e (21:400e) - db $0, "You're only on 5F.", $4f - db "It's a long way", $55 - db "to my BOSS!", $57 + text "You're only on 5F." + line "It's a long way" + next "to my BOSS!" + done _SilphCo5BattleText5: ; 8403c (21:403c) - db $0, "Show TEAM ROCKET", $4f - db "a little respect!", $57 + text "Show TEAM ROCKET" + line "a little respect!" + done _SilphCo5EndBattleText5: ; 84060 (21:4060) - db $0, "Cough...", $4f - db "Cough...", $58 + text "Cough..." + line "Cough..." + prompt _SilphCo5AfterBattleText5: ; 84073 (21:4073) - db $0, "Which reminds me.", $51 - db "KOFFING evolves", $4f - db "into WEEZING!", $57 + text "Which reminds me." + + page "KOFFING evolves" + line "into WEEZING!" + done _SilphCo5Text9: ; 840a4 (21:40a4) - db $0, "It's a #MON", $4f - db "REPORT!", $51 - db "#MON LAB", $4f - db "created PORYGON,", $55 - db "the first virtual", $55 - db "reality #MON.", $57 + text "It's a #MON" + line "REPORT!" + + page "#MON LAB" + line "created PORYGON," + next "the first virtual" + next "reality #MON." + done _SilphCo5Text10: ; 840f2 (21:40f2) - db $0, "It's a #MON", $4f - db "REPORT!", $51 - db "Over 160 #MON", $4f - db "techniques have", $55 - db "been confirmed.", $57 + text "It's a #MON" + line "REPORT!" + + page "Over 160 #MON" + line "techniques have" + next "been confirmed." + done _SilphCo5Text11: ; 84134 (21:4134) - db $0, "It's a #MON", $4f - db "REPORT!", $51 - db "4 #MON evolve", $4f - db "only when traded", $55 - db "by link-cable.", $57 + text "It's a #MON" + line "REPORT!" + + page "4 #MON evolve" + line "only when traded" + next "by link-cable." + done _UnnamedText_1a24a: ; 84176 (21:4176) - db $0, "The ROCKETs came", $4f - db "and took over the", $55 - db "building!", $57 + text "The ROCKETs came" + line "and took over the" + next "building!" + done _UnnamedText_1a24f: ; 841a4 (21:41a4) - db $0, "Well, better get", $4f - db "back to work!", $57 + text "Well, better get" + line "back to work!" + done _UnnamedText_1a261: ; 841c4 (21:41c4) - db $0, "Oh dear, oh dear.", $4f - db "Help me please!", $57 + text "Oh dear, oh dear." + line "Help me please!" + done _UnnamedText_1a266: ; 841e7 (21:41e7) - db $0, "We got engaged!", $4f - db "Heheh!", $57 + text "We got engaged!" + line "Heheh!" + done _UnnamedText_1a278: ; 841ff (21:41ff) - db $0, "Look at him! He's", $4f - db "such a coward!", $57 + text "Look at him! He's" + line "such a coward!" + done _UnnamedText_1a27d: ; 84220 (21:4220) - db $0, "I feel so sorry", $4f - db "for him, I have", $55 - db "to marry him!", $57 + text "I feel so sorry" + line "for him, I have" + next "to marry him!" + done _UnnamedText_1a28f: ; 8424f (21:424f) - db $0, "TEAM ROCKET is", $4f - db "trying to conquer", $55 - db "the world with", $55 - db "#MON!", $57 + text "TEAM ROCKET is" + line "trying to conquer" + next "the world with" + next "#MON!" + done _UnnamedText_1a294: ; 84286 (21:4286) - db $0, "TEAM ROCKET ran", $4f - db "because of you!", $57 + text "TEAM ROCKET ran" + line "because of you!" + done _UnnamedText_1a2a6: ; 842a7 (21:42a7) - db $0, "They must have", $4f - db "targeted SILPH", $55 - db "for our #MON", $55 - db "products.", $57 + text "They must have" + line "targeted SILPH" + next "for our #MON" + next "products." + done _UnnamedText_1a2ab: ; 842dd (21:42dd) - db $0, "Come work for", $4f - db "SILPH when you", $55 - db "get older!", $57 + text "Come work for" + line "SILPH when you" + next "get older!" + done _SilphCo6BattleText2: ; 84306 (21:4306) - db $0, "I am one of the 4", $4f - db "ROCKET BROTHERS!", $57 + text "I am one of the 4" + line "ROCKET BROTHERS!" + done _SilphCo6EndBattleText2: ; 8432a (21:432a) - db $0, "Flame", $4f - db "out!", $58 + text "Flame" + line "out!" + prompt _SilphCo6AfterBattleText2: ; 84336 (21:4336) - db $0, "No matter!", $4f - db "My brothers will", $55 - db "avenge me!", $57 + text "No matter!" + line "My brothers will" + next "avenge me!" + done _SilphCo6BattleText3: ; 8435e (21:435e) - db $0, "That rotten", $4f - db "PRESIDENT!", $51 - db "He shouldn't have", $4f - db "sent me to the", $55 - db "TIKSI BRANCH!", $57 + text "That rotten" + line "PRESIDENT!" + + page "He shouldn't have" + line "sent me to the" + next "TIKSI BRANCH!" + done _SilphCo6EndBattleText3: ; 843a4 (21:43a4) - db $0, "Shoot!", $58 + text "Shoot!" + prompt _SilphCo6AfterBattleText3: ; 843ac (21:43ac) - db $0, "TIKSI BRANCH?", $4f - db "It's in Russian", $55 - db "no man's land!", $57 + text "TIKSI BRANCH?" + line "It's in Russian" + next "no man's land!" + done _SilphCo6BattleText4: ; 843d8 (21:43d8) - db $0, "You dare betray", $4f - db "TEAM ROCKET?", $57 + text "You dare betray" + line "TEAM ROCKET?" + done _SilphCo6EndBattleText4: ; 843f6 (21:43f6) - db $0, "You", $4f - db "traitor!", $58 + text "You" + line "traitor!" + prompt _SilphCo6AfterBattleText4: ; 84404 (21:4404) - db $0, "If you stand for", $4f - db "justice, you", $55 - db "betray evil!", $57 + text "If you stand for" + line "justice, you" + next "betray evil!" + done _UnnamedText_51dd3: ; 84430 (21:4430) - db $0, "Oh! Hi! You're", $4f - db "not a ROCKET! You", $55 - db "came to save us?", $55 - db "Why, thank you!", $51 - db "I want you to", $4f - db "have this #MON", $55 - db "for saving us.", $58 + text "Oh! Hi! You're" + line "not a ROCKET! You" + next "came to save us?" + next "Why, thank you!" + + page "I want you to" + line "have this #MON" + next "for saving us." + prompt _UnnamedText_51dd8: ; 8449e (21:449e) - db $0, "It's LAPRAS. It's", $4f - db "very intelligent.", $51 - db "We kept it in our", $4f - db "lab, but it will", $55 - db "be much better", $55 - db "off with you!", $51 - db "I think you will", $4f - db "be a good trainer", $55 - db "for LAPRAS!", $51 - db "It's a good", $4f - db "swimmer. It'll", $55 - db "give you a lift!", $57 + text "It's LAPRAS. It's" + line "very intelligent." + + page "We kept it in our" + line "lab, but it will" + next "be much better" + next "off with you!" + + page "I think you will" + line "be a good trainer" + next "for LAPRAS!" + + page "It's a good" + line "swimmer. It'll" + next "give you a lift!" + done _UnnamedText_51ddd: ; 8455a (21:455a) - db $0, "TEAM ROCKET's", $4f - db "BOSS went to the", $55 - db "boardroom! Is our", $55 - db "PRESIDENT OK?", $57 + text "TEAM ROCKET's" + line "BOSS went to the" + next "boardroom! Is our" + next "PRESIDENT OK?" + done _UnnamedText_51de2: ; 84599 (21:4599) - db $0, "Saved at last!", $4f - db "Thank you!", $57 + text "Saved at last!" + line "Thank you!" + done _UnnamedText_51e00: ; 845b4 (21:45b4) - db $0, "TEAM ROCKET was", $4f - db "after the MASTER", $55 - db "BALL which will", $55 - db "catch any #MON!", $57 + text "TEAM ROCKET was" + line "after the MASTER" + next "BALL which will" + next "catch any #MON!" + done _UnnamedText_51e05: ; 845f6 (21:45f6) - db $0, "We canceled the", $4f - db "MASTER BALL", $55 - db "project because", $55 - db "of TEAM ROCKET.", $57 + text "We canceled the" + line "MASTER BALL" + next "project because" + next "of TEAM ROCKET." + done _UnnamedText_51e23: ; 84633 (21:4633) - db $0, "It would be bad", $4f - db "if TEAM ROCKET", $55 - db "took over SILPH", $55 - db "or our #MON!", $57 + text "It would be bad" + line "if TEAM ROCKET" + next "took over SILPH" + next "or our #MON!" + done _UnnamedText_51e28: ; 84670 (21:4670) - db $0, "Wow! You chased", $4f - db "off TEAM ROCKET", $55 - db "all by yourself?", $57 + text "Wow! You chased" + line "off TEAM ROCKET" + next "all by yourself?" + done _UnnamedText_51e46: ; 846a2 (21:46a2) - db $0, "You! It's really", $4f - db "dangerous here!", $55 - db "You came to save", $55 - db "me? You can't!", $57 + text "You! It's really" + line "dangerous here!" + next "You came to save" + next "me? You can't!" + done _UnnamedText_51e4b: ; 846e2 (21:46e2) - db $0, "Safe at last!", $4f - db "Oh thank you!", $57 + text "Safe at last!" + line "Oh thank you!" + done _SilphCo7BattleText1: ; 846ff (21:46ff) - db $0, "Oh ho! I smell a", $4f - db "little rat!", $57 + text "Oh ho! I smell a" + line "little rat!" + done _SilphCo7EndBattleText1: ; 8471d (21:471d) - db $0, "Lights", $4f - db "out!", $58 + text "Lights" + line "out!" + prompt _SilphCo7AfterBattleText1: ; 8472a (21:472a) - db $0, "You won't find my", $4f - db "BOSS by just", $55 - db "scurrying around!", $57 + text "You won't find my" + line "BOSS by just" + next "scurrying around!" + done _SilphCo7BattleText2: ; 8475b (21:475b) - db $0, "Heheh!", $51 - db "You mistook me for", $4f - db "a SILPH worker?", $57 + text "Heheh!" + + page "You mistook me for" + line "a SILPH worker?" + done _SilphCo7EndBattleText2: ; 84786 (21:4786) - db $0, "I'm", $4f - db "done!", $58 + text "I'm" + line "done!" + prompt _SilphCo7AfterBattleText2: ; 84790 (21:4790) - db $0, "Despite your age,", $4f - db "you are a skilled", $55 - db "trainer!", $57 + text "Despite your age," + line "you are a skilled" + next "trainer!" + done _SilphCo7BattleText3: ; 847be (21:47be) - db $0, "I am one of the 4", $4f - db "ROCKET BROTHERS!", $57 + text "I am one of the 4" + line "ROCKET BROTHERS!" + done _SilphCo7EndBattleText3: ; 847e2 (21:47e2) - db $0, "Aack!", $4f - db "Brothers, I lost!", $58 + text "Aack!" + line "Brothers, I lost!" + prompt _SilphCo7AfterBattleText3: ; 847fb (21:47fb) - db $0, "Doesn't matter.", $4f - db "My brothers will", $55 - db "repay the favor!", $57 + text "Doesn't matter." + line "My brothers will" + next "repay the favor!" + done _SilphCo7BattleText4: ; 8482d (21:482d) - db $0, "A child intruder?", $4f - db "That must be you!", $57 + text "A child intruder?" + line "That must be you!" + done _SilphCo7EndBattleText4: ; 84852 (21:4852) - db $0, "Fine!", $4f - db "I lost!", $58 + text "Fine!" + line "I lost!" + prompt _SilphCo7AfterBattleText4: ; 84861 (21:4861) - db $0, "Go on home", $4f - db "before my BOSS", $55 - db "gets ticked off!", $57 + text "Go on home" + line "before my BOSS" + next "gets ticked off!" + done _UnnamedText_51ebe: ; 8488d (21:488d) db $0, $53, ": What", $4f @@ -117194,9 +117544,10 @@ _UnnamedText_51ec3: ; 848a2 (21:48a2) db "you got better!", $57 _UnnamedText_51ec8: ; 8494a (21:494a) - db $0, "Oh ho!", $4f - db "So, you are ready", $55 - db "for BOSS ROCKET!", $58 + text "Oh ho!" + line "So, you are ready" + next "for BOSS ROCKET!" + prompt _UnnamedText_51ecd: ; 84975 (21:4975) db $0, $53, ": How can", $4f @@ -117206,157 +117557,194 @@ _UnnamedText_51ecd: ; 84975 (21:4975) db "with us big boys!", $58 _UnnamedText_51ed2: ; 849bd (21:49bd) - db $0, "Well, ", $52, "!", $51 - db "I'm moving on up", $4f - db "and ahead!", $51 - db "By checking my", $4f - db "#DEX, I'm", $55 - db "starting to see", $55 - db "what's strong and", $55 - db "how they evolve!", $51 - db "I'm going to the", $4f - db "#MON LEAGUE", $55 - db "to boot out the", $55 - db "ELITE FOUR!", $51 - db "I'll become the", $4f - db "world's most", $55 - db "powerful trainer!", $51 - db $52, ", well", $4f - db "good luck to you!", $55 - db "Don't sweat it!", $55 - db "Smell ya!", $57 + text "Well, ", $52, "!" + + page "I'm moving on up" + line "and ahead!" + + page "By checking my" + line "#DEX, I'm" + next "starting to see" + next "what's strong and" + next "how they evolve!" + + page "I'm going to the" + line "#MON LEAGUE" + next "to boot out the" + next "ELITE FOUR!" + + page "I'll become the" + line "world's most" + next "powerful trainer!" + + page $52, ", well" + line "good luck to you!" + next "Don't sweat it!" + next "Smell ya!" + done _UnnamedText_565be: ; 84ac4 (21:4ac4) - db $0, "I wonder if SILPH", $4f - db "is finished...", $57 + text "I wonder if SILPH" + line "is finished..." + done _UnnamedText_565c3: ; 84ae6 (21:4ae6) - db $0, "Thanks for saving", $4f - db "us!", $57 + text "Thanks for saving" + line "us!" + done _SilphCo8BattleText1: ; 84afd (21:4afd) - db $0, "That's as far as", $4f - db "you'll go!", $57 + text "That's as far as" + line "you'll go!" + done _SilphCo8EndBattleText1: ; 84b18 (21:4b18) - db $0, "Not", $4f - db "enough grit!", $58 + text "Not" + line "enough grit!" + prompt _SilphCo8AfterBattleText1: ; 84b2a (21:4b2a) - db $0, "If you don't turn", $4f - db "back, I'll call", $55 - db "for backup!", $57 + text "If you don't turn" + line "back, I'll call" + next "for backup!" + done _SilphCo8BattleText2: ; 84b57 (21:4b57) - db $0, "You're causing us", $4f - db "problems!", $57 + text "You're causing us" + line "problems!" + done _SilphCo8EndBattleText2: ; 84b73 (21:4b73) - db $0, "Huh?", $4f - db "I lost?", $58 + text "Huh?" + line "I lost?" + prompt _SilphCo8AfterBattleText2: ; 84b81 (21:4b81) - db $0, "So, what do you", $4f - db "think of SILPH", $55 - db "BUILDING's maze?", $57 + text "So, what do you" + line "think of SILPH" + next "BUILDING's maze?" + done _SilphCo8BattleText3: ; 84bb1 (21:4bb1) - db $0, "I am one of the 4", $4f - db "ROCKET BROTHERS!", $57 + text "I am one of the 4" + line "ROCKET BROTHERS!" + done _SilphCo8EndBattleText3: ; 84bd5 (21:4bd5) - db $0, "Whoo!", $4f - db "Oh brothers!", $58 + text "Whoo!" + line "Oh brothers!" + prompt _SilphCo8AfterBattleText3: ; 84be9 (21:4be9) - db $0, "I'll leave you up", $4f - db "to my brothers!", $57 + text "I'll leave you up" + line "to my brothers!" + done _UnnamedText_5d8e5: ; 84c0b (21:4c0b) - db $0, "You look tired!", $4f - db "You should take a", $55 - db "quick nap!", $58 + text "You look tired!" + line "You should take a" + next "quick nap!" + prompt _UnnamedText_5d8ea: ; 84c39 (21:4c39) - db $0, "Don't give up!", $57 + text "Don't give up!" + done _UnnamedText_5d8ef: ; 84c48 (21:4c48) - db $0, "Thank you so", $4f - db "much!", $57 + text "Thank you so" + line "much!" + done _SilphCo9BattleText1: ; 84c5c (21:4c5c) - db $0, "Your #MON seem", $4f - db "to adore you, kid!", $57 + text "Your #MON seem" + line "to adore you, kid!" + done _SilphCo9EndBattleText1: ; 84c7f (21:4c7f) - db $0, "Ghaaah!", $58 + text "Ghaaah!" + prompt _SilphCo9AfterBattleText1: ; 84c88 (21:4c88) - db $0, "If I had started", $4f - db "as a trainer at", $55 - db "your age...", $57 + text "If I had started" + line "as a trainer at" + next "your age..." + done _SilphCo9BattleText2: ; 84cb6 (21:4cb6) - db $0, "Your #MON have", $4f - db "weak points! I", $55 - db "can nail them!", $57 + text "Your #MON have" + line "weak points! I" + next "can nail them!" + done _SilphCo9EndBattleText2: ; 84ce4 (21:4ce4) - db $0, "You", $4f - db "hammered me!", $58 + text "You" + line "hammered me!" + prompt _SilphCo9AfterBattleText2: ; 84cf6 (21:4cf6) - db $0, "Exploiting weak", $4f - db "spots does work!", $55 - db "Think about", $55 - db "element types!", $57 + text "Exploiting weak" + line "spots does work!" + next "Think about" + next "element types!" + done _SilphCo9BattleText3: ; 84d33 (21:4d33) - db $0, "I am one of the 4", $4f - db "ROCKET BROTHERS!", $57 + text "I am one of the 4" + line "ROCKET BROTHERS!" + done _SilphCo9EndBattleText3: ; 84d57 (21:4d57) - db $0, "Warg!", $4f - db "Brothers, I lost!", $58 + text "Warg!" + line "Brothers, I lost!" + prompt _SilphCo9AfterBattleText3: ; 84d70 (21:4d70) - db $0, "My brothers will", $4f - db "avenge me!", $57 + text "My brothers will" + line "avenge me!" + done _UnnamedText_5a1d3: ; 84d8d (21:4d8d) - db $0, "Waaaaa!", $55 - db "I'm scared!", $57 + text "Waaaaa!" + next "I'm scared!" + done _UnnamedText_5a1d8: ; 84da1 (21:4da1) - db $0, "Please keep quiet", $4f - db "about my crying!", $57 + text "Please keep quiet" + line "about my crying!" + done _SilphCo10BattleText1: ; 84dc5 (21:4dc5) - db $0, "Welcome to the", $4f - db "10F! So good of", $55 - db "you to join me!", $57 + text "Welcome to the" + line "10F! So good of" + next "you to join me!" + done _SilphCo10EndBattleText1: ; 84df5 (21:4df5) - db $0, "I'm", $4f - db "stunned!", $58 + text "I'm" + line "stunned!" + prompt _SilphCo10AfterBattleText1: ; 84e02 (21:4e02) - db $0, "Nice try, but the", $4f - db "boardroom is up", $55 - db "one more floor!", $57 + text "Nice try, but the" + line "boardroom is up" + next "one more floor!" + done _SilphCo10BattleText2: ; 84e35 (21:4e35) - db $0, "Enough of your", $4f - db "silly games!", $57 + text "Enough of your" + line "silly games!" + done _SilphCo10EndBattleText2: ; 84e52 (21:4e52) - db $0, "No", $4f - db "continues left!", $58 + text "No" + line "continues left!" + prompt _SilphCo10AfterBattleText2: ; 84e66 (21:4e66) - db $0, "Are you satisfied", $4f - db "with beating me?", $55 - db "Then go on home!", $57 + text "Are you satisfied" + line "with beating me?" + next "Then go on home!" + done _SilphCoPresidentText: ; 84e9b (21:4e9b) db $0, "PRESIDENT: Thank", $4f @@ -117375,10 +117763,10 @@ _SilphCoPresidentText: ; 84e9b (21:4e9b) db "will do!", $58 _ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) - db $0, $52, " got a", $4f - db "@" + text $52, " got a" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_6231c: ; 84f74 (21:4f74) db $0, "PRESIDENT: You", $4f @@ -117395,8 +117783,9 @@ _UnnamedText_6231c: ; 84f74 (21:4f74) db "it, though.", $57 _SilphCoMasterBallNoRoomText: ; 85013 (21:5013) - db $0, "You have no", $4f - db "room for this.", $57 + text "You have no" + line "room for this." + done _SilphCo11Text2: ; 8502f (21:502f) db $0, "SECRETARY: Thank", $4f @@ -117406,78 +117795,97 @@ _SilphCo11Text2: ; 8502f (21:502f) db "courage.", $57 _SilphCo11Text3: ; 85075 (21:5075) - db $0, "Ah ", $52, "!", $4f - db "So we meet again!", $51 - db "The PRESIDENT and", $4f - db "I are discussing", $55 - db "a vital business", $55 - db "proposition.", $51 - db "Keep your nose", $4f - db "out of grown-up", $55 - db "matters...", $51 - db "Or, experience a", $4f - db "world of pain!", $57 + text "Ah ", $52, "!" + line "So we meet again!" + + page "The PRESIDENT and" + line "I are discussing" + next "a vital business" + next "proposition." + + page "Keep your nose" + line "out of grown-up" + next "matters..." + + page "Or, experience a" + line "world of pain!" + done _UnnamedText_62330: ; 85119 (21:5119) - db $0, "Arrgh!!", $4f - db "I lost again!?", $58 + text "Arrgh!!" + line "I lost again!?" + prompt _UnnamedText_62335: ; 85131 (21:5131) - db $0, "Blast it all!", $4f - db "You ruined our", $55 - db "plans for SILPH!", $51 - db "But, TEAM ROCKET", $4f - db "will never fall!", $51 - db $52, "! Never", $4f - db "forget that all", $55 - db "#MON exist", $55 - db "for TEAM ROCKET!", $51 - db "I must go, but I", $4f - db "shall return!", $57 + text "Blast it all!" + line "You ruined our" + next "plans for SILPH!" + + page "But, TEAM ROCKET" + line "will never fall!" + + page $52, "! Never" + line "forget that all" + next "#MON exist" + next "for TEAM ROCKET!" + + page "I must go, but I" + line "shall return!" + done _SilphCo11BattleText1: ; 851d6 (21:51d6) - db $0, "Stop right there!", $4f - db "Don't you move!", $57 + text "Stop right there!" + line "Don't you move!" + done _SilphCo11EndBattleText1: ; 851f8 (21:51f8) - db $0, "Don't...", $4f - db "Please!", $58 + text "Don't..." + line "Please!" + prompt _SilphCo11AfterBattleText1: ; 85209 (21:5209) - db $0, "So, you want to", $4f - db "see my BOSS?", $57 + text "So, you want to" + line "see my BOSS?" + done _SilphCo11BattleText2: ; 85227 (21:5227) - db $0, "Halt! Do you have", $4f - db "an appointment", $55 - db "with my BOSS?", $57 + text "Halt! Do you have" + line "an appointment" + next "with my BOSS?" + done _SilphCo11EndBattleText2: ; 85257 (21:5257) - db $0, "Gaah!", $4f - db "Demolished!", $58 + text "Gaah!" + line "Demolished!" + prompt _SilphCo11AfterBattleText2: ; 8526a (21:526a) - db $0, "Watch your step,", $4f - db "my BOSS likes his", $55 - db "#MON tough!", $57 + text "Watch your step," + line "my BOSS likes his" + next "#MON tough!" + done _UnnamedText_6237b: ; 8529a (21:529a) - db $0, "The monitor has", $4f - db "#MON on it!", $57 + text "The monitor has" + line "#MON on it!" + done _Mansion2BattleText1: ; 852b7 (21:52b7) - db $0, "I can't get out!", $4f - db "This old place is", $55 - db "one big puzzle!", $57 + text "I can't get out!" + line "This old place is" + next "one big puzzle!" + done _Mansion2EndBattleText1: ; 852ea (21:52ea) - db $0, "Oh no!", $4f - db "My bag of loot!", $58 + text "Oh no!" + line "My bag of loot!" + prompt _Mansion2AfterBattleText1: ; 85302 (21:5302) - db $0, "Switches open and", $4f - db "close alternating", $55 - db "sets of doors!", $57 + text "Switches open and" + line "close alternating" + next "sets of doors!" + done _Mansion2Text3: ; 85336 (21:5336) db $0, "Diary: July 5", $4f @@ -117494,38 +117902,48 @@ _Mansion2Text4: ; 85389 (21:5389) db "#MON, MEW.", $57 _UnnamedText_520c2: ; 853c7 (21:53c7) - db $0, "A secret switch!", $51 - db "Press it?", $57 + text "A secret switch!" + + page "Press it?" + done _UnnamedText_520c7: ; 853e3 (21:53e3) - db $0, "Who wouldn't?", $58 + text "Who wouldn't?" + prompt _UnnamedText_520cc: ; 853f1 (21:53f1) - db $0, "Not quite yet!", $57 + text "Not quite yet!" + done _Mansion3BattleText1: ; 85401 (21:5401) - db $0, "This place is", $4f - db "like, huge!", $57 + text "This place is" + line "like, huge!" + done _Mansion3EndBattleText1: ; 8541c (21:541c) - db $0, "Ayah!", $58 + text "Ayah!" + prompt _Mansion3AfterBattleText1: ; 85423 (21:5423) - db $0, "I wonder where", $4f - db "my partner went.", $57 + text "I wonder where" + line "my partner went." + done _Mansion3BattleText2: ; 85444 (21:5444) - db $0, "My mentor once", $4f - db "lived here.", $57 + text "My mentor once" + line "lived here." + done _Mansion3EndBattleText2: ; 85460 (21:5460) - db $0, "Whew!", $4f - db "Overwhelming!", $58 + text "Whew!" + line "Overwhelming!" + prompt _Mansion3AfterBattleText2: ; 85475 (21:5475) - db $0, "So, you're stuck?", $4f - db "Try jumping off", $55 - db "over there!", $57 + text "So, you're stuck?" + line "Try jumping off" + next "over there!" + done _Mansion3Text5: ; 854a3 (21:54a3) db $0, "Diary: Feb. 6", $4f @@ -117534,77 +117952,98 @@ _Mansion3Text5: ; 854a3 (21:54a3) db "newborn MEWTWO.", $57 _Mansion4BattleText1: ; 854df (21:54df) - db $0, "Uh-oh. Where am", $4f - db "I now?", $57 + text "Uh-oh. Where am" + line "I now?" + done _Mansion4EndBattleText1: ; 854f7 (21:54f7) - db $0, "Awooh!", $58 + text "Awooh!" + prompt _Mansion4AfterBattleText1: ; 854ff (21:54ff) - db $0, "You can find stuff", $4f - db "lying around.", $57 + text "You can find stuff" + line "lying around." + done _Mansion4BattleText2: ; 85521 (21:5521) - db $0, "This place is", $4f - db "ideal for a lab.", $57 + text "This place is" + line "ideal for a lab." + done _Mansion4EndBattleText2: ; 85541 (21:5541) - db $0, "What", $4f - db "was that for?", $58 + text "What" + line "was that for?" + prompt _Mansion4AfterBattleText2: ; 85555 (21:5555) - db $0, "I like it here!", $4f - db "It's conducive to", $55 - db "my studies!", $57 + text "I like it here!" + line "It's conducive to" + next "my studies!" + done _Mansion4Text7: ; 85583 (21:5583) - db $0, "Diary; Sept. 1", $4f - db "MEWTWO is far too", $55 - db "powerful.", $51 - db "We have failed to", $4f - db "curb its vicious", $55 - db "tendencies...", $57 + text "Diary; Sept. 1" + line "MEWTWO is far too" + next "powerful." + + page "We have failed to" + line "curb its vicious" + next "tendencies..." + done _SafariZoneEastText5: ; 855e0 (21:55e0) - db $0, "REST HOUSE", $57 + text "REST HOUSE" + done _SafariZoneEastText6: ; 855ec (21:55ec) - db $0, "TRAINER TIPS", $51 - db "The remaining time", $4f - db "declines only", $55 - db "while you walk!", $57 + text "TRAINER TIPS" + + page "The remaining time" + line "declines only" + next "while you walk!" + done _SafariZoneEastText7: ; 8562b (21:562b) db $0, "CENTER AREA", $4f db "NORTH: AREA 2", $57 _SafariZoneNorthText3: ; 85646 (21:5646) - db $0, "REST HOUSE", $57 + text "REST HOUSE" + done _SafariZoneNorthText4: ; 85652 (21:5652) - db $0, "TRAINER TIPS", $51 - db "The SECRET HOUSE", $4f - db "is still ahead!", $57 + text "TRAINER TIPS" + + page "The SECRET HOUSE" + line "is still ahead!" + done _SafariZoneNorthText5: ; 85681 (21:5681) - db $0, "AREA 2", $57 + text "AREA 2" + done _SafariZoneNorthText6: ; 85689 (21:5689) - db $0, "TRAINER TIPS", $51 - db "#MON hide in", $4f - db "tall grass!", $51 - db "Zigzag through", $4f - db "grassy areas to", $55 - db "flush them out.", $57 + text "TRAINER TIPS" + + page "#MON hide in" + line "tall grass!" + + page "Zigzag through" + line "grassy areas to" + next "flush them out." + done _SafariZoneNorthText7: ; 856df (21:56df) - db $0, "TRAINER TIPS", $51 - db "Win a free HM for", $4f - db "finding the", $55 - db "SECRET HOUSE!", $57 + text "TRAINER TIPS" + + page "Win a free HM for" + line "finding the" + next "SECRET HOUSE!" + done _SafariZoneWestText5: ; 85719 (21:5719) - db $0, "REST HOUSE", $57 + text "REST HOUSE" + done _SafariZoneWestText6: ; 85725 (21:5725) db $0, "REQUEST NOTICE", $51 @@ -117617,24 +118056,30 @@ _SafariZoneWestText6: ; 85725 (21:5725) db "Contact: WARDEN", $57 _SafariZoneWestText7: ; 857a3 (21:57a3) - db $0, "TRAINER TIPS", $51 - db "Zone Exploration", $4f - db "Campaign!", $51 - db "The Search for", $4f - db "the SECRET HOUSE!", $57 + text "TRAINER TIPS" + + page "Zone Exploration" + line "Campaign!" + + page "The Search for" + line "the SECRET HOUSE!" + done _SafariZoneWestText8: ; 857ed (21:57ed) db $0, "AREA 3", $4f db "EAST: CENTER AREA", $57 _SafariZoneCenterText2: ; 85807 (21:5807) - db $0, "REST HOUSE", $57 + text "REST HOUSE" + done _SafariZoneCenterText3: ; 85813 (21:5813) - db $0, "TRAINER TIPS", $51 - db "Press the START", $4f - db "Button to check", $55 - db "remaining time!", $57 + text "TRAINER TIPS" + + page "Press the START" + line "Button to check" + next "remaining time!" + done _SafariZoneRestHouse1Text1: ; 85851 (21:5851) db $0, "SARA: Where did", $4f @@ -117642,179 +118087,221 @@ _SafariZoneRestHouse1Text1: ; 85851 (21:5851) db "ERIK, go?", $57 _SafariZoneRestHouse1Text2: ; 8587b (21:587b) - db $0, "I'm catching", $4f - db "#MON to take", $55 - db "home as gifts!", $57 + text "I'm catching" + line "#MON to take" + next "home as gifts!" + done _UnnamedText_4a350: ; 858a4 (21:58a4) - db $0, "Ah! Finally!", $51 - db "You're the first", $4f - db "person to reach", $55 - db "the SECRET HOUSE!", $51 - db "I was getting", $4f - db "worried that no", $55 - db "one would win our", $55 - db "campaign prize.", $51 - db "Congratulations!", $4f - db "You have won!", $58 + text "Ah! Finally!" + + page "You're the first" + line "person to reach" + next "the SECRET HOUSE!" + + page "I was getting" + line "worried that no" + next "one would win our" + next "campaign prize." + + page "Congratulations!" + line "You have won!" + prompt _ReceivedHM03Text: ; 85943 (21:5943) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _HM03ExplanationText: ; 85957 (21:5957) - db $0, "HM03 is SURF!", $51 - db "#MON will be", $4f - db "able to ferry you", $55 - db "across water!", $51 - db "And, this HM isn't", $4f - db "disposable! You", $55 - db "can use it over", $55 - db "and over!", $51 - db "You're super lucky", $4f - db "for winning this", $55 - db "fabulous prize!", $57 + text "HM03 is SURF!" + + page "#MON will be" + line "able to ferry you" + next "across water!" + + page "And, this HM isn't" + line "disposable! You" + next "can use it over" + next "and over!" + + page "You're super lucky" + line "for winning this" + next "fabulous prize!" + done _HM03NoRoomText: ; 85a02 (21:5a02) - db $0, "You don't have", $4f - db "room for this", $55 - db "fabulous prize!", $57 + text "You don't have" + line "room for this" + next "fabulous prize!" + done _SafariZoneRestHouse2Text1: ; 85a2f (21:5a2f) - db $0, "Tossing ROCKs at", $4f - db "#MON might", $55 - db "make them run,", $55 - db "but they'll be", $55 - db "easier to catch.", $57 + text "Tossing ROCKs at" + line "#MON might" + next "make them run," + next "but they'll be" + next "easier to catch." + done _SafariZoneRestHouse2Text2: ; 85a7a (21:5a7a) - db $0, "Using BAIT will", $4f - db "make #MON", $55 - db "easier to catch.", $57 + text "Using BAIT will" + line "make #MON" + next "easier to catch." + done _SafariZoneRestHouse2Text3: ; 85aa6 (21:5aa6) - db $0, "I hiked a lot, but", $4f - db "I didn't see any", $55 - db "#MON I wanted.", $57 + text "I hiked a lot, but" + line "I didn't see any" + next "#MON I wanted." + done _SafariZoneRestHouse3Text1: ; 85ad9 (21:5ad9) - db $0, "How many did you", $4f - db "catch? I'm bushed", $55 - db "from the work!", $57 + text "How many did you" + line "catch? I'm bushed" + next "from the work!" + done _SafariZoneRestHouse3Text2: ; 85b0b (21:5b0b) - db $0, "I caught a", $4f - db "CHANSEY!", $51 - db "That makes this", $4f - db "all worthwhile!", $57 + text "I caught a" + line "CHANSEY!" + + page "That makes this" + line "all worthwhile!" + done _SafariZoneRestHouse3Text3: ; 85b40 (21:5b40) - db $0, "Whew! I'm tired", $4f - db "from all the fun!", $57 + text "Whew! I'm tired" + line "from all the fun!" + done _SafariZoneRestHouse4Text1: ; 85b62 (21:5b62) - db $0, "You can keep any", $4f - db "item you find on", $55 - db "the ground here.", $51 - db "But, you'll run", $4f - db "out of time if", $55 - db "you try for all", $55 - db "of them at once!", $57 + text "You can keep any" + line "item you find on" + next "the ground here." + + page "But, you'll run" + line "out of time if" + next "you try for all" + next "of them at once!" + done _SafariZoneRestHouse4Text2: ; 85bd5 (21:5bd5) - db $0, "Go to the deepest", $4f - db "part of the", $55 - db "SAFARI ZONE. You", $55 - db "will win a prize!", $57 + text "Go to the deepest" + line "part of the" + next "SAFARI ZONE. You" + next "will win a prize!" + done _SafariZoneRestHouse4Text3: ; 85c17 (21:5c17) - db $0, "My EEVEE evolved", $4f - db "into FLAREON!", $51 - db "But, a friend's", $4f - db "EEVEE turned into", $55 - db "a VAPOREON!", $55 - db "I wonder why?", $57 + text "My EEVEE evolved" + line "into FLAREON!" + + page "But, a friend's" + line "EEVEE turned into" + next "a VAPOREON!" + next "I wonder why?" + done _UnknownDungeon3MewtwoText: ; 85c72 (21:5c72) - db $0, "Mew!@@" + text "Mew!@@" _VictoryRoad1BattleText1: ; 85c79 (21:5c79) - db $0, "I wonder if you", $4f - db "are good enough", $55 - db "for me!", $57 + text "I wonder if you" + line "are good enough" + next "for me!" + done _VictoryRoad1EndBattleText1: ; 85ca2 (21:5ca2) - db $0, "I", $4f - db "lost out!", $58 + text "I" + line "lost out!" + prompt _VictoryRoad1AfterBattleText1: ; 85caf (21:5caf) - db $0, "I never wanted to", $4f - db "lose to anybody!", $57 + text "I never wanted to" + line "lose to anybody!" + done _VictoryRoad1BattleText2: ; 85cd3 (21:5cd3) - db $0, "I can see you're", $4f - db "good! Let me see", $55 - db "exactly how good!", $57 + text "I can see you're" + line "good! Let me see" + next "exactly how good!" + done _VictoryRoad1EndBattleText2: ; 85d07 (21:5d07) - db $0, "I", $4f - db "had a chance...", $58 + text "I" + line "had a chance..." + prompt _VictoryRoad1AfterBattleText2: ; 85d1a (21:5d1a) - db $0, "I concede, you're", $4f - db "better than me!", $57 + text "I concede, you're" + line "better than me!" + done _LanceBeforeBattleText: ; 85d3c (21:5d3c) - db $0, "Ah! I heard about", $4f - db "you ", $52, "!", $51 - db "I lead the ELITE", $4f - db "FOUR! You can", $55 - db "call me LANCE the", $55 - db "dragon trainer!", $51 - db "You know that", $4f - db "dragons are", $55 - db "mythical #MON!", $51 - db "They're hard to", $4f - db "catch and raise,", $55 - db "but their powers", $55 - db "are superior!", $51 - db "They're virtually", $4f - db "indestructible!", $51 - db "Well, are you", $4f - db "ready to lose?", $51 - db "Your LEAGUE", $4f - db "challenge ends", $55 - db "with me, ", $52, "!", $57 + text "Ah! I heard about" + line "you ", $52, "!" + + page "I lead the ELITE" + line "FOUR! You can" + next "call me LANCE the" + next "dragon trainer!" + + page "You know that" + line "dragons are" + next "mythical #MON!" + + page "They're hard to" + line "catch and raise," + next "but their powers" + next "are superior!" + + page "They're virtually" + line "indestructible!" + + page "Well, are you" + line "ready to lose?" + + page "Your LEAGUE" + line "challenge ends" + next "with me, ", $52, "!" + done _LanceEndBattleText: ; 85e64 (21:5e64) - db $0, "That's it!", $51 - db "I hate to admit", $4f - db "it, but you are a", $55 - db "#MON master!", $58 + text "That's it!" + + page "I hate to admit" + line "it, but you are a" + next "#MON master!" + prompt _LanceAfterBattleText: ; 85e9e (21:5e9e) - db $0, "I still can't", $4f - db "believe my", $55 - db "dragons lost to", $55 - db "you, ", $52, "!", $51 - db "You are now the", $4f - db "#MON LEAGUE", $55 - db "champion!", $51 - db "...Or, you would", $4f - db "have been, but", $55 - db "you have one more", $55 - db "challenge ahead.", $51 - db "You have to face", $4f - db "another trainer!", $55 - db "His name is...", $51 - db $53, "!", $4f - db "He beat the ELITE", $55 - db "FOUR before you!", $51 - db "He is the real", $4f - db "#MON LEAGUE", $55 - db "champion!@@" + text "I still can't" + line "believe my" + next "dragons lost to" + next "you, ", $52, "!" + + page "You are now the" + line "#MON LEAGUE" + next "champion!" + + page "...Or, you would" + line "have been, but" + next "you have one more" + next "challenge ahead." + + page "You have to face" + line "another trainer!" + next "His name is..." + + page $53, "!" + line "He beat the ELITE" + next "FOUR before you!" + + page "He is the real" + line "#MON LEAGUE" + next "champion!@@" _HallofFameRoomText1: ; 85fb5 (21:5fb5) db $0, "OAK: Er-hem!", $4f @@ -117867,39 +118354,50 @@ _UnnamedText_760f4: ; 860e1 (21:60e1) db "in the world!", $57 _UnnamedText_760f9: ; 8623b (21:623b) - db $0, "NO!", $4f - db "That can't be!", $55 - db "You beat my best!", $51 - db "After all that", $4f - db "work to become", $55 - db "LEAGUE champ?", $51 - db "My reign is over", $4f - db "already?", $55 - db "It's not fair!", $58 + text "NO!" + line "That can't be!" + next "You beat my best!" + + page "After all that" + line "work to become" + next "LEAGUE champ?" + + page "My reign is over" + line "already?" + next "It's not fair!" + prompt _UnnamedText_760fe: ; 862b4 (21:62b4) - db $0, "Hahaha!", $4f - db "I won, I won!", $51 - db "I'm too good for", $4f - db "you, ", $52, "!", $51 - db "You did well to", $4f - db "even reach me,", $55 - db $53, ", the", $55 - db "#MON genius!", $51 - db "Nice try, loser!", $4f - db "Hahaha!", $58 + text "Hahaha!" + line "I won, I won!" + + page "I'm too good for" + line "you, ", $52, "!" + + page "You did well to" + line "even reach me," + next $53, ", the" + next "#MON genius!" + + page "Nice try, loser!" + line "Hahaha!" + prompt _UnnamedText_76103: ; 8632f (21:632f) - db $0, "Why?", $4f - db "Why did I lose?", $51 - db "I never made any", $4f - db "mistakes raising", $55 - db "my #MON...", $51 - db "Darn it! You're", $4f - db "the new #MON", $55 - db "LEAGUE champion!", $51 - db "Although I don't", $4f - db "like to admit it.", $57 + text "Why?" + line "Why did I lose?" + + page "I never made any" + line "mistakes raising" + next "my #MON..." + + page "Darn it! You're" + line "the new #MON" + next "LEAGUE champion!" + + page "Although I don't" + line "like to admit it." + done _GaryText2: ; 863c1 (21:63c1) db $0, "OAK: ", $52, "!", $57 @@ -117915,9 +118413,11 @@ _UnnamedText_76120: ; 863ca (21:63ca) db "first left with", $55 db "@" TX_RAM $cd6d - db $0, "!", $51 - db $52, ", you have", $4f - db "come of age!", $57 + text "!" + + page $52, ", you have" + line "come of age!" + done _UnnamedText_76125: ; 86463 (21:6463) db $0, "OAK: ", $53, "! I'm", $4f @@ -117952,222 +118452,273 @@ _UnnamedText_7612a: ; 86567 (21:6567) db "Come with me!", $57 _LoreleiBeforeBattleText: ; 865ef (21:65ef) - db $0, "Welcome to", $4f - db "#MON LEAGUE!", $51 - db "I am LORELEI of", $4f - db "the ELITE FOUR!", $51 - db "No one can best", $4f - db "me when it comes", $55 - db "to icy #MON!", $51 - db "Freezing moves", $4f - db "are powerful!", $51 - db "Your #MON will", $4f - db "be at my mercy", $55 - db "when they are", $55 - db "frozen solid!", $51 - db "Hahaha!", $4f - db "Are you ready?", $57 + text "Welcome to" + line "#MON LEAGUE!" + + page "I am LORELEI of" + line "the ELITE FOUR!" + + page "No one can best" + line "me when it comes" + next "to icy #MON!" + + page "Freezing moves" + line "are powerful!" + + page "Your #MON will" + line "be at my mercy" + next "when they are" + next "frozen solid!" + + page "Hahaha!" + line "Are you ready?" + done _LoreleiEndBattleText: ; 866c4 (21:66c4) - db $0, "How", $4f - db "dare you!", $58 + text "How" + line "dare you!" + prompt _LoreleiAfterBattleText: ; 866d3 (21:66d3) - db $0, "You're better", $4f - db "than I thought!", $55 - db "Go on ahead!", $51 - db "You only got a", $4f - db "taste of #MON", $55 - db "LEAGUE power!", $57 + text "You're better" + line "than I thought!" + next "Go on ahead!" + + page "You only got a" + line "taste of #MON" + next "LEAGUE power!" + done _UnnamedText_7627b: ; 86729 (21:6729) db $0, "Someone's voice:", $4f db "Don't run away!", $57 _BrunoBeforeBattleText: ; 86749 (21:6749) - db $0, "I am BRUNO of", $4f - db "the ELITE FOUR!", $51 - db "Through rigorous", $4f - db "training, people", $55 - db "and #MON can", $55 - db "become stronger!", $51 - db "I've weight", $4f - db "trained with", $55 - db "my #MON!", $51 - db $52, "!", $51 - db "We will grind you", $4f - db "down with our", $55 - db "superior power!", $51 - db "Hoo hah!", $57 + text "I am BRUNO of" + line "the ELITE FOUR!" + + page "Through rigorous" + line "training, people" + next "and #MON can" + next "become stronger!" + + page "I've weight" + line "trained with" + next "my #MON!" + + page $52, "!" + + page "We will grind you" + line "down with our" + next "superior power!" + + page "Hoo hah!" + done _BrunoEndBattleText: ; 86805 (21:6805) - db $0, "Why?", $4f - db "How could I lose?", $58 + text "Why?" + line "How could I lose?" + prompt _BrunoAfterBattleText: ; 8681d (21:681d) - db $0, "My job is done!", $4f - db "Go face your next", $55 - db "challenge!", $57 + text "My job is done!" + line "Go face your next" + next "challenge!" + done _UnnamedText_763d2: ; 8684b (21:684b) db $0, "Someone's voice:", $4f db "Don't run away!", $57 _AgathaBeforeBattleText: ; 8686b (21:686b) - db $0, "I am AGATHA of", $4f - db "the ELITE FOUR!", $51 - db "OAK's taken a lot", $4f - db "of interest in", $55 - db "you, child!", $51 - db "That old duff was", $4f - db "once tough and", $55 - db "handsome! That", $55 - db "was decades ago!", $51 - db "Now he just wants", $4f - db "to fiddle with", $55 - db "his #DEX! He's", $55 - db "wrong! #MON", $55 - db "are for fighting!", $51 - db $52, "! I'll show", $4f - db "you how a real", $55 - db "trainer fights!", $57 + text "I am AGATHA of" + line "the ELITE FOUR!" + + page "OAK's taken a lot" + line "of interest in" + next "you, child!" + + page "That old duff was" + line "once tough and" + next "handsome! That" + next "was decades ago!" + + page "Now he just wants" + line "to fiddle with" + next "his #DEX! He's" + next "wrong! #MON" + next "are for fighting!" + + page $52, "! I'll show" + line "you how a real" + next "trainer fights!" + done _AgathaEndBattleText: ; 86970 (21:6970) - db $0, "Oh ho!", $4f - db "You're something", $55 - db "special, child!", $58 + text "Oh ho!" + line "You're something" + next "special, child!" + prompt _AgathaAfterBattleText: ; 86998 (21:6998) - db $0, "You win! I see", $4f - db "what the old duff", $55 - db "sees in you now!", $51 - db "I have nothing", $4f - db "else to say! Run", $55 - db "along now, child!", $57 + text "You win! I see" + line "what the old duff" + next "sees in you now!" + + page "I have nothing" + line "else to say! Run" + next "along now, child!" + done _AgathaText2: ; 869fd (21:69fd) db $0, "Someone's voice:", $4f db "Don't run away!", $57 _RockTunnel2BattleText2: ; 86a1d (21:6a1d) - db $0, "Hikers leave twigs", $4f - db "as trail markers.", $57 + text "Hikers leave twigs" + line "as trail markers." + done _RockTunnel2EndBattleText2: ; 86a43 (21:6a43) - db $0, "Ohhh!", $4f - db "I did my best!", $58 + text "Ohhh!" + line "I did my best!" + prompt _RockTunnel2AfterBattleText2: ; 86a59 (21:6a59) - db $0, "I want to go ", $4f - db "home!", $57 + text "I want to go " + line "home!" + done _RockTunnel2BattleText3: ; 86a6e (21:6a6e) - db $0, "Hahaha! Can you", $4f - db "beat my power?", $57 + text "Hahaha! Can you" + line "beat my power?" + done _RockTunnel2EndBattleText3: ; 86a8e (21:6a8e) - db $0, "Oops!", $4f - db "Out-muscled!", $58 + text "Oops!" + line "Out-muscled!" + prompt _RockTunnel2AfterBattleText3: ; 86aa2 (21:6aa2) - db $0, "I go for power", $4f - db "because I hate", $55 - db "thinking!", $57 + text "I go for power" + line "because I hate" + next "thinking!" + done _RockTunnel2BattleText4: ; 86acb (21:6acb) - db $0, "You have a", $4f - db "#DEX?", $55 - db "I want one too!", $57 + text "You have a" + line "#DEX?" + next "I want one too!" + done _RockTunnel2EndBattleText4: ; 86aed (21:6aed) - db $0, "Shoot!", $4f - db "I'm so jealous!", $58 + text "Shoot!" + line "I'm so jealous!" + prompt _RockTunnel2AfterBattleText4: ; 86b04 (21:6b04) - db $0, "When you finish", $4f - db "your #DEX, can", $55 - db "I have it?", $57 + text "When you finish" + line "your #DEX, can" + next "I have it?" + done _RockTunnel2BattleText5: ; 86b2f (21:6b2f) - db $0, "Do you know about", $4f - db "costume players?", $57 + text "Do you know about" + line "costume players?" + done _RockTunnel2EndBattleText5: ; 86b53 (21:6b53) - db $0, "Well,", $4f - db "that's that.", $58 + text "Well," + line "that's that." + prompt _RockTunnel2AfterBattleText5: ; 86b66 (21:6b66) - db $0, "Costume players", $4f - db "dress up as", $55 - db "#MON for fun.", $57 + text "Costume players" + line "dress up as" + next "#MON for fun." + done _RockTunnel2BattleText6: ; 86b91 (21:6b91) - db $0, "My #MON", $4f - db "techniques will", $55 - db "leave you crying!", $57 + text "My #MON" + line "techniques will" + next "leave you crying!" + done _RockTunnel2EndBattleText6: ; 86bbc (21:6bbc) - db $0, "I give!", $4f - db "You're a better", $55 - db "technician!", $58 + text "I give!" + line "You're a better" + next "technician!" + prompt _RockTunnel2AfterBattleText6: ; 86be0 (21:6be0) - db $0, "In mountains,", $4f - db "you'll often find", $55 - db "rock-type #MON.", $57 + text "In mountains," + line "you'll often find" + next "rock-type #MON." + done _RockTunnel2BattleText7: ; 86c10 (21:6c10) - db $0, "I don't often", $4f - db "come here, but I", $55 - db "will fight you.", $57 + text "I don't often" + line "come here, but I" + next "will fight you." + done _RockTunnel2EndBattleText7: ; 86c3f (21:6c3f) - db $0, "Oh!", $4f - db "I lost!", $58 + text "Oh!" + line "I lost!" + prompt _RockTunnel2AfterBattleText7: ; 86c4c (21:6c4c) - db $0, "I like tiny", $4f - db "#MON, big ones", $55 - db "are too scary!", $57 + text "I like tiny" + line "#MON, big ones" + next "are too scary!" + done _RockTunnel2BattleText8: ; 86c77 (21:6c77) - db $0, "Hit me with your", $4f - db "best shot!", $57 + text "Hit me with your" + line "best shot!" + done _RockTunnel2EndBattleText8: ; 86c94 (21:6c94) - db $0, "Fired", $4f - db "away!", $58 + text "Fired" + line "away!" + prompt SECTION "bank22",ROMX,BANK[$22] _RockTunnel2AfterBattleText8: ; 88000 (22:4000) - db $0, "I'll raise my", $4f - db "#MON to beat", $55 - db "yours, kid!", $57 + text "I'll raise my" + line "#MON to beat" + next "yours, kid!" + done _RockTunnel2BattleText9: ; 88027 (22:4027) - db $0, "I draw #MON", $4f - db "when I'm home.", $57 + text "I draw #MON" + line "when I'm home." + done _RockTunnel2EndBattleText9: ; 88042 (22:4042) - db $0, "Whew!", $4f - db "I'm exhausted!", $58 + text "Whew!" + line "I'm exhausted!" + prompt _RockTunnel2AfterBattleText9: ; 88057 (22:4057) - db $0, "I'm an artist,", $4f - db "not a fighter.", $57 + text "I'm an artist," + line "not a fighter." + done _SeafoamIslands5BattleText2: ; 88075 (22:4075) - db $0, "Gyaoo!@@" + text "Gyaoo!@@" _SeafoamIslands5Text4: ; 8807e (22:407e) - db $0, "Boulders might", $4f - db "change the flow", $55 - db "of water!", $57 + text "Boulders might" + line "change the flow" + next "of water!" + done _SeafoamIslands5Text5: ; 880a8 (22:40a8) - db $0, "DANGER", $4f - db "Fast current!", $57 + text "DANGER" + line "Fast current!" + done _AIBattleWithdrawText: ; 880be (22:40be) db 1 @@ -118186,33 +118737,38 @@ _AIBattleUseItemText: ; 880d5 (22:40d5) _UnnamedText_4160c: ; 880ef (22:40ef) TX_RAM $cf4b - db $0, " went", $4f - db "to @" + text " went" + line "to @" TX_RAM $d887 - db $0, ".", $57 + text "." + done _UnnamedText_41623: ; 88103 (22:4103) - db $0, "For ", $52, "'s", $4f - db "@" + text "For ", $52, "'s" + line "@" TX_RAM $cf4b - db $0, ",", $57 + text "," + done _UnnamedText_41628: ; 88112 (22:4112) TX_RAM $d887 - db $0, " sends", $4f - db "@" + text " sends" + line "@" TX_RAM $cd6d - db $0, ".", $57 + text "." + done _UnnamedText_41642: ; 88124 (22:4124) TX_RAM $d887 - db $0, " waves", $4f - db "farewell as", $57 + text " waves" + line "farewell as" + done _UnnamedText_41647: ; 8813b (22:413b) TX_RAM $cd6d - db $0, " is", $4f - db "transferred.", $57 + text " is" + line "transferred." + done _UnnamedText_41655: ; 88150 (22:4150) db $0, "Take good care of", $4f @@ -118220,7 +118776,8 @@ _UnnamedText_41655: ; 88150 (22:4150) UnnamedText_88164: ; 88164 (22:4164) TX_RAM $cd6d - db $0, ".", $57 + text "." + done _UnnamedText_4166c: ; 8816a (22:416a) TX_RAM $d887 @@ -118232,33 +118789,40 @@ UnnamedText_8817b: ; 8817b (22:417b) db $0, $57 _UnnamedText_41671: ; 88180 (22:4180) - db $0, "for ", $52, "'s", $4f - db "@" + text "for ", $52, "'s" + line "@" TX_RAM $cf4b - db $0, ".", $57 + text "." + done _UnnamedText_37390: ; 8818f (22:418f) - db $0, "A slot machine!", $4f - db "Want to play?", $57 + text "A slot machine!" + line "Want to play?" + done _UnnamedText_37467: ; 881ae (22:41ae) - db $0, "Darn!", $4f - db "Ran out of coins!", $57 + text "Darn!" + line "Ran out of coins!" + done _UnnamedText_3746c: ; 881c7 (22:41c7) - db $0, "Bet how many", $4f - db "coins?", $57 + text "Bet how many" + line "coins?" + done _UnnamedText_37471: ; 881dc (22:41dc) - db $0, "Start!", $57 + text "Start!" + done _UnnamedText_37476: ; 881e4 (22:41e4) - db $0, "Not enough", $4f - db "coins!", $58 + text "Not enough" + line "coins!" + prompt _UnnamedText_3747b: ; 881f7 (22:41f7) - db $0, "One more ", $4f - db "go?", $57 + text "One more " + line "go?" + done _UnnamedText_37673: ; 88206 (22:4206) db $0, " lined up!", $4f @@ -118266,13 +118830,15 @@ _UnnamedText_37673: ; 88206 (22:4206) UnnamedText_8821a: ; 8821a (22:421a) TX_RAM $cf4b - db $0, " coins!", $57 + text " coins!" + done _UnnamedText_3769d: ; 88226 (22:4226) - db $0, "Not this time!", $58 + text "Not this time!" + prompt _UnnamedText_37722: ; 88236 (22:4236) - db $0, "Yeah!@@" + text "Yeah!@@" _UnnamedText_703fa: ; 8823e (22:423e) db $0, "#DEX Seen:@" @@ -118285,7 +118851,8 @@ UnnamedText_8824c: ; 8824c (22:424c) db "@" _UnnamedText_703ff: ; 88267 (22:4267) - db $0, "#DEX Rating", $6d, $57 + text "#DEX Rating", $6d + done _GymStatueText1: ; 88275 (22:4275) TX_RAM wGymCityName @@ -118309,127 +118876,156 @@ _GymStatueText2: ; 882a5 (22:42a5) db $52, $57 _ViridianCityPokecenterGuyText: ; 882d7 (22:42d7) - db $0, "#MON CENTERs", $4f - db "heal your tired,", $55 - db "hurt or fainted", $55 - db "#MON!", $57 + text "#MON CENTERs" + line "heal your tired," + next "hurt or fainted" + next "#MON!" + done _PewterCityPokecenterGuyText: ; 8830c (22:430c) - db $0, "Yawn!", $51 - db "When JIGGLYPUFF", $4f - db "sings, #MON", $55 - db "get drowsy...", $51 - db "...Me too...", $4f - db "Snore...", $57 + text "Yawn!" + + page "When JIGGLYPUFF" + line "sings, #MON" + next "get drowsy..." + + page "...Me too..." + line "Snore..." + done _CeruleanPokecenterGuyText: ; 88353 (22:4353) - db $0, "BILL has lots of", $4f - db "#MON!", $51 - db "He collects rare", $4f - db "ones too!", $57 + text "BILL has lots of" + line "#MON!" + + page "He collects rare" + line "ones too!" + done _LavenderPokecenterGuyText: ; 88386 (22:4386) - db $0, "CUBONEs wear", $4f - db "skulls, right?", $51 - db "People will pay a", $4f - db "lot for one!", $57 + text "CUBONEs wear" + line "skulls, right?" + + page "People will pay a" + line "lot for one!" + done _MtMoonPokecenterBenchGuyText: ; 883c2 (22:43c2) - db $0, "If you have too", $4f - db "many #MON, you", $55 - db "should store them", $55 - db "via PC!", $57 + text "If you have too" + line "many #MON, you" + next "should store them" + next "via PC!" + done _RockTunnelPokecenterGuyText: ; 883fc (22:43fc) - db $0, "I heard that", $4f - db "GHOSTs haunt", $55 - db "LAVENDER TOWN!", $57 + text "I heard that" + line "GHOSTs haunt" + next "LAVENDER TOWN!" + done _UnnamedText_624c1: ; 88426 (22:4426) - db $0, "I wish I could", $4f - db "catch #MON.", $57 + text "I wish I could" + line "catch #MON." + done _UnnamedText_624c6: ; 88442 (22:4442) - db $0, "I'm tired from", $4f - db "all the fun...", $57 + text "I'm tired from" + line "all the fun..." + done _UnnamedText_624cb: ; 88460 (22:4460) - db $0, "SILPH's manager", $4f - db "is hiding in the", $55 - db "SAFARI ZONE.", $57 + text "SILPH's manager" + line "is hiding in the" + next "SAFARI ZONE." + done _VermilionPokecenterGuyText: ; 8848e (22:448e) - db $0, "It is true that a", $4f - db "higher level", $55 - db "#MON will be", $55 - db "more powerful...", $51 - db "But, all #MON", $4f - db "will have weak", $55 - db "points against", $55 - db "specific types.", $51 - db "So, there is no", $4f - db "universally", $55 - db "strong #MON.", $57 + text "It is true that a" + line "higher level" + next "#MON will be" + next "more powerful..." + + page "But, all #MON" + line "will have weak" + next "points against" + next "specific types." + + page "So, there is no" + line "universally" + next "strong #MON." + done _CeladonCityPokecenterGuyText: ; 88531 (22:4531) - db $0, "If I had a BIKE,", $4f - db "I would go to", $55 - db "CYCLING ROAD!", $57 + text "If I had a BIKE," + line "I would go to" + next "CYCLING ROAD!" + done _FuchsiaCityPokecenterGuyText: ; 8855f (22:455f) - db $0, "If you're studying ", $4f - db "#MON, visit", $55 - db "the SAFARI ZONE.", $51 - db "It has all sorts", $4f - db "of rare #MON.", $57 + text "If you're studying " + line "#MON, visit" + next "the SAFARI ZONE." + + page "It has all sorts" + line "of rare #MON." + done _CinnabarPokecenterGuyText: ; 885af (22:45af) - db $0, "#MON can still", $4f - db "learn techniques", $55 - db "after canceling", $55 - db "evolution.", $51 - db "Evolution can wait", $4f - db "until new moves", $55 - db "have been learned.", $57 + text "#MON can still" + line "learn techniques" + next "after canceling" + next "evolution." + + page "Evolution can wait" + line "until new moves" + next "have been learned." + done _SaffronCityPokecenterGuyText1: ; 88621 (22:4621) - db $0, "It would be great", $4f - db "if the ELITE FOUR", $55 - db "came and stomped", $55 - db "TEAM ROCKET!", $57 + text "It would be great" + line "if the ELITE FOUR" + next "came and stomped" + next "TEAM ROCKET!" + done _SaffronCityPokecenterGuyText2: ; 88664 (22:4664) - db $0, "TEAM ROCKET took", $4f - db "off! We can go", $55 - db "out safely again!", $55 - db "That's great!", $57 + text "TEAM ROCKET took" + line "off! We can go" + next "out safely again!" + next "That's great!" + done _CeladonCityHotelText: ; 886a4 (22:46a4) - db $0, "My sis brought me", $4f - db "on this vacation!", $57 + text "My sis brought me" + line "on this vacation!" + done _BookcaseText: ; 886c9 (22:46c9) - db $0, "Crammed full of", $4f - db "#MON books!", $57 + text "Crammed full of" + line "#MON books!" + done _NewBicycleText: ; 886e6 (22:46e6) - db $0, "A shiny new", $4f - db "BICYCLE!", $57 + text "A shiny new" + line "BICYCLE!" + done _UnnamedText_1e960: ; 886fc (22:46fc) - db $0, "Push START to", $4f - db "open the MENU!", $57 + text "Push START to" + line "open the MENU!" + done _UnnamedText_1e97e: ; 8871a (22:471a) - db $0, "The SAVE option is", $4f - db "on the MENU", $55 - db "screen.", $57 + text "The SAVE option is" + line "on the MENU" + next "screen." + done _UnnamedText_1e983: ; 88742 (22:4742) - db $0, "All #MON types", $4f - db "have strong and", $55 - db "weak points", $55 - db "against others.", $57 + text "All #MON types" + line "have strong and" + next "weak points" + next "against others." + done _UnnamedText_1ea0d: ; 8877e (22:477e) db $0, "PA: Ding-dong!", $51 @@ -118440,78 +119036,97 @@ _UnnamedText_1ea12: ; 88798 (22:4798) db "GAME is over!", $57 _CinnabarGymQuizIntroText: ; 887b7 (22:47b7) - db $0, "#MON Quiz!", $51 - db "Get it right and", $4f - db "the door opens to", $55 - db "the next room!", $51 - db "Get it wrong and", $4f - db "face a trainer!", $51 - db "If you want to", $4f - db "conserve your", $55 - db "#MON for the", $55 - db "GYM LEADER...", $51 - db "Then get it right!", $4f - db "Here we go!", $58 + text "#MON Quiz!" + + page "Get it right and" + line "the door opens to" + next "the next room!" + + page "Get it wrong and" + line "face a trainer!" + + page "If you want to" + line "conserve your" + next "#MON for the" + next "GYM LEADER..." + + page "Then get it right!" + line "Here we go!" + prompt _CinnabarQuizQuestionsText1: ; 8886d (22:486d) - db $0, "CATERPIE evolves", $4f - db "into BUTTERFREE?", $57 + text "CATERPIE evolves" + line "into BUTTERFREE?" + done _CinnabarQuizQuestionsText2: ; 88890 (22:4890) - db $0, "There are 9", $4f - db "certified #MON", $55 - db "LEAGUE BADGEs?", $57 + text "There are 9" + line "certified #MON" + next "LEAGUE BADGEs?" + done _CinnabarQuizQuestionsText3: ; 888bb (22:48bb) - db $0, "POLIWAG evolves 3", $4f - db "times?", $57 + text "POLIWAG evolves 3" + line "times?" + done _CinnabarQuizQuestionsText4: ; 888d5 (22:48d5) - db $0, "Are thunder moves", $4f - db "effective against", $55 - db "ground element-", $55 - db "type #MON?", $57 + text "Are thunder moves" + line "effective against" + next "ground element-" + next "type #MON?" + done _CinnabarQuizQuestionsText5: ; 88915 (22:4915) - db $0, "#MON of the", $4f - db "same kind and", $55 - db "level are not", $55 - db "identical?", $57 + text "#MON of the" + line "same kind and" + next "level are not" + next "identical?" + done _CinnabarQuizQuestionsText6: ; 88949 (22:4949) - db $0, "TM28 contains", $4f - db "TOMBSTONER?", $57 + text "TM28 contains" + line "TOMBSTONER?" + done _CinnabarGymQuizCorrectText: ; 88964 (22:4964) - db $0, "You're absolutely", $4f - db "correct!", $51 - db "Go on through!@@" + text "You're absolutely" + line "correct!" + + page "Go on through!@@" _CinnabarGymQuizIncorrectText: ; 8898f (22:498f) - db $0, "Sorry! Bad call!", $58 + text "Sorry! Bad call!" + prompt _UnnamedText_1eb69: ; 889a1 (22:49a1) - db $0, "#MON magazines!", $51 - db "#MON notebooks!", $51 - db "#MON graphs!", $57 + text "#MON magazines!" + + page "#MON notebooks!" + + page "#MON graphs!" + done _BillsHouseMonitorText: ; 889cf (22:49cf) - db $0, "TELEPORTER is", $4f - db "displayed on the", $55 - db "PC monitor.", $57 + text "TELEPORTER is" + line "displayed on the" + next "PC monitor." + done _BillsHouseInitiatedText: ; 889fb (22:49fb) - db $0, $52, " initiated", $4f - db "TELEPORTER's Cell", $55 - db "Separator!@@" + text $52, " initiated" + line "TELEPORTER's Cell" + next "Separator!@@" _BillsHousePokemonListText1: ; 88a25 (22:4a25) - db $0, "BILL's favorite", $4f - db "#MON list!", $58 + text "BILL's favorite" + line "#MON list!" + prompt _BillsHousePokemonListText2: ; 88a40 (22:4a40) - db $0, "Which #MON do", $4f - db "you want to see?", $57 + text "Which #MON do" + line "you want to see?" + done _OakLabEmailText: ; 88a60 (22:4a60) db $0, "There's an e-mail", $4f @@ -118534,305 +119149,376 @@ _OakLabEmailText: ; 88a60 (22:4a60) db "...", $57 _GameCornerCoinCaseText: ; 88b5b (22:4b5b) - db $0, "A COIN CASE is", $4f - db "required!", $57 + text "A COIN CASE is" + line "required!" + done _GameCornerNoCoinsText: ; 88b75 (22:4b75) - db $0, "You don't have", $4f - db "any coins!", $57 + text "You don't have" + line "any coins!" + done _GameCornerOutOfOrderText: ; 88b8f (22:4b8f) - db $0, "OUT OF ORDER", $4f - db "This is broken.", $57 + text "OUT OF ORDER" + line "This is broken." + done _GameCornerOutToLunchText: ; 88bad (22:4bad) - db $0, "OUT TO LUNCH", $4f - db "This is reserved.", $57 + text "OUT TO LUNCH" + line "This is reserved." + done _GameCornerSomeonesKeysText: ; 88bcd (22:4bcd) - db $0, "Someone's keys!", $4f - db "They'll be back.", $57 + text "Someone's keys!" + line "They'll be back." + done _UnnamedText_21865: ; 88bed (22:4bed) - db $0, "Just a moment.", $57 + text "Just a moment." + done TMNotebookText: ; 88bfd (22:4bfd) - db $0, "It's a pamphlet", $4f - db "on TMs.", $51 - db "...", $51 - db "There are 50 TMs", $4f - db "in all.", $51 - db "There are also 5", $4f - db "HMs that can be", $55 - db "used repeatedly.", $51 - db "SILPH CO.@@" + text "It's a pamphlet" + line "on TMs." + + page "..." + + page "There are 50 TMs" + line "in all." + + page "There are also 5" + line "HMs that can be" + next "used repeatedly." + + page "SILPH CO.@@" _TurnPageText: ; 88c6f (22:4c6f) - db $0, "Turn the page?", $57 + text "Turn the page?" + done _ViridianSchoolNotebookText5: ; 88c7f (22:4c7f) db $0, "GIRL: Hey! Don't", $4f db "look at my notes!@@" _ViridianSchoolNotebookText1: ; 88ca3 (22:4ca3) - db $0, "Looked at the", $4f - db "notebook!", $51 - db "First page...", $51 - db "# BALLs are", $4f - db "used to catch", $55 - db "#MON.", $51 - db "Up to 6 #MON", $4f - db "can be carried.", $51 - db "People who raise", $4f - db "and make #MON", $55 - db "fight are called", $55 - db "#MON trainers.", $58 + text "Looked at the" + line "notebook!" + + page "First page..." + + page "# BALLs are" + line "used to catch" + next "#MON." + + page "Up to 6 #MON" + line "can be carried." + + page "People who raise" + line "and make #MON" + next "fight are called" + next "#MON trainers." + prompt _ViridianSchoolNotebookText2: ; 88d46 (22:4d46) - db $0, "Second page...", $51 - db "A healthy #MON", $4f - db "may be hard to", $55 - db "catch, so weaken", $55 - db "it first!", $51 - db "Poison, burns and", $4f - db "other damage are", $55 - db "effective!", $58 + text "Second page..." + + page "A healthy #MON" + line "may be hard to" + next "catch, so weaken" + next "it first!" + + page "Poison, burns and" + line "other damage are" + next "effective!" + prompt _ViridianSchoolNotebookText3: ; 88dbd (22:4dbd) - db $0, "Third page...", $51 - db "#MON trainers", $4f - db "seek others to", $55 - db "engage in #MON", $55 - db "fights.", $51 - db "Battles are", $4f - db "constantly fought", $55 - db "at #MON GYMs.", $58 + text "Third page..." + + page "#MON trainers" + line "seek others to" + next "engage in #MON" + next "fights." + + page "Battles are" + line "constantly fought" + next "at #MON GYMs." + prompt _ViridianSchoolNotebookText4: ; 88e2c (22:4e2c) - db $0, "Fourth page...", $51 - db "The goal for", $4f - db "#MON trainers", $55 - db "is to beat the ", $55 - db "top 8 #MON", $55 - db "GYM LEADERs.", $51 - db "Do so to earn the", $4f - db "right to face...", $51 - db "The ELITE FOUR of", $4f - db "#MON LEAGUE!", $58 + text "Fourth page..." + + page "The goal for" + line "#MON trainers" + next "is to beat the " + next "top 8 #MON" + next "GYM LEADERs." + + page "Do so to earn the" + line "right to face..." + + page "The ELITE FOUR of" + line "#MON LEAGUE!" + prompt _UnnamedText_52a10: ; 88ec1 (22:4ec1) - db $0, "Enemies on every", $4f - db "side!", $57 + text "Enemies on every" + line "side!" + done _UnnamedText_52a1d: ; 88ed9 (22:4ed9) - db $0, "What goes around", $4f - db "comes around!", $57 + text "What goes around" + line "comes around!" + done _FightingDojoText: ; 88ef9 (22:4ef9) - db $0, "FIGHTING DOJO", $57 + text "FIGHTING DOJO" + done _IndigoPlateauHQText: ; 88f08 (22:4f08) - db $0, "INDIGO PLATEAU", $4f - db "#MON LEAGUE HQ", $57 + text "INDIGO PLATEAU" + line "#MON LEAGUE HQ" + done _RedBedroomSNESText: ; 88f27 (22:4f27) - db $0, $52, " is", $4f - db "playing the SNES!", $55 - db "...Okay!", $55 - db "It's time to go!", $57 + text $52, " is" + line "playing the SNES!" + next "...Okay!" + next "It's time to go!" + done _Route15UpstairsBinocularsText: ; 88f58 (22:4f58) - db $0, "Looked into the", $4f - db "binoculars...", $51 - db "A large, shining", $4f - db "bird is flying", $55 - db "toward the sea.", $57 + text "Looked into the" + line "binoculars..." + + page "A large, shining" + line "bird is flying" + next "toward the sea." + done _AerodactylFossilText: ; 88fa7 (22:4fa7) - db $0, "AERODACTYL Fossil", $4f - db "A primitive and", $55 - db "rare #MON.", $57 + text "AERODACTYL Fossil" + line "A primitive and" + next "rare #MON." + done _KabutopsFossilText: ; 88fd5 (22:4fd5) - db $0, "KABUTOPS Fossil", $4f - db "A primitive and", $55 - db "rare #MON.", $57 + text "KABUTOPS Fossil" + line "A primitive and" + next "rare #MON." + done _LinkCableHelpText1: ; 89001 (22:5001) - db $0, "TRAINER TIPS", $51 - db "Using a Game Link", $4f - db "Cable", $58 + text "TRAINER TIPS" + + page "Using a Game Link" + line "Cable" + prompt _LinkCableHelpText2: ; 89027 (22:5027) - db $0, "Which heading do", $4f - db "you want to read?", $57 + text "Which heading do" + line "you want to read?" + done _LinkCableInfoText1: ; 8904b (22:504b) - db $0, "When you have", $4f - db "linked your GAME", $55 - db "BOY with another", $55 - db "GAME BOY, talk to", $55 - db "the attendant on", $55 - db "the right in any", $55 - db "#MON CENTER.", $58 + text "When you have" + line "linked your GAME" + next "BOY with another" + next "GAME BOY, talk to" + next "the attendant on" + next "the right in any" + next "#MON CENTER." + prompt _LinkCableInfoText2: ; 890bd (22:50bd) - db $0, "COLOSSEUM lets", $4f - db "you play against", $55 - db "a friend.", $58 + text "COLOSSEUM lets" + line "you play against" + next "a friend." + prompt _LinkCableInfoText3: ; 890e8 (22:50e8) - db $0, "TRADE CENTER is", $4f - db "used for trading", $55 - db "#MON.", $58 + text "TRADE CENTER is" + line "used for trading" + next "#MON." + prompt _ViridianSchoolBlackboardText1: ; 89110 (22:5110) - db $0, "The blackboard", $4f - db "describes #MON", $55 - db "STATUS changes", $55 - db "during battles.", $58 + text "The blackboard" + line "describes #MON" + next "STATUS changes" + next "during battles." + prompt _ViridianSchoolBlackboardText2: ; 8914e (22:514e) - db $0, "Which heading do", $4f - db "you want to read?", $57 + text "Which heading do" + line "you want to read?" + done _ViridianBlackboardSleepText: ; 89172 (22:5172) - db $0, "A #MON can't", $4f - db "attack if it's", $55 - db "asleep!", $51 - db "#MON will stay", $4f - db "asleep even after", $55 - db "battles.", $51 - db "Use AWAKENING to", $4f - db "wake them up!", $58 + text "A #MON can't" + line "attack if it's" + next "asleep!" + + page "#MON will stay" + line "asleep even after" + next "battles." + + page "Use AWAKENING to" + line "wake them up!" + prompt _ViridianBlackboardPoisonText: ; 891de (22:51de) - db $0, "When poisoned, a", $4f - db "#MON's health", $55 - db "steadily drops.", $51 - db "Poison lingers", $4f - db "after battles.", $51 - db "Use an ANTIDOTE", $4f - db "to cure poison!", $58 + text "When poisoned, a" + line "#MON's health" + next "steadily drops." + + page "Poison lingers" + line "after battles." + + page "Use an ANTIDOTE" + line "to cure poison!" + prompt _ViridianBlackbaordPrlzText: ; 8924b (22:524b) - db $0, "Paralysis could", $4f - db "make #MON", $55 - db "moves misfire!", $51 - db "Paralysis remains", $4f - db "after battles.", $51 - db "Use PARLYZ HEAL", $4f - db "for treatment!", $58 + text "Paralysis could" + line "make #MON" + next "moves misfire!" + + page "Paralysis remains" + line "after battles." + + page "Use PARLYZ HEAL" + line "for treatment!" + prompt _ViridianBlackboardBurnText: ; 892b5 (22:52b5) - db $0, "A burn reduces", $4f - db "power and speed.", $55 - db "It also causes", $55 - db "ongoing damage.", $51 - db "Burns remain", $4f - db "after battles.", $51 - db "Use BURN HEAL to", $4f - db "cure a burn!", $58 + text "A burn reduces" + line "power and speed." + next "It also causes" + next "ongoing damage." + + page "Burns remain" + line "after battles." + + page "Use BURN HEAL to" + line "cure a burn!" + prompt _ViridianBlackboardFrozenText: ; 8932f (22:532f) - db $0, "If frozen, a", $4f - db "#MON becomes", $55 - db "totally immobile!", $51 - db "It stays frozen", $4f - db "even after the", $55 - db "battle ends.", $51 - db "Use ICE HEAL to", $4f - db "thaw out #MON!", $58 + text "If frozen, a" + line "#MON becomes" + next "totally immobile!" + + page "It stays frozen" + line "even after the" + next "battle ends." + + page "Use ICE HEAL to" + line "thaw out #MON!" + prompt _VermilionGymTrashText: ; 893a7 (22:53a7) - db $0, "Nope, there's", $4f - db "only trash here.", $57 + text "Nope, there's" + line "only trash here." + done _VermilionGymTrashSuccesText1: ; 893c6 (22:53c6) - db $0, "Hey! There's a", $4f - db "switch under the", $55 - db "trash!", $55 - db "Turn it on!", $51 - db "The 1st electric", $4f - db "lock opened!@@" + text "Hey! There's a" + line "switch under the" + next "trash!" + next "Turn it on!" + + page "The 1st electric" + line "lock opened!@@" _VermilionGymTrashSuccesText2: ; 89418 (22:5418) - db $0, "Hey! There's", $4f - db "another switch", $55 - db "under the trash!", $55 - db "Turn it on!", $58 + text "Hey! There's" + line "another switch" + next "under the trash!" + next "Turn it on!" + prompt _VermilionGymTrashSuccesText3: ; 89451 (22:5451) - db $0, "The 2nd electric", $4f - db "lock opened!", $51 - db "The motorized door", $4f - db "opened!@@" + text "The 2nd electric" + line "lock opened!" + + page "The motorized door" + line "opened!@@" _VermilionGymTrashFailText: ; 8948c (22:548c) - db $0, "Nope! There's", $4f - db "only trash here.", $55 - db "Hey! The electric", $55 - db "locks were reset!@@" + text "Nope! There's" + line "only trash here." + next "Hey! The electric" + next "locks were reset!@@" UnnamedText_894d0: ; 894d0 (22:54d0) - db $0, $52, " found", $4f - db "@" + text $52, " found" + line "@" TX_RAM $cd6d - db $0, "!@@" + text "!@@" _UnnamedText_76794: ; 894e1 (22:54e1) - db $0, "But, ", $52, " has", $4f - db "no more room for", $55 - db "other items!", $57 + text "But, ", $52, " has" + line "no more room for" + next "other items!" + done _FoundHiddenCoinsText: ; 8950b (22:550b) - db $0, $52, " found", $4f - db "@" + text $52, " found" + line "@" db $2, $a0, $ff, $c2 ; XXX $2 - db $0, " coins!@@" + text " coins!@@" _FoundHiddenCoins2Text: ; 89523 (22:5523) - db $0, $52, " found", $4f - db "@" + text $52, " found" + line "@" db $2, $a0, $ff, $c2 ; XXX $2 probably coins - db $0, " coins!@@" + text " coins!@@" _DroppedHiddenCoinsText: ; 8953b (22:553b) - db $0, $51 - db "Oops! Dropped", $4f - db "some coins!", $57 + text $51 + db "Oops! Dropped" + line "some coins!" + done _IndigoPlateauStatuesText1: ; 89557 (22:5557) - db $0, "INDIGO PLATEAU", $58 + text "INDIGO PLATEAU" + prompt _IndigoPlateauStatuesText2: ; 89567 (22:5567) - db $0, "The ultimate goal", $4f - db "of trainers!", $55 - db "#MON LEAGUE HQ", $57 + text "The ultimate goal" + line "of trainers!" + next "#MON LEAGUE HQ" + done _IndigoPlateauStatuesText3: ; 89596 (22:5596) - db $0, "The highest", $4f - db "#MON authority", $55 - db "#MON LEAGUE HQ", $57 + text "The highest" + line "#MON authority" + next "#MON LEAGUE HQ" + done _UnnamedText_fc03: ; 895c1 (22:55c1) - db $0, "Crammed full of", $4f - db "#MON books!", $57 + text "Crammed full of" + line "#MON books!" + done _UnnamedText_fc08: ; 895de (22:55de) - db $0, "It's a sculpture", $4f - db "of DIGLETT.", $57 + text "It's a sculpture" + line "of DIGLETT." + done _UnnamedText_fc0d: ; 895fb (22:55fb) - db $0, "This is an", $4f - db "elevator.", $57 + text "This is an" + line "elevator." + done _TownMapText: ; 89611 (22:5611) - db $0, "A TOWN MAP.@@" + text "A TOWN MAP.@@" _UnnamedText_fc45: ; 8961f (22:561f) - db $0, "Wow! Tons of", $4f - db "#MON stuff!", $57 + text "Wow! Tons of" + line "#MON stuff!" + done _UnnamedText_3c1a8: ; 89639 (22:5639) db $0, "PA: Ding-dong!", $51 @@ -118840,71 +119526,84 @@ _UnnamedText_3c1a8: ; 89639 (22:5639) db "SAFARI BALLs!", $58 _UnnamedText_3c229: ; 89666 (22:5666) - db $0, "Wild @" + text "Wild @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "ran!", $58 + db $0 + line "ran!" + prompt _UnnamedText_3c22e: ; 89677 (22:5677) - db $0, "Enemy @" + text "Enemy @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "ran!", $58 + db $0 + line "ran!" + prompt _HurtByPoisonText: ; 89689 (22:5689) - db $0, $5a, "'s", $4f - db "hurt by poison!", $58 + text $5a, "'s" + line "hurt by poison!" + prompt _HurtByBurnText: ; 8969d (22:569d) - db $0, $5a, "'s", $4f - db "hurt by the burn!", $58 + text $5a, "'s" + line "hurt by the burn!" + prompt _HurtByLeechSeedText: ; 896b3 (22:56b3) - db $0, "LEECH SEED saps", $4f - db $5a, "!", $58 + text "LEECH SEED saps" + line $5a, "!" + prompt _EnemyMonFainted: ; 0x896c7 - db $0, "Enemy @" + text "Enemy @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "fainted!", $58 + db $0 + line "fainted!" + prompt _MoneyForWinningText: ; 896dd (22:56dd) - db $0, $52, " got ¥@" + text $52, " got ¥@" ;XXX $2 db $2, $79, $d0, $c3 - db $0, $4f - db "for winning!", $58 + db $0 + line "for winning!" + prompt _TrainerDefeatedText: ; 896f9 (22:56f9) - db $0, $52, " defeated", $4f - db "@" + text $52, " defeated" + line "@" TX_RAM W_TRAINERNAME ; 0x89706 - db $0, "!", $58 + text "!" + prompt _PlayerMonFaintedText: ; 8970c (22:570c) TX_RAM W_PLAYERMONNAME - db $0, $4f - db "fainted!", $58 + db $0 + line "fainted!" + prompt _UnnamedText_3c7d3: ; 8971a (22:571a) - db $0, "Use next #MON?", $57 + text "Use next #MON?" + done _Sony1WinText: ; 8972a (22:572a) db $0, $53, ": Yeah! Am", $4f db "I great or what?", $58 _PlayerBlackedOutText2: ; 89748 (22:5748) - db $0, $52, " is out of", $4f - db "useable #MON!", $51 - db $52, " blacked", $4f - db "out!", $58 + text $52, " is out of" + line "useable #MON!" + + page $52, " blacked" + line "out!" + prompt _LinkBattleLostText: ; 89772 (22:5772) - db $0, $52, " lost to", $4f - db "@" + text $52, " lost to" + line "@" TX_RAM W_TRAINERNAME ; 0x8977e - db $0, "!", $58 + text "!" + prompt _TrainerAboutToUseText: ; 89784 (22:5784) db 1 @@ -118925,41 +119624,50 @@ _TrainerSentOutText: ; 897b4 (22:57b4) db 0,"!",$57 _UnnamedText_3cab4: ; 897c9 (22:57c9) - db $0, "There's no will", $4f - db "to fight!", $58 + text "There's no will" + line "to fight!" + prompt _UnnamedText_3cb97: ; 897e3 (22:57e3) - db $0, "Can't escape!", $58 + text "Can't escape!" + prompt _UnnamedText_3cb9c: ; 897f1 (22:57f1) - db $0, "No! There's no", $4f - db "running from a", $55 - db "trainer battle!", $58 + text "No! There's no" + line "running from a" + next "trainer battle!" + prompt _UnnamedText_3cba1: ; 8981f (22:581f) - db $0, "Got away safely!", $58 + text "Got away safely!" + prompt ItemsCantBeUsedHere_: ; 89831 (22:5831) - db $0, "Items can't be", $4f - db "used here.", $58 + text "Items can't be" + line "used here." + prompt _UnnamedText_3d1f5: ; 8984b (22:584b) TX_RAM W_PLAYERMONNAME - db $0, " is", $4f - db "already out!", $58 + text " is" + line "already out!" + prompt _MoveNoPPText: ; 89860 (22:5860) - db $0, "No PP left for", $4f - db "this move!", $58 + text "No PP left for" + line "this move!" + prompt _MoveDisabledText: ; 8987b (22:587b) - db $0, "The move is", $4f - db "disabled!", $58 + text "The move is" + line "disabled!" + prompt _UnnamedText_3d430: ; 89892 (22:5892) TX_RAM W_PLAYERMONNAME - db $0, " has no", $4f - db "moves left!", $57 + text " has no" + line "moves left!" + done _MultiHitText: ; 898aa (22:58aa) db 0,"Hit the enemy",$4F,"@" @@ -119042,415 +119750,495 @@ _UnnamedText_3daa8: ; 89a29 (22:5a29) UnnamedText_89a2e: ; 89a2e (22:5a2e) TX_RAM $cd6d - db $0, " is", $55 - db "disabled!", $58 + text " is" + next "disabled!" + prompt _UnnamedText_3dafb: ; 89a40 (22:5a40) - db $0, $5a, "@@" + text $5a, "@@" _UnnamedText_3db2d: ; 89a44 (22:5a44) - db $0, $4f - db "used @@" + db $0 + line "used @@" _UnnamedText_3db34: ; 89a4d (22:5a4d) - db $0, $4f - db "used @@" + db $0 + line "used @@" _UnnamedText_3db43: ; 89a56 (22:5a56) - db $0, "instead,", $55 - db "@@" + text "instead," + next "@@" _UnnamedText_3db4c: ; 89a62 (22:5a62) TX_RAM $cf4b db $0, "@" _UnnamedText_3db6c: ; 89a67 (22:5a67) - db $0, "!", $57 + text "!" + done _UnnamedText_3db71: ; 89a6a (22:5a6a) - db $0, "!", $57 + text "!" + done _UnnamedText_3db76: ; 89a6d (22:5a6d) - db $0, "!", $57 + text "!" + done _UnnamedText_3db7b: ; 89a70 (22:5a70) - db $0, "!", $57 + text "!" + done _UnnamedText_3db80: ; 89a73 (22:5a73) - db $0, "!", $57 + text "!" + done _UnnamedText_3dc42: ; 89a76 (22:5a76) - db $0, $5a, "'s", $4f - db "attack missed!", $58 + text $5a, "'s" + line "attack missed!" + prompt _UnnamedText_3dc47: ; 89a89 (22:5a89) - db $0, $5a, $4f - db "kept going and", $55 - db "crashed!", $58 + text $5a + line "kept going and" + next "crashed!" + prompt _UnnamedText_3dc4c: ; 89aa4 (22:5aa4) - db $0, $59, "'s", $4f - db "unaffected!", $58 + text $59, "'s" + line "unaffected!" + prompt _UnnamedText_3dc57: ; 89ab4 (22:5ab4) - db $0, "It doesn't affect", $4f - db $59, "!", $58 + text "It doesn't affect" + line $59, "!" + prompt _UnnamedText_3dc7e: ; 89ac9 (22:5ac9) - db $0, "Critical hit!", $58 + text "Critical hit!" + prompt _UnnamedText_3dc83: ; 89ad8 (22:5ad8) - db $0, "One-hit KO!", $58 + text "One-hit KO!" + prompt _UnnamedText_3ddb6: ; 89ae5 (22:5ae5) TX_RAM W_PLAYERMONNAME - db $0, " is", $4f - db "loafing around.", $58 + text " is" + line "loafing around." + prompt _UnnamedText_3ddbb: ; 89afd (22:5afd) TX_RAM W_PLAYERMONNAME - db $0, " began", $4f - db "to nap!", $58 + text " began" + line "to nap!" + prompt _UnnamedText_3ddc0: ; 89b10 (22:5b10) TX_RAM W_PLAYERMONNAME - db $0, " won't", $4f - db "obey!", $58 + text " won't" + line "obey!" + prompt _UnnamedText_3ddc5: ; 89b20 (22:5b20) TX_RAM W_PLAYERMONNAME - db $0, " turned", $4f - db "away!", $58 + text " turned" + line "away!" + prompt _UnnamedText_3ddca: ; 89b32 (22:5b32) TX_RAM W_PLAYERMONNAME - db $0, $4f - db "ignored orders!", $58 + db $0 + line "ignored orders!" + prompt _SubstituteTookDamageText: ; 89b47 (22:5b47) - db $0, "The SUBSTITUTE", $4f - db "took damage for", $55 - db $59, "!", $58 + text "The SUBSTITUTE" + line "took damage for" + next $59, "!" + prompt _SubstituteBrokeText: ; 89b6a (22:5b6a) - db $0, $59, "'s", $4f - db "SUBSTITUTE broke!", $58 + text $59, "'s" + line "SUBSTITUTE broke!" + prompt _BuildingRageText: ; 89b80 (22:5b80) - db $0, $5a, "'s", $4f - db "RAGE is building!", $58 + text $5a, "'s" + line "RAGE is building!" + prompt _MirrorMoveFailedText: ; 89b96 (22:5b96) - db $0, "The MIRROR MOVE", $4e, "failed!", $58 + text "The MIRROR MOVE", $4e, "failed!" + prompt _UnnamedText_3e887: ; 89baf (22:5baf) db $0, "Hit @" UnnamedText_89bb5: ; 89bb5 (22:5bb5) TX_NUM $cd05, 1, 1 - db $0, " times!", $58 + text " times!" + prompt _UnnamedText_554b2: ; 89bc2 (22:5bc2) TX_RAM $cd6d - db $0, " gained", $4f - db "@@" + text " gained" + line "@@" _UnnamedText_554cb: ; 89bd0 (22:5bd0) - db $0, "with EXP.ALL,", $55 - db "@@" + text "with EXP.ALL," + next "@@" _UnnamedText_554d4: ; 89be1 (22:5be1) - db $0, "a boosted", $55 - db "@@" + text "a boosted" + next "@@" _UnnamedText_554d8: ; 89bee (22:5bee) TX_NUM $cf4b, 2, 4 - db $0, " EXP. Points!", $58 + text " EXP. Points!" + prompt UnnamedText_89c01: ; 89c01 (22:5c01) TX_RAM $cd6d - db $0, " grew", $4f - db "to level @" + text " grew" + line "to level @" TX_NUM $d127, 1, 3 - db $0, "!@@" + text "!@@" _UnnamedText_58e3b: ; 89c1d (22:5c1d) - db $0, "Wild @" + text "Wild @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "appeared!", $58 + db $0 + line "appeared!" + prompt _UnnamedText_58e40: ; 89c33 (22:5c33) - db $0, "The hooked", $4f - db "@" + text "The hooked" + line "@" TX_RAM W_ENEMYMONNAME - db $0, $55 - db "attacked!", $58 + text $55 + db "attacked!" + prompt _UnnamedText_58e45: ; 89c4f (22:5c4f) TX_RAM W_ENEMYMONNAME - db $0, $4f - db "appeared!", $58 + db $0 + line "appeared!" + prompt _UnnamedText_58e4a: ; 89c5e (22:5c5e) TX_RAM W_TRAINERNAME - db $0, " wants", $4f - db "to fight!", $58 + text " wants" + line "to fight!" + prompt _UnnamedText_58e4f: ; 89c73 (22:5c73) - db $0, "SILPH SCOPE", $4f - db "unveiled the", $55 - db "GHOST's identity!", $58 + text "SILPH SCOPE" + line "unveiled the" + next "GHOST's identity!" + prompt _UnnamedText_58e54: ; 89c9e (22:5c9e) - db $0, "Darn! The GHOST", $4f - db "can't be ID'd!", $58 + text "Darn! The GHOST" + line "can't be ID'd!" + prompt _UnnamedText_58eae: ; 89cbc (22:5cbc) - db $0, "Go! @@" + text "Go! @@" _UnnamedText_58eb5: ; 89cc3 (22:5cc3) - db $0, "Do it! @@" + text "Do it! @@" _UnnamedText_58ebc: ; 89ccd (22:5ccd) - db $0, "Get'm! @@" + text "Get'm! @@" _UnnamedText_58ec3: ; 89cd6 (22:5cd6) - db $0, "The enemy's weak!", $4f - db "Get'm! @@" + text "The enemy's weak!" + line "Get'm! @@" _UnnamedText_58ecc: ; 89cf0 (22:5cf0) TX_RAM W_PLAYERMONNAME - db $0, "!", $57 + text "!" + done _UnnamedText_58ed7: ; 89cf6 (22:5cf6) TX_RAM W_PLAYERMONNAME - db $0, " @@" + text " @@" _UnnamedText_58f25: ; 89cfd (22:5cfd) - db $0, "enough!@@" + text "enough!@@" _UnnamedText_58f2c: ; 89d07 (22:5d07) - db $0, "OK!@@" + text "OK!@@" _UnnamedText_58f33: ; 89d0d (22:5d0d) - db $0, "good!@@" + text "good!@@" _UnnamedText_58f3e: ; 89d15 (22:5d15) - db $0, $4f - db "Come back!", $57 + db $0 + line "Come back!" + done _UnnamedText_2fb8e: ; 89d22 (22:5d22) - db $0, "It's super", $4f - db "effective!", $58 + text "It's super" + line "effective!" + prompt _UnnamedText_2fb93: ; 89d38 (22:5d38) - db $0, "It's not very", $4f - db "effective...", $58 + text "It's not very" + line "effective..." + prompt SafariZoneEatingText: ; 89d53 (22:5d53) - db $0, "Wild @" + text "Wild @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "is eating!", $58 + db $0 + line "is eating!" + prompt SafariZoneAngryText: ; 89d6a (22:5d6a) - db $0, "Wild @" + text "Wild @" TX_RAM W_ENEMYMONNAME - db $0, $4f - db "is angry!", $58 + db $0 + line "is angry!" + prompt ; money related ; XXX $2 BCD macro ; $2, pointer, byte _UnnamedText_1386b: ; 89d80 (22:5d80) - db $0, $52, " picked up", $4f - db "¥@" + text $52, " picked up" + line "¥@" db $2, $e5, $cc, $c3 - db $0, "!", $58 + text "!" + prompt _UnnamedText_1c9c1: ; 89d96 (22:5d96) - db $0, "Clear all saved", $4f - db "data?", $57 + text "Clear all saved" + line "data?" + done _UnnamedText_1ca14: ; 89dad (22:5dad) - db $0, "Which floor do", $4f - db "you want? ", $57 + text "Which floor do" + line "you want? " + done _PartyMenuNormalText: ; 89dc8 (22:5dc8) - db $0, "Choose a #MON.", $57 + text "Choose a #MON." + done _PartyMenuItemUseText: ; 89dd8 (22:5dd8) - db $0, "Use item on which", $4f - db "#MON?", $57 + text "Use item on which" + line "#MON?" + done _PartyMenuBattleText: ; 89df1 (22:5df1) - db $0, "Bring out which", $4f - db "#MON?", $57 + text "Bring out which" + line "#MON?" + done _PartyMenuUseTMText: ; 89e08 (22:5e08) - db $0, "Use TM on which", $4f - db "#MON?", $57 + text "Use TM on which" + line "#MON?" + done _PartyMenuSwapMonText: ; 89e1f (22:5e1f) - db $0, "Move #MON", $4f - db "where?", $57 + text "Move #MON" + line "where?" + done _PotionText: ; 89e31 (22:5e31) TX_RAM $cd6d - db $0, $4f - db "recovered by @" + db $0 + line "recovered by @" TX_NUM wHPBarHPDifference, 2, 3 - db $0, "!", $57 + text "!" + done _AntidoteText: ; 89e4b (22:5e4b) TX_RAM $cd6d - db $0, " was", $4f - db "cured of poison!", $57 + text " was" + line "cured of poison!" + done _ParlyzHealText: ; 89e65 (22:5e65) TX_RAM $cd6d - db $0, "'s", $4f - db "rid of paralysis!", $57 + text "'s" + line "rid of paralysis!" + done _BurnHealText: ; 89e7d (22:5e7d) TX_RAM $cd6d - db $0, "'s", $4f - db "burn was healed!", $57 + text "'s" + line "burn was healed!" + done _IceHealText: ; 89e94 (22:5e94) TX_RAM $cd6d - db $0, " was", $4f - db "defrosted!", $57 + text " was" + line "defrosted!" + done _AwakeningText: ; 89ea8 (22:5ea8) TX_RAM $cd6d - db $0, $4f - db "woke up!", $57 + db $0 + line "woke up!" + done _FullHealText: ; 89eb6 (22:5eb6) TX_RAM $cd6d - db $0, "'s", $4f - db "health returned!", $57 + text "'s" + line "health returned!" + done _ReviveText: ; 89ecd (22:5ecd) TX_RAM $cd6d - db $0, $4f - db "is revitalized!", $57 + db $0 + line "is revitalized!" + done _RareCandyText: ; 89ee2 (22:5ee2) TX_RAM $cd6d - db $0, " grew", $4f - db "to level @" + text " grew" + line "to level @" TX_NUM $d127, $1,$3 - db $0, "!@@" + text "!@@" _UnnamedText_17f23: ; 89efe (22:5efe) - db $0, $52, " turned on", $4f - db "the PC.", $58 + text $52, " turned on" + line "the PC." + prompt _UnnamedText_17f28: ; 89f13 (22:5f13) - db $0, "Accessed BILL's", $4f - db "PC.", $51 - db "Accessed #MON", $4f - db "Storage System.", $58 + text "Accessed BILL's" + line "PC." + + page "Accessed #MON" + line "Storage System." + prompt _UnnamedText_17f2d: ; 89f45 (22:5f45) - db $0, "Accessed someone's", $4f - db "PC.", $51 - db "Accessed #MON", $4f - db "Storage System.", $58 + text "Accessed someone's" + line "PC." + + page "Accessed #MON" + line "Storage System." + prompt _UnnamedText_17f32: ; 89f7a (22:5f7a) - db $0, "Accessed my PC.", $51 - db "Accessed Item", $4f - db "Storage System.", $58 + text "Accessed my PC." + + page "Accessed Item" + line "Storage System." + prompt _UnnamedText_7b22: ; 89fa9 (22:5fa9) - db $0, $52, " turned on", $4f - db "the PC.", $58 + text $52, " turned on" + line "the PC." + prompt _UnnamedText_7b27: ; 89fbe (22:5fbe) - db $0, "What do you want", $4f - db "to do?", $57 + text "What do you want" + line "to do?" + done _UnnamedText_7b2c: ; 89fd7 (22:5fd7) - db $0, "What do you want", $4f - db "to deposit?", $57 + text "What do you want" + line "to deposit?" + done _UnnamedText_7b31: ; 89ff5 (22:5ff5) - db $0, "How many?", $57 + text "How many?" + done _UnnamedText_7b36: ; 8a000 (22:6000) TX_RAM $cd6d - db $0, " was", $4f - db "stored via PC.", $58 + text " was" + line "stored via PC." + prompt _UnnamedText_7b3b: ; 8a018 (22:6018) - db $0, "You have nothing", $4f - db "to deposit.", $58 + text "You have nothing" + line "to deposit." + prompt _UnnamedText_7b40: ; 8a036 (22:6036) - db $0, "No room left to", $4f - db "store items.", $58 + text "No room left to" + line "store items." + prompt _UnnamedText_7b45: ; 8a054 (22:6054) - db $0, "What do you want", $4f - db "to withdraw?", $57 + text "What do you want" + line "to withdraw?" + done _UnnamedText_7b4a: ; 8a073 (22:6073) - db $0, "How many?", $57 + text "How many?" + done _UnnamedText_7b4f: ; 8a07e (22:607e) - db $0, "Withdrew", $4f - db "@" + text "Withdrew" + line "@" TX_RAM $cd6d - db $0, ".", $58 + text "." + prompt _UnnamedText_7b54: ; 8a08f (22:608f) - db $0, "There is nothing", $4f - db "stored.", $58 + text "There is nothing" + line "stored." + prompt _UnnamedText_7b59: ; 8a0a9 (22:60a9) - db $0, "You can't carry", $4f - db "any more items.", $58 + text "You can't carry" + line "any more items." + prompt _UnnamedText_7b5e: ; 8a0c9 (22:60c9) - db $0, "What do you want", $4f - db "to toss away?", $57 + text "What do you want" + line "to toss away?" + done _UnnamedText_7b63: ; 8a0e9 (22:60e9) - db $0, "How many?", $57 + text "How many?" + done _UnnamedText_76683: ; 8a0f4 (22:60f4) - db $0, "Accessed #MON", $4f - db "LEAGUE's site.", $51 - db "Accessed the HALL", $4f - db "OF FAME List.", $58 + text "Accessed #MON" + line "LEAGUE's site." + + page "Accessed the HALL" + line "OF FAME List." + prompt _SwitchOnText: ; 0x8a131 - db $0, "Switch on!", $58 + text "Switch on!" + prompt _WhatText: ; 0x8a13d - db $0, "What?", $57 + text "What?" + done _DepositWhichMonText: ; 0x8a144 - db $0, "Deposit which", $4f - db "#MON?", $57 + text "Deposit which" + line "#MON?" + done _MonWasStoredText: ; 0x8a159 TX_RAM $cf4b - db $0, " was", $4f - db "stored in Box @" + text " was" + line "stored in Box @" TX_RAM $cd3d - db $0, ".", $58 + text "." + prompt _CantDepositLastMonText: ; 0x8a177 - db $0, "You can't deposit", $4f - db "the last #MON!", $58 + text "You can't deposit" + line "the last #MON!" + prompt _BoxFullText: ; 0x8a198 - db $0, "Oops! This Box is", $4f - db "full of #MON.", $58 + text "Oops! This Box is" + line "full of #MON." + prompt _MonIsTakenOutText: ; 0x8a1b9 TX_RAM $cf4b @@ -119459,21 +120247,26 @@ _MonIsTakenOutText: ; 0x8a1b9 db "Got @" UnnamedText_8a1d1: ; 8a1d1 (22:61d1) TX_RAM $cf4b - db $0, ".", $58 + text "." + prompt _NoMonText: ; 0x8a1d7 - db $0, "What? There are", $4f - db "no #MON here!", $58 + text "What? There are" + line "no #MON here!" + prompt _CantTakeMonText: ; 0x8a1f6 - db $0, "You can't take", $4f - db "any more #MON.", $51 - db "Deposit #MON", $4f - db "first.", $58 + text "You can't take" + line "any more #MON." + + page "Deposit #MON" + line "first." + prompt _ReleaseWhichMonText: ; 0x8a228 - db $0, "Release which", $4f - db "#MON?", $57 + text "Release which" + line "#MON?" + done _OnceReleasedText: ; 0x8a23d db $0, "Once released,", $4f @@ -119481,8 +120274,9 @@ _OnceReleasedText: ; 0x8a23d MonIsGoneForeverText: ; 0x8a24e TX_RAM $cf4b - db $0, " is", $55 - db "gone forever. OK?", $57 + text " is" + next "gone forever. OK?" + done _MonWasReleasedText: ; 0x8a268 TX_RAM $cf4b @@ -119492,7 +120286,8 @@ _MonWasReleasedText: ; 0x8a268 _UnnamedText_8a288: ; 8a288 (22:6288) TX_RAM $cf4b - db $0, "!", $58 + text "!" + prompt _RequireCoinCaseText: ; 8a28e (22:628e) db 0,"A COIN CASE is",$4F @@ -119528,30 +120323,36 @@ _OhFineThenText: ; 8a34c (22:634c) db 0,"Oh, fine then.@@" _UnnamedText_1e93b: ; 8a35d (22:635d) - db $0, "Want to get your", $4f - db "#DEX rated?", $57 + text "Want to get your" + line "#DEX rated?" + done _UnnamedText_1e940: ; 8a37b (22:637b) - db $0, "Closed link to", $4f - db "PROF.OAK's PC.@@" + text "Closed link to" + line "PROF.OAK's PC.@@" _UnnamedText_1e946: ; 8a39a (22:639a) - db $0, "Accessed PROF.", $4f - db "OAK's PC.", $51 - db "Accessed #DEX", $4f - db "Rating System.", $58 + text "Accessed PROF." + line "OAK's PC." + + page "Accessed #DEX" + line "Rating System." + prompt _UnnamedText_5d43: ; 8a3d0 (22:63d0) - db $0, "Where would you", $4f - db "like to go?", $57 + text "Where would you" + line "like to go?" + done _UnnamedText_5d48: ; 8a3ed (22:63ed) - db $0, "OK, please wait", $4f - db "just a moment.", $57 + text "OK, please wait" + line "just a moment." + done _UnnamedText_5d4d: ; 8a40d (22:640d) - db $0, "The link was", $4f - db "canceled.", $57 + text "The link was" + line "canceled." + done INCLUDE "text/oakspeech.asm" @@ -119562,16 +120363,19 @@ _DoYouWantToNicknameText: ; 0x8a605 UnnamedText_8a629: ; 8a629 (22:6629) TX_RAM $cd6d - db $0, "?", $57 + text "?" + done _UnnamedText_699f: ; 8a62f (22:662f) - db $0, "Right! So your", $4f - db "name is ", $52, "!", $58 + text "Right! So your" + line "name is ", $52, "!" + prompt _UnnamedText_69e7: ; 8a64a (22:664a) - db $0, "That's right! I", $4f - db "remember now! His", $55 - db "name is ", $53, "!", $58 + text "That's right! I" + line "remember now! His" + next "name is ", $53, "!" + prompt _SSAnne8AfterBattleText2: ; 8a677 (22:6677) TX_RAM $cd3f @@ -119580,8 +120384,9 @@ _SSAnne8AfterBattleText2: ; 8a677 (22:6677) UnnamedText_8a681: ; 8a681 (22:6681) TX_RAM $cd6d - db $0, " will", $55 - db "be traded.", $57 + text " will" + next "be traded." + done _Char00Text: ; 8a696 (22:6696) TX_NUM $FF8C,1,2 @@ -119591,71 +120396,86 @@ _Char55Text: ; 8a6a3 (22:66a3) db 0,$4B,"@@" _DiglettsCaveRoute2Text1: ; 8a6a7 (22:66a7) - db $0, "I went to ROCK", $4f - db "TUNNEL, but it's", $55 - db "dark and scary.", $51 - db "If a #MON's", $4f - db "FLASH could light", $55 - db "it up...", $57 + text "I went to ROCK" + line "TUNNEL, but it's" + next "dark and scary." + + page "If a #MON's" + line "FLASH could light" + next "it up..." + done _ViridianForestexitText1: ; 8a6fd (22:66fd) - db $0, "Many #MON live", $4f - db "only in forests ", $55 - db "and caves.", $51 - db "You need to look", $4f - db "everywhere to get", $55 - db "different kinds!", $57 + text "Many #MON live" + line "only in forests " + next "and caves." + + page "You need to look" + line "everywhere to get" + next "different kinds!" + done _ViridianForestexitText2: ; 8a75d (22:675d) - db $0, "Have you noticed", $4f - db "the bushes on the", $55 - db "roadside?", $51 - db "They can be cut", $4f - db "down by a special", $55 - db "#MON move.", $57 + text "Have you noticed" + line "the bushes on the" + next "roadside?" + + page "They can be cut" + line "down by a special" + next "#MON move." + done _Route2HouseText1: ; 8a7b8 (22:67b8) - db $0, "A fainted #MON", $4f - db "can't fight. But, ", $55 - db "it can still use ", $55 - db "moves like CUT!", $57 + text "A fainted #MON" + line "can't fight. But, " + next "it can still use " + next "moves like CUT!" + done _UnnamedText_5d616: ; 8a7fc (22:67fc) - db $0, "The HM FLASH", $4f - db "lights even the", $55 - db "darkest dungeons.", $57 + text "The HM FLASH" + line "lights even the" + next "darkest dungeons." + done _Route2GateText2: ; 8a82c (22:682c) - db $0, "Once a #MON", $4f - db "learns FLASH, you", $55 - db "can get through", $55 - db "ROCK TUNNEL.", $57 + text "Once a #MON" + line "learns FLASH, you" + next "can get through" + next "ROCK TUNNEL." + done _ViridianForestEntranceText1: ; 8a868 (22:6868) - db $0, "Are you going to", $4f - db "VIRIDIAN FOREST?", $55 - db "Be careful, it's", $55 - db "a natural maze!", $57 + text "Are you going to" + line "VIRIDIAN FOREST?" + next "Be careful, it's" + next "a natural maze!" + done _ViridianForestEntranceText2: ; 8a8ab (22:68ab) - db $0, "RATTATA may be", $4f - db "small, but its", $55 - db "bite is wicked!", $55 - db "Did you get one?", $57 + text "RATTATA may be" + line "small, but its" + next "bite is wicked!" + next "Did you get one?" + done _MtMoonPokecenterText1: ; 8a8eb (22:68eb) - db $0, "I've 6 # BALLs", $4f - db "set in my belt.", $51 - db "At most, you can", $4f - db "carry 6 #MON.", $57 + text "I've 6 # BALLs" + line "set in my belt." + + page "At most, you can" + line "carry 6 #MON." + done _MtMoonPokecenterText3: ; 8a929 (22:6929) - db $0, "TEAM ROCKET", $4f - db "attacks CERULEAN", $55 - db "citizens...", $51 - db "TEAM ROCKET is", $4f - db "always in the", $55 - db "news!", $57 + text "TEAM ROCKET" + line "attacks CERULEAN" + next "citizens..." + + page "TEAM ROCKET is" + line "always in the" + next "news!" + done _UnnamedText_4935c: ; 8a976 (22:6976) db $0, "MAN: Hello, there!", $4f @@ -119667,13 +120487,15 @@ _UnnamedText_4935c: ; 8a976 (22:6976) db "What do you say?", $57 _UnnamedText_49361: ; 8a9ec (22:69ec) - db $0, "No? I'm only", $4f - db "doing this as a", $55 - db "favor to you!", $57 + text "No? I'm only" + line "doing this as a" + next "favor to you!" + done _UnnamedText_49366: ; 8aa17 (22:6a17) - db $0, "You'll need more", $4f - db "money than that!", $57 + text "You'll need more" + line "money than that!" + done _UnnamedText_4936b: ; 8aa39 (22:6a39) db $0, "MAN: Well, I don't", $4f @@ -119683,47 +120505,53 @@ _MtMoonPokecenterText5: ; 8aa5a (22:6a5a) db $0, $57 _UnnamedText_1dfe7: ; 8aa5c (22:6a5c) - db $0, "I'm on guard duty.", $4f - db "Gee, I'm thirsty,", $55 - db "though!", $51 - db "Oh wait there,", $4f - db "the road's closed.", $57 + text "I'm on guard duty." + line "Gee, I'm thirsty," + next "though!" + + page "Oh wait there," + line "the road's closed." + done _UnnamedText_8aaa9: ; 8aaa9 (22:6aa9) - db $0, "Whoa, boy!", $4f - db "I'm parched!", $55 - db "...", $55 - db "Huh? I can have", $55 - db "this drink?", $55 - db "Gee, thanks!@@" + text "Whoa, boy!" + line "I'm parched!" + next "..." + next "Huh? I can have" + next "this drink?" + next "Gee, thanks!@@" _UnnamedText_1dff1: ; 8aaef (22:6aef) - db $0, $51 - db "...", $4f - db "Glug glug...", $55 - db "...", $55 - db "Gulp...", $55 - db "If you want to go", $55 - db "to SAFFRON CITY...", $55 - db "...", $55 - db "You can go on", $55 - db "through. I'll", $55 - db "share this with", $55 - db "the other guards!", $57 + text $51 + db "..." + line "Glug glug..." + next "..." + next "Gulp..." + next "If you want to go" + next "to SAFFRON CITY..." + next "..." + next "You can go on" + next "through. I'll" + next "share this with" + next "the other guards!" + done _UnnamedText_1dff6: ; 8ab74 (22:6b74) - db $0, "Hi, thanks for", $4f - db "the cool drinks!", $57 + text "Hi, thanks for" + line "the cool drinks!" + done _UnnamedText_5640f: ; 8ab95 (22:6b95) - db $0, "I run a DAYCARE.", $4f - db "Would you like me", $55 - db "to raise one of", $55 - db "your #MON?", $57 + text "I run a DAYCARE." + line "Would you like me" + next "to raise one of" + next "your #MON?" + done _UnnamedText_56414: ; 8abd4 (22:6bd4) - db $0, "Which #MON", $4f - db "should I raise?", $58 + text "Which #MON" + line "should I raise?" + prompt _UnnamedText_56419: ; 8abf0 (22:6bf0) db $0, "Fine, I'll look", $4f @@ -119731,12 +120559,14 @@ _UnnamedText_56419: ; 8abf0 (22:6bf0) UnnamedText_8ac07: ; 8ac07 (22:6c07) TX_RAM $cd6d - db $0, $55 - db "for a while.", $58 + text $55 + db "for a while." + prompt _UnnamedText_5641e: ; 8ac19 (22:6c19) - db $0, "Come see me in", $4f - db "a while.", $57 + text "Come see me in" + line "a while." + done _UnnamedText_56423: ; 8ac32 (22:6c32) db $0, "Your @" @@ -119750,8 +120580,10 @@ UnnamedText_8ac39: ; 8ac39 (22:6c39) UnnamedText_8ac67: ; 8ac67 (22:6c67) TX_NUM $cd3e,$1,$3 - db $0, "!", $51 - db "Aren't I great?", $58 + text "!" + + page "Aren't I great?" + prompt _UnnamedText_56428: ; 8ac7d (22:6c7d) db $0, "You owe me ¥@" @@ -119760,9 +120592,10 @@ _UnnamedText_56428: ; 8ac7d (22:6c7d) db $2, $3f, $cd, $c2 UnnamedText_8ac8f: ; 8ac8f (22:6c8f) - db $0, $4f - db "for the return", $55 - db "of this #MON.", $57 + db $0 + line "for the return" + next "of this #MON." + done _UnnamedText_5642d: ; 8acae (22:6cae) db $0, $52, " got", $4f @@ -119770,7 +120603,8 @@ _UnnamedText_5642d: ; 8acae (22:6cae) UnnamedText_8acb6: ; 8acb6 (22:6cb6) TX_RAM $da49 - db $0, " back!", $57 + text " back!" + done _UnnamedText_56432: ; 8acc1 (22:6cc1) db $0, "Back already?", $4f @@ -119778,292 +120612,361 @@ _UnnamedText_56432: ; 8acc1 (22:6cc1) UnnamedText_8acd6: ; 8acd6 (22:6cd6) TX_RAM $cd6d - db $0, $55 - db "needs some more", $55 - db "time with me.", $58 + text $55 + db "needs some more" + next "time with me." + prompt SECTION "bank23",ROMX,BANK[$23] _UnnamedText_56437: ; 8c000 (23:4000) - db $0, "All right then,", $4f - db "@@" + text "All right then," + line "@@" _UnnamedText_5643b: ; 8c013 (23:4013) - db $0, "come again.", $57 + text "come again." + done _UnnamedText_56440: ; 8c020 (23:4020) - db $0, "You have no room", $4f - db "for this #MON!", $57 + text "You have no room" + line "for this #MON!" + done _UnnamedText_56445: ; 8c041 (23:4041) - db $0, "You only have one", $4f - db "#MON with you.", $57 + text "You only have one" + line "#MON with you." + done _UnnamedText_5644a: ; 8c063 (23:4063) - db $0, "I can't accept a", $4f - db "#MON that", $55 - db "knows an HM move.", $57 + text "I can't accept a" + line "#MON that" + next "knows an HM move." + done _UnnamedText_5644f: ; 8c090 (23:4090) - db $0, "Thank you! Here's", $4f - db "your #MON!", $58 + text "Thank you! Here's" + line "your #MON!" + prompt _UnnamedText_56454: ; 8c0ad (23:40ad) - db $0, "Hey, you don't", $4f - db "have enough ¥!", $57 + text "Hey, you don't" + line "have enough ¥!" + done _UndergrdTunnelEntRoute6Text1: ; 8c0cb (23:40cb) - db $0, "People often lose", $4f - db "things in that", $55 - db "UNDERGROUND PATH.", $57 + text "People often lose" + line "things in that" + next "UNDERGROUND PATH." + done _UndergroundPathEntRoute7Text1: ; 8c0ff (23:40ff) - db $0, "I heard a sleepy", $4f - db "#MON appeared", $55 - db "near CELADON CITY.", $57 + text "I heard a sleepy" + line "#MON appeared" + next "near CELADON CITY." + done _UnnamedText_5d773: ; 8c132 (23:4132) - db $0, "I want to shop at", $4f - db "the dept. store", $55 - db "in CELADON but...", $51 - db "There are so many", $4f - db "rough looking", $55 - db "people there.", $57 + text "I want to shop at" + line "the dept. store" + next "in CELADON but..." + + page "There are so many" + line "rough looking" + next "people there." + done _UnnamedText_5d778: ; 8c195 (23:4195) - db $0, "TEAM ROCKET had a", $4f - db "secret hideout in", $55 - db "CELADON CITY?", $57 + text "TEAM ROCKET had a" + line "secret hideout in" + next "CELADON CITY?" + done _UnnamedText_5d77d: ; 8c1c8 (23:41c8) - db $0, "You're here to", $4f - db "shop in CELADON?", $51 - db "Just step outside", $4f - db "and head west!", $57 + text "You're here to" + line "shop in CELADON?" + + page "Just step outside" + line "and head west!" + done _UnnamedText_5d782: ; 8c209 (23:4209) - db $0, "The UNDERGROUND", $4f - db "PATH goes beneath", $55 - db "SAFFRON and leads", $55 - db "to LAVENDER.", $51 - db "If you're heading", $4f - db "to CERULEAN, go", $55 - db "to the building", $55 - db "across the road.", $57 + text "The UNDERGROUND" + line "PATH goes beneath" + next "SAFFRON and leads" + next "to LAVENDER." + + page "If you're heading" + line "to CERULEAN, go" + next "to the building" + next "across the road." + done _UndergroundPathEntRoute8Text1: ; 8c28d (23:428d) - db $0, "The dept. store", $4f - db "in CELADON has a", $55 - db "great selection!", $57 + text "The dept. store" + line "in CELADON has a" + next "great selection!" + done _RockTunnelPokecenterText1: ; 8c2c0 (23:42c0) - db $0, "The element types", $4f - db "of #MON make", $55 - db "them stronger", $55 - db "than some types", $55 - db "and weaker than", $55 - db "others!", $57 + text "The element types" + line "of #MON make" + next "them stronger" + next "than some types" + next "and weaker than" + next "others!" + done _RockTunnelPokecenterText3: ; 8c316 (23:4316) - db $0, "I sold a useless", $4f - db "NUGGET for ¥5000!", $57 + text "I sold a useless" + line "NUGGET for ¥5000!" + done _RockTunnel1BattleText1: ; 8c33a (23:433a) - db $0, "This tunnel goes", $4f - db "a long way, kid!", $57 + text "This tunnel goes" + line "a long way, kid!" + done _RockTunnel1EndBattleText1: ; 8c35d (23:435d) - db $0, "Doh!", $4f - db "You win!", $58 + text "Doh!" + line "You win!" + prompt _RockTunnel1AfterBattleText1: ; 8c36c (23:436c) - db $0, "Watch for ONIX!", $4f - db "It can put the", $55 - db "squeeze on you!", $57 + text "Watch for ONIX!" + line "It can put the" + next "squeeze on you!" + done _RockTunnel1BattleText2: ; 8c39c (23:439c) - db $0, "Hmm. Maybe I'm", $4f - db "lost in here...", $57 + text "Hmm. Maybe I'm" + line "lost in here..." + done _RockTunnel1EndBattleText2: ; 8c3bb (23:43bb) - db $0, "Ease up!", $4f - db "What am I doing?", $55 - db "Which way is out?", $58 + text "Ease up!" + line "What am I doing?" + next "Which way is out?" + prompt _RockTunnel1AfterBattleText2: ; 8c3e8 (23:43e8) - db $0, "That sleeping", $4f - db "#MON on ROUTE", $55 - db "12 forced me to", $55 - db "take this detour.", $57 + text "That sleeping" + line "#MON on ROUTE" + next "12 forced me to" + next "take this detour." + done _RockTunnel1BattleText3: ; 8c427 (23:4427) - db $0, "Outsiders like", $4f - db "you need to show", $55 - db "me some respect!", $57 + text "Outsiders like" + line "you need to show" + next "me some respect!" + done _RockTunnel1EndBattleText3: ; 8c459 (23:4459) - db $0, "I give!", $58 + text "I give!" + prompt _RockTunnel1AfterBattleText3: ; 8c462 (23:4462) - db $0, "You're talented", $4f - db "enough to hike!", $57 + text "You're talented" + line "enough to hike!" + done _RockTunnel1BattleText4: ; 8c482 (23:4482) - db $0, "#MON fight!", $4f - db "Ready, go!", $57 + text "#MON fight!" + line "Ready, go!" + done _RockTunnel1EndBattleText4: ; 8c49a (23:449a) - db $0, "Game", $4f - db "over!", $58 + text "Game" + line "over!" + prompt _RockTunnel1AfterBattleText4: ; 8c4a6 (23:44a6) - db $0, "Oh well, I'll get", $4f - db "a ZUBAT as I go!", $57 + text "Oh well, I'll get" + line "a ZUBAT as I go!" + done _RockTunnel1BattleText5: ; 8c4c9 (23:44c9) - db $0, "Eek! Don't try", $4f - db "anything funny in", $55 - db "the dark!", $57 + text "Eek! Don't try" + line "anything funny in" + next "the dark!" + done _RockTunnel1EndBattleText5: ; 8c4f4 (23:44f4) - db $0, "It", $4f - db "was too dark!", $58 + text "It" + line "was too dark!" + prompt _RockTunnel1AfterBattleText5: ; 8c506 (23:4506) - db $0, "I saw a MACHOP", $4f - db "in this tunnel!", $57 + text "I saw a MACHOP" + line "in this tunnel!" + done _RockTunnel1BattleText6: ; 8c526 (23:4526) - db $0, "I came this far", $4f - db "for #MON!", $57 + text "I came this far" + line "for #MON!" + done _RockTunnel1EndBattleText6: ; 8c541 (23:4541) - db $0, "I'm", $4f - db "out of #MON!", $58 + text "I'm" + line "out of #MON!" + prompt _RockTunnel1AfterBattleText6: ; 8c552 (23:4552) - db $0, "You looked cute", $4f - db "and harmless!", $57 + text "You looked cute" + line "and harmless!" + done _RockTunnel1BattleText7: ; 8c571 (23:4571) - db $0, "You have #MON!", $4f - db "Let's start!", $57 + text "You have #MON!" + line "Let's start!" + done _RockTunnel1EndBattleText7: ; 8c58d (23:458d) - db $0, "You", $4f - db "play hard!", $58 + text "You" + line "play hard!" + prompt _RockTunnel1AfterBattleText7: ; 8c59d (23:459d) - db $0, "Whew! I'm all", $4f - db "sweaty now!", $57 + text "Whew! I'm all" + line "sweaty now!" + done _RockTunnel1Text8: ; 8c5b7 (23:45b7) - db $0, "ROCK TUNNEL", $4f - db "CERULEAN CITY -", $55 - db "LAVENDER TOWN", $57 + text "ROCK TUNNEL" + line "CERULEAN CITY -" + next "LAVENDER TOWN" + done _VoltorbBattleText: ; 8c5e2 (23:45e2) - db $0, "Bzzzt!", $57 + text "Bzzzt!" + done _ZapdosBattleText: ; 8c5ea (23:45ea) - db $0, "Gyaoo!@@" + text "Gyaoo!@@" _Route11GateText1: ; 8c5f3 (23:45f3) - db $0, "When you catch", $4f - db "lots of #MON,", $55 - db "isn't it hard to", $55 - db "think up names?", $51 - db "In LAVENDER TOWN,", $4f - db "there's a man who", $55 - db "rates #MON", $55 - db "nicknames.", $51 - db "He'll help you", $4f - db "rename them too!", $57 + text "When you catch" + line "lots of #MON," + next "isn't it hard to" + next "think up names?" + + page "In LAVENDER TOWN," + line "there's a man who" + next "rates #MON" + next "nicknames." + + page "He'll help you" + line "rename them too!" + done _UnnamedText_494a3: ; 8c689 (23:4689) - db $0, "There are items on", $4f - db "the ground that", $55 - db "can't be seen.", $51 - db "ITEMFINDER will", $4f - db "detect an item", $55 - db "close to you.", $51 - db "It can't pinpoint", $4f - db "it, so you have", $55 - db "to look yourself!", $57 + text "There are items on" + line "the ground that" + next "can't be seen." + + page "ITEMFINDER will" + line "detect an item" + next "close to you." + + page "It can't pinpoint" + line "it, so you have" + next "to look yourself!" + done _UnnamedText_494c4: ; 8c71b (23:471b) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "A big #MON is", $4f - db "asleep on a road!", $57 + text "Looked into the" + line "binoculars." + + page "A big #MON is" + line "asleep on a road!" + done _UnnamedText_494c9: ; 8c758 (23:4758) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "It's a beautiful", $4f - db "view!", $57 + text "Looked into the" + line "binoculars." + + page "It's a beautiful" + line "view!" + done _UnnamedText_494d5: ; 8c78b (23:478b) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "The only way to", $4f - db "get from CERULEAN", $55 - db "CITY to LAVENDER", $55 - db "is by way of the", $55 - db "ROCK TUNNEL.", $57 + text "Looked into the" + line "binoculars." + + page "The only way to" + line "get from CERULEAN" + next "CITY to LAVENDER" + next "is by way of the" + next "ROCK TUNNEL." + done _DiglettsCaveEntRoute11Text1: ; 8c7f9 (23:47f9) - db $0, "What a surprise!", $4f - db "DIGLETTs dug this", $55 - db "long tunnel!", $51 - db "It goes right to", $4f - db "VIRIDIAN CITY!", $57 + text "What a surprise!" + line "DIGLETTs dug this" + next "long tunnel!" + + page "It goes right to" + line "VIRIDIAN CITY!" + done _Route12GateText1: ; 8c84a (23:484a) - db $0, "There's a lookout", $4f - db "spot upstairs.", $57 + text "There's a lookout" + line "spot upstairs." + done _TM39PreReceiveText: ; 8c86b (23:486b) - db $0, "My #MON's", $4f - db "ashes are stored", $55 - db "in #MON TOWER.", $51 - db "You can have this", $4f - db "TM. I don't need", $55 - db "it any more...", $58 + text "My #MON's" + line "ashes are stored" + next "in #MON TOWER." + + page "You can have this" + line "TM. I don't need" + next "it any more..." + prompt _ReceivedTM39Text: ; 8c8c6 (23:48c6) - db $0, $52, " received", $4f - db "TM39!@@" + text $52, " received" + line "TM39!@@" _TM39ExplanationText: ; 8c8d9 (23:48d9) - db $0, "TM39 is a move", $4f - db "called SWIFT.", $51 - db "It's very accurate,", $4f - db "so use it during", $55 - db "battles you can't", $55 - db "afford to lose.", $57 + text "TM39 is a move" + line "called SWIFT." + + page "It's very accurate," + line "so use it during" + next "battles you can't" + next "afford to lose." + done _TM39NoRoomText: ; 8c93c (23:493c) - db $0, "You don't have", $4f - db "room for this.", $57 + text "You don't have" + line "room for this." + done _UnnamedText_495b8: ; 8c95a (23:495a) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "A man fishing!", $57 + text "Looked into the" + line "binoculars." + + page "A man fishing!" + done _UnnamedText_495c4: ; 8c986 (23:4986) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "It's #MON TOWER!", $57 + text "Looked into the" + line "binoculars." + + page "It's #MON TOWER!" + done _UnnamedText_564c0: ; 8c9b3 (23:49b3) - db $0, "I'm the FISHING", $4f - db "GURU's brother!", $51 - db "I simply Looove", $4f - db "fishing!", $51 - db "Do you like to", $4f - db "fish?", $57 + text "I'm the FISHING" + line "GURU's brother!" + + page "I simply Looove" + line "fishing!" + + page "Do you like to" + line "fish?" + done _UnnamedText_564c5: ; 8ca00 (23:4a00) db $0, "Grand! I like", $4f @@ -120075,274 +120978,335 @@ _UnnamedText_564c5: ; 8ca00 (23:4a00) UnnamedText_8ca48: ; 8ca48 (23:4a48) TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_564ca: ; 8ca4f (23:4a4f) - db $0, $51 - db "Fishing is a way", $4f - db "of life!", $51 - db "From the seas to", $4f - db "rivers, go out", $55 - db "and land the big", $55 - db "one!", $57 + text $51 + db "Fishing is a way" + line "of life!" + + page "From the seas to" + line "rivers, go out" + next "and land the big" + next "one!" + done _UnnamedText_564cf: ; 8caa1 (23:4aa1) - db $0, "Oh... That's so", $4f - db "disappointing...", $57 + text "Oh... That's so" + line "disappointing..." + done _UnnamedText_564d4: ; 8cac2 (23:4ac2) - db $0, "Hello there,", $4f - db $52, "!", $51 - db "Use the SUPER ROD", $4f - db "in any water!", $55 - db "You can catch", $55 - db "different kinds", $55 - db "of #MON.", $51 - db "Try fishing", $4f - db "wherever you can!", $57 + text "Hello there," + line $52, "!" + + page "Use the SUPER ROD" + line "in any water!" + next "You can catch" + next "different kinds" + next "of #MON." + + page "Try fishing" + line "wherever you can!" + done _UnnamedText_564d9: ; 8cb38 (23:4b38) - db $0, "Oh no!", $51 - db "I had a gift for", $4f - db "you, but you have", $55 - db "no room for it!", $57 + text "Oh no!" + + page "I had a gift for" + line "you, but you have" + next "no room for it!" + done _Route15GateText1: ; 8cb73 (23:4b73) - db $0, "Are you working", $4f - db "on a #DEX?", $51 - db "PROF.OAK's AIDE", $4f - db "came by here.", $57 + text "Are you working" + line "on a #DEX?" + + page "PROF.OAK's AIDE" + line "came by here." + done _UnnamedText_4968c: ; 8cbac (23:4bac) - db $0, "EXP.ALL gives", $4f - db "EXP points to all", $55 - db "the #MON with", $55 - db "you, even if they", $55 - db "don't fight.", $51 - db "It does, however,", $4f - db "reduce the amount", $55 - db "of EXP for each", $55 - db "#MON.", $51 - db "If you don't need", $4f - db "it, you should ", $55 - db "store it via PC.", $57 + text "EXP.ALL gives" + line "EXP points to all" + next "the #MON with" + next "you, even if they" + next "don't fight." + + page "It does, however," + line "reduce the amount" + next "of EXP for each" + next "#MON." + + page "If you don't need" + line "it, you should " + next "store it via PC." + done _UnnamedText_49698: ; 8cc65 (23:4c65) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "It looks like a", $4f - db "small island!", $57 + text "Looked into the" + line "binoculars." + + page "It looks like a" + line "small island!" + done _UnnamedText_49777: ; 8cca0 (23:4ca0) - db $0, "No pedestrians", $4f - db "are allowed on", $55 - db "CYCLING ROAD!", $57 + text "No pedestrians" + line "are allowed on" + next "CYCLING ROAD!" + done _UnnamedText_4977c: ; 8cccd (23:4ccd) - db $0, "CYCLING ROAD is a", $4f - db "downhill course", $55 - db "by the sea. It's", $55 - db "a great ride.", $57 + text "CYCLING ROAD is a" + line "downhill course" + next "by the sea. It's" + next "a great ride." + done _UnnamedText_49781: ; 8cd0e (23:4d0e) - db $0, "Excuse me! Wait", $4f - db "up please!", $57 + text "Excuse me! Wait" + line "up please!" + done _Route16GateMapText2: ; 8cd2a (23:4d2a) - db $0, "How'd you get in?", $4f - db "Good effort!", $57 + text "How'd you get in?" + line "Good effort!" + done _UnnamedText_49820: ; 8cd49 (23:4d49) - db $0, "I'm going for a", $4f - db "ride with my girl", $55 - db "friend!", $57 + text "I'm going for a" + line "ride with my girl" + next "friend!" + done _UnnamedText_4982f: ; 8cd73 (23:4d73) - db $0, "We're going", $4f - db "riding together!", $57 + text "We're going" + line "riding together!" + done _UnnamedText_4983b: ; 8cd90 (23:4d90) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "It's CELADON DEPT.", $4f - db "STORE!", $57 + text "Looked into the" + line "binoculars." + + page "It's CELADON DEPT." + line "STORE!" + done _UnnamedText_49847: ; 8cdc6 (23:4dc6) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "There's a long", $4f - db "path over water!", $57 + text "Looked into the" + line "binoculars." + + page "There's a long" + line "path over water!" + done _Route16HouseText3: ; 8ce02 (23:4e02) - db $0, "Oh, you found my", $4f - db "secret retreat!", $51 - db "Please don't tell", $4f - db "anyone I'm here.", $55 - db "I'll make it up", $55 - db "to you with this!", $58 + text "Oh, you found my" + line "secret retreat!" + + page "Please don't tell" + line "anyone I'm here." + next "I'll make it up" + next "to you with this!" + prompt _ReceivedHM02Text: ; 8ce66 (23:4e66) - db $0, $52, " received", $4f - db "HM02!@@" + text $52, " received" + line "HM02!@@" _HM02ExplanationText: ; 8ce79 (23:4e79) - db $0, "HM02 is FLY.", $4f - db "It will take you", $55 - db "back to any town.", $51 - db "Put it to good", $4f - db "use!", $57 + text "HM02 is FLY." + line "It will take you" + next "back to any town." + + page "Put it to good" + line "use!" + done _HM02NoRoomText: ; 8cebe (23:4ebe) - db $0, "You don't have any", $4f - db "room for this.", $57 + text "You don't have any" + line "room for this." + done _UnnamedText_1e652: ; 8cee0 (23:4ee0) db $0, "FEAROW: Kyueen!", $57 _UnnamedText_49928: ; 8cef1 (23:4ef1) - db $0, "You need a BICYCLE", $4f - db "for CYCLING ROAD!", $57 + text "You need a BICYCLE" + line "for CYCLING ROAD!" + done _UnnamedText_4992d: ; 8cf17 (23:4f17) - db $0, "CYCLING ROAD is", $4f - db "all uphill from", $55 - db "here.", $57 + text "CYCLING ROAD is" + line "all uphill from" + next "here." + done _UnnamedText_49932: ; 8cf3e (23:4f3e) - db $0, "Excuse me!", $57 + text "Excuse me!" + done _UnnamedText_49993: ; 8cf4a (23:4f4a) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "PALLET TOWN is in", $4f - db "the west!", $57 + text "Looked into the" + line "binoculars." + + page "PALLET TOWN is in" + line "the west!" + done _UnnamedText_4999f: ; 8cf83 (23:4f83) - db $0, "Looked into the", $4f - db "binoculars.", $51 - db "There are people", $4f - db "swimming!", $57 + text "Looked into the" + line "binoculars." + + page "There are people" + line "swimming!" + done _UnnamedText_1e704: ; 8cfbb (23:4fbb) - db $0, "Only truly skilled", $4f - db "trainers are", $55 - db "allowed through.", $51 - db "You don't have the", $4f - db "BOULDERBADGE yet!@@" + text "Only truly skilled" + line "trainers are" + next "allowed through." + + page "You don't have the" + line "BOULDERBADGE yet!@@" _UnnamedText_1e715: ; 8d012 (23:5012) - db $0, $51 - db "The rules are", $4f - db "rules. I can't", $55 - db "let you pass.", $57 + text $51 + db "The rules are" + line "rules. I can't" + next "let you pass." + done _UnnamedText_1e71a: ; 8d03e (23:503e) - db $0, "Oh! That is the", $4f - db "BOULDERBADGE!", $55 - db "Go right ahead!@@" + text "Oh! That is the" + line "BOULDERBADGE!" + next "Go right ahead!@@" _VictoryRoad2BattleText6: ; 8d06e (23:506e) - db $0, "Gyaoo!@@" + text "Gyaoo!@@" _VictoryRoad2BattleText1: ; 8d077 (23:5077) - db $0, "VICTORY ROAD is", $4f - db "the final test", $55 - db "for trainers!", $57 + text "VICTORY ROAD is" + line "the final test" + next "for trainers!" + done _VictoryRoad2EndBattleText1: ; 8d0a5 (23:50a5) - db $0, "Aiyah!", $58 + text "Aiyah!" + prompt _VictoryRoad2AfterBattleText1: ; 8d0ad (23:50ad) - db $0, "If you get stuck,", $4f - db "try moving some", $55 - db "boulders around!", $57 + text "If you get stuck," + line "try moving some" + next "boulders around!" + done _VictoryRoad2BattleText2: ; 8d0e1 (23:50e1) - db $0, "Ah, so you wish", $4f - db "to challenge the", $55 - db "ELITE FOUR?", $57 + text "Ah, so you wish" + line "to challenge the" + next "ELITE FOUR?" + done _VictoryRoad2EndBattleText2: ; 8d10f (23:510f) - db $0, "You", $4f - db "got me!", $58 + text "You" + line "got me!" + prompt _VictoryRoad2AfterBattleText2: ; 8d11c (23:511c) - db $0, $53, " also came", $4f - db "through here!", $57 + text $53, " also came" + line "through here!" + done _VictoryRoad2BattleText3: ; 8d137 (23:5137) - db $0, "Come on!", $4f - db "I'll whip you!", $57 + text "Come on!" + line "I'll whip you!" + done _VictoryRoad2EndBattleText3: ; 8d14f (23:514f) - db $0, "I got", $4f - db "whipped!", $58 + text "I got" + line "whipped!" + prompt _VictoryRoad2AfterBattleText3: ; 8d15f (23:515f) - db $0, "You earned the", $4f - db "right to be on", $55 - db "VICTORY ROAD!", $57 + text "You earned the" + line "right to be on" + next "VICTORY ROAD!" + done _VictoryRoad2BattleText4: ; 8d18c (23:518c) - db $0, "If you can get", $4f - db "through here, you", $55 - db "can go meet the", $55 - db "ELITE FOUR!", $57 + text "If you can get" + line "through here, you" + next "can go meet the" + next "ELITE FOUR!" + done _VictoryRoad2EndBattleText4: ; 8d1ca (23:51ca) - db $0, "No!", $4f - db "Unbelievable!", $58 + text "No!" + line "Unbelievable!" + prompt _VictoryRoad2AfterBattleText4: ; 8d1dd (23:51dd) - db $0, "I can beat you", $4f - db "when it comes to", $55 - db "knowledge about", $55 - db "#MON!", $57 + text "I can beat you" + line "when it comes to" + next "knowledge about" + next "#MON!" + done _VictoryRoad2BattleText5: ; 8d214 (23:5214) - db $0, "Is VICTORY ROAD", $4f - db "too tough?", $57 + text "Is VICTORY ROAD" + line "too tough?" + done _VictoryRoad2EndBattleText5: ; 8d230 (23:5230) - db $0, "Well", $4f - db "done!", $58 + text "Well" + line "done!" + prompt _VictoryRoad2AfterBattleText5: ; 8d23c (23:523c) - db $0, "Many trainers give", $4f - db "up the challenge", $55 - db "here.", $57 + text "Many trainers give" + line "up the challenge" + next "here." + done _UnnamedText_1e865: ; 8d267 (23:5267) - db $0, "Hiya! I'm a", $4f - db "#MON...", $55 - db "...No I'm not!", $51 - db "Call me BILL!", $4f - db "I'm a true blue", $55 - db "#MANIAC! Hey!", $55 - db "What's with that", $55 - db "skeptical look?", $51 - db "I'm not joshing", $4f - db "you, I screwed up", $55 - db "an experiment and", $55 - db "got combined with", $55 - db "a #MON!", $51 - db "So, how about it?", $4f - db "Help me out here!", $57 + text "Hiya! I'm a" + line "#MON..." + next "...No I'm not!" + + page "Call me BILL!" + line "I'm a true blue" + next "#MANIAC! Hey!" + next "What's with that" + next "skeptical look?" + + page "I'm not joshing" + line "you, I screwed up" + next "an experiment and" + next "got combined with" + next "a #MON!" + + page "So, how about it?" + line "Help me out here!" + done _UnnamedText_1e86a: ; 8d345 (23:5345) - db $0, "When I'm in the", $4f - db "TELEPORTER, go to", $55 - db "my PC and run the", $55 - db "Cell Separation", $55 - db "System!", $57 + text "When I'm in the" + line "TELEPORTER, go to" + next "my PC and run the" + next "Cell Separation" + next "System!" + done _UnnamedText_1e86f: ; 8d391 (23:5391) - db $0, "No!? Come on, you", $4f - db "gotta help a guy", $55 - db "in deep trouble!", $51 - db "What do you say,", $4f - db "chief? Please?", $55 - db "OK? All right!", $58 + text "No!? Come on, you" + line "gotta help a guy" + next "in deep trouble!" + + page "What do you say," + line "chief? Please?" + next "OK? All right!" + prompt _BillThankYouText: ; 8d3f5 (23:53f5) db $0, "BILL: Yeehah!", $4f @@ -120358,27 +121322,30 @@ _BillThankYouText: ; 8d3f5 (23:53f5) db "maybe this'll do.", $58 _SSTicketReceivedText: ; 8d499 (23:5499) - db $0, $52, " received", $4f - db "an @" + text $52, " received" + line "an @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _SSTicketNoRoomText: ; 8d4b0 (23:54b0) - db $0, "You've got too", $4f - db "much stuff, bud!", $57 + text "You've got too" + line "much stuff, bud!" + done _UnnamedText_1e8cb: ; 8d4d0 (23:54d0) - db $0, "That cruise ship,", $4f - db "S.S.ANNE, is in", $55 - db "VERMILION CITY.", $55 - db "Its passengers", $55 - db "are all trainers!", $51 - db "They invited me", $4f - db "to their party,", $55 - db "but I can't stand", $55 - db "fancy do's. Why", $55 - db "don't you go", $55 - db "instead of me?", $57 + text "That cruise ship," + line "S.S.ANNE, is in" + next "VERMILION CITY." + next "Its passengers" + next "are all trainers!" + + page "They invited me" + line "to their party," + next "but I can't stand" + next "fancy do's. Why" + next "don't you go" + next "instead of me?" + done _UnnamedText_1e8da: ; 8d57f (23:557f) db $0, "BILL: Look, bud,", $4f @@ -120387,15 +121354,18 @@ _UnnamedText_1e8da: ; 8d57f (23:557f) db "#MON on my PC!", $57 _Route1ViridianMartSampleText: ; 8d5bf (23:55bf) - db $0, "Hi! I work at a", $4f - db "#MON MART.", $51 - db "It's a convenient", $4f - db "shop, so please", $55 - db "visit us in", $55 - db "VIRIDIAN CITY.", $51 - db "I know, I'll give", $4f - db "you a sample!", $55 - db "Here you go!", $58 + text "Hi! I work at a" + line "#MON MART." + + page "It's a convenient" + line "shop, so please" + next "visit us in" + next "VIRIDIAN CITY." + + page "I know, I'll give" + line "you a sample!" + next "Here you go!" + prompt _UnnamedText_1cae8: ; 8d643 (23:5643) db $0, $52, " got", $4f @@ -120403,1959 +121373,2422 @@ _UnnamedText_1cae8: ; 8d643 (23:5643) UnnamedText_8d64b: ; 8d64b (23:564b) TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_1caee: ; 8d652 (23:5652) - db $0, "We also carry", $4f - db "# BALLs for", $55 - db "catching #MON!", $57 + text "We also carry" + line "# BALLs for" + next "catching #MON!" + done _UnnamedText_1caf3: ; 8d67c (23:567c) - db $0, "You have too much", $4f - db "stuff with you!", $57 + text "You have too much" + line "stuff with you!" + done _Route1Text2: ; 8d69f (23:569f) - db $0, "See those ledges", $4f - db "along the road?", $51 - db "It's a bit scary,", $4f - db "but you can jump", $55 - db "from them.", $51 - db "You can get back", $4f - db "to PALLET TOWN", $55 - db "quicker that way.", $57 + text "See those ledges" + line "along the road?" + + page "It's a bit scary," + line "but you can jump" + next "from them." + + page "You can get back" + line "to PALLET TOWN" + next "quicker that way." + done _Route1Text3: ; 8d720 (23:5720) - db $0, "ROUTE 1", $4f - db "PALLET TOWN -", $55 - db "VIRIDIAN CITY", $57 + text "ROUTE 1" + line "PALLET TOWN -" + next "VIRIDIAN CITY" + done _Route2Text3: ; 8d745 (23:5745) - db $0, "ROUTE 2", $4f - db "VIRIDIAN CITY -", $55 - db "PEWTER CITY", $57 + text "ROUTE 2" + line "VIRIDIAN CITY -" + next "PEWTER CITY" + done _Route2Text4: ; 8d76a (23:576a) - db $0, "DIGLETT's CAVE", $57 + text "DIGLETT's CAVE" + done _Route3Text1: ; 8d779 (23:5779) - db $0, "Whew... I better", $4f - db "take a rest...", $55 - db "Groan...", $51 - db "That tunnel from", $4f - db "CERULEAN takes a", $55 - db "lot out of you!", $57 + text "Whew... I better" + line "take a rest..." + next "Groan..." + + page "That tunnel from" + line "CERULEAN takes a" + next "lot out of you!" + done _Route3BattleText1: ; 8d7d5 (23:57d5) - db $0, "Hey! I met you in", $4f - db "VIRIDIAN FOREST!", $57 + text "Hey! I met you in" + line "VIRIDIAN FOREST!" + done _Route3EndBattleText1: ; 8d7f9 (23:57f9) - db $0, "You", $4f - db "beat me again!", $58 + text "You" + line "beat me again!" + prompt _Route3AfterBattleText1: ; 8d80d (23:580d) - db $0, "There are other", $4f - db "kinds of #MON", $55 - db "than those found", $55 - db "in the forest!", $57 + text "There are other" + line "kinds of #MON" + next "than those found" + next "in the forest!" + done _Route3BattleText2: ; 8d84c (23:584c) - db $0, "Hi! I like shorts!", $4f - db "They're comfy and", $55 - db "easy to wear!", $57 + text "Hi! I like shorts!" + line "They're comfy and" + next "easy to wear!" + done _Route3EndBattleText2: ; 8d87f (23:587f) - db $0, "I don't", $4f - db "believe it!", $58 + text "I don't" + line "believe it!" + prompt _Route3AfterBattleText2: ; 8d893 (23:5893) - db $0, "Are you storing", $4f - db "your #MON on", $55 - db "PC? Each BOX can", $55 - db "hold 20 #MON!", $57 + text "Are you storing" + line "your #MON on" + next "PC? Each BOX can" + next "hold 20 #MON!" + done _Route3BattleText3: ; 8d8d0 (23:58d0) - db $0, "You looked at me,", $4f - db "didn't you?", $57 + text "You looked at me," + line "didn't you?" + done _Route3EndBattleText3: ; 8d8ee (23:58ee) - db $0, "You're", $4f - db "mean!", $58 + text "You're" + line "mean!" + prompt _Route3AfterBattleText3: ; 8d8fb (23:58fb) - db $0, "Quit staring if", $4f - db "you don't want to", $55 - db "fight!", $57 + text "Quit staring if" + line "you don't want to" + next "fight!" + done _Route3BattleText4: ; 8d924 (23:5924) - db $0, "Are you a trainer?", $4f - db "Let's fight!", $57 + text "Are you a trainer?" + line "Let's fight!" + done _Route3EndBattleText4: ; 8d944 (23:5944) - db $0, "If I", $4f - db "had new #MON I", $55 - db "would've won!", $58 + text "If I" + line "had new #MON I" + next "would've won!" + prompt _Route3AfterBattleText4: ; 8d966 (23:5966) - db $0, "If a #MON BOX", $4f - db "on the PC gets", $55 - db "full, just switch", $55 - db "to another BOX!", $57 + text "If a #MON BOX" + line "on the PC gets" + next "full, just switch" + next "to another BOX!" + done _Route3BattleText5: ; 8d9a6 (23:59a6) - db $0, "That look you", $4f - db "gave me, it's so", $55 - db "intriguing!", $57 + text "That look you" + line "gave me, it's so" + next "intriguing!" + done _Route3EndBattleText5: ; 8d9d1 (23:59d1) - db $0, "Be nice!", $58 + text "Be nice!" + prompt _Route3AfterBattleText5: ; 8d9db (23:59db) - db $0, "Avoid fights by", $4f - db "not letting", $55 - db "people see you!", $57 + text "Avoid fights by" + line "not letting" + next "people see you!" + done _Route3BattleText6: ; 8da08 (23:5a08) - db $0, "Hey! You're not", $4f - db "wearing shorts!", $57 + text "Hey! You're not" + line "wearing shorts!" + done _Route3EndBattleText6: ; 8da28 (23:5a28) - db $0, "Lost!", $4f - db "Lost! Lost!", $58 + text "Lost!" + line "Lost! Lost!" + prompt _Route3AfterBattleText6: ; 8da3b (23:5a3b) - db $0, "I always wear", $4f - db "shorts, even in", $55 - db "winter!", $57 + text "I always wear" + line "shorts, even in" + next "winter!" + done _Route3BattleText7: ; 8da62 (23:5a62) - db $0, "You can fight my", $4f - db "new #MON!", $57 + text "You can fight my" + line "new #MON!" + done _Route3EndBattleText7: ; 8da7e (23:5a7e) - db $0, "Done", $4f - db "like dinner!", $58 + text "Done" + line "like dinner!" + prompt _Route3AfterBattleText7: ; 8da91 (23:5a91) - db $0, "Trained #MON", $4f - db "are stronger than", $55 - db "the wild ones!", $57 + text "Trained #MON" + line "are stronger than" + next "the wild ones!" + done _Route3BattleText8: ; 8dac0 (23:5ac0) - db $0, "Eek! Did you", $4f - db "touch me?", $57 + text "Eek! Did you" + line "touch me?" + done _Route3EndBattleText8: ; 8dad8 (23:5ad8) - db $0, "That's it?", $58 + text "That's it?" + prompt _Route3AfterBattleText8: ; 8dae3 (23:5ae3) - db $0, "ROUTE 4 is at the", $4f - db "foot of MT.MOON.", $57 + text "ROUTE 4 is at the" + line "foot of MT.MOON." + done _Route3Text10: ; 8db07 (23:5b07) - db $0, "ROUTE 3", $4f - db "MT.MOON AHEAD", $57 + text "ROUTE 3" + line "MT.MOON AHEAD" + done _Route4Text1: ; 8db1e (23:5b1e) - db $0, "Ouch! I tripped", $4f - db "over a rocky", $55 - db "#MON, GEODUDE!", $57 + text "Ouch! I tripped" + line "over a rocky" + next "#MON, GEODUDE!" + done _Route4BattleText1: ; 8db4b (23:5b4b) - db $0, "I came to get my", $4f - db "mushroom #MON!", $57 + text "I came to get my" + line "mushroom #MON!" + done _Route4EndBattleText1: ; 8db6c (23:5b6c) - db $0, "Oh! My cute", $4f - db "mushroom #MON!", $58 + text "Oh! My cute" + line "mushroom #MON!" + prompt _Route4AfterBattleText1: ; 8db88 (23:5b88) - db $0, "There might not", $4f - db "be any more", $55 - db "mushrooms here.", $51 - db "I think I got", $4f - db "them all.", $57 + text "There might not" + line "be any more" + next "mushrooms here." + + page "I think I got" + line "them all." + done _Route4Text5: ; 8dbcd (23:5bcd) - db $0, "MT.MOON", $4f - db "Tunnel Entrance", $57 + text "MT.MOON" + line "Tunnel Entrance" + done _Route4Text6: ; 8dbe6 (23:5be6) - db $0, "ROUTE 4", $4f - db "MT.MOON -", $55 - db "CERULEAN CITY", $57 + text "ROUTE 4" + line "MT.MOON -" + next "CERULEAN CITY" + done _Route5Text1: ; 8dc07 (23:5c07) - db $0, "UNDERGROUND PATH", $4f - db "CERULEAN CITY -", $55 - db "VERMILION CITY", $57 + text "UNDERGROUND PATH" + line "CERULEAN CITY -" + next "VERMILION CITY" + done _Route6BattleText1: ; 8dc38 (23:5c38) - db $0, "Who's there?", $4f - db "Quit listening in", $55 - db "on us!", $57 + text "Who's there?" + line "Quit listening in" + next "on us!" + done _Route6EndBattleText1: ; 8dc5e (23:5c5e) - db $0, "I", $4f - db "just can't win!", $58 + text "I" + line "just can't win!" + prompt _Route6AfterBattleText1: ; 8dc70 (23:5c70) - db $0, "Whisper...", $4f - db "whisper...", $57 + text "Whisper..." + line "whisper..." + done _Route6BattleText2: ; 8dc87 (23:5c87) - db $0, "Excuse me! This", $4f - db "is a private", $55 - db "conversation!", $57 + text "Excuse me! This" + line "is a private" + next "conversation!" + done _Route6EndBattleText2: ; 8dcb3 (23:5cb3) - db $0, "Ugh!", $4f - db "I hate losing!", $58 + text "Ugh!" + line "I hate losing!" + prompt _Route6BattleText3: ; 8dcc8 (23:5cc8) - db $0, "There aren't many", $4f - db "bugs out here.", $57 + text "There aren't many" + line "bugs out here." + done _Route6EndBattleText3: ; 8dce9 (23:5ce9) - db $0, "No!", $4f - db "You're kidding!", $58 + text "No!" + line "You're kidding!" + prompt _Route6AfterBattleText3: ; 8dcfd (23:5cfd) - db $0, "I like bugs, so", $4f - db "I'm going back to", $55 - db "VIRIDIAN FOREST.", $57 + text "I like bugs, so" + line "I'm going back to" + next "VIRIDIAN FOREST." + done _Route6BattleText4: ; 8dd30 (23:5d30) - db $0, "Huh? You want", $4f - db "to talk to me?", $57 + text "Huh? You want" + line "to talk to me?" + done _Route6EndBattleText4: ; 8dd4e (23:5d4e) - db $0, "I", $4f - db "didn't start it!", $58 + text "I" + line "didn't start it!" + prompt _Route6AfterBattleText4: ; 8dd61 (23:5d61) - db $0, "I should carry", $4f - db "more #MON with", $55 - db "me for safety.", $57 + text "I should carry" + line "more #MON with" + next "me for safety." + done _Route6BattleText5: ; 8dd8f (23:5d8f) - db $0, "Me? Well, OK.", $4f - db "I'll play!", $57 + text "Me? Well, OK." + line "I'll play!" + done _Route6EndBattleText5: ; 8dda8 (23:5da8) - db $0, "Just", $4f - db "didn't work!", $58 + text "Just" + line "didn't work!" + prompt _Route6AfterBattleText5: ; 8ddba (23:5dba) - db $0, "I want to get", $4f - db "stronger! What's", $55 - db "your secret?", $57 + text "I want to get" + line "stronger! What's" + next "your secret?" + done _Route6BattleText6: ; 8dde6 (23:5de6) - db $0, "I've never seen", $4f - db "you around!", $55 - db "Are you good?", $57 + text "I've never seen" + line "you around!" + next "Are you good?" + done _Route6EndBattleText6: ; 8de10 (23:5e10) - db $0, "You", $4f - db "are too good!", $58 + text "You" + line "are too good!" + prompt _Route6AfterBattleText6: ; 8de23 (23:5e23) - db $0, "Are my #MON", $4f - db "weak? Or, am I", $55 - db "just bad?", $57 + text "Are my #MON" + line "weak? Or, am I" + next "just bad?" + done _Route6Text7: ; 8de49 (23:5e49) - db $0, "UNDERGROUND PATH", $4f - db "CERULEAN CITY -", $55 - db "VERMILION CITY", $57 + text "UNDERGROUND PATH" + line "CERULEAN CITY -" + next "VERMILION CITY" + done _Route7Text1: ; 8de7a (23:5e7a) - db $0, "UNDERGROUND PATH", $4f - db "CELADON CITY -", $55 - db "LAVENDER TOWN", $57 + text "UNDERGROUND PATH" + line "CELADON CITY -" + next "LAVENDER TOWN" + done _Route8BattleText1: ; 8dea9 (23:5ea9) - db $0, "You look good at", $4f - db "#MON, but", $55 - db "how's your chem?", $57 + text "You look good at" + line "#MON, but" + next "how's your chem?" + done _Route8EndBattleText1: ; 8ded5 (23:5ed5) - db $0, "Ow!", $4f - db "Meltdown!", $58 + text "Ow!" + line "Meltdown!" + prompt _Route8AfterBattleText1: ; 8dee4 (23:5ee4) - db $0, "I am better at", $4f - db "school than this!", $57 + text "I am better at" + line "school than this!" + done _Route8BattleText2: ; 8df06 (23:5f06) - db $0, "All right! Let's", $4f - db "roll the dice!", $57 + text "All right! Let's" + line "roll the dice!" + done _Route8EndBattleText2: ; 8df26 (23:5f26) - db $0, "Drat!", $4f - db "Came up short!", $58 + text "Drat!" + line "Came up short!" + prompt _Route8AfterBattleText2: ; 8df3c (23:5f3c) - db $0, "Lady Luck's not", $4f - db "with me today!", $57 + text "Lady Luck's not" + line "with me today!" + done _Route8BattleText3: ; 8df5b (23:5f5b) - db $0, "You need strategy", $4f - db "to win at this!", $57 + text "You need strategy" + line "to win at this!" + done _Route8EndBattleText3: ; 8df7e (23:5f7e) - db $0, "It's", $4f - db "not logical!", $58 + text "It's" + line "not logical!" + prompt _Route8AfterBattleText3: ; 8df90 (23:5f90) - db $0, "Go with GRIMER", $4f - db "first...and...", $55 - db "...and...then...", $57 + text "Go with GRIMER" + line "first...and..." + next "...and...then..." + done _Route8BattleText4: ; 8dfc0 (23:5fc0) - db $0, "I like NIDORAN, so", $4f - db "I collect them!", $57 + text "I like NIDORAN, so" + line "I collect them!" + done _Route8EndBattleText4: ; 8dfe4 (23:5fe4) - db $0, "Why? Why??", $58 + text "Why? Why??" + prompt _Route8AfterBattleText4: ; 8dff0 (23:5ff0) - db $0, "When #MON grow", $4f - db "up they get ugly!", $55 - db "They shouldn't", $55 - db "evolve!", $57 + text "When #MON grow" + line "up they get ugly!" + next "They shouldn't" + next "evolve!" + done _Route8BattleText5: ; 8e028 (23:6028) - db $0, "School is fun, but", $4f - db "so are #MON.", $57 + text "School is fun, but" + line "so are #MON." + done _Route8EndBattleText5: ; 8e049 (23:6049) - db $0, "I'll", $4f - db "stay with school.", $58 + text "I'll" + line "stay with school." + prompt _Route8AfterBattleText5: ; 8e060 (23:6060) - db $0, "We're stuck here", $4f - db "because of the", $55 - db "gates at SAFFRON.", $57 + text "We're stuck here" + line "because of the" + next "gates at SAFFRON." + done _Route8BattleText6: ; 8e092 (23:6092) - db $0, "MEOWTH is so cute,", $4f - db "meow, meow, meow!", $57 + text "MEOWTH is so cute," + line "meow, meow, meow!" + done _Route8EndBattleText6: ; 8e0b8 (23:60b8) - db $0, "Meow!", $58 + text "Meow!" + prompt _Route8AfterBattleText6: ; 8e0bf (23:60bf) - db $0, "I think PIDGEY", $4f - db "and RATTATA", $55 - db "are cute too!", $57 + text "I think PIDGEY" + line "and RATTATA" + next "are cute too!" + done _Route8BattleText7: ; 8e0e9 (23:60e9) - db $0, "We must look", $4f - db "silly standing", $55 - db "here like this!", $57 + text "We must look" + line "silly standing" + next "here like this!" + done _Route8EndBattleText7: ; 8e116 (23:6116) - db $0, "Look what", $4f - db "you did!", $58 + text "Look what" + line "you did!" + prompt _Route8AfterBattleText7: ; 8e12a (23:612a) - db $0, "SAFFRON's gate", $4f - db "keeper won't let", $55 - db "us through.", $55 - db "He's so mean!", $57 + text "SAFFRON's gate" + line "keeper won't let" + next "us through." + next "He's so mean!" + done _Route8BattleText8: ; 8e162 (23:6162) - db $0, "I'm a rambling,", $4f - db "gambling dude!", $57 + text "I'm a rambling," + line "gambling dude!" + done _Route8EndBattleText8: ; 8e181 (23:6181) - db $0, "Missed", $4f - db "the big score!", $58 + text "Missed" + line "the big score!" + prompt _Route8AfterBattleText8: ; 8e198 (23:6198) - db $0, "Gambling and", $4f - db "#MON are like", $55 - db "eating peanuts!", $55 - db "Just can't stop!", $57 + text "Gambling and" + line "#MON are like" + next "eating peanuts!" + next "Just can't stop!" + done _Route8BattleText9: ; 8e1d4 (23:61d4) - db $0, "What's a cute,", $4f - db "round and fluffy", $55 - db "#MON?", $57 + text "What's a cute," + line "round and fluffy" + next "#MON?" + done _Route8EndBattleText9: ; 8e1fa (23:61fa) - db $0, "Stop!", $51 - db "Don't be so mean", $4f - db "to my CLEFAIRY!", $58 + text "Stop!" + + page "Don't be so mean" + line "to my CLEFAIRY!" + prompt _Route8AfterBattleText9: ; 8e221 (23:6221) - db $0, "I heard that", $4f - db "CLEFAIRY evolves", $55 - db "when it's exposed", $55 - db "to a MOON STONE.", $57 + text "I heard that" + line "CLEFAIRY evolves" + next "when it's exposed" + next "to a MOON STONE." + done _Route8Text10: ; 8e262 (23:6262) - db $0, "UNDERGROUND PATH", $4f - db "CELADON CITY -", $55 - db "LAVENDER TOWN", $57 + text "UNDERGROUND PATH" + line "CELADON CITY -" + next "LAVENDER TOWN" + done _Route9BattleText1: ; 8e291 (23:6291) - db $0, "You have #MON", $4f - db "with you!", $55 - db "You're mine!", $57 + text "You have #MON" + line "with you!" + next "You're mine!" + done _Route9EndBattleText1: ; 8e2b6 (23:62b6) - db $0, "You", $4f - db "deceived me!", $58 + text "You" + line "deceived me!" + prompt _Route9AfterBattleText1: ; 8e2c8 (23:62c8) - db $0, "You need light to", $4f - db "get through that", $55 - db "dark tunnel ahead.", $57 + text "You need light to" + line "get through that" + next "dark tunnel ahead." + done _Route9BattleText2: ; 8e2ff (23:62ff) - db $0, "Who's that walking", $4f - db "with those good", $55 - db "looking #MON?", $57 + text "Who's that walking" + line "with those good" + next "looking #MON?" + done _Route9EndBattleText2: ; 8e330 (23:6330) - db $0, "Out", $4f - db "like a light!", $58 + text "Out" + line "like a light!" + prompt _Route9AfterBattleText2: ; 8e343 (23:6343) - db $0, "Keep walking!", $57 + text "Keep walking!" + done _Route9BattleText3: ; 8e352 (23:6352) - db $0, "I'm taking ROCK", $4f - db "TUNNEL to go to", $55 - db "LAVENDER...", $57 + text "I'm taking ROCK" + line "TUNNEL to go to" + next "LAVENDER..." + done _Route9EndBattleText3: ; 8e37e (23:637e) - db $0, "Can't", $4f - db "measure up!", $58 + text "Can't" + line "measure up!" + prompt _Route9AfterBattleText3: ; 8e390 (23:6390) - db $0, "Are you off to", $4f - db "ROCK TUNNEL too?", $57 + text "Are you off to" + line "ROCK TUNNEL too?" + done _Route9BattleText4: ; 8e3b1 (23:63b1) - db $0, "Don't you dare", $4f - db "condescend me!", $57 + text "Don't you dare" + line "condescend me!" + done _Route9EndBattleText4: ; 8e3cf (23:63cf) - db $0, "No!", $4f - db "You're too much!", $58 + text "No!" + line "You're too much!" + prompt _Route9AfterBattleText4: ; 8e3e4 (23:63e4) - db $0, "You're obviously", $4f - db "talented! Good", $55 - db "luck to you!", $57 + text "You're obviously" + line "talented! Good" + next "luck to you!" + done _Route9BattleText5: ; 8e411 (23:6411) - db $0, "Bwahaha!", $4f - db "Great! I was", $55 - db "bored, eh!", $57 + text "Bwahaha!" + line "Great! I was" + next "bored, eh!" + done _Route9EndBattleText5: ; 8e433 (23:6433) - db $0, "Keep it", $4f - db "coming, eh!", $51 - db "Oh wait. I'm out", $4f - db "of #MON!", $58 + text "Keep it" + line "coming, eh!" + + page "Oh wait. I'm out" + line "of #MON!" + prompt _Route9AfterBattleText5: ; 8e461 (23:6461) - db $0, "You sure had guts", $4f - db "standing up to me", $55 - db "there, eh?", $57 + text "You sure had guts" + line "standing up to me" + next "there, eh?" + done _Route9BattleText6: ; 8e491 (23:6491) - db $0, "Hahaha!", $4f - db "Aren't you a", $55 - db "little toughie!", $57 + text "Hahaha!" + line "Aren't you a" + next "little toughie!" + done _Route9EndBattleText6: ; 8e4b6 (23:64b6) - db $0, "What's", $4f - db "that?", $58 + text "What's" + line "that?" + prompt _Route9AfterBattleText6: ; 8e4c3 (23:64c3) - db $0, "Hahaha! Kids", $4f - db "should be tough!", $57 + text "Hahaha! Kids" + line "should be tough!" + done _Route9BattleText7: ; 8e4e2 (23:64e2) - db $0, "I got up early", $4f - db "every day to", $55 - db "raise my #MON", $55 - db "from cocoons!", $57 + text "I got up early" + line "every day to" + next "raise my #MON" + next "from cocoons!" + done _Route9EndBattleText7: ; 8e51b (23:651b) - db $0, "WHAT?", $51 - db "What a total", $4f - db "waste of time!", $58 + text "WHAT?" + + page "What a total" + line "waste of time!" + prompt _Route9AfterBattleText7: ; 8e53e (23:653e) - db $0, "I have to collect", $4f - db "more than bugs to", $55 - db "get stronger...", $57 + text "I have to collect" + line "more than bugs to" + next "get stronger..." + done _Route9BattleText8: ; 8e573 (23:6573) - db $0, "Hahahaha!", $4f - db "Come on, dude!", $57 + text "Hahahaha!" + line "Come on, dude!" + done _Route9EndBattleText8: ; 8e58d (23:658d) - db $0, "Hahahaha!", $4f - db "You beat me fair!", $58 + text "Hahahaha!" + line "You beat me fair!" + prompt _Route9AfterBattleText8: ; 8e5aa (23:65aa) - db $0, "Hahahaha!", $4f - db "Us hearty guys", $55 - db "always laugh!", $57 + text "Hahahaha!" + line "Us hearty guys" + next "always laugh!" + done _Route9BattleText9: ; 8e5d2 (23:65d2) - db $0, "Go, my super bug", $4f - db "#MON!", $57 + text "Go, my super bug" + line "#MON!" + done _Route9EndBattleText9: ; 8e5ea (23:65ea) - db $0, "My", $4f - db "bugs...", $58 + text "My" + line "bugs..." + prompt _Route9AfterBattleText9: ; 8e5f6 (23:65f6) - db $0, "If you don't like", $4f - db "bug #MON, you", $55 - db "bug me!", $57 + text "If you don't like" + line "bug #MON, you" + next "bug me!" + done _Route9Text11: ; 8e61e (23:661e) - db $0, "ROUTE 9", $4f - db "CERULEAN CITY-", $55 - db "ROCK TUNNEL", $57 + text "ROUTE 9" + line "CERULEAN CITY-" + next "ROCK TUNNEL" + done _Route10BattleText1: ; 8e642 (23:6642) - db $0, "Wow, are you a", $4f - db "#MANIAC too?", $55 - db "Want to see my", $55 - db "collection?", $57 + text "Wow, are you a" + line "#MANIAC too?" + next "Want to see my" + next "collection?" + done _Route10EndBattleText1: ; 8e67a (23:667a) - db $0, "Humph.", $4f - db "I'm not angry!", $58 + text "Humph." + line "I'm not angry!" + prompt _Route10AfterBattleText1: ; 8e690 (23:6690) - db $0, "I have more rare", $4f - db "#MON at home!", $57 + text "I have more rare" + line "#MON at home!" + done _Route10BattleText2: ; 8e6b0 (23:66b0) - db $0, "Ha-hahah-ah-ha!", $57 + text "Ha-hahah-ah-ha!" + done _Route10EndBattleText2: ; 8e6c1 (23:66c1) - db $0, "Ha-haha!", $4f - db "Not laughing!", $55 - db "Ha-hay fever!", $55 - db "Haha-ha-choo!", $58 + text "Ha-haha!" + line "Not laughing!" + next "Ha-hay fever!" + next "Haha-ha-choo!" + prompt _Route10AfterBattleText2: ; 8e6f5 (23:66f5) - db $0, "Haha-ha-choo!", $4f - db "Ha-choo!", $55 - db "Snort! Snivel!", $57 + text "Haha-ha-choo!" + line "Ha-choo!" + next "Snort! Snivel!" + done _Route10BattleText3: ; 8e71c (23:671c) - db $0, "Hi kid, want to", $4f - db "see my #MON?", $57 + text "Hi kid, want to" + line "see my #MON?" + done _Route10EndBattleText3: ; 8e73a (23:673a) - db $0, "Oh no!", $4f - db "My #MON!", $58 + text "Oh no!" + line "My #MON!" + prompt _Route10AfterBattleText3: ; 8e74b (23:674b) - db $0, "I don't like you", $4f - db "for beating me!", $57 + text "I don't like you" + line "for beating me!" + done _Route10BattleText4: ; 8e76c (23:676c) - db $0, "I've been to a", $4f - db "#MON GYM a few", $55 - db "times. But, I", $55 - db "lost each time.", $57 + text "I've been to a" + line "#MON GYM a few" + next "times. But, I" + next "lost each time." + done _Route10EndBattleText4: ; 8e7a8 (23:67a8) - db $0, "Ohh!", $4f - db "Blew it again!", $58 + text "Ohh!" + line "Blew it again!" + prompt _Route10AfterBattleText4: ; 8e7bd (23:67bd) - db $0, "I noticed some", $4f - db "#MANIACs", $55 - db "prowling around.", $57 + text "I noticed some" + line "#MANIACs" + next "prowling around." + done _Route10BattleText5: ; 8e7e7 (23:67e7) - db $0, "Ah! This mountain", $4f - db "air is delicious!", $57 + text "Ah! This mountain" + line "air is delicious!" + done _Route10EndBattleText5: ; 8e80c (23:680c) - db $0, "That", $4f - db "cleared my head!", $58 + text "That" + line "cleared my head!" + prompt _Route10AfterBattleText5: ; 8e823 (23:6823) - db $0, "I feel bloated on", $4f - db "mountain air!", $57 + text "I feel bloated on" + line "mountain air!" + done _Route10BattleText6: ; 8e844 (23:6844) - db $0, "I'm feeling a bit", $4f - db "faint from this", $55 - db "tough hike.", $57 + text "I'm feeling a bit" + line "faint from this" + next "tough hike." + done _Route10EndBattleText6: ; 8e872 (23:6872) - db $0, "I'm", $4f - db "not up to it!", $58 + text "I'm" + line "not up to it!" + prompt _Route10AfterBattleText6: ; 8e884 (23:6884) - db $0, "The #MON here", $4f - db "are so chunky!", $55 - db "There should be a", $55 - db "pink one with a", $55 - db "floral pattern!", $57 + text "The #MON here" + line "are so chunky!" + next "There should be a" + next "pink one with a" + next "floral pattern!" + done _Route10Text9: ; 8e8d4 (23:68d4) _Route10Text7: ; 8e8d4 (23:68d4) - db $0, "ROCK TUNNEL", $57 + text "ROCK TUNNEL" + done _Route10Text10: ; 8e8e1 (23:68e1) - db $0, "POWER PLANT", $57 + text "POWER PLANT" + done _Route11BattleText1: ; 8e8ee (23:68ee) - db $0, "Win, lose or draw!", $57 + text "Win, lose or draw!" + done _Route11EndBattleText1: ; 8e902 (23:6902) - db $0, "Atcha!", $4f - db "Didn't go my way!", $58 + text "Atcha!" + line "Didn't go my way!" + prompt _Route11AfterBattleText1: ; 8e91b (23:691b) - db $0, "#MON is life!", $4f - db "And to live is to", $55 - db "gamble!", $57 + text "#MON is life!" + line "And to live is to" + next "gamble!" + done _Route11BattleText2: ; 8e944 (23:6944) - db $0, "Competition! I", $4f - db "can't get enough!", $57 + text "Competition! I" + line "can't get enough!" + done _Route11EndBattleText2: ; 8e965 (23:6965) - db $0, "I had", $4f - db "a chance!", $58 + text "I had" + line "a chance!" + prompt _Route11AfterBattleText2: ; 8e976 (23:6976) - db $0, "You can't be a", $4f - db "coward in the", $55 - db "world of #MON!", $57 + text "You can't be a" + line "coward in the" + next "world of #MON!" + done _Route11BattleText3: ; 8e9a2 (23:69a2) - db $0, "Let's go, but", $4f - db "don't cheat!", $57 + text "Let's go, but" + line "don't cheat!" + done _Route11EndBattleText3: ; 8e9bc (23:69bc) - db $0, "Huh?", $4f - db "That's not right!", $58 + text "Huh?" + line "That's not right!" + prompt _Route11AfterBattleText3: ; 8e9d3 (23:69d3) - db $0, "I did my best! I", $4f - db "have no regrets!", $57 + text "I did my best! I" + line "have no regrets!" + done _Route11BattleText4: ; 8e9f6 (23:69f6) - db $0, "Careful!", $4f - db "I'm laying down", $55 - db "some cables!", $57 + text "Careful!" + line "I'm laying down" + next "some cables!" + done _Route11EndBattleText4: ; 8ea1c (23:6a1c) - db $0, "That", $4f - db "was electric!", $58 + text "That" + line "was electric!" + prompt _Route11AfterBattleText4: ; 8ea30 (23:6a30) - db $0, "Spread the word", $4f - db "to save energy!", $57 + text "Spread the word" + line "to save energy!" + done _Route11BattleText5: ; 8ea51 (23:6a51) - db $0, "I just became a", $4f - db "trainer! But, I", $55 - db "think I can win!", $57 + text "I just became a" + line "trainer! But, I" + next "think I can win!" + done _Route11EndBattleText5: ; 8ea83 (23:6a83) - db $0, "My", $4f - db "#MON couldn't!", $58 + text "My" + line "#MON couldn't!" + prompt _Route11AfterBattleText5: ; 8ea95 (23:6a95) - db $0, "What do you want?", $4f - db "Leave me alone!", $57 + text "What do you want?" + line "Leave me alone!" + done _Route11BattleText6: ; 8eab8 (23:6ab8) - db $0, "Fwahaha! I have", $4f - db "never lost!", $57 + text "Fwahaha! I have" + line "never lost!" + done _Route11EndBattleText6: ; 8ead5 (23:6ad5) - db $0, "My", $4f - db "first loss!", $58 + text "My" + line "first loss!" + prompt _Route11AfterBattleText6: ; 8eae5 (23:6ae5) - db $0, "Luck of the draw!", $4f - db "Just luck!", $57 + text "Luck of the draw!" + line "Just luck!" + done _Route11BattleText7: ; 8eb03 (23:6b03) - db $0, "I have never won", $4f - db "before...", $57 + text "I have never won" + line "before..." + done _Route11EndBattleText7: ; 8eb1f (23:6b1f) - db $0, "I saw", $4f - db "this coming...", $58 + text "I saw" + line "this coming..." + prompt _Route11AfterBattleText7: ; 8eb35 (23:6b35) - db $0, "It's just luck.", $4f - db "Luck of the draw.", $57 + text "It's just luck." + line "Luck of the draw." + done _Route11BattleText8: ; 8eb57 (23:6b57) - db $0, "I'm the best in", $4f - db "my class!", $57 + text "I'm the best in" + line "my class!" + done _Route11EndBattleText8: ; 8eb71 (23:6b71) - db $0, "Darn!", $4f - db "I need to make my", $55 - db "#MON stronger!", $58 + text "Darn!" + line "I need to make my" + next "#MON stronger!" + prompt _Route11AfterBattleText8: ; 8eb99 (23:6b99) - db $0, "There's a fat", $4f - db "#MON that", $55 - db "comes down from", $55 - db "the mountains.", $51 - db "It's strong if", $4f - db "you can get it.", $57 + text "There's a fat" + line "#MON that" + next "comes down from" + next "the mountains." + + page "It's strong if" + line "you can get it." + done _Route11BattleText9: ; 8ebee (23:6bee) - db $0, "Watch out for", $4f - db "live wires!", $57 + text "Watch out for" + line "live wires!" + done SECTION "bank24",ROMX,BANK[$24] _Route11EndBattleText9: ; 90000 (24:4000) - db $0, "Whoa!", $4f - db "You spark plug!", $58 + text "Whoa!" + line "You spark plug!" + prompt _Route11AfterBattleText9: ; 90017 (24:4017) - db $0, "Well, better get", $4f - db "back to work.", $57 + text "Well, better get" + line "back to work." + done _Route11BattleText10: ; 90037 (24:4037) - db $0, "My #MON should", $4f - db "be ready by now!", $57 + text "My #MON should" + line "be ready by now!" + done _Route11EndBattleText10: ; 90058 (24:4058) - db $0, "Too", $4f - db "much, too young!", $58 + text "Too" + line "much, too young!" + prompt _Route11AfterBattleText10: ; 9006e (24:406e) - db $0, "I better go find", $4f - db "stronger ones!", $57 + text "I better go find" + line "stronger ones!" + done _Route11Text11: ; 9008f (24:408f) - db $0, "DIGLETT's CAVE", $57 + text "DIGLETT's CAVE" + done _Route12Text1: ; 9009e (24:409e) - db $0, "A sleeping #MON", $4f - db "blocks the way!", $57 + text "A sleeping #MON" + line "blocks the way!" + done _UnnamedText_596eb: ; 900bf (24:40bf) - db $0, "SNORLAX woke up!", $51 - db "It attacked in a", $4f - db "grumpy rage!", $57 + text "SNORLAX woke up!" + + page "It attacked in a" + line "grumpy rage!" + done _UnnamedText_596f0: ; 900ef (24:40ef) - db $0, "SNORLAX calmed", $4f - db "down! With a big", $55 - db "yawn, it returned", $55 - db "to the mountains!", $57 + text "SNORLAX calmed" + line "down! With a big" + next "yawn, it returned" + next "to the mountains!" + done _Route12BattleText1: ; 90134 (24:4134) - db $0, "Yeah! I got a", $4f - db "bite, here!", $57 + text "Yeah! I got a" + line "bite, here!" + done _Route12EndBattleText1: ; 9014f (24:414f) - db $0, "Tch!", $4f - db "Just a small fry!", $58 + text "Tch!" + line "Just a small fry!" + prompt _Route12AfterBattleText1: ; 90167 (24:4167) - db $0, "Hang on! My line's", $4f - db "snagged!", $57 + text "Hang on! My line's" + line "snagged!" + done _Route12BattleText2: ; 90183 (24:4183) - db $0, "Be patient!", $4f - db "Fishing is a", $55 - db "waiting game!", $57 + text "Be patient!" + line "Fishing is a" + next "waiting game!" + done _Route12EndBattleText2: ; 901ab (24:41ab) - db $0, "That", $4f - db "one got away!", $58 + text "That" + line "one got away!" + prompt _Route12AfterBattleText2: ; 901bf (24:41bf) - db $0, "With a better ROD,", $4f - db "I could catch", $55 - db "better #MON!", $57 + text "With a better ROD," + line "I could catch" + next "better #MON!" + done _Route12BattleText3: ; 901ee (24:41ee) - db $0, "Have you found a", $4f - db "MOON STONE?", $57 + text "Have you found a" + line "MOON STONE?" + done _Route12EndBattleText3: ; 9020c (24:420c) - db $0, "Oww!", $58 + text "Oww!" + prompt _Route12AfterBattleText3: ; 90212 (24:4212) - db $0, "I could have made", $4f - db "my #MON evolve", $55 - db "with MOON STONE!", $57 + text "I could have made" + line "my #MON evolve" + next "with MOON STONE!" + done _Route12BattleText4: ; 90245 (24:4245) - db $0, "Electricity is my", $4f - db "specialty!", $57 + text "Electricity is my" + line "specialty!" + done _Route12EndBattleText4: ; 90263 (24:4263) - db $0, "Unplugged!", $58 + text "Unplugged!" + prompt _Route12AfterBattleText4: ; 9026f (24:426f) - db $0, "Water conducts", $4f - db "electricity, so", $55 - db "you should zap", $55 - db "sea #MON!", $57 + text "Water conducts" + line "electricity, so" + next "you should zap" + next "sea #MON!" + done _Route12BattleText5: ; 902a8 (24:42a8) - db $0, "The FISHING FOOL", $4f - db "vs. #MON KID!", $57 + text "The FISHING FOOL" + line "vs. #MON KID!" + done _Route12EndBattleText5: ; 902c8 (24:42c8) - db $0, "Too", $4f - db "much!", $58 + text "Too" + line "much!" + prompt _Route12AfterBattleText5: ; 902d3 (24:42d3) - db $0, "You beat me at", $4f - db "#MON, but I'm", $55 - db "good at fishing!", $57 + text "You beat me at" + line "#MON, but I'm" + next "good at fishing!" + done _Route12BattleText6: ; 90301 (24:4301) - db $0, "I'd rather be", $4f - db "working!", $57 + text "I'd rather be" + line "working!" + done _Route12EndBattleText6: ; 90318 (24:4318) - db $0, "It's", $4f - db "not easy...", $58 + text "It's" + line "not easy..." + prompt _Route12AfterBattleText6: ; 90329 (24:4329) - db $0, "It's all right.", $4f - db "Losing doesn't", $55 - db "bug me any more.", $57 + text "It's all right." + line "Losing doesn't" + next "bug me any more." + done _Route12BattleText7: ; 90358 (24:4358) - db $0, "You never know", $4f - db "what you could", $55 - db "catch!", $57 + text "You never know" + line "what you could" + next "catch!" + done _Route12EndBattleText7: ; 9037e (24:437e) - db $0, "Lost", $4f - db "it!", $58 + text "Lost" + line "it!" + prompt _Route12AfterBattleText7: ; 90388 (24:4388) - db $0, "I catch MAGIKARP", $4f - db "all the time, but", $55 - db "they're so weak!", $57 + text "I catch MAGIKARP" + line "all the time, but" + next "they're so weak!" + done _Route12Text11: ; 903bc (24:43bc) - db $0, "ROUTE 12 ", $4f - db "North to LAVENDER", $57 + text "ROUTE 12 " + line "North to LAVENDER" + done _Route12Text12: ; 903d9 (24:43d9) - db $0, "SPORT FISHING AREA", $57 + text "SPORT FISHING AREA" + done _Route13BattleText2: ; 903ed (24:43ed) - db $0, "My bird #MON", $4f - db "want to scrap!", $57 + text "My bird #MON" + line "want to scrap!" + done _Route13EndBattleText2: ; 9040a (24:440a) - db $0, "My", $4f - db "bird combo lost?", $58 + text "My" + line "bird combo lost?" + prompt _Route13AfterBattleText2: ; 9041f (24:441f) - db $0, "My #MON look", $4f - db "happy even though", $55 - db "they lost.", $57 + text "My #MON look" + line "happy even though" + next "they lost." + done _Route13BattleText3: ; 9044a (24:444a) - db $0, "I'm told I'm good", $4f - db "for a kid!", $57 + text "I'm told I'm good" + line "for a kid!" + done _Route13EndBattleText3: ; 90466 (24:4466) - db $0, "Ohh!", $4f - db "I lost!", $58 + text "Ohh!" + line "I lost!" + prompt _Route13AfterBattleText3: ; 90474 (24:4474) - db $0, "I want to become", $4f - db "a good trainer.", $55 - db "I'll train hard.", $57 + text "I want to become" + line "a good trainer." + next "I'll train hard." + done _Route13BattleText4: ; 904a6 (24:44a6) - db $0, "Wow! Your BADGEs", $4f - db "are too cool!", $57 + text "Wow! Your BADGEs" + line "are too cool!" + done _Route13EndBattleText4: ; 904c6 (24:44c6) - db $0, "Not", $4f - db "enough!", $58 + text "Not" + line "enough!" + prompt _Route13AfterBattleText4: ; 904d3 (24:44d3) - db $0, "You got those", $4f - db "BADGEs from GYM", $55 - db "LEADERs. I know!", $57 + text "You got those" + line "BADGEs from GYM" + next "LEADERs. I know!" + done _Route13BattleText5: ; 90503 (24:4503) - db $0, "My cute #MON", $4f - db "wish to make your", $55 - db "acquaintance.", $57 + text "My cute #MON" + line "wish to make your" + next "acquaintance." + done _Route13EndBattleText5: ; 90531 (24:4531) - db $0, "Wow!", $4f - db "You totally won!", $58 + text "Wow!" + line "You totally won!" + prompt _Route13AfterBattleText5: ; 90548 (24:4548) - db $0, "You have to make", $4f - db "#MON fight to", $55 - db "toughen them up!", $57 + text "You have to make" + line "#MON fight to" + next "toughen them up!" + done _Route13BattleText6: ; 90579 (24:4579) - db $0, "I found CARBOS in", $4f - db "a cave once.", $57 + text "I found CARBOS in" + line "a cave once." + done _Route13EndBattleText6: ; 90599 (24:4599) - db $0, "Just", $4f - db "messed up!", $58 + text "Just" + line "messed up!" + prompt _Route13AfterBattleText6: ; 905aa (24:45aa) - db $0, "CARBOS boosted", $4f - db "the SPEED of my", $55 - db "#MON.", $57 + text "CARBOS boosted" + line "the SPEED of my" + next "#MON." + done _Route13BattleText7: ; 905d0 (24:45d0) - db $0, "The wind's blowing", $4f - db "my way!", $57 + text "The wind's blowing" + line "my way!" + done _Route13EndBattleText7: ; 905eb (24:45eb) - db $0, "The", $4f - db "wind turned!", $58 + text "The" + line "wind turned!" + prompt _Route13AfterBattleText7: ; 905fd (24:45fd) - db $0, "I'm beat. I guess", $4f - db "I'll FLY home.", $57 + text "I'm beat. I guess" + line "I'll FLY home." + done _Route13BattleText8: ; 9061d (24:461d) - db $0, "Sure, I'll play", $4f - db "with you!", $57 + text "Sure, I'll play" + line "with you!" + done _Route13EndBattleText8: ; 90637 (24:4637) - db $0, "Oh!", $4f - db "You little brute!", $58 + text "Oh!" + line "You little brute!" + prompt _Route13AfterBattleText8: ; 9064e (24:464e) - db $0, "I wonder which is", $4f - db "stronger, male or", $55 - db "female #MON?", $57 + text "I wonder which is" + line "stronger, male or" + next "female #MON?" + done _Route13BattleText9: ; 90680 (24:4680) - db $0, "Do you want to", $4f - db "#MON with me?", $57 + text "Do you want to" + line "#MON with me?" + done _Route13EndBattleText9: ; 9069e (24:469e) - db $0, "It's over", $4f - db "already?", $58 + text "It's over" + line "already?" + prompt _Route13AfterBattleText9: ; 906b1 (24:46b1) - db $0, "I don't know", $4f - db "anything about", $55 - db "#MON. I just", $55 - db "like cool ones!", $57 + text "I don't know" + line "anything about" + next "#MON. I just" + next "like cool ones!" + done _Route13BattleText10: ; 906ea (24:46ea) - db $0, "What're you", $4f - db "lookin' at?", $57 + text "What're you" + line "lookin' at?" + done _Route13EndBattleText10: ; 90702 (24:4702) - db $0, "Dang!", $4f - db "Stripped gears!", $58 + text "Dang!" + line "Stripped gears!" + prompt _Route13AfterBattleText10: ; 90719 (24:4719) - db $0, "Get lost!", $57 + text "Get lost!" + done _Route13BattleText11: ; 90724 (24:4724) - db $0, "I always go with", $4f - db "bird #MON!", $57 + text "I always go with" + line "bird #MON!" + done _Route13EndBattleText11: ; 90741 (24:4741) - db $0, "Out", $4f - db "of power!", $58 + text "Out" + line "of power!" + prompt _Route13AfterBattleText11: ; 90750 (24:4750) - db $0, "I wish I could", $4f - db "fly like PIDGEY", $55 - db "and PIDGEOTTO...", $57 + text "I wish I could" + line "fly like PIDGEY" + next "and PIDGEOTTO..." + done _Route13Text11: ; 90781 (24:4781) - db $0, "TRAINER TIPS", $51 - db "Look to the left", $4f - db "of that post!", $57 + text "TRAINER TIPS" + + page "Look to the left" + line "of that post!" + done _Route13Text12: ; 907ae (24:47ae) - db $0, "TRAINER TIPS", $51 - db "Use SELECT to", $4f - db "switch items in", $55 - db "the ITEM window!", $57 + text "TRAINER TIPS" + + page "Use SELECT to" + line "switch items in" + next "the ITEM window!" + done _Route13Text13: ; 907eb (24:47eb) - db $0, "ROUTE 13", $4f - db "North to SILENCE", $55 - db "BRIDGE", $57 + text "ROUTE 13" + line "North to SILENCE" + next "BRIDGE" + done _Route14BattleText1: ; 9080d (24:480d) - db $0, "You need to use", $4f - db "TMs to teach good", $55 - db "moves to #MON!", $57 + text "You need to use" + line "TMs to teach good" + next "moves to #MON!" + done _Route14EndBattleText1: ; 9083f (24:483f) - db $0, "Not", $4f - db "good enough!", $58 + text "Not" + line "good enough!" + prompt _Route14AfterBattleText1: ; 90851 (24:4851) - db $0, "You have some HMs", $4f - db "right? #MON", $55 - db "can't ever forget", $55 - db "those moves.", $57 + text "You have some HMs" + line "right? #MON" + next "can't ever forget" + next "those moves." + done _Route14BattleText2: ; 9088e (24:488e) - db $0, "My bird #MON", $4f - db "should be ready", $55 - db "for battle.", $57 + text "My bird #MON" + line "should be ready" + next "for battle." + done _Route14EndBattleText2: ; 908b8 (24:48b8) - db $0, "Not", $4f - db "ready yet!", $58 + text "Not" + line "ready yet!" + prompt _Route14AfterBattleText2: ; 908c8 (24:48c8) - db $0, "They need to learn", $4f - db "better moves.", $57 + text "They need to learn" + line "better moves." + done _Route14BattleText3: ; 908ea (24:48ea) - db $0, "TMs are on sale", $4f - db "in CELADON!", $55 - db "But, only a few", $55 - db "people have HMs!", $57 + text "TMs are on sale" + line "in CELADON!" + next "But, only a few" + next "people have HMs!" + done _Route14EndBattleText3: ; 90928 (24:4928) - db $0, "Aww,", $4f - db "bummer!", $58 + text "Aww," + line "bummer!" + prompt _Route14AfterBattleText3: ; 90936 (24:4936) - db $0, "Teach #MON", $4f - db "moves of the same", $55 - db "element type for", $55 - db "more power.", $57 + text "Teach #MON" + line "moves of the same" + next "element type for" + next "more power." + done _Route14BattleText4: ; 90971 (24:4971) - db $0, "Have you taught", $4f - db "your bird #MON", $55 - db "how to FLY?", $57 + text "Have you taught" + line "your bird #MON" + next "how to FLY?" + done _Route14EndBattleText4: ; 9099d (24:499d) - db $0, "Shot", $4f - db "down in flames!", $58 + text "Shot" + line "down in flames!" + prompt _Route14AfterBattleText4: ; 909b3 (24:49b3) - db $0, "Bird #MON are", $4f - db "my true love!", $57 + text "Bird #MON are" + line "my true love!" + done _Route14BattleText5: ; 909d0 (24:49d0) - db $0, "Have you heard of", $4f - db "the legendary", $55 - db "#MON?", $57 + text "Have you heard of" + line "the legendary" + next "#MON?" + done _Route14EndBattleText5: ; 909f7 (24:49f7) - db $0, "Why?", $4f - db "Why'd I lose?", $58 + text "Why?" + line "Why'd I lose?" + prompt _Route14AfterBattleText5: ; 90a0a (24:4a0a) - db $0, "The 3 legendary", $4f - db "#MON are all", $55 - db "birds of prey.", $57 + text "The 3 legendary" + line "#MON are all" + next "birds of prey." + done _Route14BattleText6: ; 90a37 (24:4a37) - db $0, "I'm not into it,", $4f - db "but OK! Let's go!", $57 + text "I'm not into it," + line "but OK! Let's go!" + done _Route14EndBattleText6: ; 90a59 (24:4a59) - db $0, "I", $4f - db "knew it!", $58 + text "I" + line "knew it!" + prompt _Route14AfterBattleText6: ; 90a65 (24:4a65) - db $0, "Winning, losing,", $4f - db "it doesn't matter", $55 - db "in the long run!", $57 + text "Winning, losing," + line "it doesn't matter" + next "in the long run!" + done _Route14BattleText7: ; 90a99 (24:4a99) - db $0, "C'mon, c'mon.", $4f - db "Let's go, let's", $55 - db "go, let's go!", $57 + text "C'mon, c'mon." + line "Let's go, let's" + next "go, let's go!" + done _Route14EndBattleText7: ; 90ac1 (24:4ac1) - db $0, "Arrg!", $4f - db "Lost! Get lost!", $58 + text "Arrg!" + line "Lost! Get lost!" + prompt _Route14AfterBattleText7: ; 90ad8 (24:4ad8) - db $0, "What, what, what?", $4f - db "What do you want?", $57 + text "What, what, what?" + line "What do you want?" + done _Route14BattleText8: ; 90afd (24:4afd) - db $0, "Perfect! I need to", $4f - db "burn some time!", $57 + text "Perfect! I need to" + line "burn some time!" + done _Route14EndBattleText8: ; 90b21 (24:4b21) - db $0, "What?", $4f - db "You!?", $58 + text "What?" + line "You!?" + prompt _Route14AfterBattleText8: ; 90b2e (24:4b2e) - db $0, "Raising #MON", $4f - db "is a drag, man.", $57 + text "Raising #MON" + line "is a drag, man." + done _Route14BattleText9: ; 90b4c (24:4b4c) - db $0, "We ride out here", $4f - db "because there's", $55 - db "more room!", $57 + text "We ride out here" + line "because there's" + next "more room!" + done _Route14EndBattleText9: ; 90b78 (24:4b78) - db $0, "Wipe out!", $58 + text "Wipe out!" + prompt _Route14AfterBattleText9: ; 90b83 (24:4b83) - db $0, "It's cool you", $4f - db "made your #MON", $55 - db "so strong!", $51 - db "Might is right!", $4f - db "And you know it!", $57 + text "It's cool you" + line "made your #MON" + next "so strong!" + + page "Might is right!" + line "And you know it!" + done _Route14BattleText10: ; 90bcc (24:4bcc) - db $0, "#MON fight?", $4f - db "Cool! Rumble!", $57 + text "#MON fight?" + line "Cool! Rumble!" + done _Route14EndBattleText10: ; 90be7 (24:4be7) - db $0, "Blown", $4f - db "away!", $58 + text "Blown" + line "away!" + prompt _Route14AfterBattleText10: ; 90bf4 (24:4bf4) - db $0, "You know who'd", $4f - db "win, you and me", $55 - db "one on one!", $57 + text "You know who'd" + line "win, you and me" + next "one on one!" + done _Route14Text11: ; 90c1f (24:4c1f) - db $0, "ROUTE 14", $4f - db "West to FUCHSIA", $55 - db "CITY", $57 + text "ROUTE 14" + line "West to FUCHSIA" + next "CITY" + done _Route15BattleText1: ; 90c3e (24:4c3e) - db $0, "Let me try out the", $4f - db "#MON I just", $55 - db "got in a trade!", $57 + text "Let me try out the" + line "#MON I just" + next "got in a trade!" + done _Route15EndBattleText1: ; 90c6e (24:4c6e) - db $0, "Not", $4f - db "good enough!", $58 + text "Not" + line "good enough!" + prompt _Route15AfterBattleText1: ; 90c80 (24:4c80) - db $0, "You can't change", $4f - db "the nickname of", $55 - db "any #MON you", $55 - db "get in a trade.", $51 - db "Only the Original", $4f - db "Trainer can.", $57 + text "You can't change" + line "the nickname of" + next "any #MON you" + next "get in a trade." + + page "Only the Original" + line "Trainer can." + done _Route15BattleText2: ; 90cdd (24:4cdd) - db $0, "You look gentle,", $4f - db "so I think I can", $55 - db "beat you!", $57 + text "You look gentle," + line "so I think I can" + next "beat you!" + done _Route15EndBattleText2: ; 90d0a (24:4d0a) - db $0, "No,", $4f - db "wrong!", $58 + text "No," + line "wrong!" + prompt _Route15AfterBattleText2: ; 90d16 (24:4d16) - db $0, "I'm afraid of", $4f - db "BIKERs, they look", $55 - db "so ugly and mean!", $57 + text "I'm afraid of" + line "BIKERs, they look" + next "so ugly and mean!" + done _Route15BattleText3: ; 90d48 (24:4d48) - db $0, "When I whistle, I", $4f - db "can summon bird", $55 - db "#MON!", $57 + text "When I whistle, I" + line "can summon bird" + next "#MON!" + done _Route15EndBattleText3: ; 90d71 (24:4d71) - db $0, "Ow!", $4f - db "That's tragic!", $58 + text "Ow!" + line "That's tragic!" + prompt _Route15AfterBattleText3: ; 90d84 (24:4d84) - db $0, "Maybe I'm not cut", $4f - db "out for battles.", $57 + text "Maybe I'm not cut" + line "out for battles." + done _Route15BattleText4: ; 90da7 (24:4da7) - db $0, "Hmm? My birds are", $4f - db "shivering! You're", $55 - db "good, aren't you?", $57 + text "Hmm? My birds are" + line "shivering! You're" + next "good, aren't you?" + done _Route15EndBattleText4: ; 90ddc (24:4ddc) - db $0, "Just", $4f - db "as I thought!", $58 + text "Just" + line "as I thought!" + prompt _Route15AfterBattleText4: ; 90df0 (24:4df0) - db $0, "Did you know moves", $4f - db "like EARTHQUAKE", $55 - db "don't have any", $55 - db "effect on birds?", $57 + text "Did you know moves" + line "like EARTHQUAKE" + next "don't have any" + next "effect on birds?" + done _Route15BattleText5: ; 90e33 (24:4e33) - db $0, "Oh, you're a", $4f - db "little cutie!", $57 + text "Oh, you're a" + line "little cutie!" + done _Route15EndBattleText5: ; 90e4e (24:4e4e) - db $0, "You looked", $4f - db "so cute too!", $58 + text "You looked" + line "so cute too!" + prompt _Route15AfterBattleText5: ; 90e67 (24:4e67) - db $0, "I forgive you!", $4f - db "I can take it!", $57 + text "I forgive you!" + line "I can take it!" + done _Route15BattleText6: ; 90e86 (24:4e86) - db $0, "I raise #MON", $4f - db "because I live", $55 - db "alone!", $57 + text "I raise #MON" + line "because I live" + next "alone!" + done _Route15EndBattleText6: ; 90eaa (24:4eaa) - db $0, "I didn't", $4f - db "ask for this!", $58 + text "I didn't" + line "ask for this!" + prompt _Route15AfterBattleText6: ; 90ec1 (24:4ec1) - db $0, "I just like going", $4f - db "home to be with", $55 - db "my #MON!", $57 + text "I just like going" + line "home to be with" + next "my #MON!" + done _Route15BattleText7: ; 90eed (24:4eed) - db $0, "Hey kid! C'mon!", $4f - db "I just got these!", $57 + text "Hey kid! C'mon!" + line "I just got these!" + done _Route15EndBattleText7: ; 90f0f (24:4f0f) - db $0, "Why", $4f - db "not?", $58 + text "Why" + line "not?" + prompt _Route15AfterBattleText7: ; 90f19 (24:4f19) - db $0, "You only live", $4f - db "once, so I live", $55 - db "as an outlaw!", $55 - db "TEAM ROCKET RULES!", $57 + text "You only live" + line "once, so I live" + next "as an outlaw!" + next "TEAM ROCKET RULES!" + done _Route15BattleText8: ; 90f59 (24:4f59) - db $0, "Fork over all your", $4f - db "cash when you", $55 - db "lose to me, kid!", $57 + text "Fork over all your" + line "cash when you" + next "lose to me, kid!" + done _Route15EndBattleText8: ; 90f8c (24:4f8c) - db $0, "That", $4f - db "can't be true!", $58 + text "That" + line "can't be true!" + prompt _Route15AfterBattleText8: ; 90fa0 (24:4fa0) - db $0, "I was just joking", $4f - db "about the money!", $57 + text "I was just joking" + line "about the money!" + done _Route15BattleText9: ; 90fc4 (24:4fc4) - db $0, "What's cool?", $4f - db "Trading #MON!", $57 + text "What's cool?" + line "Trading #MON!" + done _Route15EndBattleText9: ; 90fdf (24:4fdf) - db $0, "I", $4f - db "said trade!", $58 + text "I" + line "said trade!" + prompt _Route15AfterBattleText9: ; 90fee (24:4fee) - db $0, "I trade #MON", $4f - db "with my friends!", $57 + text "I trade #MON" + line "with my friends!" + done _Route15BattleText10: ; 9100d (24:500d) - db $0, "Want to play with", $4f - db "my #MON?", $57 + text "Want to play with" + line "my #MON?" + done _Route15EndBattleText10: ; 91029 (24:5029) - db $0, "I was", $4f - db "too impatient!", $58 + text "I was" + line "too impatient!" + prompt _Route15AfterBattleText10: ; 9103f (24:503f) - db $0, "I'll go train with", $4f - db "weaker people.@@" + text "I'll go train with" + line "weaker people.@@" _Route15Text12: ; 91062 (24:5062) - db $0, "ROUTE 15", $4f - db "West to FUCHSIA", $55 - db "CITY", $57 + text "ROUTE 15" + line "West to FUCHSIA" + next "CITY" + done _Route16BattleText1: ; 91081 (24:5081) - db $0, "What do you want?", $57 + text "What do you want?" + done _Route16EndBattleText1: ; 91094 (24:5094) - db $0, "Don't you", $4f - db "dare laugh!", $58 + text "Don't you" + line "dare laugh!" + prompt _Route16AfterBattleText1: ; 910aa (24:50aa) - db $0, "We like just", $4f - db "hanging here,", $55 - db "what's it to you?", $57 + text "We like just" + line "hanging here," + next "what's it to you?" + done _Route16BattleText2: ; 910d7 (24:50d7) - db $0, "Nice BIKE!", $4f - db "Hand it over!", $57 + text "Nice BIKE!" + line "Hand it over!" + done _Route16EndBattleText2: ; 910f1 (24:50f1) - db $0, "Knock", $4f - db "out!", $58 + text "Knock" + line "out!" + prompt _Route16AfterBattleText2: ; 910fd (24:50fd) - db $0, "Forget it, who", $4f - db "needs your BIKE!", $57 + text "Forget it, who" + line "needs your BIKE!" + done _Route16BattleText3: ; 9111e (24:511e) - db $0, "Come out and play,", $4f - db "little mouse!", $57 + text "Come out and play," + line "little mouse!" + done _Route16EndBattleText3: ; 91140 (24:5140) - db $0, "You", $4f - db "little rat!", $58 + text "You" + line "little rat!" + prompt _Route16AfterBattleText3: ; 91151 (24:5151) - db $0, "I hate losing!", $4f - db "Get away from me!", $57 + text "I hate losing!" + line "Get away from me!" + done _Route16BattleText4: ; 91173 (24:5173) - db $0, "Hey, you just", $4f - db "bumped me!", $57 + text "Hey, you just" + line "bumped me!" + done _Route16EndBattleText4: ; 9118d (24:518d) - db $0, "Kaboom!", $58 + text "Kaboom!" + prompt _Route16AfterBattleText4: ; 91196 (24:5196) - db $0, "You can also get", $4f - db "to FUCHSIA from", $55 - db "VERMILION using a", $55 - db "coastal road.", $57 + text "You can also get" + line "to FUCHSIA from" + next "VERMILION using a" + next "coastal road." + done _Route16BattleText5: ; 911d8 (24:51d8) - db $0, "I'm feeling", $4f - db "hungry and mean!", $57 + text "I'm feeling" + line "hungry and mean!" + done _Route16EndBattleText5: ; 911f5 (24:51f5) - db $0, "Bad,", $4f - db "bad, bad!", $58 + text "Bad," + line "bad, bad!" + prompt _Route16AfterBattleText5: ; 91205 (24:5205) - db $0, "I like my #MON", $4f - db "ferocious! They", $55 - db "tear up enemies!", $57 + text "I like my #MON" + line "ferocious! They" + next "tear up enemies!" + done _Route16BattleText6: ; 91236 (24:5236) - db $0, "Sure, I'll go!", $57 + text "Sure, I'll go!" + done _Route16EndBattleText6: ; 91245 (24:5245) - db $0, "Don't make", $4f - db "me mad!", $58 + text "Don't make" + line "me mad!" + prompt _Route16AfterBattleText6: ; 91258 (24:5258) - db $0, "I like harassing", $4f - db "people with my", $55 - db "vicious #MON!", $57 + text "I like harassing" + line "people with my" + next "vicious #MON!" + done _Route16Text7: ; 91287 (24:5287) - db $0, "A sleeping #MON", $4f - db "blocks the way!", $57 + text "A sleeping #MON" + line "blocks the way!" + done _UnnamedText_59ab3: ; 912a8 (24:52a8) - db $0, "SNORLAX woke up!", $51 - db "It attacked in a", $4f - db "grumpy rage!", $57 + text "SNORLAX woke up!" + + page "It attacked in a" + line "grumpy rage!" + done _UnnamedText_59ab8: ; 912d8 (24:52d8) - db $0, "With a big yawn,", $4f - db "SNORLAX returned", $55 - db "to the mountains!", $57 + text "With a big yawn," + line "SNORLAX returned" + next "to the mountains!" + done _Route16Text8: ; 9130d (24:530d) - db $0, "Enjoy the slope!", $4f - db "CYCLING ROAD", $57 + text "Enjoy the slope!" + line "CYCLING ROAD" + done _Route16Text9: ; 9132c (24:532c) - db $0, "ROUTE 16", $4f - db "CELADON CITY -", $55 - db "FUCHSIA CITY", $57 + text "ROUTE 16" + line "CELADON CITY -" + next "FUCHSIA CITY" + done _Route17BattleText1: ; 91352 (24:5352) - db $0, "There's no money", $4f - db "in fighting kids!", $57 + text "There's no money" + line "in fighting kids!" + done _Route17EndBattleText1: ; 91375 (24:5375) - db $0, "Burned", $4f - db "out!", $58 + text "Burned" + line "out!" + prompt _Route17AfterBattleText1: ; 91382 (24:5382) - db $0, "Good stuff is", $4f - db "lying around on", $55 - db "CYCLING ROAD!", $57 + text "Good stuff is" + line "lying around on" + next "CYCLING ROAD!" + done _Route17BattleText2: ; 913af (24:53af) - db $0, "What do you want,", $4f - db "kiddo?", $57 + text "What do you want," + line "kiddo?" + done _Route17EndBattleText2: ; 913c9 (24:53c9) - db $0, "Whoo!", $58 + text "Whoo!" + prompt _Route17AfterBattleText2: ; 913d0 (24:53d0) - db $0, "I could belly-", $4f - db "bump you outta", $55 - db "here!", $57 + text "I could belly-" + line "bump you outta" + next "here!" + done _Route17BattleText3: ; 913f5 (24:53f5) - db $0, "You heading to", $4f - db "FUCHSIA?", $57 + text "You heading to" + line "FUCHSIA?" + done _Route17EndBattleText3: ; 9140e (24:540e) - db $0, "Crash and", $4f - db "burn!", $58 + text "Crash and" + line "burn!" + prompt _Route17AfterBattleText3: ; 9141f (24:541f) - db $0, "I love racing", $4f - db "downhill!", $57 + text "I love racing" + line "downhill!" + done _Route17BattleText4: ; 91438 (24:5438) - db $0, "We're BIKERs!", $4f - db "Highway stars!", $57 + text "We're BIKERs!" + line "Highway stars!" + done _Route17EndBattleText4: ; 91455 (24:5455) - db $0, "Smoked!", $58 + text "Smoked!" + prompt _Route17AfterBattleText4: ; 9145e (24:545e) - db $0, "Are you looking", $4f - db "for adventure?", $57 + text "Are you looking" + line "for adventure?" + done _Route17BattleText5: ; 9147e (24:547e) - db $0, "Let VOLTORB", $4f - db "electrify you!", $57 + text "Let VOLTORB" + line "electrify you!" + done _Route17EndBattleText5: ; 9149a (24:549a) - db $0, "Grounded", $4f - db "out!", $58 + text "Grounded" + line "out!" + prompt _Route17AfterBattleText5: ; 914a9 (24:54a9) - db $0, "I got my VOLTORB", $4f - db "at the abandoned", $55 - db "POWER PLANT.", $57 + text "I got my VOLTORB" + line "at the abandoned" + next "POWER PLANT." + done _Route17BattleText6: ; 914d9 (24:54d9) - db $0, "My #MON won't", $4f - db "evolve! Why?", $57 + text "My #MON won't" + line "evolve! Why?" + done _Route17EndBattleText6: ; 914f4 (24:54f4) - db $0, "Why,", $4f - db "you!", $58 + text "Why," + line "you!" + prompt _Route17AfterBattleText6: ; 914ff (24:54ff) - db $0, "Maybe some #MON", $4f - db "need element", $55 - db "STONEs to evolve.", $57 + text "Maybe some #MON" + line "need element" + next "STONEs to evolve." + done _Route17BattleText7: ; 9152f (24:552f) - db $0, "I need a little", $4f - db "exercise!", $57 + text "I need a little" + line "exercise!" + done _Route17EndBattleText7: ; 9154a (24:554a) - db $0, "Whew!", $4f - db "Good workout!", $58 + text "Whew!" + line "Good workout!" + prompt _Route17AfterBattleText7: ; 9155f (24:555f) - db $0, "I'm sure I lost", $4f - db "weight there!", $57 + text "I'm sure I lost" + line "weight there!" + done _Route17BattleText8: ; 9157d (24:557d) - db $0, "Be a rebel!", $57 + text "Be a rebel!" + done _Route17EndBattleText8: ; 9158a (24:558a) - db $0, "Aaaargh!", $58 + text "Aaaargh!" + prompt _Route17AfterBattleText8: ; 91594 (24:5594) - db $0, "Be ready to fight", $4f - db "for your beliefs!", $57 + text "Be ready to fight" + line "for your beliefs!" + done _Route17BattleText9: ; 915b9 (24:55b9) - db $0, "Nice BIKE!", $4f - db "How's it handle?", $57 + text "Nice BIKE!" + line "How's it handle?" + done _Route17EndBattleText9: ; 915d5 (24:55d5) - db $0, "Shoot!", $58 + text "Shoot!" + prompt _Route17AfterBattleText9: ; 915dd (24:55dd) - db $0, "The slope makes", $4f - db "it hard to steer!", $57 + text "The slope makes" + line "it hard to steer!" + done _Route17BattleText10: ; 91600 (24:5600) - db $0, "Get lost kid!", $4f - db "I'm bushed!", $57 + text "Get lost kid!" + line "I'm bushed!" + done _Route17EndBattleText10: ; 9161a (24:561a) - db $0, "Are you", $4f - db "satisfied?", $58 + text "Are you" + line "satisfied?" + prompt _Route17AfterBattleText10: ; 9162e (24:562e) - db $0, "I need to catch", $4f - db "a few Zs!", $57 + text "I need to catch" + line "a few Zs!" + done _Route17Text11: ; 91649 (24:5649) - db $0, "It's a notice!", $51 - db "Watch out for", $4f - db "discarded items!", $57 + text "It's a notice!" + + page "Watch out for" + line "discarded items!" + done _Route17Text12: ; 91677 (24:5677) - db $0, "TRAINER TIPS", $51 - db "All #MON are", $4f - db "unique.", $51 - db "Even #MON of", $4f - db "the same type and", $55 - db "level grow at", $55 - db "different rates.", $57 + text "TRAINER TIPS" + + page "All #MON are" + line "unique." + + page "Even #MON of" + line "the same type and" + next "level grow at" + next "different rates." + done _Route17Text13: ; 916d8 (24:56d8) - db $0, "TRAINER TIPS", $51 - db "Press the A or B", $4f - db "Button to stay in", $55 - db "place while on a", $55 - db "slope.", $57 + text "TRAINER TIPS" + + page "Press the A or B" + line "Button to stay in" + next "place while on a" + next "slope." + done _Route17Text14: ; 91721 (24:5721) - db $0, "ROUTE 17", $4f - db "CELADON CITY -", $55 - db "FUCHSIA CITY", $57 + text "ROUTE 17" + line "CELADON CITY -" + next "FUCHSIA CITY" + done _Route17Text15: ; 91747 (24:5747) - db $0, "It's a notice!", $51 - db "Don't throw the", $4f - db "game, throw #", $55 - db "BALLs instead!", $57 + text "It's a notice!" + + page "Don't throw the" + line "game, throw #" + next "BALLs instead!" + done _Route17Text16: ; 91782 (24:5782) - db $0, "CYCLING ROAD", $4f - db "Slope ends here!", $57 + text "CYCLING ROAD" + line "Slope ends here!" + done _Route18BattleText1: ; 917a1 (24:57a1) - db $0, "I always check", $4f - db "every grassy area", $55 - db "for new #MON.", $57 + text "I always check" + line "every grassy area" + next "for new #MON." + done _Route18EndBattleText1: ; 917d1 (24:57d1) - db $0, "Tch!", $58 + text "Tch!" + prompt _Route18AfterBattleText1: ; 917d7 (24:57d7) - db $0, "I wish I had a", $4f - db "BIKE!", $57 + text "I wish I had a" + line "BIKE!" + done _Route18BattleText2: ; 917ed (24:57ed) - db $0, "Kurukkoo!", $4f - db "How do you like", $55 - db "my bird call?", $57 + text "Kurukkoo!" + line "How do you like" + next "my bird call?" + done _Route18EndBattleText2: ; 91816 (24:5816) - db $0, "I", $4f - db "had to bug you!", $58 + text "I" + line "had to bug you!" + prompt _Route18AfterBattleText2: ; 91829 (24:5829) - db $0, "I also collect sea", $4f - db "#MON on", $55 - db "weekends!", $57 + text "I also collect sea" + line "#MON on" + next "weekends!" + done _Route18BattleText3: ; 9184f (24:584f) - db $0, "This is my turf!", $4f - db "Get out of here!", $57 + text "This is my turf!" + line "Get out of here!" + done _Route18EndBattleText3: ; 91872 (24:5872) - db $0, "Darn!", $58 + text "Darn!" + prompt _Route18AfterBattleText3: ; 91879 (24:5879) - db $0, "This is my fave", $4f - db "#MON hunting", $55 - db "area!", $57 + text "This is my fave" + line "#MON hunting" + next "area!" + done _Route18Text4: ; 9189d (24:589d) - db $0, "ROUTE 18", $4f - db "CELADON CITY -", $55 - db "FUCHSIA CITY", $57 + text "ROUTE 18" + line "CELADON CITY -" + next "FUCHSIA CITY" + done _Route18Text5: ; 918c3 (24:58c3) - db $0, "CYCLING ROAD", $4f - db "No pedestrians", $55 - db "permitted!", $57 + text "CYCLING ROAD" + line "No pedestrians" + next "permitted!" + done _Route19BattleText1: ; 918eb (24:58eb) - db $0, "Have to warm up", $4f - db "before my swim!", $57 + text "Have to warm up" + line "before my swim!" + done _Route19EndBattleText1: ; 9190c (24:590c) - db $0, "All", $4f - db "warmed up!", $58 + text "All" + line "warmed up!" + prompt _Route19AfterBattleText1: ; 9191c (24:591c) - db $0, "Thanks, kid! I'm", $4f - db "ready for a swim!", $57 + text "Thanks, kid! I'm" + line "ready for a swim!" + done _Route19BattleText2: ; 9193f (24:593f) - db $0, "Wait! You'll have", $4f - db "a heart attack!", $57 + text "Wait! You'll have" + line "a heart attack!" + done _Route19EndBattleText2: ; 91961 (24:5961) - db $0, "Ooh!", $4f - db "That's chilly!", $58 + text "Ooh!" + line "That's chilly!" + prompt _Route19AfterBattleText2: ; 91975 (24:5975) - db $0, "Watch out for", $4f - db "TENTACOOL!", $57 + text "Watch out for" + line "TENTACOOL!" + done _Route19BattleText3: ; 9198f (24:598f) - db $0, "I love swimming!", $4f - db "What about you?", $57 + text "I love swimming!" + line "What about you?" + done _Route19EndBattleText3: ; 919b1 (24:59b1) - db $0, "Belly", $4f - db "flop!", $58 + text "Belly" + line "flop!" + prompt _Route19AfterBattleText3: ; 919be (24:59be) - db $0, "I can beat #MON", $4f - db "at swimming!", $57 + text "I can beat #MON" + line "at swimming!" + done _Route19BattleText4: ; 919dc (24:59dc) - db $0, "What's beyond the", $4f - db "horizon?", $57 + text "What's beyond the" + line "horizon?" + done _Route19EndBattleText4: ; 919f7 (24:59f7) - db $0, "Glub!", $58 + text "Glub!" + prompt _Route19AfterBattleText4: ; 919fe (24:59fe) - db $0, "I see a couple of", $4f - db "islands!", $57 + text "I see a couple of" + line "islands!" + done _Route19BattleText5: ; 91a1a (24:5a1a) - db $0, "I tried diving", $4f - db "for #MON, but", $55 - db "it was a no go!", $57 + text "I tried diving" + line "for #MON, but" + next "it was a no go!" + done _Route19EndBattleText5: ; 91a48 (24:5a48) - db $0, "Help!", $58 + text "Help!" + prompt _Route19AfterBattleText5: ; 91a4f (24:5a4f) - db $0, "You have to fish", $4f - db "for sea #MON!", $57 + text "You have to fish" + line "for sea #MON!" + done _Route19BattleText6: ; 91a6f (24:5a6f) - db $0, "I look at the", $4f - db "sea to forget!", $57 + text "I look at the" + line "sea to forget!" + done _Route19EndBattleText6: ; 91a8d (24:5a8d) - db $0, "Ooh!", $4f - db "Traumatic!", $58 + text "Ooh!" + line "Traumatic!" + prompt _Route19AfterBattleText6: ; 91a9e (24:5a9e) - db $0, "I'm looking at the", $4f - db "sea to forget!", $57 + text "I'm looking at the" + line "sea to forget!" + done _Route19BattleText7: ; 91ac0 (24:5ac0) - db $0, "Oh, I just love", $4f - db "your ride! Can I", $55 - db "have it if I win?", $57 + text "Oh, I just love" + line "your ride! Can I" + next "have it if I win?" + done _Route19EndBattleText7: ; 91af4 (24:5af4) - db $0, "Oh!", $4f - db "I lost!", $58 + text "Oh!" + line "I lost!" + prompt _Route19AfterBattleText7: ; 91b01 (24:5b01) - db $0, "It's still a long", $4f - db "way to go to", $55 - db "SEAFOAM ISLANDS.", $57 + text "It's still a long" + line "way to go to" + next "SEAFOAM ISLANDS." + done _Route19BattleText8: ; 91b31 (24:5b31) - db $0, "Swimming's great!", $4f - db "Sunburns aren't!", $57 + text "Swimming's great!" + line "Sunburns aren't!" + done _Route19EndBattleText8: ; 91b53 (24:5b53) - db $0, "Shocker!", $58 + text "Shocker!" + prompt _Route19AfterBattleText8: ; 91b5d (24:5b5d) - db $0, "My boy friend", $4f - db "wanted to swim to", $55 - db "SEAFOAM ISLANDS.", $57 + text "My boy friend" + line "wanted to swim to" + next "SEAFOAM ISLANDS." + done _Route19BattleText9: ; 91b8f (24:5b8f) - db $0, "These waters are", $4f - db "treacherous!", $57 + text "These waters are" + line "treacherous!" + done _Route19EndBattleText9: ; 91bae (24:5bae) - db $0, "Ooh!", $4f - db "Dangerous!", $58 + text "Ooh!" + line "Dangerous!" + prompt _Route19AfterBattleText9: ; 91bbf (24:5bbf) - db $0, "I got a cramp!", $4f - db "Glub, glub...", $57 + text "I got a cramp!" + line "Glub, glub..." + done _Route19BattleText10: ; 91bdd (24:5bdd) - db $0, "I swam here, but", $4f - db "I'm tired.", $57 + text "I swam here, but" + line "I'm tired." + done _Route19EndBattleText10: ; 91bf9 (24:5bf9) - db $0, "I'm", $4f - db "exhausted...", $58 + text "I'm" + line "exhausted..." + prompt _Route19AfterBattleText10: ; 91c0a (24:5c0a) - db $0, "LAPRAS is so big,", $4f - db "it must keep you", $55 - db "dry on water.", $57 + text "LAPRAS is so big," + line "it must keep you" + next "dry on water." + done _Route19Text11: ; 91c3c (24:5c3c) - db $0, "SEA ROUTE 19", $4f - db "FUCHSIA CITY -", $55 - db "SEAFOAM ISLANDS", $57 + text "SEA ROUTE 19" + line "FUCHSIA CITY -" + next "SEAFOAM ISLANDS" + done _Route20BattleText1: ; 91c69 (24:5c69) - db $0, "The water is", $4f - db "shallow here.", $57 + text "The water is" + line "shallow here." + done _Route20EndBattleText1: ; 91c85 (24:5c85) - db $0, "Splash!", $58 + text "Splash!" + prompt _Route20AfterBattleText1: ; 91c8e (24:5c8e) - db $0, "I wish I could", $4f - db "ride my #MON.", $57 + text "I wish I could" + line "ride my #MON." + done _Route20BattleText2: ; 91cac (24:5cac) - db $0, "SEAFOAM is a", $4f - db "quiet getaway!", $57 + text "SEAFOAM is a" + line "quiet getaway!" + done _Route20EndBattleText2: ; 91cc9 (24:5cc9) - db $0, "Quit it!", $58 + text "Quit it!" + prompt _Route20AfterBattleText2: ; 91cd3 (24:5cd3) - db $0, "There's a huge", $4f - db "cavern underneath", $55 - db "this island.", $57 + text "There's a huge" + line "cavern underneath" + next "this island." + done _Route20BattleText3: ; 91d01 (24:5d01) - db $0, "I love floating", $4f - db "with the fishes!", $57 + text "I love floating" + line "with the fishes!" + done _Route20EndBattleText3: ; 91d23 (24:5d23) - db $0, "Yowch!", $58 + text "Yowch!" + prompt _Route20AfterBattleText3: ; 91d2b (24:5d2b) - db $0, "Want to float", $4f - db "with me?", $57 + text "Want to float" + line "with me?" + done _Route20BattleText4: ; 91d43 (24:5d43) - db $0, "Are you on", $4f - db "vacation too?", $57 + text "Are you on" + line "vacation too?" + done _Route20EndBattleText4: ; 91d5d (24:5d5d) - db $0, "No", $4f - db "mercy at all!", $58 + text "No" + line "mercy at all!" + prompt _Route20AfterBattleText4: ; 91d6f (24:5d6f) - db $0, "SEAFOAM used to", $4f - db "be one island!", $57 + text "SEAFOAM used to" + line "be one island!" + done _Route20BattleText5: ; 91d8f (24:5d8f) - db $0, "Check out my buff", $4f - db "physique!", $57 + text "Check out my buff" + line "physique!" + done _Route20EndBattleText5: ; 91dac (24:5dac) - db $0, "Wimpy!", $58 + text "Wimpy!" + prompt _Route20AfterBattleText5: ; 91db4 (24:5db4) - db $0, "I should've been", $4f - db "buffing up my", $55 - db "#MON, not me!", $57 + text "I should've been" + line "buffing up my" + next "#MON, not me!" + done _Route20BattleText6: ; 91de1 (24:5de1) - db $0, "Why are you", $4f - db "riding a #MON?", $55 - db "Can't you swim?", $57 + text "Why are you" + line "riding a #MON?" + next "Can't you swim?" + done _Route20EndBattleText6: ; 91e0c (24:5e0c) - db $0, "Ouch!", $4f - db "Torpedoed!", $58 + text "Ouch!" + line "Torpedoed!" + prompt _Route20AfterBattleText6: ; 91e1e (24:5e1e) - db $0, "Riding a #MON", $4f - db "sure looks fun!", $57 + text "Riding a #MON" + line "sure looks fun!" + done _Route20BattleText7: ; 91e3d (24:5e3d) - db $0, "I rode my bird", $4f - db "#MON here!", $57 + text "I rode my bird" + line "#MON here!" + done _Route20EndBattleText7: ; 91e58 (24:5e58) - db $0, "Oh", $4f - db "no!", $58 + text "Oh" + line "no!" + prompt _Route20AfterBattleText7: ; 91e60 (24:5e60) - db $0, "My birds can't", $4f - db "FLY me back!", $57 + text "My birds can't" + line "FLY me back!" + done _Route20BattleText8: ; 91e7c (24:5e7c) - db $0, "My boy friend gave", $4f - db "me big pearls!", $57 + text "My boy friend gave" + line "me big pearls!" + done _Route20EndBattleText8: ; 91e9f (24:5e9f) - db $0, "Don't", $4f - db "touch my pearls!", $58 + text "Don't" + line "touch my pearls!" + prompt _Route20AfterBattleText8: ; 91eb6 (24:5eb6) - db $0, "Will my pearls", $4f - db "grow bigger", $55 - db "inside CLOYSTER?", $57 + text "Will my pearls" + line "grow bigger" + next "inside CLOYSTER?" + done _Route20BattleText9: ; 91ee3 (24:5ee3) - db $0, "I swam here from", $4f - db "CINNABAR ISLAND!", $57 + text "I swam here from" + line "CINNABAR ISLAND!" + done _Route20EndBattleText9: ; 91f06 (24:5f06) - db $0, "I'm", $4f - db "so disappointed!", $58 + text "I'm" + line "so disappointed!" + prompt _Route20AfterBattleText9: ; 91f1b (24:5f1b) - db $0, "#MON have", $4f - db "taken over an", $55 - db "abandoned mansion", $55 - db "on CINNABAR!", $57 + text "#MON have" + line "taken over an" + next "abandoned mansion" + next "on CINNABAR!" + done _Route20BattleText10: ; 91f53 (24:5f53) - db $0, "CINNABAR, in the", $4f - db "west, has a LAB", $55 - db "for #MON.", $57 + text "CINNABAR, in the" + line "west, has a LAB" + next "for #MON." + done _Route20EndBattleText10: ; 91f7f (24:5f7f) - db $0, "Wait!", $58 + text "Wait!" + prompt _Route20AfterBattleText10: ; 91f86 (24:5f86) - db $0, "CINNABAR is a ", $4f - db "volcanic island!", $57 + text "CINNABAR is a " + line "volcanic island!" + done _Route20Text12: ; 91fa7 (24:5fa7) _Route20Text11: ; 91fa7 (24:5fa7) - db $0, "SEAFOAM ISLANDS", $57 + text "SEAFOAM ISLANDS" + done _Route21BattleText1: ; 91fb8 (24:5fb8) - db $0, "You want to know", $4f - db "if the fish are", $55 - db "biting?", $57 + text "You want to know" + line "if the fish are" + next "biting?" + done _Route21EndBattleText1: ; 91fe2 (24:5fe2) - db $0, "Dang!", $58 + text "Dang!" + prompt _Route21AfterBattleText1: ; 91fe9 (24:5fe9) - db $0, "I can't catch", $4f - db "anything good!", $57 + text "I can't catch" + line "anything good!" + done _Route21BattleText2: ; 92006 (24:6006) - db $0, "I got a big haul!", $4f - db "Wanna go for it?", $57 + text "I got a big haul!" + line "Wanna go for it?" + done _Route21EndBattleText2: ; 9202a (24:602a) - db $0, "Darn", $4f - db "MAGIKARP!", $58 + text "Darn" + line "MAGIKARP!" + prompt _Route21AfterBattleText2: ; 9203a (24:603a) - db $0, "I seem to only", $4f - db "catch MAGIKARP!", $57 + text "I seem to only" + line "catch MAGIKARP!" + done _Route21BattleText3: ; 9205a (24:605a) - db $0, "The sea cleanses", $4f - db "my body and soul!", $57 + text "The sea cleanses" + line "my body and soul!" + done _Route21EndBattleText3: ; 9207e (24:607e) - db $0, "Ayah!", $58 + text "Ayah!" + prompt _Route21AfterBattleText3: ; 92085 (24:6085) - db $0, "I like the", $4f - db "mountains too!", $57 + text "I like the" + line "mountains too!" + done _Route21BattleText4: ; 920a0 (24:60a0) - db $0, "What's wrong with", $4f - db "me swimming?", $57 + text "What's wrong with" + line "me swimming?" + done _Route21EndBattleText4: ; 920bf (24:60bf) - db $0, "Cheap", $4f - db "shot!", $58 + text "Cheap" + line "shot!" + prompt _Route21AfterBattleText4: ; 920cc (24:60cc) - db $0, "I look like what?", $4f - db "A studded inner", $55 - db "tube? Get lost!", $57 + text "I look like what?" + line "A studded inner" + next "tube? Get lost!" + done _Route21BattleText5: ; 920ff (24:60ff) - db $0, "I caught all my", $4f - db "#MON at sea!", $57 + text "I caught all my" + line "#MON at sea!" + done _Route21EndBattleText5: ; 9211d (24:611d) - db $0, "Diver!!", $4f - db "Down!!", $58 + text "Diver!!" + line "Down!!" + prompt _Route21AfterBattleText5: ; 9212d (24:612d) - db $0, "Where'd you catch", $4f - db "your #MON?", $57 + text "Where'd you catch" + line "your #MON?" + done _Route21BattleText6: ; 9214a (24:614a) - db $0, "Right now, I'm in", $4f - db "a triathlon meet!", $57 + text "Right now, I'm in" + line "a triathlon meet!" + done _Route21EndBattleText6: ; 9216e (24:616e) - db $0, "Pant...", $4f - db "pant...pant...", $58 + text "Pant..." + line "pant...pant..." + prompt _Route21AfterBattleText6: ; 92186 (24:6186) - db $0, "I'm beat!", $4f - db "But, I still have", $55 - db "the bike race and", $55 - db "marathon left!", $57 + text "I'm beat!" + line "But, I still have" + next "the bike race and" + next "marathon left!" + done _Route21BattleText7: ; 921c3 (24:61c3) - db $0, "Ahh! Feel the sun", $4f - db "and the wind!", $57 + text "Ahh! Feel the sun" + line "and the wind!" + done _Route21EndBattleText7: ; 921e4 (24:61e4) - db $0, "Yow!", $4f - db "I lost!", $58 + text "Yow!" + line "I lost!" + prompt _Route21AfterBattleText7: ; 921f2 (24:61f2) - db $0, "I'm sunburnt to a", $4f - db "crisp!", $57 + text "I'm sunburnt to a" + line "crisp!" + done _Route21BattleText8: ; 9220b (24:620b) - db $0, "Hey, don't scare", $4f - db "away the fish!", $57 + text "Hey, don't scare" + line "away the fish!" + done _Route21EndBattleText8: ; 9222b (24:622b) - db $0, "Sorry!", $4f - db "I didn't mean it!", $58 + text "Sorry!" + line "I didn't mean it!" + prompt _Route21AfterBattleText8: ; 92244 (24:6244) - db $0, "I was just angry", $4f - db "that I couldn't", $55 - db "catch anything.", $57 + text "I was just angry" + line "that I couldn't" + next "catch anything." + done _Route21BattleText9: ; 92275 (24:6275) - db $0, "Keep me company", $4f - db "'til I get a hit!", $57 + text "Keep me company" + line "'til I get a hit!" + done _Route21EndBattleText9: ; 92297 (24:6297) - db $0, "That", $4f - db "burned some time.", $58 + text "That" + line "burned some time." + prompt _Route21AfterBattleText9: ; 922af (24:62af) - db $0, "Oh wait! I got a", $4f - db "bite! Yeah!", $57 + text "Oh wait! I got a" + line "bite! Yeah!" + done _UnnamedText_511ad: ; 922cd (24:62cd) db $0, $53, ": Hey!", $4f @@ -122372,20 +123805,24 @@ _UnnamedText_511ad: ; 922cd (24:62cd) db "get any stronger?", $57 _UnnamedText_511b2: ; 9236f (24:636f) - db $0, "I heard #MON", $4f - db "LEAGUE has many", $55 - db "tough trainers!", $51 - db "I have to figure", $4f - db "out how to get", $55 - db "past them!", $51 - db "You should quit", $4f - db "dawdling and get", $55 - db "a move on!", $57 + text "I heard #MON" + line "LEAGUE has many" + next "tough trainers!" + + page "I have to figure" + line "out how to get" + next "past them!" + + page "You should quit" + line "dawdling and get" + next "a move on!" + done _UnnamedText_511b7: ; 923f4 (24:63f4) - db $0, "Awww!", $4f - db "You just lucked", $55 - db "out!", $58 + text "Awww!" + line "You just lucked" + next "out!" + prompt _UnnamedText_511bc: ; 92410 (24:6410) db $0, $53, ": What?", $4f @@ -122411,19 +123848,24 @@ _UnnamedText_511c1: ; 92450 (24:6450) db "Come on!", $57 _UnnamedText_511c6: ; 92506 (24:6506) - db $0, "That loosened me", $4f - db "up! I'm ready for", $55 - db "#MON LEAGUE!", $51 - db $52, ", you need", $4f - db "more practice!", $51 - db "But hey, you know", $4f - db "that! I'm out of", $55 - db "here. Smell ya!", $57 + text "That loosened me" + line "up! I'm ready for" + next "#MON LEAGUE!" + + page $52, ", you need" + line "more practice!" + + page "But hey, you know" + line "that! I'm out of" + next "here. Smell ya!" + done _UnnamedText_511cb: ; 92583 (24:6583) - db $0, "What!?", $51 - db "I was just", $4f - db "careless!", $58 + text "What!?" + + page "I was just" + line "careless!" + prompt _UnnamedText_511d0: ; 925a0 (24:65a0) db $0, $53, ": Hahaha!", $4f @@ -122435,8 +123877,9 @@ _UnnamedText_511d0: ; 925a0 (24:65a0) db "more! You loser!", $58 _Route22Text3: ; 92606 (24:6606) - db $0, "#MON LEAGUE", $4f - db "Front Gate", $57 + text "#MON LEAGUE" + line "Front Gate" + done _VictoryRoadGuardText1: ; 9261e (24:661e) db $0, "You can pass here", $4f @@ -122451,10 +123894,11 @@ UnnamedText_92647: ; 92647 (24:6647) UnnamedText_92660: ; 92660 (24:6660) TX_RAM $cd6d - db $0, " yet!", $51 - db "You have to have", $4f - db "it to get to", $55 - db "#MON LEAGUE!@@" + text " yet!" + + page "You have to have" + line "it to get to" + next "#MON LEAGUE!@@" _VictoryRoadGuardText2: ; 92696 (24:6696) db $0, "You can pass here", $4f @@ -122469,26 +123913,29 @@ UnnamedText_926bf: ; 926bf (24:66bf) UnnamedText_926d6: ; 926d6 (24:66d6) TX_RAM $cd6d - db $0, "!@@" + text "!@@" _UnnamedText_513a3: ; 926dd (24:66dd) - db $0, $51 - db "OK then! Please,", $4f - db "go right ahead!", $57 + text $51 + db "OK then! Please," + line "go right ahead!" + done _Route23Text8: ; 92700 (24:6700) - db $0, "VICTORY ROAD GATE", $4f - db "- #MON LEAGUE", $57 + text "VICTORY ROAD GATE" + line "- #MON LEAGUE" + done _UnnamedText_51510: ; 92721 (24:6721) - db $0, "Congratulations!", $4f - db "You beat our 5", $55 - db "contest trainers!@@" + text "Congratulations!" + line "You beat our 5" + next "contest trainers!@@" _UnnamedText_51515: ; 92755 (24:6755) - db $0, $51 - db "You just earned a", $4f - db "fabulous prize!", $58 + text $51 + db "You just earned a" + line "fabulous prize!" + prompt _UnnamedText_5151a: ; 92779 (24:6779) db $0, $52, " received", $4f @@ -122496,278 +123943,343 @@ _UnnamedText_5151a: ; 92779 (24:6779) UnnamedText_92788: ; 92788 (24:6788) TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_51521: ; 9278f (24:678f) - db $0, "You don't have", $4f - db "any room!", $57 + text "You don't have" + line "any room!" + done _UnnamedText_51526: ; 927a8 (24:67a8) - db $0, "By the way, would", $4f - db "you like to join", $55 - db "TEAM ROCKET?", $51 - db "We're a group", $4f - db "dedicated to evil", $55 - db "using #MON!", $51 - db "Want to join?", $51 - db "Are you sure?", $51 - db "Come on, join us!", $51 - db "I'm telling you", $4f - db "to join!", $51 - db "OK, you need", $4f - db "convincing!", $51 - db "I'll make you an", $4f - db "offer you can't", $55 - db "refuse!", $57 + text "By the way, would" + line "you like to join" + next "TEAM ROCKET?" + + page "We're a group" + line "dedicated to evil" + next "using #MON!" + + page "Want to join?" + + page "Are you sure?" + + page "Come on, join us!" + + page "I'm telling you" + line "to join!" + + page "OK, you need" + line "convincing!" + + page "I'll make you an" + line "offer you can't" + next "refuse!" + done _UnnamedText_5152b: ; 9288a (24:688a) - db $0, "Arrgh!", $4f - db "You are good!", $58 + text "Arrgh!" + line "You are good!" + prompt _UnnamedText_51530: ; 928a0 (24:68a0) - db $0, "With your ability,", $4f - db "you could become", $55 - db "a top leader in", $55 - db "TEAM ROCKET!", $57 + text "With your ability," + line "you could become" + next "a top leader in" + next "TEAM ROCKET!" + done _Route24BattleText1: ; 928e2 (24:68e2) - db $0, "I saw your feat", $4f - db "from the grass!", $57 + text "I saw your feat" + line "from the grass!" + done SECTION "bank25",ROMX,BANK[$25] _Route24EndBattleText1: ; 94000 (25:4000) - db $0, "I", $4f - db "thought not!", $58 + text "I" + line "thought not!" + prompt _Route24AfterBattleText1: ; 94010 (25:4010) - db $0, "I hid because the", $4f - db "people on the", $55 - db "bridge scared me!", $57 + text "I hid because the" + line "people on the" + next "bridge scared me!" + done _Route24BattleText2: ; 94043 (25:4043) - db $0, "OK! I'm No. 5!", $4f - db "I'll stomp you!", $57 + text "OK! I'm No. 5!" + line "I'll stomp you!" + done _Route24EndBattleText2: ; 94061 (25:4061) - db $0, "Whoa!", $4f - db "Too much!", $58 + text "Whoa!" + line "Too much!" + prompt _Route24AfterBattleText2: ; 94072 (25:4072) - db $0, "I did my best, I", $4f - db "have no regrets!", $57 + text "I did my best, I" + line "have no regrets!" + done _Route24BattleText3: ; 94095 (25:4095) - db $0, "I'm No. 4!", $4f - db "Getting tired?", $57 + text "I'm No. 4!" + line "Getting tired?" + done _Route24EndBattleText3: ; 940af (25:40af) - db $0, "I lost", $4f - db "too!", $58 + text "I lost" + line "too!" + prompt _Route24AfterBattleText3: ; 940bc (25:40bc) - db $0, "I did my best, so", $4f - db "I've no regrets!", $57 + text "I did my best, so" + line "I've no regrets!" + done _Route24BattleText4: ; 940df (25:40df) - db $0, "Here's No. 3!", $4f - db "I won't be easy!", $57 + text "Here's No. 3!" + line "I won't be easy!" + done _Route24EndBattleText4: ; 940fd (25:40fd) - db $0, "Ow!", $4f - db "Stomped flat!", $58 + text "Ow!" + line "Stomped flat!" + prompt _Route24AfterBattleText4: ; 94110 (25:4110) - db $0, "I did my best, I", $4f - db "have no regrets!", $57 + text "I did my best, I" + line "have no regrets!" + done _Route24BattleText5: ; 94133 (25:4133) - db $0, "I'm second!", $4f - db "Now it's serious!", $57 + text "I'm second!" + line "Now it's serious!" + done _Route24EndBattleText5: ; 94150 (25:4150) - db $0, "How could I", $4f - db "lose?", $58 + text "How could I" + line "lose?" + prompt _Route24AfterBattleText5: ; 94163 (25:4163) - db $0, "I did my best, I", $4f - db "have no regrets!", $57 + text "I did my best, I" + line "have no regrets!" + done _Route24BattleText6: ; 94186 (25:4186) - db $0, "This is NUGGET", $4f - db "BRIDGE! Beat us 5", $55 - db "trainers and win", $55 - db "a fabulous prize!", $51 - db "Think you got", $4f - db "what it takes?", $57 + text "This is NUGGET" + line "BRIDGE! Beat us 5" + next "trainers and win" + next "a fabulous prize!" + + page "Think you got" + line "what it takes?" + done _Route24EndBattleText6: ; 941e8 (25:41e8) - db $0, "Whoo!", $4f - db "Good stuff!", $58 + text "Whoo!" + line "Good stuff!" + prompt _Route24AfterBattleText6: ; 941fb (25:41fb) - db $0, "I did my best, I", $4f - db "have no regrets!", $57 + text "I did my best, I" + line "have no regrets!" + done _Route25BattleText1: ; 9421e (25:421e) - db $0, "Local trainers", $4f - db "come here to", $55 - db "practice!", $57 + text "Local trainers" + line "come here to" + next "practice!" + done _Route25EndBattleText1: ; 94245 (25:4245) - db $0, "You're", $4f - db "decent.", $58 + text "You're" + line "decent." + prompt _Route25AfterBattleText1: ; 94254 (25:4254) - db $0, "All #MON have", $4f - db "weaknesses. It's", $55 - db "best to raise", $55 - db "different kinds.", $57 + text "All #MON have" + line "weaknesses. It's" + next "best to raise" + next "different kinds." + done _Route25BattleText2: ; 94292 (25:4292) - db $0, "Dad took me to a", $4f - db "great party on", $55 - db "S.S.ANNE at", $55 - db "VERMILION CITY!", $57 + text "Dad took me to a" + line "great party on" + next "S.S.ANNE at" + next "VERMILION CITY!" + done _Route25EndBattleText2: ; 942cf (25:42cf) - db $0, "I'm", $4f - db "not mad!", $58 + text "I'm" + line "not mad!" + prompt _Route25AfterBattleText2: ; 942dc (25:42dc) - db $0, "On S.S.ANNE, I", $4f - db "saw trainers from", $55 - db "around the world.", $57 + text "On S.S.ANNE, I" + line "saw trainers from" + next "around the world." + done _Route25BattleText3: ; 94310 (25:4310) - db $0, "I'm a cool guy.", $4f - db "I've got a girl", $55 - db "friend!", $57 + text "I'm a cool guy." + line "I've got a girl" + next "friend!" + done _Route25EndBattleText3: ; 94337 (25:4337) - db $0, "Aww,", $4f - db "darn...", $58 + text "Aww," + line "darn..." + prompt _Route25AfterBattleText3: ; 94345 (25:4345) - db $0, "Oh well. My girl", $4f - db "will cheer me up.", $57 + text "Oh well. My girl" + line "will cheer me up." + done _Route25BattleText4: ; 94369 (25:4369) - db $0, "Hi! My boy", $4f - db "friend is cool!", $57 + text "Hi! My boy" + line "friend is cool!" + done _Route25EndBattleText4: ; 94385 (25:4385) - db $0, "I was in", $4f - db "bad condition!", $58 + text "I was in" + line "bad condition!" + prompt _Route25AfterBattleText4: ; 9439e (25:439e) - db $0, "I wish my guy was", $4f - db "as good as you!", $57 + text "I wish my guy was" + line "as good as you!" + done _Route25BattleText5: ; 943c1 (25:43c1) - db $0, "I knew I had to", $4f - db "fight you!", $57 + text "I knew I had to" + line "fight you!" + done _Route25EndBattleText5: ; 943dd (25:43dd) - db $0, "I knew", $4f - db "I'd lose too!", $58 + text "I knew" + line "I'd lose too!" + prompt _Route25AfterBattleText5: ; 943f2 (25:43f2) - db $0, "If your #MON", $4f - db "gets confused or", $55 - db "falls asleep,", $55 - db "switch it!", $57 + text "If your #MON" + line "gets confused or" + next "falls asleep," + next "switch it!" + done _Route25BattleText6: ; 9442a (25:442a) - db $0, "My friend has a", $4f - db "cute #MON.", $55 - db "I'm so jealous!", $57 + text "My friend has a" + line "cute #MON." + next "I'm so jealous!" + done _Route25EndBattleText6: ; 94455 (25:4455) - db $0, "I'm", $4f - db "not so jealous!", $58 + text "I'm" + line "not so jealous!" + prompt _Route25AfterBattleText6: ; 94469 (25:4469) - db $0, "You came from MT.", $4f - db "MOON? May I have", $55 - db "a CLEFAIRY?", $57 + text "You came from MT." + line "MOON? May I have" + next "a CLEFAIRY?" + done _Route25BattleText7: ; 94499 (25:4499) - db $0, "I just got down", $4f - db "from MT.MOON,", $55 - db "but I'm ready!", $57 + text "I just got down" + line "from MT.MOON," + next "but I'm ready!" + done _Route25EndBattleText7: ; 944c6 (25:44c6) - db $0, "You", $4f - db "worked hard!", $58 + text "You" + line "worked hard!" + prompt _Route25AfterBattleText7: ; 944d8 (25:44d8) - db $0, "Drat!", $4f - db "A ZUBAT bit me", $55 - db "back in there.", $57 + text "Drat!" + line "A ZUBAT bit me" + next "back in there." + done _Route25BattleText8: ; 944fd (25:44fd) - db $0, "I'm off to see a", $4f - db "#MON collector", $55 - db "at the cape!", $57 + text "I'm off to see a" + line "#MON collector" + next "at the cape!" + done _Route25EndBattleText8: ; 9452a (25:452a) - db $0, "You", $4f - db "got me.", $58 + text "You" + line "got me." + prompt _Route25AfterBattleText8: ; 94537 (25:4537) - db $0, "The collector has", $4f - db "many rare kinds", $55 - db "of #MON.", $57 + text "The collector has" + line "many rare kinds" + next "of #MON." + done _Route25BattleText9: ; 94563 (25:4563) - db $0, "You're going to", $4f - db "see BILL? First,", $55 - db "let's fight!", $57 + text "You're going to" + line "see BILL? First," + next "let's fight!" + done _Route25EndBattleText9: ; 94590 (25:4590) - db $0, "You're", $4f - db "something.", $58 + text "You're" + line "something." + prompt _Route25AfterBattleText9: ; 945a2 (25:45a2) - db $0, "The trail below", $4f - db "is a shortcut to", $55 - db "CERULEAN CITY.", $57 + text "The trail below" + line "is a shortcut to" + next "CERULEAN CITY." + done _Route25Text11: ; 945d3 (25:45d3) - db $0, "SEA COTTAGE", $4f - db "BILL lives here!", $57 + text "SEA COTTAGE" + line "BILL lives here!" + done _FileDataDestroyedText: ; 945f1 (25:45f1) - db $0, "The file data is", $4f - db "destroyed!", $58 + text "The file data is" + line "destroyed!" + prompt _WouldYouLikeToSaveText: ; 9460e (25:460e) - db $0, "Would you like to", $4f - db "SAVE the game?", $57 + text "Would you like to" + line "SAVE the game?" + done _GameSavedText: ; 94630 (25:4630) - db $0, $52, " saved", $4f - db "the game!", $57 + text $52, " saved" + line "the game!" + done _OlderFileWillBeErasedText: ; 94643 (25:4643) - db $0, "The older file", $4f - db "will be erased to", $55 - db "save. Okay?", $57 + text "The older file" + line "will be erased to" + next "save. Okay?" + done _UnnamedText_73909: ; 94671 (25:4671) - db $0, "When you change a", $4f - db "#MON BOX, data", $55 - db "will be saved.", $51 - db "Is that okay?", $57 + text "When you change a" + line "#MON BOX, data" + next "will be saved." + + page "Is that okay?" + done _UnnamedText_739d4: ; 946b0 (25:46b0) - db $0, "Choose a", $4f - db $4a, " BOX.@@" + text "Choose a" + line $4a, " BOX.@@" _UnnamedText_3af3e: ; 946c2 (25:46c2) TX_RAM $cf4b - db $0, " evolved", $57 + text " evolved" + done _UnnamedText_3af43: ; 946cf (25:46cf) db $0, $4f @@ -122775,51 +124287,61 @@ _UnnamedText_3af43: ; 946cf (25:46cf) UnnamedText_946d7: ; 946d7 (25:46d7) TX_RAM $cd6d - db $0, "!", $57 + text "!" + done _UnnamedText_3af48: ; 946dd (25:46dd) db $0, "Huh? @" UnnamedText_946e4: ; 946e4 (25:46e4) TX_RAM $cf4b - db $0, $4f - db "stopped evolving!", $58 + db $0 + line "stopped evolving!" + prompt _UnnamedText_3af4d: ; 946fb (25:46fb) db $0, "What? @" UnnamedText_94703: ; 94703 (25:4703) TX_RAM $cf4b - db $0, $4f - db "is evolving!", $57 + db $0 + line "is evolving!" + done _UnnamedText_3f245: ; 94715 (25:4715) - db $0, $59, $4f - db "fell asleep!", $58 + text $59 + line "fell asleep!" + prompt _UnnamedText_3f24a: ; 94725 (25:4725) - db $0, $59, "'s", $4f - db "already asleep!", $58 + text $59, "'s" + line "already asleep!" + prompt _UnnamedText_3f2df: ; 94739 (25:4739) - db $0, $59, $4f - db "was poisoned!", $58 + text $59 + line "was poisoned!" + prompt _UnnamedText_3f2e4: ; 9474a (25:474a) - db $0, $59, "'s", $4f - db "badly poisoned!", $58 + text $59, "'s" + line "badly poisoned!" + prompt _UnnamedText_3f3d8: ; 9475e (25:475e) - db $0, $59, $4f - db "was burned!", $58 + text $59 + line "was burned!" + prompt _UnnamedText_3f3dd: ; 9476d (25:476d) - db $0, $59, $4f - db "was frozen solid!", $58 + text $59 + line "was frozen solid!" + prompt _UnnamedText_3f423: ; 94782 (25:4782) - db $0, "Fire defrosted", $4f - db $59, "!", $58 + text "Fire defrosted" + line $59, "!" + prompt _UnnamedText_3f528: ; 94795 (25:4795) db $0, $5a, "'s", $4f @@ -122827,13 +124349,14 @@ _UnnamedText_3f528: ; 94795 (25:4795) UnnamedText_9479a: ; 9479a (25:479a) TX_RAM $cf4b - db $0, "@@" + text "@@" _UnnamedText_3f542: ; 947a0 (25:47a0) - db $0, $4c, "greatly@@" + text $4c, "greatly@@" _UnnamedText_3f547: ; 947ab (25:47ab) - db $0, " rose!", $58 + text " rose!" + prompt _UnnamedText_3f661: ; 947b3 (25:47b3) db $0, $59, "'s", $4f @@ -122841,56 +124364,67 @@ _UnnamedText_3f661: ; 947b3 (25:47b3) UnnamedText_947b8: ; 947b8 (25:47b8) TX_RAM $cf4b - db $0, "@@" + text "@@" _UnnamedText_3f67e: ; 947be (25:47be) - db $0, $4c, "greatly@@" + text $4c, "greatly@@" _UnnamedText_3f683: ; 947c9 (25:47c9) - db $0, " fell!", $58 + text " fell!" + prompt _UnnamedText_3f802: ; 947d1 (25:47d1) - db $0, $5a, $4f - db "ran from battle!", $58 + text $5a + line "ran from battle!" + prompt _UnnamedText_3f807: ; 947e5 (25:47e5) - db $0, $59, $4f - db "ran away scared!", $58 + text $59 + line "ran away scared!" + prompt _UnnamedText_3f80c: ; 947f9 (25:47f9) - db $0, $59, $4f - db "was blown away!", $58 + text $59 + line "was blown away!" + prompt _UnnamedText_3f8c8: ; 9480c (25:480c) - db $0, $5a, "@@" + text $5a, "@@" _UnnamedText_3f8f9: ; 94810 (25:4810) - db $0, $4f - db "made a whirlwind!", $58 + db $0 + line "made a whirlwind!" + prompt _UnnamedText_3f8fe: ; 94824 (25:4824) - db $0, $4f - db "took in sunlight!", $58 + db $0 + line "took in sunlight!" + prompt _UnnamedText_3f903: ; 94838 (25:4838) - db $0, $4f - db "lowered its head!", $58 + db $0 + line "lowered its head!" + prompt _UnnamedText_3f908: ; 9484c (25:484c) - db $0, $4f - db "is glowing!", $58 + db $0 + line "is glowing!" + prompt _UnnamedText_3f90d: ; 9485a (25:485a) - db $0, $4f - db "flew up high!", $58 + db $0 + line "flew up high!" + prompt _UnnamedText_3f912: ; 9486a (25:486a) - db $0, $4f - db "dug a hole!", $58 + db $0 + line "dug a hole!" + prompt _UnnamedText_3f9a1: ; 94878 (25:4878) - db $0, $59, $4f - db "became confused!", $58 + text $59 + line "became confused!" + prompt _UnnamedText_3fa77: ; 9488c (25:488c) db $0, $5a, $4f @@ -122899,7 +124433,8 @@ _UnnamedText_3fa77: ; 9488c (25:488c) UnnamedText_94898: ; 94898 (25:4898) TX_RAM $cd6d - db $0, "!", $58 + text "!" + prompt _UnnamedText_3fb09: ; 9489e (25:489e) db $0, $59, "'s", $4f @@ -122907,83 +124442,103 @@ _UnnamedText_3fb09: ; 9489e (25:489e) UnnamedText_948a3: ; 948a3 (25:48a3) TX_RAM $cd6d - db $0, " was", $55 - db "disabled!", $58 + text " was" + next "disabled!" + prompt _UnnamedText_3fb3e: ; 948b6 (25:48b6) - db $0, "Nothing happened!", $58 + text "Nothing happened!" + prompt _UnnamedText_3fb49: ; 948c9 (25:48c9) - db $0, "No effect!", $58 + text "No effect!" + prompt _UnnamedText_3fb59: ; 948d5 (25:48d5) - db $0, "But, it failed! ", $58 + text "But, it failed! " + prompt _UnnamedText_3fb64: ; 948e7 (25:48e7) - db $0, "It didn't affect", $4f - db $59, "!", $58 + text "It didn't affect" + line $59, "!" + prompt _UnnamedText_3fb69: ; 948fb (25:48fb) - db $0, $59, $4f - db "is unaffected!", $58 + text $59 + line "is unaffected!" + prompt _UnnamedText_3fb74: ; 9490d (25:490d) - db $0, $59, "'s", $4f - db "paralyzed! It may", $55 - db "not attack!", $58 + text $59, "'s" + line "paralyzed! It may" + next "not attack!" + prompt _UnnamedText_17e1d: ; 9492f (25:492f) - db $0, "It created a", $4f - db "SUBSTITUTE!", $58 + text "It created a" + line "SUBSTITUTE!" + prompt _UnnamedText_17e22: ; 94949 (25:4949) - db $0, $5a, $4f - db "has a SUBSTITUTE!", $58 + text $5a + line "has a SUBSTITUTE!" + prompt _UnnamedText_17e27: ; 9495e (25:495e) - db $0, "Too weak to make", $4f - db "a SUBSTITUTE!", $58 + text "Too weak to make" + line "a SUBSTITUTE!" + prompt _UnnamedText_2ff04: ; 9497e (25:497e) - db $0, "Coins scattered", $4f - db "everywhere!", $58 + text "Coins scattered" + line "everywhere!" + prompt _UnnamedText_27fb3: ; 9499b (25:499b) - db $0, $5a, "'s", $4f - db "getting pumped!", $58 + text $5a, "'s" + line "getting pumped!" + prompt _UnnamedText_2bef2: ; 949af (25:49af) - db $0, $59, $4f - db "was seeded!", $58 + text $59 + line "was seeded!" + prompt _UnnamedText_2bef7: ; 949be (25:49be) - db $0, $59, $4f - db "evaded attack!", $58 + text $59 + line "evaded attack!" + prompt _UnnamedText_1399e: ; 949d0 (25:49d0) - db $0, $5a, "'s", $4f - db "hit with recoil!", $58 + text $5a, "'s" + line "hit with recoil!" + prompt _UnnamedText_139cd: ; 949e5 (25:49e5) - db $0, "Converted type to", $4f - db $59, "'s!", $58 + text "Converted type to" + line $59, "'s!" + prompt _UnnamedText_13a53: ; 949fc (25:49fc) - db $0, "All STATUS changes", $4f - db "are eliminated!", $58 + text "All STATUS changes" + line "are eliminated!" + prompt _UnnamedText_3baa2: ; 94a20 (25:4a20) - db $0, $5a, $4f - db "started sleeping!", $57 + text $5a + line "started sleeping!" + done _UnnamedText_3baa7: ; 94a35 (25:4a35) - db $0, $5a, $4f - db "fell asleep and", $55 - db "became healthy!", $57 + text $5a + line "fell asleep and" + next "became healthy!" + done _UnnamedText_3baac: ; 94a58 (25:4a58) - db $0, $5a, $4f - db "regained health!", $58 + text $5a + line "regained health!" + prompt _UnnamedText_3bb92: ; 94a6c (25:4a6c) db $0, $5a, $4f @@ -122992,34 +124547,42 @@ _UnnamedText_3bb92: ; 94a6c (25:4a6c) UnnamedText_94a81: ; 94a81 (25:4a81) TX_RAM $cd6d - db $0, "!", $58 + text "!" + prompt _UnnamedText_3bbd7: ; 94a87 (25:4a87) - db $0, $5a, "'s", $4f - db "protected against", $55 - db "special attacks!", $58 + text $5a, "'s" + line "protected against" + next "special attacks!" + prompt _UnnamedText_3bbdc: ; 94aae (25:4aae) - db $0, $5a, $4f - db "gained armor!", $58 + text $5a + line "gained armor!" + prompt _UnnamedText_33f52: ; 94abf (25:4abf) - db $0, $5a, "'s", $4f - db "shrouded in mist!", $58 + text $5a, "'s" + line "shrouded in mist!" + prompt _UnnamedText_78dc: ; 94ad5 (25:4ad5) - db $0, "Sucked health from", $4f - db $59, "!", $58 + text "Sucked health from" + line $59, "!" + prompt _UnnamedText_78e1: ; 94aec (25:4aec) - db $0, $59, "'s", $4f - db "dream was eaten!", $58 + text $59, "'s" + line "dream was eaten!" + prompt _BattleCenterMText1: ; 94b01 (25:4b01) - db $0, "!", $57 + text "!" + done _TradeCenterMText1: ; 94b04 (25:4b04) - db $0, "!", $57 + text "!" + done INCLUDE "text/mapRedsHouse1F.asm" INCLUDE "text/mapBluesHouse.asm" @@ -123048,33 +124611,38 @@ _OaksLabText39: ; 94ddf (25:4ddf) db "contain #MON!", $57 _OaksLabCharmanderText: ; 94e06 (25:4e06) - db $0, "So! You want the", $4f - db "fire #MON,", $55 - db "CHARMANDER?", $57 + text "So! You want the" + line "fire #MON," + next "CHARMANDER?" + done _OaksLabSquirtleText: ; 94e2f (25:4e2f) - db $0, "So! You want the", $4f - db "water #MON,", $55 - db "SQUIRTLE?", $57 + text "So! You want the" + line "water #MON," + next "SQUIRTLE?" + done _OaksLabBulbasaurText: ; 94e57 (25:4e57) - db $0, "So! You want the", $4f - db "plant #MON,", $55 - db "BULBASAUR?", $57 + text "So! You want the" + line "plant #MON," + next "BULBASAUR?" + done _OaksLabMonEnergeticText: ; 94e80 (25:4e80) - db $0, "This #MON is", $4f - db "really energetic!", $58 + text "This #MON is" + line "really energetic!" + prompt _OaksLabReceivedMonText: ; 94ea0 (25:4ea0) - db $0, $52, " received", $4f - db "a @" + text $52, " received" + line "a @" TX_RAM $cd6d - db $0, "!@@" + text "!@@" _OaksLabLastMonText: ; 94eb6 (25:4eb6) - db $0, "That's PROF.OAK's", $4f - db "last #MON!", $57 + text "That's PROF.OAK's" + line "last #MON!" + done _UnnamedText_1d2f0: ; 94ed2 (25:4ed2) db $0, "OAK: Now, ", $52, ",", $4f @@ -123108,16 +124676,18 @@ _OaksLabDeliverParcelText1: ; 94f69 (25:4f69) db "OAK's PARCEL.@@" _OaksLabDeliverParcelText2: ; 9500f (25:500f) - db $0, $51 - db "Ah! This is the", $4f - db "custom # BALL", $55 - db "I ordered!", $55 - db "Thank you!", $57 + text $51 + db "Ah! This is the" + line "custom # BALL" + next "I ordered!" + next "Thank you!" + done _OaksLabAroundWorldText: ; 95045 (25:5045) - db $0, "#MON around the", $4f - db "world wait for", $55 - db "you, ", $52, "!", $57 + text "#MON around the" + line "world wait for" + next "you, ", $52, "!" + done _OaksLabGivePokeballsText1: ; 9506d (25:506d) db $0, "OAK: You can't get", $4f @@ -123132,18 +124702,22 @@ _OaksLabGivePokeballsText1: ; 9506d (25:506d) db "# BALLs!@@" _OaksLabGivePokeballsText2: ; 950f2 (25:50f2) - db $0, $51 - db "When a wild", $4f - db "#MON appears,", $55 - db "it's fair game.", $51 - db "Just throw a #", $4f - db "BALL at it and try", $4f - db "to catch it!", $51 - db "This won't always", $4f - db "work, though.", $51 - db "A healthy #MON", $4f - db "could escape. You", $55 - db "have to be lucky!", $57 + text $51 + db "When a wild" + line "#MON appears," + next "it's fair game." + + page "Just throw a #" + line "BALL at it and try" + line "to catch it!" + + page "This won't always" + line "work, though." + + page "A healthy #MON" + line "could escape. You" + next "have to be lucky!" + done _OaksLabPleaseVisitText: ; 9519e (25:519e) db $0, "OAK: Come see me", $4f @@ -123160,20 +124734,24 @@ _UnnamedText_1d31d: ; 951e9 (25:51e9) db "a look!", $58 _UnnamedText_1d32c: ; 95236 (25:5236) - db $0, "It's encyclopedia-", $4f - db "like, but the", $55 - db "pages are blank!", $57 + text "It's encyclopedia-" + line "like, but the" + next "pages are blank!" + done _OaksLabText8: ; 95268 (25:5268) - db $0, "?", $57 + text "?" + done _UnnamedText_1d340: ; 9526b (25:526b) - db $0, "PROF.OAK is the", $4f - db "authority on", $55 - db "#MON!", $51 - db "Many #MON", $4f - db "trainers hold him", $55 - db "in high regard!", $57 + text "PROF.OAK is the" + line "authority on" + next "#MON!" + + page "Many #MON" + line "trainers hold him" + next "in high regard!" + done _OaksLabRivalWaitingText: ; 952bb (25:52bb) db $0, $53, ": Gramps!", $4f @@ -123224,7 +124802,7 @@ _OaksLabRivalReceivedMonText: ; 95461 (25:5461) UnnamedText_95470: ; 95470 (25:5470) TX_RAM $cd6d - db $0, "!@@" + text "!@@" _OaksLabRivalChallengeText: ; 95477 (25:5477) db $0, $53, ": Wait", $4f @@ -123235,10 +124813,11 @@ _OaksLabRivalChallengeText: ; 95477 (25:5477) db "you on!", $57 _UnnamedText_1d3be: ; 954b6 (25:54b6) - db $0, "WHAT?", $4f - db "Unbelievable!", $55 - db "I picked the", $55 - db "wrong #MON!", $58 + text "WHAT?" + line "Unbelievable!" + next "I picked the" + next "wrong #MON!" + prompt _UnnamedText_1d3c3: ; 954e4 (25:54e4) db $0, $53, ": Yeah! Am", $4f @@ -123265,15 +124844,18 @@ _OaksLabText23: ; 9557b (25:557b) db "of you two.", $57 _OaksLabText24: ; 955a8 (25:55a8) - db $0, "On the desk there", $4f - db "is my invention,", $55 - db "#DEX!", $51 - db "It automatically", $4f - db "records data on", $55 - db "#MON you've", $55 - db "seen or caught!", $51 - db "It's a hi-tech", $4f - db "encyclopedia!", $57 + text "On the desk there" + line "is my invention," + next "#DEX!" + + page "It automatically" + line "records data on" + next "#MON you've" + next "seen or caught!" + + page "It's a hi-tech" + line "encyclopedia!" + done _OaksLabText25: ; 9562a (25:562a) db $0, "OAK: ", $52, " and", $4f @@ -123283,21 +124865,27 @@ _OaksLabText25: ; 9562a (25:562a) db "#DEX from OAK!@@" _OaksLabText26: ; 95664 (25:5664) - db $0, "To make a complete", $4f - db "guide on all the", $55 - db "#MON in the", $55 - db "world...", $51 - db "That was my dream!", $51 - db "But, I'm too old!", $4f - db "I can't do it!", $51 - db "So, I want you two", $4f - db "to fulfill my", $55 - db "dream for me!", $51 - db "Get moving, you", $4f - db "two!", $51 - db "This is a great", $4f - db "undertaking in", $55 - db "#MON history!", $57 + text "To make a complete" + line "guide on all the" + next "#MON in the" + next "world..." + + page "That was my dream!" + + page "But, I'm too old!" + line "I can't do it!" + + page "So, I want you two" + line "to fulfill my" + next "dream for me!" + + page "Get moving, you" + line "two!" + + page "This is a great" + line "undertaking in" + next "#MON history!" + done _OaksLabText27: ; 95741 (25:5741) db $0, $53, ": Alright", $4f @@ -123314,8 +124902,9 @@ _OaksLabText27: ; 95741 (25:5741) db $52, "! Hahaha!", $57 _UnnamedText_1d405: ; 957eb (25:57eb) - db $0, "I study #MON as", $4f - db "PROF.OAK's AIDE.", $57 + text "I study #MON as" + line "PROF.OAK's AIDE." + done _UnnamedText_441cc: ; 9580c (25:580c) db $0, "#DEX comp-", $4f @@ -123334,153 +124923,185 @@ UnnamedText_95835: ; 95835 (25:5835) db "Rating:", $58 _UnnamedText_44201: ; 95858 (25:5858) - db $0, "You still have", $4f - db "lots to do.", $55 - db "Look for #MON", $55 - db "in grassy areas!", $57 + text "You still have" + line "lots to do." + next "Look for #MON" + next "in grassy areas!" + done _UnnamedText_44206: ; 95893 (25:5893) - db $0, "You're on the", $4f - db "right track! ", $55 - db "Get a FLASH HM", $55 - db "from my AIDE!", $57 + text "You're on the" + line "right track! " + next "Get a FLASH HM" + next "from my AIDE!" + done _UnnamedText_4420b: ; 958cc (25:58cc) - db $0, "You still need", $4f - db "more #MON!", $55 - db "Try to catch", $55 - db "other species!", $57 + text "You still need" + line "more #MON!" + next "Try to catch" + next "other species!" + done _UnnamedText_44210: ; 95903 (25:5903) - db $0, "Good, you're", $4f - db "trying hard!", $55 - db "Get an ITEMFINDER", $55 - db "from my AIDE!", $57 + text "Good, you're" + line "trying hard!" + next "Get an ITEMFINDER" + next "from my AIDE!" + done _UnnamedText_44215: ; 9593d (25:593d) - db $0, "Looking good!", $4f - db "Go find my AIDE", $55 - db "when you get 50!", $57 + text "Looking good!" + line "Go find my AIDE" + next "when you get 50!" + done _UnnamedText_4421a: ; 9596d (25:596d) - db $0, "You finally got at", $4f - db "least 50 species!", $55 - db "Be sure to get", $55 - db "EXP.ALL from my", $55 - db "AIDE!", $57 + text "You finally got at" + line "least 50 species!" + next "Be sure to get" + next "EXP.ALL from my" + next "AIDE!" + done _UnnamedText_4421f: ; 959b8 (25:59b8) - db $0, "Ho! This is geting", $4f - db "even better!", $57 + text "Ho! This is geting" + line "even better!" + done _UnnamedText_44224: ; 959d9 (25:59d9) - db $0, "Very good!", $4f - db "Go fish for some", $55 - db "marine #MON!", $57 + text "Very good!" + line "Go fish for some" + next "marine #MON!" + done _UnnamedText_44229: ; 95a03 (25:5a03) - db $0, "Wonderful!", $4f - db "Do you like to", $55 - db "collect things?", $57 + text "Wonderful!" + line "Do you like to" + next "collect things?" + done _UnnamedText_4422e: ; 95a2e (25:5a2e) - db $0, "I'm impressed!", $4f - db "It must have been", $55 - db "difficult to do!", $57 + text "I'm impressed!" + line "It must have been" + next "difficult to do!" + done _UnnamedText_44233: ; 95a60 (25:5a60) - db $0, "You finally got at", $4f - db "least 100 species!", $55 - db "I can't believe", $55 - db "how good you are!", $57 + text "You finally got at" + line "least 100 species!" + next "I can't believe" + next "how good you are!" + done _UnnamedText_44238: ; 95aa8 (25:5aa8) - db $0, "You even have the", $4f - db "evolved forms of", $55 - db "#MON! Super!", $57 + text "You even have the" + line "evolved forms of" + next "#MON! Super!" + done _UnnamedText_4423d: ; 95ad9 (25:5ad9) - db $0, "Excellent! Trade", $4f - db "with friends to", $55 - db "get some more!", $57 + text "Excellent! Trade" + line "with friends to" + next "get some more!" + done _UnnamedText_44242: ; 95b0a (25:5b0a) - db $0, "Outstanding!", $4f - db "You've become a", $55 - db "real pro at this!", $57 + text "Outstanding!" + line "You've become a" + next "real pro at this!" + done _UnnamedText_44247: ; 95b39 (25:5b39) - db $0, "I have nothing", $4f - db "left to say!", $55 - db "You're the", $55 - db "authority now!", $57 + text "I have nothing" + line "left to say!" + next "You're the" + next "authority now!" + done _UnnamedText_4424c: ; 95b6f (25:5b6f) - db $0, "Your #DEX is", $4f - db "entirely complete!", $55 - db "Congratulations!", $57 + text "Your #DEX is" + line "entirely complete!" + next "Congratulations!" + done _ViridianPokeCenterText2: ; 95ba1 (25:5ba1) _ViridianPokeCenterText1: ; 95ba1 (25:5ba1) - db $0, "You can use that", $4f - db "PC in the corner.", $51 - db "The receptionist", $4f - db "told me. So kind!", $57 + text "You can use that" + line "PC in the corner." + + page "The receptionist" + line "told me. So kind!" + done _ViridianPokeCenterText3: ; 95be8 (25:5be8) - db $0, "There's a #MON", $4f - db "CENTER in every", $55 - db "town ahead.", $51 - db "They don't charge", $4f - db "any money either!", $57 + text "There's a #MON" + line "CENTER in every" + next "town ahead." + + page "They don't charge" + line "any money either!" + done _ViridianMartText1: ; 95c36 (25:5c36) - db $0, "Okay! Say hi to", $4f - db "PROF.OAK for me!", $57 + text "Okay! Say hi to" + line "PROF.OAK for me!" + done _ViridianMartText4: ; 95c58 (25:5c58) - db $0, "Hey! You came from", $4f - db "PALLET TOWN?", $57 + text "Hey! You came from" + line "PALLET TOWN?" + done ViridianMartParcelQuestText: ; 95c79 (25:5c79) - db $0, "You know PROF.", $4f - db "OAK, right?", $51 - db "His order came in.", $4f - db "Will you take it", $55 - db "to him?", $51 - db $52, " got", $4f - db "OAK's PARCEL!@@" + text "You know PROF." + line "OAK, right?" + + page "His order came in." + line "Will you take it" + next "to him?" + + page $52, " got" + line "OAK's PARCEL!@@" _ViridianMartText2: ; 95cd5 (25:5cd5) - db $0, "This shop sells", $4f - db "many ANTIDOTEs.", $57 + text "This shop sells" + line "many ANTIDOTEs." + done _ViridianMartText3: ; 95cf6 (25:5cf6) - db $0, "No! POTIONs are", $4f - db "all sold out.", $57 + text "No! POTIONs are" + line "all sold out." + done _SchoolText1: ; 95d15 (25:5d15) - db $0, "Whew! I'm trying", $4f - db "to memorize all", $55 - db "my notes.", $57 + text "Whew! I'm trying" + line "to memorize all" + next "my notes." + done _SchoolText2: ; 95d40 (25:5d40) - db $0, "Okay!", $51 - db "Be sure to read", $4f - db "the blackboard", $55 - db "carefully!", $57 + text "Okay!" + + page "Be sure to read" + line "the blackboard" + next "carefully!" + done _ViridianHouseText1: ; 95d71 (25:5d71) - db $0, "Coming up with", $4f - db "nicknames is fun,", $55 - db "but hard.", $51 - db "Simple names are", $4f - db "the easiest to", $55 - db "remember.", $57 + text "Coming up with" + line "nicknames is fun," + next "but hard." + + page "Simple names are" + line "the easiest to" + next "remember." + done _ViridianHouseText2: ; 95dc7 (25:5dc7) - db $0, "My Daddy loves", $4f - db "#MON too.", $57 + text "My Daddy loves" + line "#MON too." + done _UnnamedText_1d5b1: ; 95de1 (25:5de1) db $0, "SPEARY: Tetweet!", $57 @@ -123490,861 +125111,1076 @@ _ViridianHouseText4: ; 95df3 (25:5df3) db "Name: SPEARY", $57 _UnnamedText_74ace: ; 95e09 (25:5e09) - db $0, "Fwahahaha! This is", $4f - db "my hideout!", $51 - db "I planned to", $4f - db "resurrect TEAM", $55 - db "ROCKET here!", $51 - db "But, you have", $4f - db "caught me again!", $55 - db "So be it! This", $55 - db "time, I'm not", $55 - db "holding back!", $51 - db "Once more, you", $4f - db "shall face", $55 - db "GIOVANNI, the", $55 - db "greatest trainer!", $57 + text "Fwahahaha! This is" + line "my hideout!" + + page "I planned to" + line "resurrect TEAM" + next "ROCKET here!" + + page "But, you have" + line "caught me again!" + next "So be it! This" + next "time, I'm not" + next "holding back!" + + page "Once more, you" + line "shall face" + next "GIOVANNI, the" + next "greatest trainer!" + done _UnnamedText_74ad3: ; 95ed5 (25:5ed5) - db $0, "Ha!", $4f - db "That was a truly", $55 - db "intense fight!", $55 - db "You have won!", $55 - db "As proof, here is", $55 - db "the EARTHBADGE!@@" + text "Ha!" + line "That was a truly" + next "intense fight!" + next "You have won!" + next "As proof, here is" + next "the EARTHBADGE!@@" _UnnamedText_74ad9: ; 95f2b (25:5f2b) - db $0, "Having lost, I", $4f - db "cannot face my", $55 - db "underlings!", $55 - db "TEAM ROCKET is", $55 - db "finished forever!", $51 - db "I will dedicate my", $4f - db "life to the study", $55 - db "of #MON!", $51 - db "Let us meet again", $4f - db "some day!", $55 - db "Farewell!@@" + text "Having lost, I" + line "cannot face my" + next "underlings!" + next "TEAM ROCKET is" + next "finished forever!" + + page "I will dedicate my" + line "life to the study" + next "of #MON!" + + page "Let us meet again" + line "some day!" + next "Farewell!@@" _ViridianGymText12: ; 95fcc (25:5fcc) - db $0, "The EARTHBADGE", $4f - db "makes #MON of", $55 - db "any level obey!", $51 - db "It is evidence of", $4f - db "your mastery as a", $55 - db "#MON trainer!", $51 - db "With it, you can", $4f - db "enter the #MON", $55 - db "LEAGUE!", $51 - db "It is my gift for", $4f - db "your #MON", $55 - db "LEAGUE challenge!", $57 + text "The EARTHBADGE" + line "makes #MON of" + next "any level obey!" + + page "It is evidence of" + line "your mastery as a" + next "#MON trainer!" + + page "With it, you can" + line "enter the #MON" + next "LEAGUE!" + + page "It is my gift for" + line "your #MON" + next "LEAGUE challenge!" + done _ReceivedTM27Text: ; 96082 (25:6082) - db $0, $52, " received", $4f - db "TM27!@@" + text $52, " received" + line "TM27!@@" _TM27ExplanationText: ; 96095 (25:6095) - db $0, $51 - db "TM27 is FISSURE!", $4f - db "It will take out", $55 - db "#MON with just", $55 - db "one hit!", $51 - db "I made it when I", $4f - db "ran the GYM here,", $55 - db "too long ago...", $57 + text $51 + db "TM27 is FISSURE!" + line "It will take out" + next "#MON with just" + next "one hit!" + + page "I made it when I" + line "ran the GYM here," + next "too long ago..." + done _TM27NoRoomText: ; 96104 (25:6104) - db $0, "You do not have", $4f - db "space for this!", $57 + text "You do not have" + line "space for this!" + done _ViridianGymBattleText1: ; 96125 (25:6125) - db $0, "Heh! You must be", $4f - db "running out of", $55 - db "steam by now!", $57 + text "Heh! You must be" + line "running out of" + next "steam by now!" + done _ViridianGymEndBattleText1: ; 96154 (25:6154) - db $0, "I", $4f - db "ran out of gas!", $58 + text "I" + line "ran out of gas!" + prompt _ViridianGymAfterBattleText1: ; 96167 (25:6167) - db $0, "You need power to", $4f - db "keep up with our", $55 - db "GYM LEADER!", $57 + text "You need power to" + line "keep up with our" + next "GYM LEADER!" + done _ViridianGymBattleText2: ; 96197 (25:6197) - db $0, "Rrrroar! I'm", $4f - db "working myself", $55 - db "into a rage!", $57 + text "Rrrroar! I'm" + line "working myself" + next "into a rage!" + done _ViridianGymEndBattleText2: ; 961c0 (25:61c0) - db $0, "Wargh!", $58 + text "Wargh!" + prompt _ViridianGymAfterBattleText2: ; 961c8 (25:61c8) - db $0, "I'm still not", $4f - db "worthy!", $57 + text "I'm still not" + line "worthy!" + done _ViridianGymBattleText3: ; 961de (25:61de) - db $0, "#MON and I, we", $4f - db "make wonderful", $55 - db "music together!", $57 + text "#MON and I, we" + line "make wonderful" + next "music together!" + done _ViridianGymEndBattleText3: ; 9620d (25:620d) - db $0, "You are in", $4f - db "perfect harmony!", $58 + text "You are in" + line "perfect harmony!" + prompt _ViridianGymAfterBattleText3: ; 9622a (25:622a) - db $0, "Do you know the", $4f - db "identity of our", $55 - db "GYM LEADER?", $57 + text "Do you know the" + line "identity of our" + next "GYM LEADER?" + done _ViridianGymBattleText4: ; 96257 (25:6257) - db $0, "Karate is the", $4f - db "ultimate form of", $55 - db "martial arts!", $57 + text "Karate is the" + line "ultimate form of" + next "martial arts!" + done _ViridianGymEndBattleText4: ; 96285 (25:6285) - db $0, "Atcho!", $58 + text "Atcho!" + prompt _ViridianGymAfterBattleText4: ; 9628d (25:628d) - db $0, "If my #MON", $4f - db "were as good at", $55 - db "Karate as I...", $57 + text "If my #MON" + line "were as good at" + next "Karate as I..." + done _ViridianGymBattleText5: ; 962b8 (25:62b8) - db $0, "The truly talented", $4f - db "win with style!", $57 + text "The truly talented" + line "win with style!" + done _ViridianGymEndBattleText5: ; 962dc (25:62dc) - db $0, "I", $4f - db "lost my grip!", $58 + text "I" + line "lost my grip!" + prompt _ViridianGymAfterBattleText5: ; 962ed (25:62ed) - db $0, "The LEADER will", $4f - db "scold me!", $57 + text "The LEADER will" + line "scold me!" + done _ViridianGymBattleText6: ; 96308 (25:6308) - db $0, "I'm the KARATE", $4f - db "KING! Your fate", $55 - db "rests with me!", $57 + text "I'm the KARATE" + line "KING! Your fate" + next "rests with me!" + done _ViridianGymEndBattleText6: ; 96336 (25:6336) - db $0, "Ayah!", $58 + text "Ayah!" + prompt _ViridianGymAfterBattleText6: ; 9633d (25:633d) - db $0, "#MON LEAGUE?", $4f - db "You? Don't get", $55 - db "cocky!", $57 + text "#MON LEAGUE?" + line "You? Don't get" + next "cocky!" + done _ViridianGymBattleText7: ; 96360 (25:6360) - db $0, "Your #MON will", $4f - db "cower at the", $55 - db "crack of my whip!", $57 + text "Your #MON will" + line "cower at the" + next "crack of my whip!" + done _ViridianGymEndBattleText7: ; 9638f (25:638f) - db $0, "Yowch!", $4f - db "Whiplash!", $58 + text "Yowch!" + line "Whiplash!" + prompt _ViridianGymAfterBattleText7: ; 963a1 (25:63a1) - db $0, "Wait! I was just", $4f - db "careless!", $57 + text "Wait! I was just" + line "careless!" + done _ViridianGymBattleText8: ; 963bd (25:63bd) - db $0, "VIRIDIAN GYM was", $4f - db "closed for a long", $55 - db "time, but now our", $55 - db "LEADER is back!", $57 + text "VIRIDIAN GYM was" + line "closed for a long" + next "time, but now our" + next "LEADER is back!" + done _ViridianGymEndBattleText8: ; 96403 (25:6403) - db $0, "I", $4f - db "was beaten?", $58 + text "I" + line "was beaten?" + prompt _ViridianGymAfterBattleText8: ; 96412 (25:6412) - db $0, "You can go onto", $4f - db "#MON LEAGUE", $55 - db "only by defeating", $55 - db "our GYM LEADER!", $57 + text "You can go onto" + line "#MON LEAGUE" + next "only by defeating" + next "our GYM LEADER!" + done _UnnamedText_74bd4: ; 96451 (25:6451) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "Even I don't know", $4f - db "VIRIDIAN LEADER's", $55 - db "identity!", $51 - db "This will be the", $4f - db "toughest of all", $55 - db "the GYM LEADERs!", $51 - db "I heard that the", $4f - db "trainers here", $55 - db "like ground-type", $55 - db "#MON!", $57 + text "Yo! Champ in" + line "making!" + + page "Even I don't know" + line "VIRIDIAN LEADER's" + next "identity!" + + page "This will be the" + line "toughest of all" + next "the GYM LEADERs!" + + page "I heard that the" + line "trainers here" + next "like ground-type" + next "#MON!" + done _UnnamedText_74bd9: ; 964fb (25:64fb) - db $0, "Blow me away!", $4f - db "GIOVANNI was the", $55 - db "GYM LEADER here?", $57 + text "Blow me away!" + line "GIOVANNI was the" + next "GYM LEADER here?" + done _UnnamedText_5c21a: ; 9652c (25:652c) - db $0, "Come again!", $57 + text "Come again!" + done _UnnamedText_5c21f: ; 96539 (25:6539) - db $0, "It's ¥50 for a", $4f - db "child's ticket.", $51 - db "Would you like to", $4f - db "come in?", $57 + text "It's ¥50 for a" + line "child's ticket." + + page "Would you like to" + line "come in?" + done _UnnamedText_5c224: ; 96572 (25:6572) - db $0, "Right, ¥50!", $4f - db "Thank you!", $57 + text "Right, ¥50!" + line "Thank you!" + done _UnnamedText_5c229: ; 9658a (25:658a) - db $0, "You don't have", $4f - db "enough money.", $58 + text "You don't have" + line "enough money." + prompt _UnnamedText_5c22e: ; 965a7 (25:65a7) - db $0, "You can't sneak", $4f - db "in the back way!", $51 - db "Oh, whatever!", $4f - db "Do you know what", $55 - db "AMBER is?", $57 + text "You can't sneak" + line "in the back way!" + + page "Oh, whatever!" + line "Do you know what" + next "AMBER is?" + done _UnnamedText_5c233: ; 965f1 (25:65f1) - db $0, "There's a lab", $4f - db "somewhere trying", $55 - db "to resurrect", $55 - db "ancient #MON", $55 - db "from AMBER.", $57 + text "There's a lab" + line "somewhere trying" + next "to resurrect" + next "ancient #MON" + next "from AMBER." + done _UnnamedText_5c238: ; 96636 (25:6636) - db $0, "AMBER is fossil-", $4f - db "ized tree sap.", $57 + text "AMBER is fossil-" + line "ized tree sap." + done _UnnamedText_5c23d: ; 96657 (25:6657) - db $0, "Please go to the", $4f - db "other side!", $57 + text "Please go to the" + line "other side!" + done _UnnamedText_5c242: ; 96675 (25:6675) - db $0, "Take plenty of", $4f - db "time to look!", $57 + text "Take plenty of" + line "time to look!" + done _UnnamedText_5c251: ; 96693 (25:6693) - db $0, "That is one", $4f - db "magnificent", $55 - db "fossil!", $57 + text "That is one" + line "magnificent" + next "fossil!" + done _UnnamedText_5c28e: ; 966b4 (25:66b4) - db $0, "Ssh! I think that", $4f - db "this chunk of", $55 - db "AMBER contains", $55 - db "#MON DNA!", $51 - db "It would be great", $4f - db "if #MON could", $55 - db "be resurrected", $55 - db "from it!", $51 - db "But, my colleagues", $4f - db "just ignore me!", $51 - db "So I have a favor", $4f - db "to ask!", $51 - db "Take this to a", $4f - db "#MON LAB and", $55 - db "get it examined!", $58 + text "Ssh! I think that" + line "this chunk of" + next "AMBER contains" + next "#MON DNA!" + + page "It would be great" + line "if #MON could" + next "be resurrected" + next "from it!" + + page "But, my colleagues" + line "just ignore me!" + + page "So I have a favor" + line "to ask!" + + page "Take this to a" + line "#MON LAB and" + next "get it examined!" + prompt _ReceivedOldAmberText: ; 96790 (25:6790) - db $0, $52, " received", $4f - db "OLD AMBER!@@" + text $52, " received" + line "OLD AMBER!@@" _UnnamedText_5c299: ; 967a8 (25:67a8) - db $0, "Ssh! Get the OLD", $4f - db "AMBER checked!", $57 + text "Ssh! Get the OLD" + line "AMBER checked!" + done _UnnamedText_5c29e: ; 967c9 (25:67c9) - db $0, "You don't have", $4f - db "space for this!", $57 + text "You don't have" + line "space for this!" + done _UnnamedText_5c2ad: ; 967e8 (25:67e8) - db $0, "We are proud of 2", $4f - db "fossils of very", $55 - db "rare, prehistoric", $55 - db "#MON!", $57 + text "We are proud of 2" + line "fossils of very" + next "rare, prehistoric" + next "#MON!" + done _UnnamedText_5c2bc: ; 96823 (25:6823) - db $0, "The AMBER is", $4f - db "clear and gold!", $57 + text "The AMBER is" + line "clear and gold!" + done _MuseumF2Text1: ; 96841 (25:6841) - db $0, "MOON STONE?", $51 - db "What's so special", $4f - db "about it?", $57 + text "MOON STONE?" + + page "What's so special" + line "about it?" + done _MuseumF2Text2: ; 96869 (25:6869) - db $0, "July 20, 1969!", $51 - db "The 1st lunar", $4f - db "landing!", $51 - db "I bought a color", $4f - db "TV to watch it!", $57 + text "July 20, 1969!" + + page "The 1st lunar" + line "landing!" + + page "I bought a color" + line "TV to watch it!" + done _MuseumF2Text3: ; 968b1 (25:68b1) - db $0, "We have a space", $4f - db "exhibit now.", $57 + text "We have a space" + line "exhibit now." + done _MuseumF2Text4: ; 968cf (25:68cf) - db $0, "I want a PIKACHU!", $4f - db "It's so cute!", $51 - db "I asked my Daddy", $4f - db "to catch me one!", $57 + text "I want a PIKACHU!" + line "It's so cute!" + + page "I asked my Daddy" + line "to catch me one!" + done _MuseumF2Text5: ; 96911 (25:6911) - db $0, "Yeah, a PIKACHU", $4f - db "soon, I promise!", $57 + text "Yeah, a PIKACHU" + line "soon, I promise!" + done _MuseumF2Text6: ; 96933 (25:6933) - db $0, "SPACE SHUTTLE", $4f - db "COLUMBIA", $57 + text "SPACE SHUTTLE" + line "COLUMBIA" + done _MuseumF2Text7: ; 9694b (25:694b) - db $0, "Meteorite that", $4f - db "fell on MT.MOON.", $55 - db "(MOON STONE?)", $57 + text "Meteorite that" + line "fell on MT.MOON." + next "(MOON STONE?)" + done _UnnamedText_5c49e: ; 9697a (25:697a) - db $0, "I'm BROCK!", $4f - db "I'm PEWTER's GYM", $55 - db "LEADER!", $51 - db "I believe in rock", $4f - db "hard defense and", $55 - db "determination!", $51 - db "That's why my", $4f - db "#MON are all", $55 - db "the rock-type!", $51 - db "Do you still want", $4f - db "to challenge me?", $55 - db "Fine then! Show", $55 - db "me your best!", $57 + text "I'm BROCK!" + line "I'm PEWTER's GYM" + next "LEADER!" + + page "I believe in rock" + line "hard defense and" + next "determination!" + + page "That's why my" + line "#MON are all" + next "the rock-type!" + + page "Do you still want" + line "to challenge me?" + next "Fine then! Show" + next "me your best!" + done SECTION "bank26",ROMX,BANK[$26] _UnnamedText_5c4a3: ; 98000 (26:4000) - db $0, "There are all", $4f - db "kinds of trainers", $55 - db "in the world!", $51 - db "You appear to be", $4f - db "very gifted as a", $55 - db "#MON trainer!", $51 - db "Go to the GYM in", $4f - db "CERULEAN and test", $55 - db "your abilities!", $57 + text "There are all" + line "kinds of trainers" + next "in the world!" + + page "You appear to be" + line "very gifted as a" + next "#MON trainer!" + + page "Go to the GYM in" + line "CERULEAN and test" + next "your abilities!" + done _TM34PreReceiveText: ; 98092 (26:4092) - db $0, "Wait! Take this", $4f - db "with you!", $57 + text "Wait! Take this" + line "with you!" + done _ReceivedTM34Text: ; 980ad (26:40ad) - db $0, $52, " received", $4f - db "TM34!@@" + text $52, " received" + line "TM34!@@" _TM34ExplanationText: ; 980c0 (26:40c0) - db $0, $51 - db "A TM contains a", $4f - db "technique that", $55 - db "can be taught to", $55 - db "#MON!", $51 - db "A TM is good only", $4f - db "once! So when you", $55 - db "use one to teach", $55 - db "a new technique,", $55 - db "pick the #MON", $55 - db "carefully!", $51 - db "TM34 contains", $4f - db "BIDE!", $51 - db "Your #MON will", $4f - db "absorb damage in", $55 - db "battle then pay", $55 - db "it back double!", $57 + text $51 + db "A TM contains a" + line "technique that" + next "can be taught to" + next "#MON!" + + page "A TM is good only" + line "once! So when you" + next "use one to teach" + next "a new technique," + next "pick the #MON" + next "carefully!" + + page "TM34 contains" + line "BIDE!" + + page "Your #MON will" + line "absorb damage in" + next "battle then pay" + next "it back double!" + done _TM34NoRoomText: ; 981ab (26:41ab) - db $0, "You don't have", $4f - db "room for this!", $57 + text "You don't have" + line "room for this!" + done _UnnamedText_5c4bc: ; 981c9 (26:41c9) - db $0, "I took", $4f - db "you for granted.", $51 - db "As proof of your", $4f - db "victory, here's", $55 - db "the BOULDERBADGE!", $51 - db $52, " received", $4f - db "the BOULDERBADGE!@@" + text "I took" + line "you for granted." + + page "As proof of your" + line "victory, here's" + next "the BOULDERBADGE!" + + page $52, " received" + line "the BOULDERBADGE!@@" _UnnamedText_5c4c1: ; 98232 (26:4232) - db $0, $51 - db "That's an official", $4f - db "#MON LEAGUE", $55 - db "BADGE!", $51 - db "Its bearer's", $4f - db "#MON become", $55 - db "more powerful!", $51 - db "The technique", $4f - db "FLASH can now be", $55 - db "used any time!", $58 + text $51 + db "That's an official" + line "#MON LEAGUE" + next "BADGE!" + + page "Its bearer's" + line "#MON become" + next "more powerful!" + + page "The technique" + line "FLASH can now be" + next "used any time!" + prompt _PewterGymBattleText1: ; 982ae (26:42ae) - db $0, "Stop right there,", $4f - db "kid!", $51 - db "You're still light", $4f - db "years from facing", $55 - db "BROCK!", $57 + text "Stop right there," + line "kid!" + + page "You're still light" + line "years from facing" + next "BROCK!" + done _PewterGymEndBattleText1: ; 982f1 (26:42f1) - db $0, "Darn!", $51 - db "Light years isn't", $4f - db "time! It measures", $55 - db "distance!", $58 + text "Darn!" + + page "Light years isn't" + line "time! It measures" + next "distance!" + prompt _PewterGymAfterBattleText1: ; 98325 (26:4325) - db $0, "You're pretty hot,", $4f - db "but not as hot", $55 - db "as BROCK!", $57 + text "You're pretty hot," + line "but not as hot" + next "as BROCK!" + done _UnnamedText_5c515: ; 98351 (26:4351) - db $0, "Hiya! I can tell", $4f - db "you have what it", $55 - db "takes to become a", $55 - db "#MON champ!", $51 - db "I'm no trainer,", $4f - db "but I can tell", $55 - db "you how to win!", $51 - db "Let me take you", $4f - db "to the top!", $57 + text "Hiya! I can tell" + line "you have what it" + next "takes to become a" + next "#MON champ!" + + page "I'm no trainer," + line "but I can tell" + next "you how to win!" + + page "Let me take you" + line "to the top!" + done _UnnamedText_5c51a: ; 983dc (26:43dc) - db $0, "All right! Let's", $4f - db "get happening!", $58 + text "All right! Let's" + line "get happening!" + prompt _UnnamedText_5c51f: ; 983fc (26:43fc) - db $0, "The 1st #MON", $4f - db "out in a match is", $55 - db "at the top of the", $55 - db "#MON LIST!", $51 - db "By changing the", $4f - db "order of #MON,", $55 - db "matches could be", $55 - db "made easier!", $57 + text "The 1st #MON" + line "out in a match is" + next "at the top of the" + next "#MON LIST!" + + page "By changing the" + line "order of #MON," + next "matches could be" + next "made easier!" + done _UnnamedText_5c524: ; 98476 (26:4476) - db $0, "It's a free", $4f - db "service! Let's", $55 - db "get happening!", $58 + text "It's a free" + line "service! Let's" + next "get happening!" + prompt _UnnamedText_5c529: ; 9849f (26:449f) - db $0, "Just as I thought!", $4f - db "You're #MON", $55 - db "champ material!", $57 + text "Just as I thought!" + line "You're #MON" + next "champ material!" + done _PewterHouse1Text1: ; 984ce (26:44ce) db $0, "NIDORAN: Bowbow!@@" _PewterHouse1Text2: ; 984e1 (26:44e1) - db $0, "NIDORAN sit!", $57 + text "NIDORAN sit!" + done _PewterHouse1Text3: ; 984ef (26:44ef) - db $0, "Our #MON's an", $4f - db "outsider, so it's", $55 - db "hard to handle.", $51 - db "An outsider is a", $4f - db "#MON that you", $55 - db "get in a trade.", $51 - db "It grows fast, but", $4f - db "it may ignore an", $55 - db "unskilled trainer", $55 - db "in battle!", $51 - db "If only we had", $4f - db "some BADGEs...", $57 + text "Our #MON's an" + line "outsider, so it's" + next "hard to handle." + + page "An outsider is a" + line "#MON that you" + next "get in a trade." + + page "It grows fast, but" + line "it may ignore an" + next "unskilled trainer" + next "in battle!" + + page "If only we had" + line "some BADGEs..." + done _UnnamedText_74cc6: ; 985ac (26:45ac) - db $0, "A shady, old man", $4f - db "got me to buy", $55 - db "this really weird", $55 - db "fish #MON!", $51 - db "It's totally weak", $4f - db "and it cost ¥500!", $57 + text "A shady, old man" + line "got me to buy" + next "this really weird" + next "fish #MON!" + + page "It's totally weak" + line "and it cost ¥500!" + done _UnnamedText_74cd5: ; 9860c (26:460c) - db $0, "Good things can", $4f - db "happen if you", $55 - db "raise #MON", $55 - db "diligently, even", $55 - db "the weak ones!", $57 + text "Good things can" + line "happen if you" + next "raise #MON" + next "diligently, even" + next "the weak ones!" + done _PewterHouse2Text1: ; 98656 (26:4656) - db $0, "#MON learn new", $4f - db "techniques as", $55 - db "they grow!", $51 - db "But, some moves", $4f - db "must be taught by", $55 - db "the trainer!", $57 + text "#MON learn new" + line "techniques as" + next "they grow!" + + page "But, some moves" + line "must be taught by" + next "the trainer!" + done _PewterHouse2Text2: ; 986ae (26:46ae) - db $0, "#MON become", $4f - db "easier to catch", $55 - db "when they are", $55 - db "hurt or asleep!", $51 - db "But, it's not a", $4f - db "sure thing!", $57 + text "#MON become" + line "easier to catch" + next "when they are" + next "hurt or asleep!" + + page "But, it's not a" + line "sure thing!" + done _PewterPokecenterText1: ; 98704 (26:4704) - db $0, "What!?", $51 - db "TEAM ROCKET is", $4f - db "at MT.MOON? Huh?", $55 - db "I'm on the phone!", $51 - db "Scram!", $57 + text "What!?" + + page "TEAM ROCKET is" + line "at MT.MOON? Huh?" + next "I'm on the phone!" + + page "Scram!" + done _PewterPokecenterText5: ; 98744 (26:4744) db $0, "JIGGLYPUFF: Puu", $4f db "pupuu!", $57 _UnnamedText_1d6ab: ; 9875c (26:475c) - db $0, "Those miserable", $4f - db "ROCKETs!", $51 - db "Look what they", $4f - db "did here!", $51 - db "They stole a TM", $4f - db "for teaching", $55 - db "#MON how to", $55 - db "DIG holes!", $51 - db "That cost me a", $4f - db "bundle, it did!", $57 + text "Those miserable" + line "ROCKETs!" + + page "Look what they" + line "did here!" + + page "They stole a TM" + line "for teaching" + next "#MON how to" + next "DIG holes!" + + page "That cost me a" + line "bundle, it did!" + done _UnnamedText_1d6b0: ; 987e2 (26:47e2) - db $0, "I figure what's", $4f - db "lost is lost!", $51 - db "I decided to teach", $4f - db "DIGLETT how to", $55 - db "DIG without a TM!", $57 + text "I figure what's" + line "lost is lost!" + + page "I decided to teach" + line "DIGLETT how to" + next "DIG without a TM!" + done _CeruleanHouseTrashedText2: ; 98834 (26:4834) - db $0, "TEAM ROCKET must", $4f - db "be trying to DIG", $55 - db "their way into no", $55 - db "good!", $57 + text "TEAM ROCKET must" + line "be trying to DIG" + next "their way into no" + next "good!" + done _CeruleanHouseTrashedText3: ; 9886f (26:486f) - db $0, "TEAM ROCKET left", $4f - db "a way out!", $57 + text "TEAM ROCKET left" + line "a way out!" + done _CeruleanHouseText1: ; 9888c (26:488c) - db $0, "My husband likes", $4f - db "trading #MON.", $51 - db "If you are a", $4f - db "collector, would", $55 - db "you please trade", $55 - db "with him?", $57 + text "My husband likes" + line "trading #MON." + + page "If you are a" + line "collector, would" + next "you please trade" + next "with him?" + done _CeruleanPokecenterText1: ; 988e5 (26:48e5) - db $0, "That BILL!", $51 - db "I heard that", $4f - db "he'll do whatever", $55 - db "it takes to get", $55 - db "rare #MON!", $57 + text "That BILL!" + + page "I heard that" + line "he'll do whatever" + next "it takes to get" + next "rare #MON!" + done _CeruleanPokecenterText3: ; 9892a (26:492a) - db $0, "Have you heard", $4f - db "about BILL?", $51 - db "Everyone calls", $4f - db "him a #MANIAC!", $51 - db "I think people", $4f - db "are just jealous", $55 - db "of BILL, though.", $51 - db "Who wouldn't want", $4f - db "to boast about", $55 - db "their #MON?", $57 + text "Have you heard" + line "about BILL?" + + page "Everyone calls" + line "him a #MANIAC!" + + page "I think people" + line "are just jealous" + next "of BILL, though." + + page "Who wouldn't want" + line "to boast about" + next "their #MON?" + done _UnnamedText_5c7be: ; 989c1 (26:49c1) - db $0, "Hi, you're a new", $4f - db "face!", $51 - db "Trainers who want", $4f - db "to turn pro have", $55 - db "to have a policy", $55 - db "about #MON!", $51 - db "What is your", $4f - db "approach when you", $55 - db "catch #MON?", $51 - db "My policy is an", $4f - db "all-out offensive", $55 - db "with water-type", $55 - db "#MON!", $57 + text "Hi, you're a new" + line "face!" + + page "Trainers who want" + line "to turn pro have" + next "to have a policy" + next "about #MON!" + + page "What is your" + line "approach when you" + next "catch #MON?" + + page "My policy is an" + line "all-out offensive" + next "with water-type" + next "#MON!" + done _UnnamedText_5c7c3: ; 98a7b (26:4a7b) - db $0, "TM11 teaches", $4f - db "BUBBLEBEAM!", $51 - db "Use it on an", $4f - db "aquatic #MON!", $57 + text "TM11 teaches" + line "BUBBLEBEAM!" + + page "Use it on an" + line "aquatic #MON!" + done _UnnamedText_5c7c8: ; 98ab0 (26:4ab0) - db $0, "The CASCADEBADGE", $4f - db "makes all #MON", $55 - db "up to L30 obey!", $51 - db "That includes", $4f - db "even outsiders!", $51 - db "There's more, you", $4f - db "can now use CUT", $55 - db "any time!", $51 - db "You can CUT down", $4f - db "small bushes to", $55 - db "open new paths!", $51 - db "You can also have", $4f - db "my favorite TM!", $57 + text "The CASCADEBADGE" + line "makes all #MON" + next "up to L30 obey!" + + page "That includes" + line "even outsiders!" + + page "There's more, you" + line "can now use CUT" + next "any time!" + + page "You can CUT down" + line "small bushes to" + next "open new paths!" + + page "You can also have" + line "my favorite TM!" + done _ReceivedTM11Text: ; 98b7d (26:4b7d) - db $0, $52, " received", $4f - db "TM11!@@" + text $52, " received" + line "TM11!@@" _UnnamedText_5c7d3: ; 98b90 (26:4b90) - db $0, "You better make", $4f - db "room for this!", $57 + text "You better make" + line "room for this!" + done _UnnamedText_5c7d8: ; 98bb0 (26:4bb0) - db $0, "Wow!", $4f - db "You're too much!", $51 - db "All right!", $51 - db "You can have the", $4f - db "CASCADEBADGE to", $55 - db "show you beat me!@@" + text "Wow!" + line "You're too much!" + + page "All right!" + + page "You can have the" + line "CASCADEBADGE to" + next "show you beat me!@@" _CeruleanGymBattleText1: ; 98c05 (26:4c05) - db $0, "I'm more than good", $4f - db "enough for you!", $51 - db "MISTY can wait!", $57 + text "I'm more than good" + line "enough for you!" + + page "MISTY can wait!" + done _CeruleanGymEndBattleText1: ; 98c38 (26:4c38) - db $0, "You", $4f - db "overwhelmed me!", $58 + text "You" + line "overwhelmed me!" + prompt _CeruleanGymAfterBattleText1: ; 98c4d (26:4c4d) - db $0, "You have to face", $4f - db "other trainers to", $55 - db "find out how good", $55 - db "you really are.", $57 + text "You have to face" + line "other trainers to" + next "find out how good" + next "you really are." + done _CeruleanGymBattleText2: ; 98c93 (26:4c93) - db $0, "Splash!", $51 - db "I'm first up!", $4f - db "Let's do it!", $57 + text "Splash!" + + page "I'm first up!" + line "Let's do it!" + done _CeruleanGymEndBattleText2: ; 98cb5 (26:4cb5) - db $0, "That", $4f - db "can't be!", $58 + text "That" + line "can't be!" + prompt _CeruleanGymAfterBattleText2: ; 98cc4 (26:4cc4) - db $0, "MISTY is going to", $4f - db "keep improving!", $51 - db "She won't lose to", $4f - db "someone like you!", $57 + text "MISTY is going to" + line "keep improving!" + + page "She won't lose to" + line "someone like you!" + done _UnnamedText_5c82a: ; 98d0a (26:4d0a) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "Here's my advice!", $51 - db "The LEADER, MISTY,", $4f - db "is a pro who uses", $55 - db "water #MON!", $51 - db "You can drain all", $4f - db "their water with", $55 - db "plant #MON!", $51 - db "Or, zap them with", $4f - db "electricity!", $57 + text "Yo! Champ in" + line "making!" + + page "Here's my advice!" + + page "The LEADER, MISTY," + line "is a pro who uses" + next "water #MON!" + + page "You can drain all" + line "their water with" + next "plant #MON!" + + page "Or, zap them with" + line "electricity!" + done _UnnamedText_5c82f: ; 98db0 (26:4db0) - db $0, "You beat MISTY!", $4f - db "What'd I tell ya?", $51 - db "You and me kid,", $4f - db "we make a pretty", $55 - db "darn good team!", $57 + text "You beat MISTY!" + line "What'd I tell ya?" + + page "You and me kid," + line "we make a pretty" + next "darn good team!" + done _UnnamedText_1d810: ; 98e03 (26:4e03) - db $0, "Hi! Welcome to", $4f - db "our BIKE SHOP.", $51 - db "Have we got just", $4f - db "the BIKE for you!", $58 + text "Hi! Welcome to" + line "our BIKE SHOP." + + page "Have we got just" + line "the BIKE for you!" + prompt _UnnamedText_1d815: ; 98e45 (26:4e45) - db $0, "It's a cool BIKE!", $4f - db "Do you want it?", $57 + text "It's a cool BIKE!" + line "Do you want it?" + done _UnnamedText_1d81a: ; 98e67 (26:4e67) - db $0, "Sorry! You can't", $4f - db "afford it!", $58 + text "Sorry! You can't" + line "afford it!" + prompt _UnnamedText_1d81f: ; 98e83 (26:4e83) - db $0, "Oh, that's...", $51 - db "A BIKE VOUCHER!", $51 - db "OK! Here you go!", $58 + text "Oh, that's..." + + page "A BIKE VOUCHER!" + + page "OK! Here you go!" + prompt _UnnamedText_1d824: ; 98eb2 (26:4eb2) - db $0, $52, " exchanged", $4f - db "the BIKE VOUCHER", $55 - db "for a BICYCLE.@@" + text $52, " exchanged" + line "the BIKE VOUCHER" + next "for a BICYCLE.@@" _UnnamedText_1d82a: ; 98ee0 (26:4ee0) - db $0, "Come back again", $4f - db "some time!", $57 + text "Come back again" + line "some time!" + done _UnnamedText_1d82f: ; 98efc (26:4efc) - db $0, "How do you like", $4f - db "your new BICYCLE?", $51 - db "You can take it", $4f - db "on CYCLING ROAD", $55 - db "and in caves!", $57 + text "How do you like" + line "your new BICYCLE?" + + page "You can take it" + line "on CYCLING ROAD" + next "and in caves!" + done _UnnamedText_1d834: ; 98f4d (26:4f4d) - db $0, "You better make", $4f - db "room for this!", $57 + text "You better make" + line "room for this!" + done _UnnamedText_1d843: ; 98f6d (26:4f6d) - db $0, "A plain city BIKE", $4f - db "is good enough", $55 - db "for me!", $51 - db "You can't put a", $4f - db "shopping basket", $55 - db "on an MTB!", $57 + text "A plain city BIKE" + line "is good enough" + next "for me!" + + page "You can't put a" + line "shopping basket" + next "on an MTB!" + done _UnnamedText_1d85c: ; 98fc1 (26:4fc1) - db $0, "These BIKEs are", $4f - db "cool, but they're", $55 - db "way expensive!", $57 + text "These BIKEs are" + line "cool, but they're" + next "way expensive!" + done _UnnamedText_1d861: ; 98ff2 (26:4ff2) - db $0, "Wow. Your BIKE is", $4f - db "really cool!", $57 + text "Wow. Your BIKE is" + line "really cool!" + done _CeruleanMartText2: ; 99012 (26:5012) - db $0, "Use REPEL to keep", $4f - db "bugs and weak", $55 - db "#MON away.", $51 - db "Put your strongest", $4f - db "#MON at the", $55 - db "top of the list", $55 - db "for best results!", $57 + text "Use REPEL to keep" + line "bugs and weak" + next "#MON away." + + page "Put your strongest" + line "#MON at the" + next "top of the list" + next "for best results!" + done _CeruleanMartText3: ; 9907f (26:507f) - db $0, "Have you seen any", $4f - db "RARE CANDY?", $51 - db "It's supposed to", $4f - db "make #MON go", $55 - db "up one level!", $57 + text "Have you seen any" + line "RARE CANDY?" + + page "It's supposed to" + line "make #MON go" + next "up one level!" + done _UnnamedText_74e77: ; 990c9 (26:50c9) - db $0, "#MON BADGEs", $4f - db "are owned only by", $55 - db "skilled trainers.", $51 - db "I see you have", $4f - db "at least one.", $51 - db "Those BADGEs have", $4f - db "amazing secrets!", $58 + text "#MON BADGEs" + line "are owned only by" + next "skilled trainers." + + page "I see you have" + line "at least one." + + page "Those BADGEs have" + line "amazing secrets!" + prompt _UnnamedText_74e7c: ; 9913a (26:513a) - db $0, "Now then...", $51 - db "Which of the 8", $4f - db "BADGEs should I", $55 - db "describe?", $57 + text "Now then..." + + page "Which of the 8" + line "BADGEs should I" + next "describe?" + done _UnnamedText_74e81: ; 99170 (26:5170) - db $0, "Come visit me any", $4f - db "time you wish.", $57 + text "Come visit me any" + line "time you wish." + done _UnnamedText_74e96: ; 99192 (26:5192) - db $0, "The ATTACK of all", $4f - db "#MON increases", $55 - db "a little bit.", $51 - db "It also lets you", $4f - db "use FLASH any", $55 - db "time you desire.", $58 + text "The ATTACK of all" + line "#MON increases" + next "a little bit." + + page "It also lets you" + line "use FLASH any" + next "time you desire." + prompt _UnnamedText_74e9b: ; 991f2 (26:51f2) - db $0, "#MON up to L30", $4f - db "will obey you.", $51 - db "Any higher, they", $4f - db "become unruly!", $51 - db "It also lets you", $4f - db "use CUT outside", $55 - db "of battle.", $58 + text "#MON up to L30" + line "will obey you." + + page "Any higher, they" + line "become unruly!" + + page "It also lets you" + line "use CUT outside" + next "of battle." + prompt _UnnamedText_74ea0: ; 9925d (26:525d) - db $0, "The SPEED of all", $4f - db "#MON increases", $55 - db "a little bit.", $51 - db "It also lets you", $4f - db "use FLY outside", $55 - db "of battle.", $58 + text "The SPEED of all" + line "#MON increases" + next "a little bit." + + page "It also lets you" + line "use FLY outside" + next "of battle." + prompt _UnnamedText_74ea5: ; 992b8 (26:52b8) - db $0, "#MON up to L50", $4f - db "will obey you.", $51 - db "Any higher, they", $4f - db "become unruly!", $51 - db "It also lets you", $4f - db "use STRENGTH out-", $55 - db "side of battle.", $58 + text "#MON up to L50" + line "will obey you." + + page "Any higher, they" + line "become unruly!" + + page "It also lets you" + line "use STRENGTH out-" + next "side of battle." + prompt _UnnamedText_74eaa: ; 9932a (26:532a) - db $0, "The DEFENSE of all", $4f - db "#MON increases", $55 - db "a little bit.", $51 - db "It also lets you", $4f - db "use SURF outside", $55 - db "of battle.", $58 + text "The DEFENSE of all" + line "#MON increases" + next "a little bit." + + page "It also lets you" + line "use SURF outside" + next "of battle." + prompt _UnnamedText_74eaf: ; 99388 (26:5388) - db $0, "#MON up to L70", $4f - db "will obey you.", $51 - db "Any higher, they", $4f - db "become unruly!", $58 + text "#MON up to L70" + line "will obey you." + + page "Any higher, they" + line "become unruly!" + prompt _UnnamedText_74eb4: ; 993c7 (26:53c7) - db $0, "Your #MON's", $4f - db "SPECIAL abilities", $55 - db "increase a bit.", $58 + text "Your #MON's" + line "SPECIAL abilities" + next "increase a bit." + prompt _UnnamedText_74eb9: ; 993f5 (26:53f5) - db $0, "All #MON will", $4f - db "obey you!", $58 + text "All #MON will" + line "obey you!" + prompt _LavenderPokecenterText4: ; 9940e (26:540e) _LavenderPokecenterText2: ; 9940e (26:540e) _LavenderPokecenterText1: ; 9940e (26:540e) - db $0, "TEAM ROCKET will", $4f - db "do anything for", $55 - db "the sake of gold!", $57 + text "TEAM ROCKET will" + line "do anything for" + next "the sake of gold!" + done _LavenderPokecenterText3: ; 99442 (26:5442) - db $0, "I saw CUBONE's", $4f - db "mother die trying", $55 - db "to escape from", $55 - db "TEAM ROCKET!", $57 + text "I saw CUBONE's" + line "mother die trying" + next "to escape from" + next "TEAM ROCKET!" + done _PokemonTower1Text1: ; 9947f (26:547f) - db $0, "#MON TOWER was", $4f - db "erected in the", $55 - db "memory of #MON", $55 - db "that had died.", $57 + text "#MON TOWER was" + line "erected in the" + next "memory of #MON" + next "that had died." + done _PokemonTower1Text2: ; 994bc (26:54bc) - db $0, "Did you come to", $4f - db "pay respects?", $55 - db "Bless you!", $57 + text "Did you come to" + line "pay respects?" + next "Bless you!" + done _PokemonTower1Text3: ; 994e6 (26:54e6) - db $0, "I came to pray", $4f - db "for my CLEFAIRY.", $51 - db "Sniff! I can't", $4f - db "stop crying...", $57 + text "I came to pray" + line "for my CLEFAIRY." + + page "Sniff! I can't" + line "stop crying..." + done _PokemonTower1Text4: ; 99524 (26:5524) - db $0, "My GROWLITHE...", $4f - db "Why did you die?", $57 + text "My GROWLITHE..." + line "Why did you die?" + done _PokemonTower1Text5: ; 99546 (26:5546) - db $0, "I am a CHANNELER!", $4f - db "There are spirits", $55 - db "up to mischief!", $57 + text "I am a CHANNELER!" + line "There are spirits" + next "up to mischief!" + done _UnnamedText_6062d: ; 9957b (26:557b) db $0, $53, ": Hey,", $4f @@ -124357,10 +126193,12 @@ _UnnamedText_6062d: ; 9957b (26:557b) db "Let's go, pal!", $57 _UnnamedText_60632: ; 995e5 (26:55e5) - db $0, "What?", $4f - db "You stinker!", $51 - db "I took it easy on", $4f - db "you too!", $58 + text "What?" + line "You stinker!" + + page "I took it easy on" + line "you too!" + prompt _UnnamedText_60637: ; 99614 (26:5614) db $0, $53, ": Well,", $4f @@ -124370,206 +126208,259 @@ _UnnamedText_60637: ; 99614 (26:5614) db "bit more!", $58 _UnnamedText_6063c: ; 99657 (26:5657) - db $0, "How's your #DEX", $4f - db "coming, pal?", $55 - db "I just caught a", $55 - db "CUBONE!", $51 - db "I can't find the", $4f - db "grown-up MAROWAK", $55 - db "yet!", $51 - db "I doubt there are", $4f - db "any left! Well, I", $55 - db "better get going!", $55 - db "I've got a lot to", $55 - db "accomplish, pal!", $51 - db "Smell ya later!", $57 + text "How's your #DEX" + line "coming, pal?" + next "I just caught a" + next "CUBONE!" + + page "I can't find the" + line "grown-up MAROWAK" + next "yet!" + + page "I doubt there are" + line "any left! Well, I" + next "better get going!" + next "I've got a lot to" + next "accomplish, pal!" + + page "Smell ya later!" + done _PokemonTower2Text2: ; 9971a (26:571a) - db $0, "Even we could not", $4f - db "identify the", $55 - db "wayward GHOSTs!", $51 - db "A SILPH SCOPE", $4f - db "might be able to", $55 - db "unmask them.", $57 + text "Even we could not" + line "identify the" + next "wayward GHOSTs!" + + page "A SILPH SCOPE" + line "might be able to" + next "unmask them." + done _PokemonTower3BattleText1: ; 99776 (26:5776) - db $0, "Urrg...Awaa...", $4f - db "Huhu...graa..", $57 + text "Urrg...Awaa..." + line "Huhu...graa.." + done _PokemonTower3EndBattleText1: ; 99794 (26:5794) - db $0, "Hwa!", $4f - db "I'm saved!", $58 + text "Hwa!" + line "I'm saved!" + prompt _PokemonTower3AfterBattleText1: ; 997a4 (26:57a4) - db $0, "The GHOSTs can be", $4f - db "identified by the", $55 - db "SILPH SCOPE.", $57 + text "The GHOSTs can be" + line "identified by the" + next "SILPH SCOPE." + done _PokemonTower3BattleText2: ; 997d6 (26:57d6) - db $0, "Kekeke....", $4f - db "Kwaaah!", $57 + text "Kekeke...." + line "Kwaaah!" + done _PokemonTower3EndBattleText2: ; 997ea (26:57ea) - db $0, "Hmm?", $4f - db "What am I doing?", $58 + text "Hmm?" + line "What am I doing?" + prompt _PokemonTower3AfterBattleText2: ; 99801 (26:5801) - db $0, "Sorry! I was", $4f - db "possessed!", $57 + text "Sorry! I was" + line "possessed!" + done _PokemonTower3BattleText3: ; 9981a (26:581a) - db $0, "Be gone!", $4f - db "Evil spirit!", $57 + text "Be gone!" + line "Evil spirit!" + done _PokemonTower3EndBattleText3: ; 99831 (26:5831) - db $0, "Whew!", $4f - db "The spirit left!", $58 + text "Whew!" + line "The spirit left!" + prompt _PokemonTower3AfterBattleText3: ; 99849 (26:5849) - db $0, "My friends were", $4f - db "possessed too!", $57 + text "My friends were" + line "possessed too!" + done _PokemonTower4BattleText1: ; 99869 (26:5869) - db $0, "GHOST! No!", $4f - db "Kwaaah!", $57 + text "GHOST! No!" + line "Kwaaah!" + done _PokemonTower4EndBattleText1: ; 9987d (26:587d) - db $0, "Where", $4f - db "is the GHOST?", $58 + text "Where" + line "is the GHOST?" + prompt _PokemonTower4AfterBattleText1: ; 99892 (26:5892) - db $0, "I must have been", $4f - db "dreaming...", $57 + text "I must have been" + line "dreaming..." + done _PokemonTower4BattleText2: ; 998b0 (26:58b0) - db $0, "Be cursed with", $4f - db "me! Kwaaah!", $57 + text "Be cursed with" + line "me! Kwaaah!" + done _PokemonTower4EndBattleText2: ; 998cc (26:58cc) - db $0, "What!", $58 + text "What!" + prompt _PokemonTower4AfterBattleText2: ; 998d3 (26:58d3) - db $0, "We can't crack", $4f - db "the identity of", $55 - db "the GHOSTs.", $57 + text "We can't crack" + line "the identity of" + next "the GHOSTs." + done _PokemonTower4BattleText3: ; 998fe (26:58fe) - db $0, "Huhuhu...", $4f - db "Beat me not!", $57 + text "Huhuhu..." + line "Beat me not!" + done _PokemonTower4EndBattleText3: ; 99916 (26:5916) - db $0, "Huh?", $4f - db "Who? What?", $58 + text "Huh?" + line "Who? What?" + prompt _PokemonTower4AfterBattleText3: ; 99927 (26:5927) - db $0, "May the departed", $4f - db "souls of #MON", $55 - db "rest in peace...", $57 + text "May the departed" + line "souls of #MON" + next "rest in peace..." + done _PokemonTower5Text1: ; 99958 (26:5958) - db $0, "Come, child! I", $4f - db "sealed this space", $55 - db "with white magic!", $51 - db "You can rest here!", $57 + text "Come, child! I" + line "sealed this space" + next "with white magic!" + + page "You can rest here!" + done _PokemonTower5BattleText1: ; 9999f (26:599f) - db $0, "Give...me...", $4f - db "your...soul...", $57 + text "Give...me..." + line "your...soul..." + done _PokemonTower5EndBattleText1: ; 999bc (26:59bc) - db $0, "Gasp!", $58 + text "Gasp!" + prompt _PokemonTower5AfterBattleText1: ; 999c3 (26:59c3) - db $0, "I was under", $4f - db "possession!", $57 + text "I was under" + line "possession!" + done _PokemonTower5BattleText2: ; 999dc (26:59dc) - db $0, "You...shall...", $4f - db "join...us...", $57 + text "You...shall..." + line "join...us..." + done _PokemonTower5EndBattleText2: ; 999f9 (26:59f9) - db $0, "What", $4f - db "a nightmare!", $58 + text "What" + line "a nightmare!" + prompt _PokemonTower5AfterBattleText2: ; 99a0c (26:5a0c) - db $0, "I was possessed!", $57 + text "I was possessed!" + done _PokemonTower5BattleText3: ; 99a1e (26:5a1e) - db $0, "Zombies!", $57 + text "Zombies!" + done _PokemonTower5EndBattleText3: ; 99a28 (26:5a28) - db $0, "Ha?", $58 + text "Ha?" + prompt _PokemonTower5AfterBattleText3: ; 99a2d (26:5a2d) - db $0, "I regained my", $4f - db "senses!", $57 + text "I regained my" + line "senses!" + done _PokemonTower5BattleText4: ; 99a44 (26:5a44) - db $0, "Urgah...", $4f - db "Urff....", $57 + text "Urgah..." + line "Urff...." + done _PokemonTower5EndBattleText4: ; 99a57 (26:5a57) - db $0, "Whoo!", $58 + text "Whoo!" + prompt _PokemonTower5AfterBattleText4: ; 99a5e (26:5a5e) - db $0, "I fell to evil", $4f - db "spirits despite", $55 - db "my training!", $57 + text "I fell to evil" + line "spirits despite" + next "my training!" + done _UnnamedText_60a43: ; 99a8b (26:5a8b) - db $0, "Entered purified,", $4f - db "protected zone!", $51 - db $52, "'s #MON", $4f - db "are fully healed!", $57 + text "Entered purified," + line "protected zone!" + + page $52, "'s #MON" + line "are fully healed!" + done _UnnamedText_60c1f: ; 99ac8 (26:5ac8) - db $0, "The GHOST was the", $4f - db "restless soul of", $55 - db "CUBONE's mother!", $57 + text "The GHOST was the" + line "restless soul of" + next "CUBONE's mother!" + done _UnnamedText_60c24: ; 99afc (26:5afc) - db $0, "The mother's soul", $4f - db "was calmed.", $51 - db "It departed to", $4f - db "the afterlife!", $57 + text "The mother's soul" + line "was calmed." + + page "It departed to" + line "the afterlife!" + done _PokemonTower6BattleText1: ; 99b38 (26:5b38) - db $0, "Give...me...", $4f - db "blood...", $57 + text "Give...me..." + line "blood..." + done _PokemonTower6EndBattleText1: ; 99b4f (26:5b4f) - db $0, "Groan!", $58 + text "Groan!" + prompt _PokemonTower6AfterBattleText1: ; 99b57 (26:5b57) - db $0, "I feel anemic and", $4f - db "weak...", $57 + text "I feel anemic and" + line "weak..." + done _PokemonTower6BattleText2: ; 99b72 (26:5b72) - db $0, "Urff... Kwaah!", $57 + text "Urff... Kwaah!" + done _PokemonTower6EndBattleText2: ; 99b82 (26:5b82) - db $0, "Some-", $4f - db "thing fell out!", $58 + text "Some-" + line "thing fell out!" + prompt _PokemonTower6AfterBattleText2: ; 99b99 (26:5b99) - db $0, "Hair didn't fall", $4f - db "out! It was an", $55 - db "evil spirit!", $57 + text "Hair didn't fall" + line "out! It was an" + next "evil spirit!" + done _PokemonTower6BattleText3: ; 99bc6 (26:5bc6) - db $0, "Ke..ke...ke...", $4f - db "ke..ke...ke!!", $57 + text "Ke..ke...ke..." + line "ke..ke...ke!!" + done _PokemonTower6EndBattleText3: ; 99be4 (26:5be4) - db $0, "Keee!", $58 + text "Keee!" + prompt _PokemonTower6AfterBattleText3: ; 99beb (26:5beb) - db $0, "What's going on", $4f - db "here?", $57 + text "What's going on" + line "here?" + done _UnnamedText_60c56: ; 99c01 (26:5c01) - db $0, "Be gone...", $4f - db "Intruders...", $57 + text "Be gone..." + line "Intruders..." + done _UnnamedText_60ec4: ; 99c1a (26:5c1a) db $0, "MR.FUJI: Heh? You", $4f @@ -124592,69 +126483,86 @@ _UnnamedText_60ec4: ; 99c1a (26:5c1a) db "of this tower.", $57 _PokemonTower7BattleText1: ; 99d31 (26:5d31) - db $0, "What do you want?", $4f - db "Why are you here?", $57 + text "What do you want?" + line "Why are you here?" + done _PokemonTower7EndBattleText1: ; 99d56 (26:5d56) - db $0, "I give up!", $58 + text "I give up!" + prompt _PokemonTower7AfterBattleText1: ; 99d62 (26:5d62) - db $0, "I'm not going to", $4f - db "forget this!", $57 + text "I'm not going to" + line "forget this!" + done _PokemonTower7BattleText2: ; 99d80 (26:5d80) - db $0, "This old guy came", $4f - db "and complained", $55 - db "about us harming", $55 - db "useless #MON!", $51 - db "We're talking it", $4f - db "over as adults!", $57 + text "This old guy came" + line "and complained" + next "about us harming" + next "useless #MON!" + + page "We're talking it" + line "over as adults!" + done _PokemonTower7EndBattleText2: ; 99de1 (26:5de1) - db $0, "Please!", $4f - db "No more!", $58 + text "Please!" + line "No more!" + prompt _PokemonTower7AfterBattleText2: ; 99df3 (26:5df3) - db $0, "#MON are only", $4f - db "good for making", $55 - db "money!", $51 - db "Stay out of our", $4f - db "business!", $57 + text "#MON are only" + line "good for making" + next "money!" + + page "Stay out of our" + line "business!" + done _PokemonTower7BattleText3: ; 99e33 (26:5e33) - db $0, "You're not saving", $4f - db "anyone, kid!", $57 + text "You're not saving" + line "anyone, kid!" + done _PokemonTower7EndBattleText3: ; 99e52 (26:5e52) - db $0, "Don't", $4f - db "fight us ROCKETs!", $58 + text "Don't" + line "fight us ROCKETs!" + prompt _PokemonTower7AfterBattleText3: ; 99e6a (26:5e6a) - db $0, "You're not getting", $4f - db "away with this!", $57 + text "You're not getting" + line "away with this!" + done _UnnamedText_1d8d1: ; 99e8d (26:5e8d) - db $0, "That's odd, MR.FUJI", $4f - db "isn't here.", $55 - db "Where'd he go?", $57 + text "That's odd, MR.FUJI" + line "isn't here." + next "Where'd he go?" + done _UnnamedText_1d8d6: ; 99eba (26:5eba) - db $0, "MR.FUJI had been", $4f - db "praying alone for", $55 - db "CUBONE's mother.", $57 + text "MR.FUJI had been" + line "praying alone for" + next "CUBONE's mother." + done _UnnamedText_1d8f4: ; 99eee (26:5eee) - db $0, "This is really", $4f - db "MR.FUJI's house.", $51 - db "He's really kind!", $51 - db "He looks after", $4f - db "abandoned and", $55 - db "orphaned #MON!", $57 + text "This is really" + line "MR.FUJI's house." + + page "He's really kind!" + + page "He looks after" + line "abandoned and" + next "orphaned #MON!" + done _UnnamedText_1d8f9: ; 99f4b (26:5f4b) - db $0, "It's so warm!", $4f - db "#MON are so", $55 - db "nice to hug!", $57 + text "It's so warm!" + line "#MON are so" + next "nice to hug!" + done _LavenderHouse1Text3: ; 99f72 (26:5f72) db $0, "PSYDUCK: Gwappa!@@" @@ -124672,107 +126580,131 @@ _UnnamedText_1d94c: ; 99f97 (26:5f97) db "help your quest.", $58 _ReceivedFluteText: ; 99ffb (26:5ffb) - db $0, $52, " received", $4f - db "a @" + text $52, " received" + line "a @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _FluteExplanationText: ; 9a011 (26:6011) - db $0, $51 - db "Upon hearing #", $4f - db "FLUTE, sleeping", $55 - db "#MON will", $55 - db "spring awake.", $51 - db "It works on all", $4f - db "sleeping #MON.", $57 + text $51 + db "Upon hearing #" + line "FLUTE, sleeping" + next "#MON will" + next "spring awake." + + page "It works on all" + line "sleeping #MON." + done _FluteNoRoomText: ; 9a069 (26:6069) - db $0, "You must make", $4f - db "room for this!", $57 + text "You must make" + line "room for this!" + done _MrFujiAfterFluteText: ; 9a087 (26:6087) db $0, "MR.FUJI: Has my", $4f db "FLUTE helped you?", $57 _LavenderHouse1Text6: ; 9a0aa (26:60aa) - db $0, "#MON Monthly", $4f - db "Grand Prize", $55 - db "Drawing!", $51 - db "The application", $4f - db "form is...", $51 - db "Gone! It's been", $4f - db "clipped out!", $57 + text "#MON Monthly" + line "Grand Prize" + next "Drawing!" + + page "The application" + line "form is..." + + page "Gone! It's been" + line "clipped out!" + done _LavenderMartText2: ; 9a104 (26:6104) - db $0, "I'm searching for", $4f - db "items that raise", $55 - db "the abilities of", $55 - db "#MON during a", $55 - db "single battle.", $51 - db "X ATTACK, X", $4f - db "DEFEND, X SPEED", $55 - db "and X SPECIAL are", $55 - db "what I'm after.", $51 - db "Do you know where", $4f - db "I can get them?", $57 + text "I'm searching for" + line "items that raise" + next "the abilities of" + next "#MON during a" + next "single battle." + + page "X ATTACK, X" + line "DEFEND, X SPEED" + next "and X SPECIAL are" + next "what I'm after." + + page "Do you know where" + line "I can get them?" + done _UnnamedText_5c953: ; 9a1b4 (26:61b4) - db $0, "You know REVIVE?", $4f - db "It revives any", $55 - db "fainted #MON!", $57 + text "You know REVIVE?" + line "It revives any" + next "fainted #MON!" + done _UnnamedText_5c958: ; 9a1e3 (26:61e3) - db $0, "I found a NUGGET", $4f - db "in the mountains.", $51 - db "I thought it was", $4f - db "useless, but it", $55 - db "sold for ¥5000!", $57 + text "I found a NUGGET" + line "in the mountains." + + page "I thought it was" + line "useless, but it" + next "sold for ¥5000!" + done _LavenderHouse2Text1: ; 9a238 (26:6238) db $0, "CUBONE: Kyarugoo!@@" _UnnamedText_1d9dc: ; 9a24c (26:624c) - db $0, "I hate those", $4f - db "horrible ROCKETs!", $51 - db "That poor CUBONE's", $4f - db "mother...", $51 - db "It was killed", $4f - db "trying to escape", $55 - db "from TEAM ROCKET!", $57 + text "I hate those" + line "horrible ROCKETs!" + + page "That poor CUBONE's" + line "mother..." + + page "It was killed" + line "trying to escape" + next "from TEAM ROCKET!" + done _UnnamedText_1d9e1: ; 9a2b9 (26:62b9) - db $0, "The GHOST of", $4f - db "#MON TOWER is", $55 - db "gone!", $51 - db "Someone must have", $4f - db "soothed its", $55 - db "restless soul!", $57 + text "The GHOST of" + line "#MON TOWER is" + next "gone!" + + page "Someone must have" + line "soothed its" + next "restless soul!" + done _UnnamedText_1dab3: ; 9a308 (26:6308) - db $0, "Hello, hello!", $4f - db "I am the official", $55 - db "NAME RATER!", $51 - db "Want me to rate", $4f - db "the nicknames of", $55 - db "your #MON?", $57 + text "Hello, hello!" + line "I am the official" + next "NAME RATER!" + + page "Want me to rate" + line "the nicknames of" + next "your #MON?" + done _UnnamedText_1dab8: ; 9a361 (26:6361) - db $0, "Which #MON", $4f - db "should I look at?", $58 + text "Which #MON" + line "should I look at?" + prompt _UnnamedText_1dabd: ; 9a37f (26:637f) TX_RAM $cd6d - db $0, ", is it?", $4f - db "That is a decent", $55 - db "nickname!", $51 - db "But, would you", $4f - db "like me to give", $55 - db "it a nicer name?", $51 - db "How about it?", $57 + text ", is it?" + line "That is a decent" + next "nickname!" + + page "But, would you" + line "like me to give" + next "it a nicer name?" + + page "How about it?" + done _UnnamedText_1dac2: ; 9a3e5 (26:63e5) - db $0, "Fine! What should", $4f - db "we name it?", $58 + text "Fine! What should" + line "we name it?" + prompt _UnnamedText_1dac7: ; 9a404 (26:6404) db $0, "OK! This #MON", $4f @@ -124781,62 +126713,76 @@ _UnnamedText_1dac7: ; 9a404 (26:6404) UnnamedText_9a425: ; 9a425 (26:6425) TX_RAM $cee9 - db $0, "!", $51 - db "That's a better", $4f - db "name than before!", $57 + text "!" + + page "That's a better" + line "name than before!" + done _UnnamedText_1dacc: ; 9a44c (26:644c) - db $0, "Fine! Come any", $4f - db "time you like!", $57 + text "Fine! Come any" + line "time you like!" + done _UnnamedText_1dad1: ; 9a46b (26:646b) TX_RAM $cd6d - db $0, ", is it?", $4f - db "That is a truly", $55 - db "impeccable name!", $51 - db "Take good care of", $4f - db "@" + text ", is it?" + line "That is a truly" + next "impeccable name!" + + page "Take good care of" + line "@" TX_RAM $cd6d - db $0, "!", $57 + text "!" + done _VermilionPokecenterText2: ; 9a4b2 (26:64b2) _VermilionPokecenterText1: ; 9a4b2 (26:64b2) - db $0, "Even if they are", $4f - db "the same level,", $55 - db "#MON can have", $55 - db "very different", $55 - db "abilities.", $51 - db "A #MON raised", $4f - db "by a trainer is", $55 - db "stronger than one", $55 - db "in the wild.", $57 + text "Even if they are" + line "the same level," + next "#MON can have" + next "very different" + next "abilities." + + page "A #MON raised" + line "by a trainer is" + next "stronger than one" + next "in the wild." + done _VermilionPokecenterText3: ; 9a539 (26:6539) - db $0, "My #MON was", $4f - db "poisoned! It", $55 - db "fainted while we", $55 - db "were walking!", $57 + text "My #MON was" + line "poisoned! It" + next "fainted while we" + next "were walking!" + done _UnnamedText_59bb7: ; 9a572 (26:6572) - db $0, "Won't you admire", $4f - db "my PIKACHU's", $55 - db "adorable tail?", $57 + text "Won't you admire" + line "my PIKACHU's" + next "adorable tail?" + done _UnnamedText_59bbc: ; 9a59e (26:659e) - db $0, "Humph! My PIKACHU", $4f - db "is twice as cute", $55 - db "as that one!", $57 + text "Humph! My PIKACHU" + line "is twice as cute" + next "as that one!" + done _UnnamedText_59be4: ; 9a5cf (26:65cf) - db $0, "I just love my", $4f - db "SEEL!", $51 - db "It squeals when I", $4f - db "hug it!", $57 + text "I just love my" + line "SEEL!" + + page "It squeals when I" + line "hug it!" + done _UnnamedText_59be9: ; 9a5ff (26:65ff) - db $0, "Oh dear!", $51 - db "My SEEL is far", $4f - db "more attractive!", $57 + text "Oh dear!" + + page "My SEEL is far" + line "more attractive!" + done _UnnamedText_59c00: ; 9a629 (26:6629) db $0, "PIKACHU: Chu!", $4f @@ -124846,313 +126792,393 @@ _UnnamedText_59c17: ; 9a641 (26:6641) db $0, "SEEL: Kyuoo!", $57 _UnnamedText_59c65: ; 9a64f (26:664f) - db $0, "I chair the", $4f - db "#MON Fan Club!", $51 - db "I have collected", $4f - db "over 100 #MON!", $51 - db "I'm very fussy", $4f - db "when it comes to", $55 - db "#MON!", $51 - db "So...", $51 - db "Did you come", $4f - db "visit to hear", $55 - db "about my #MON?", $57 + text "I chair the" + line "#MON Fan Club!" + + page "I have collected" + line "over 100 #MON!" + + page "I'm very fussy" + line "when it comes to" + next "#MON!" + + page "So..." + + page "Did you come" + line "visit to hear" + next "about my #MON?" + done _UnnamedText_59c6a: ; 9a6e0 (26:66e0) - db $0, "Good!", $4f - db "Then listen up!", $51 - db "My favorite", $4f - db "RAPIDASH...", $51 - db "It...cute...", $4f - db "lovely...smart...", $55 - db "plus...amazing...", $55 - db "you think so?...", $55 - db "oh yes...it...", $55 - db "stunning...", $55 - db "kindly...", $55 - db "love it!", $51 - db "Hug it...when...", $55 - db "sleeping...warm", $55 - db "and cuddly...", $55 - db "spectacular...", $55 - db "ravishing...", $55 - db "...Oops! Look at", $55 - db "the time! I kept", $55 - db "you too long!", $51 - db "Thanks for hearing", $4f - db "me out! I want", $55 - db "you to have this!", $58 + text "Good!" + line "Then listen up!" + + page "My favorite" + line "RAPIDASH..." + + page "It...cute..." + line "lovely...smart..." + next "plus...amazing..." + next "you think so?..." + next "oh yes...it..." + next "stunning..." + next "kindly..." + next "love it!" + + page "Hug it...when..." + next "sleeping...warm" + next "and cuddly..." + next "spectacular..." + next "ravishing..." + next "...Oops! Look at" + next "the time! I kept" + next "you too long!" + + page "Thanks for hearing" + line "me out! I want" + next "you to have this!" + prompt _ReceivedBikeVoucherText: ; 9a82e (26:682e) - db $0, $52, " received", $4f - db "a @" + text $52, " received" + line "a @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_59c74: ; 9a844 (26:6844) - db $0, $51 - db "Exchange that for", $4f - db "a BICYCLE!", $51 - db "Don't worry, my", $4f - db "FEAROW will FLY", $55 - db "me anywhere!", $51 - db "So, I don't need a", $4f - db "BICYCLE!", $51 - db "I hope you like", $4f - db "cycling!", $57 + text $51 + db "Exchange that for" + line "a BICYCLE!" + + page "Don't worry, my" + line "FEAROW will FLY" + next "me anywhere!" + + page "So, I don't need a" + line "BICYCLE!" + + page "I hope you like" + line "cycling!" + done _UnnamedText_59c79: ; 9a8c3 (26:68c3) - db $0, "Oh. Come back", $4f - db "when you want to", $55 - db "hear my story!", $57 + text "Oh. Come back" + line "when you want to" + next "hear my story!" + done _UnnamedText_59c7e: ; 9a8f2 (26:68f2) - db $0, "Hello, ", $52, "!", $51 - db "Did you come see", $4f - db "me about my", $55 - db "#MON again?", $51 - db "No? Too bad!", $57 + text "Hello, ", $52, "!" + + page "Did you come see" + line "me about my" + next "#MON again?" + + page "No? Too bad!" + done _UnnamedText_59c83: ; 9a933 (26:6933) - db $0, "Make room for", $4f - db "this!", $57 + text "Make room for" + line "this!" + done _FanClubText6: ; 9a948 (26:6948) - db $0, "Our Chairman is", $4f - db "very vocal about", $55 - db "#MON.", $57 + text "Our Chairman is" + line "very vocal about" + next "#MON." + done _FanClubText7: ; 9a970 (26:6970) - db $0, "Let's all listen", $4f - db "politely to other", $55 - db "trainers!", $57 + text "Let's all listen" + line "politely to other" + next "trainers!" + done _FanClubText8: ; 9a99d (26:699d) - db $0, "If someone brags,", $4f - db "brag right back!", $57 + text "If someone brags," + line "brag right back!" + done _VermilionMartText2: ; 9a9c1 (26:69c1) - db $0, "There are evil", $4f - db "people who will", $55 - db "use #MON for", $55 - db "criminal acts.", $51 - db "TEAM ROCKET", $4f - db "traffics in rare", $55 - db "#MON.", $51 - db "They also abandon", $4f - db "#MON that they", $55 - db "consider not to", $55 - db "be popular or", $55 - db "useful.", $57 + text "There are evil" + line "people who will" + next "use #MON for" + next "criminal acts." + + page "TEAM ROCKET" + line "traffics in rare" + next "#MON." + + page "They also abandon" + line "#MON that they" + next "consider not to" + next "be popular or" + next "useful." + done _VermilionMartText3: ; 9aa67 (26:6a67) - db $0, "I think #MON", $4f - db "can be good or", $55 - db "evil. It depends", $55 - db "on the trainer.", $57 + text "I think #MON" + line "can be good or" + next "evil. It depends" + next "on the trainer." + done _UnnamedText_5cb6d: ; 9aaa5 (26:6aa5) - db $0, "Hey, kid! What do", $4f - db "you think you're", $55 - db "doing here?", $51 - db "You won't live", $4f - db "long in combat!", $55 - db "That's for sure!", $51 - db "I tell you kid,", $4f - db "electric #MON", $55 - db "saved me during", $55 - db "the war!", $51 - db "They zapped my", $4f - db "enemies into", $55 - db "paralysis!", $51 - db "The same as I'll", $4f - db "do to you!", $57 + text "Hey, kid! What do" + line "you think you're" + next "doing here?" + + page "You won't live" + line "long in combat!" + next "That's for sure!" + + page "I tell you kid," + line "electric #MON" + next "saved me during" + next "the war!" + + page "They zapped my" + line "enemies into" + next "paralysis!" + + page "The same as I'll" + line "do to you!" + done SECTION "bank27",ROMX,BANK[$27] _UnnamedText_5cb72: ; 9c000 (27:4000) - db $0, "A little word of", $4f - db "advice, kid!", $51 - db "Electricity is", $4f - db "sure powerful!", $51 - db "But, it's useless", $4f - db "against ground-", $55 - db "type #MON!", $57 + text "A little word of" + line "advice, kid!" + + page "Electricity is" + line "sure powerful!" + + page "But, it's useless" + line "against ground-" + next "type #MON!" + done _UnnamedText_5cb77: ; 9c069 (27:4069) - db $0, "The THUNDERBADGE", $4f - db "cranks up your", $55 - db "#MON's SPEED!", $51 - db "It also lets your", $4f - db "#MON FLY any", $55 - db "time, kid!", $51 - db "You're special,", $4f - db "kid! Take this!", $57 + text "The THUNDERBADGE" + line "cranks up your" + next "#MON's SPEED!" + + page "It also lets your" + line "#MON FLY any" + next "time, kid!" + + page "You're special," + line "kid! Take this!" + done _ReceivedTM24Text: ; 9c0e0 (27:40e0) - db $0, $52, " received ", $4f - db "@" + text $52, " received " + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM24ExplanationText: ; 9c0f5 (27:40f5) - db $0, $51 - db "TM24 contains", $4f - db "THUNDERBOLT!", $51 - db "Teach it to an", $4f - db "electric #MON!", $57 + text $51 + db "TM24 contains" + line "THUNDERBOLT!" + + page "Teach it to an" + line "electric #MON!" + done _TM24NoRoomText: ; 9c130 (27:4130) - db $0, "Yo kid, make room", $4f - db "in your pack!", $57 + text "Yo kid, make room" + line "in your pack!" + done _ReceivedThunderbadgeText: ; 9c151 (27:4151) - db $0, "Whoa!", $51 - db "You're the real", $4f - db "deal, kid!", $51 - db "Fine then, take", $4f - db "the THUNDERBADGE!", $58 + text "Whoa!" + + page "You're the real" + line "deal, kid!" + + page "Fine then, take" + line "the THUNDERBADGE!" + prompt _VermilionGymBattleText1: ; 9c194 (27:4194) - db $0, "When I was in the", $4f - db "Army, LT.SURGE", $55 - db "was my strict CO!", $57 + text "When I was in the" + line "Army, LT.SURGE" + next "was my strict CO!" + done _VermilionGymEndBattleText1: ; 9c1c8 (27:41c8) - db $0, "Stop!", $4f - db "You're very good!", $58 + text "Stop!" + line "You're very good!" + prompt _VermilionGymAfterBattleText1: ; 9c1e0 (27:41e0) - db $0, "The door won't", $4f - db "open?", $51 - db "LT.SURGE always", $4f - db "was cautious!", $57 + text "The door won't" + line "open?" + + page "LT.SURGE always" + line "was cautious!" + done _VermilionGymBattleText2: ; 9c213 (27:4213) - db $0, "I'm a lightweight,", $4f - db "but I'm good with", $55 - db "electricity!", $57 + text "I'm a lightweight," + line "but I'm good with" + next "electricity!" + done _VermilionGymEndBattleText2: ; 9c244 (27:4244) - db $0, "Fried!", $58 + text "Fried!" + prompt _VermilionGymAfterBattleText2: ; 9c24c (27:424c) - db $0, "OK, I'll talk!", $51 - db "LT.SURGE said he", $4f - db "hid door switches", $55 - db "inside something!", $57 + text "OK, I'll talk!" + + page "LT.SURGE said he" + line "hid door switches" + next "inside something!" + done _VermilionGymBattleText3: ; 9c290 (27:4290) - db $0, "This is no place", $4f - db "for kids!", $57 + text "This is no place" + line "for kids!" + done _VermilionGymEndBattleText3: ; 9c2ac (27:42ac) - db $0, "Wow!", $4f - db "Surprised me!", $58 + text "Wow!" + line "Surprised me!" + prompt _VermilionGymAfterBattleText3: ; 9c2c0 (27:42c0) - db $0, "LT.SURGE set up", $4f - db "double locks!", $55 - db "Here's a hint!", $51 - db "When you open the", $4f - db "1st lock, the 2nd", $55 - db "lock is right", $55 - db "next to it!", $57 + text "LT.SURGE set up" + line "double locks!" + next "Here's a hint!" + + page "When you open the" + line "1st lock, the 2nd" + next "lock is right" + next "next to it!" + done _UnnamedText_5cbf4: ; 9c32b (27:432b) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "LT.SURGE has a", $4f - db "nickname. People", $55 - db "refer to him as", $55 - db "the Lightning", $55 - db "American!", $51 - db "He's an expert on", $4f - db "electric #MON!", $51 - db "Birds and water", $4f - db "#MON are at", $55 - db "risk! Beware of", $55 - db "paralysis too!", $51 - db "LT.SURGE is very", $4f - db "cautious!", $51 - db "You'll have to", $4f - db "break a code to", $55 - db "get to him!", $57 + text "Yo! Champ in" + line "making!" + + page "LT.SURGE has a" + line "nickname. People" + next "refer to him as" + next "the Lightning" + next "American!" + + page "He's an expert on" + line "electric #MON!" + + page "Birds and water" + line "#MON are at" + next "risk! Beware of" + next "paralysis too!" + + page "LT.SURGE is very" + line "cautious!" + + page "You'll have to" + line "break a code to" + next "get to him!" + done _UnnamedText_5cbf9: ; 9c429 (27:4429) - db $0, "Whew! That match", $4f - db "was electric!", $57 + text "Whew! That match" + line "was electric!" + done _VermilionHouse1Text1: ; 9c449 (27:4449) - db $0, "I'm getting my", $4f - db "PIDGEY to fly a", $55 - db "letter to SAFFRON", $55 - db "in the north!", $57 + text "I'm getting my" + line "PIDGEY to fly a" + next "letter to SAFFRON" + next "in the north!" + done _VermilionHouse1Text2: ; 9c488 (27:4488) db $0, "PIDGEY: Kurukkoo!@@" _VermilionHouse1Text3: ; 9c49c (27:449c) - db $0, "Dear PIPPI, I hope", $4f - db "to see you soon.", $51 - db "I heard SAFFRON", $4f - db "has problems with", $55 - db "TEAM ROCKET.", $51 - db "VERMILION appears", $4f - db "to be safe.", $57 + text "Dear PIPPI, I hope" + line "to see you soon." + + page "I heard SAFFRON" + line "has problems with" + next "TEAM ROCKET." + + page "VERMILION appears" + line "to be safe." + done _VermilionDockText1: ; 9c50e (27:450e) db $0, $57 _UnnamedText_560b1: ; 9c510 (27:4510) - db $0, "I'm the FISHING", $4f - db "GURU!", $51 - db "I simply Looove", $4f - db "fishing!", $51 - db "Do you like to", $4f - db "fish?", $57 + text "I'm the FISHING" + line "GURU!" + + page "I simply Looove" + line "fishing!" + + page "Do you like to" + line "fish?" + done _UnnamedText_560b6: ; 9c554 (27:4554) - db $0, "Grand! I like", $4f - db "your style!", $51 - db "Take this and", $4f - db "fish, young one!", $51 - db $52, " received", $4f - db "an @" + text "Grand! I like" + line "your style!" + + page "Take this and" + line "fish, young one!" + + page $52, " received" + line "an @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_560bb: ; 9c5a4 (27:45a4) - db $0, $51 - db "Fishing is a way", $4f - db "of life!", $51 - db "From the seas to", $4f - db "rivers, go out", $55 - db "and land the big", $55 - db "one, young one!", $57 + text $51 + db "Fishing is a way" + line "of life!" + + page "From the seas to" + line "rivers, go out" + next "and land the big" + next "one, young one!" + done _UnnamedText_560c0: ; 9c601 (27:4601) - db $0, "Oh... That's so", $4f - db "disappointing...", $57 + text "Oh... That's so" + line "disappointing..." + done _UnnamedText_560c5: ; 9c622 (27:4622) - db $0, "Hello there,", $4f - db $52, "!", $51 - db "How are the fish", $4f - db "biting?", $57 + text "Hello there," + line $52, "!" + + page "How are the fish" + line "biting?" + done _UnnamedText_560ca: ; 9c64c (27:464c) - db $0, "Oh no!", $51 - db "You have no room", $4f - db "for my gift!", $57 + text "Oh no!" + + page "You have no room" + line "for my gift!" + done _CeladonMart1Text1: ; 9c672 (27:4672) - db $0, "Hello! Welcome to", $4f - db "CELADON DEPT.", $55 - db "STORE.", $51 - db "The board on the", $4f - db "right describes", $55 - db "the store layout.", $57 + text "Hello! Welcome to" + line "CELADON DEPT." + next "STORE." + + page "The board on the" + line "right describes" + next "the store layout." + done _CeladonMart1Text2: ; 9c6cd (27:46cd) db $0, "1F: SERVICE", $4f @@ -125170,16 +127196,19 @@ _CeladonMart1Text3: ; 9c752 (27:4752) db " COUNTER", $57 _CeladonMart2Text3: ; 9c76b (27:476b) - db $0, "SUPER REPEL keeps", $4f - db "weak #MON at", $55 - db "bay...", $51 - db "Hmm, it's a more", $4f - db "powerful REPEL!", $57 + text "SUPER REPEL keeps" + line "weak #MON at" + next "bay..." + + page "Hmm, it's a more" + line "powerful REPEL!" + done _CeladonMart2Text4: ; 9c7b2 (27:47b2) - db $0, "For long outings,", $4f - db "you should buy", $55 - db "REVIVE.", $57 + text "For long outings," + line "you should buy" + next "REVIVE." + done _CeladonMart2Text5: ; 9c7dc (27:47dc) db $0, "Top Grade Items", $4f @@ -125188,97 +127217,118 @@ _CeladonMart2Text5: ; 9c7dc (27:47dc) db " MARKET", $57 _TM18PreReceiveText: ; 9c814 (27:4814) - db $0, "Oh, hi! I finally", $4f - db "finished #MON!", $51 - db "Not done yet?", $4f - db "This might be", $55 - db "useful!", $58 + text "Oh, hi! I finally" + line "finished #MON!" + + page "Not done yet?" + line "This might be" + next "useful!" + prompt _ReceivedTM18Text: ; 9c85a (27:485a) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM18ExplanationText: ; 9c86e (27:486e) - db $0, "TM18 is COUNTER!", $4f - db "Not like the one", $55 - db "I'm leaning on,", $55 - db "mind you!", $57 + text "TM18 is COUNTER!" + line "Not like the one" + next "I'm leaning on," + next "mind you!" + done _TM18NoRoomText: ; 9c8aa (27:48aa) - db $0, "Your pack is full", $4f - db "of items!", $57 + text "Your pack is full" + line "of items!" + done _CeladonMart3Text2: ; 9c8c7 (27:48c7) - db $0, "Captured #MON", $4f - db "are registered", $55 - db "with an ID No.", $55 - db "and OT, the name", $55 - db "of the Original", $55 - db "Trainer that", $55 - db "caught it!", $57 + text "Captured #MON" + line "are registered" + next "with an ID No." + next "and OT, the name" + next "of the Original" + next "Trainer that" + next "caught it!" + done _CeladonMart3Text3: ; 9c92d (27:492d) - db $0, "All right!", $51 - db "My buddy's going", $4f - db "to trade me his", $55 - db "KANGASKHAN for my", $55 - db "GRAVELER!", $57 + text "All right!" + + page "My buddy's going" + line "to trade me his" + next "KANGASKHAN for my" + next "GRAVELER!" + done _CeladonMart3Text4: ; 9c975 (27:4975) - db $0, "Come on GRAVELER!", $51 - db "I love GRAVELER!", $4f - db "I collect them!", $51 - db "Huh?", $51 - db "GRAVELER turned", $4f - db "into a different", $55 - db "#MON!", $57 + text "Come on GRAVELER!" + + page "I love GRAVELER!" + line "I collect them!" + + page "Huh?" + + page "GRAVELER turned" + line "into a different" + next "#MON!" + done _CeladonMart3Text5: ; 9c9d5 (27:49d5) - db $0, "You can identify", $4f - db "#MON you got", $55 - db "in trades by", $55 - db "their ID Numbers!", $57 + text "You can identify" + line "#MON you got" + next "in trades by" + next "their ID Numbers!" + done _CeladonMart3Text6: ; 9ca13 (27:4a13) - db $0, "It's an SNES!", $57 + text "It's an SNES!" + done _CeladonMart3Text7: ; 9ca21 (27:4a21) - db $0, "An RPG! There's", $4f - db "no time for that!", $57 + text "An RPG! There's" + line "no time for that!" + done _CeladonMart3Text9: ; 9ca43 (27:4a43) - db $0, "A sports game!", $4f - db "Dad'll like that!", $57 + text "A sports game!" + line "Dad'll like that!" + done _CeladonMart3Text11: ; 9ca64 (27:4a64) - db $0, "A puzzle game!", $4f - db "Looks addictive!", $57 + text "A puzzle game!" + line "Looks addictive!" + done _CeladonMart3Text13: ; 9ca85 (27:4a85) - db $0, "A fighting game!", $4f - db "Looks tough!", $57 + text "A fighting game!" + line "Looks tough!" + done _CeladonMart3Text14: ; 9caa4 (27:4aa4) db $0, "3F: TV GAME SHOP", $57 _CeladonMart3Text15: ; 9cab6 (27:4ab6) - db $0, "Red and Blue!", $4f - db "Both are #MON!", $57 + text "Red and Blue!" + line "Both are #MON!" + done _CeladonMart4Text2: ; 9cad4 (27:4ad4) - db $0, "I'm getting a", $4f - db "# DOLL for my", $55 - db "girl friend!", $57 + text "I'm getting a" + line "# DOLL for my" + next "girl friend!" + done _CeladonMart4Text3: ; 9cafd (27:4afd) - db $0, "I heard something", $4f - db "useful.", $51 - db "You can run from", $4f - db "wild #MON by", $55 - db "distracting them", $55 - db "with a # DOLL!", $57 + text "I heard something" + line "useful." + + page "You can run from" + line "wild #MON by" + next "distracting them" + next "with a # DOLL!" + done _CeladonMart4Text4: ; 9cb56 (27:4b56) db $0, "Express yourself", $4f @@ -125289,129 +127339,153 @@ _CeladonMart4Text4: ; 9cb56 (27:4b56) db "sale now!", $57 _UnnamedText_484ee: ; 9cbb5 (27:4bb5) - db $0, "Give her which", $4f - db "drink?", $57 + text "Give her which" + line "drink?" + done _UnnamedText_484f3: ; 9cbcc (27:4bcc) - db $0, "Yay!", $51 - db "FRESH WATER!", $51 - db "Thank you!", $51 - db "You can have this", $4f - db "from me!@@" + text "Yay!" + + page "FRESH WATER!" + + page "Thank you!" + + page "You can have this" + line "from me!@@" _UnnamedText_484f9: ; 9cc06 (27:4c06) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_484fe: ; 9cc1a (27:4c1a) - db $0, $51 + text $51 db "@" TX_RAM $cf4b - db $0, " contains", $4f - db "ICE BEAM!", $51 - db "It can freeze the", $4f - db "target sometimes!@@" + text " contains" + line "ICE BEAM!" + + page "It can freeze the" + line "target sometimes!@@" _UnnamedText_48504: ; 9cc5a (27:4c5a) - db $0, "Yay!", $51 - db "SODA POP!", $51 - db "Thank you!", $51 - db "You can have this", $4f - db "from me!@@" + text "Yay!" + + page "SODA POP!" + + page "Thank you!" + + page "You can have this" + line "from me!@@" _UnnamedText_4850a: ; 9cc91 (27:4c91) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_4850f: ; 9cca5 (27:4ca5) - db $0, $51 + text $51 db "@" TX_RAM $cf4b - db $0, " contains", $4f - db "ROCK SLIDE!", $51 - db "It can spook the", $4f - db "target sometimes!@@" + text " contains" + line "ROCK SLIDE!" + + page "It can spook the" + line "target sometimes!@@" _UnnamedText_48515: ; 9cce6 (27:4ce6) - db $0, "Yay!", $51 - db "LEMONADE!", $51 - db "Thank you!", $51 - db "You can have this", $4f - db "from me!@@" + text "Yay!" + + page "LEMONADE!" + + page "Thank you!" + + page "You can have this" + line "from me!@@" _ReceivedTM49Text: ; 9cd1d (27:4d1d) - db $0, $52, " received", $4f - db "TM49!@@" + text $52, " received" + line "TM49!@@" _UnnamedText_48520: ; 9cd30 (27:4d30) - db $0, $51 - db "TM49 contains", $4f - db "TRI ATTACK!@@" + text $51 + db "TM49 contains" + line "TRI ATTACK!@@" _UnnamedText_48526: ; 9cd4d (27:4d4d) - db $0, "You don't have", $4f - db "space for this!@@" + text "You don't have" + line "space for this!@@" _UnnamedText_4852c: ; 9cd6d (27:4d6d) - db $0, "No thank you!", $4f - db "I'm not thirsty", $55 - db "after all!@@" + text "No thank you!" + line "I'm not thirsty" + next "after all!@@" _CeladonMartRoofText1: ; 9cd97 (27:4d97) - db $0, "My sister is a", $4f - db "trainer, believe", $55 - db "it or not.", $51 - db "But, she's so", $4f - db "immature, she", $55 - db "drives me nuts!", $57 + text "My sister is a" + line "trainer, believe" + next "it or not." + + page "But, she's so" + line "immature, she" + next "drives me nuts!" + done _UnnamedText_48598: ; 9cdee (27:4dee) - db $0, "I'm thirsty!", $4f - db "I want something", $55 - db "to drink!", $57 + text "I'm thirsty!" + line "I want something" + next "to drink!" + done _CeladonMartRoofText4: ; 9ce16 (27:4e16) - db $0, "I'm thirsty!", $4f - db "I want something", $55 - db "to drink!", $51 - db "Give her a drink?", $57 + text "I'm thirsty!" + line "I want something" + next "to drink!" + + page "Give her a drink?" + done _CeladonMartRoofText6: ; 9ce50 (27:4e50) db $0, "ROOFTOP SQUARE:", $4f db "VENDING MACHINES", $57 _VendingMachineText1: ; 9ce72 (27:4e72) - db $0, "A vending machine!", $4f - db "Here's the menu!", $58 + text "A vending machine!" + line "Here's the menu!" + prompt _VendingMachineText4: ; 9ce96 (27:4e96) - db $0, "Oops, not enough", $4f - db "money!", $57 + text "Oops, not enough" + line "money!" + done _VendingMachineText5: ; 9ceaf (27:4eaf) TX_RAM $cf4b - db $0, $4f - db "popped out!", $57 + db $0 + line "popped out!" + done _VendingMachineText6: ; 9cec0 (27:4ec0) - db $0, "There's no more", $4f - db "room for stuff!", $57 + text "There's no more" + line "room for stuff!" + done _VendingMachineText7: ; 9cee0 (27:4ee0) - db $0, "Not thirsty!", $57 + text "Not thirsty!" + done _CeladonMansion1Text1: ; 9ceee (27:4eee) db $0, "MEOWTH: Meow!@@" _CeladonMansion1Text2: ; 9cefe (27:4efe) - db $0, "My dear #MON", $4f - db "keep me company.", $51 - db "MEOWTH even brings", $4f - db "money home!", $57 + text "My dear #MON" + line "keep me company." + + page "MEOWTH even brings" + line "money home!" + done _CeladonMansion1Text3: ; 9cf3c (27:4f3c) db $0, "CLEFAIRY: Pi", $4f @@ -125422,581 +127496,725 @@ _CeladonMansion1Text4: ; 9cf55 (27:4f55) db "kyaoo!@@" _CeladonMansion1Text5: ; 9cf6b (27:4f6b) - db $0, "CELADON MANSION", $4f - db "Manager's Suite", $57 + text "CELADON MANSION" + line "Manager's Suite" + done _CeladonMansion2Text1: ; 9cf8b (27:4f8b) - db $0, "GAME FREAK", $4f - db "Meeting Room", $57 + text "GAME FREAK" + line "Meeting Room" + done _ProgrammerText: ; 9cfa4 (27:4fa4) - db $0, "Me? I'm the", $4f - db "programmer!", $57 + text "Me? I'm the" + line "programmer!" + done _GraphicArtistText: ; 9cfbc (27:4fbc) - db $0, "I'm the graphic", $4f - db "artist!", $55 - db "I drew you!", $57 + text "I'm the graphic" + line "artist!" + next "I drew you!" + done _WriterText: ; 9cfe0 (27:4fe0) - db $0, "I wrote the story!", $4f - db "Isn't ERIKA cute?", $51 - db "I like MISTY a", $4f - db "lot too!", $51 - db "Oh, and SABRINA,", $4f - db "I like her!", $57 + text "I wrote the story!" + line "Isn't ERIKA cute?" + + page "I like MISTY a" + line "lot too!" + + page "Oh, and SABRINA," + line "I like her!" + done _GameDesignerText: ; 9d03a (27:503a) - db $0, "Is that right?", $51 - db "I'm the game", $4f - db "designer!", $51 - db "Filling up your", $4f - db "#DEX is tough,", $55 - db "but don't quit!", $51 - db "When you finish,", $4f - db "come tell me!", $57 + text "Is that right?" + + page "I'm the game" + line "designer!" + + page "Filling up your" + line "#DEX is tough," + next "but don't quit!" + + page "When you finish," + line "come tell me!" + done _CompletedDexText: ; 9d0ad (27:50ad) - db $0, "Wow! Excellent!", $4f - db "You completed", $55 - db "your #DEX!", $55 - db "Congratulations!", $55 - db "...@@" + text "Wow! Excellent!" + line "You completed" + next "your #DEX!" + next "Congratulations!" + next "...@@" _CeladonMansion3Text5: ; 9d0ed (27:50ed) - db $0, "It's the game", $4f - db "program! Messing", $55 - db "with it could bug", $55 - db "out the game!", $57 + text "It's the game" + line "program! Messing" + next "with it could bug" + next "out the game!" + done _CeladonMansion3Text6: ; 9d12c (27:512c) - db $0, "Someone's playing", $4f - db "a game instead of", $55 - db "working!", $57 + text "Someone's playing" + line "a game instead of" + next "working!" + done _CeladonMansion3Text7: ; 9d159 (27:5159) - db $0, "It's the script!", $4f - db "Better not look", $55 - db "at the ending!", $57 + text "It's the script!" + line "Better not look" + next "at the ending!" + done _CeladonMansion3Text8: ; 9d189 (27:5189) - db $0, "GAME FREAK", $4f - db "Development Room", $57 + text "GAME FREAK" + line "Development Room" + done _CeladonMansion4Text1: ; 9d1a6 (27:51a6) - db $0, "I KNOW EVERYTHING!", $57 + text "I KNOW EVERYTHING!" + done _CeladonMansion5Text1: ; 9d1ba (27:51ba) - db $0, "I know everything", $4f - db "about the world", $55 - db "of #MON in", $55 - db "your GAME BOY!", $51 - db "Get together with", $4f - db "your friends and", $55 - db "trade #MON!", $57 + text "I know everything" + line "about the world" + next "of #MON in" + next "your GAME BOY!" + + page "Get together with" + line "your friends and" + next "trade #MON!" + done _CeladonPokecenterText2: ; 9d226 (27:5226) - db $0, "# FLUTE awakens", $4f - db "#MON with a", $55 - db "sound that only", $55 - db "they can hear!", $57 + text "# FLUTE awakens" + line "#MON with a" + next "sound that only" + next "they can hear!" + done _CeladonPokecenterText3: ; 9d262 (27:5262) - db $0, "I rode uphill on", $4f - db "CYCLING ROAD from", $55 - db "FUCHSIA!", $57 + text "I rode uphill on" + line "CYCLING ROAD from" + next "FUCHSIA!" + done _UnnamedText_48a5e: ; 9d28f (27:528f) - db $0, "Hello. Lovely", $4f - db "weather isn't it?", $55 - db "It's so pleasant.", $51 - db "...Oh dear...", $4f - db "I must have dozed", $55 - db "off. Welcome.", $51 - db "My name is ERIKA.", $4f - db "I am the LEADER", $55 - db "of CELADON GYM.", $51 - db "I teach the art of", $4f - db "flower arranging.", $55 - db "My #MON are of", $55 - db "the grass-type.", $51 - db "Oh, I'm sorry, I", $4f - db "had no idea that", $55 - db "you wished to", $55 - db "challenge me.", $51 - db "Very well, but I", $4f - db "shall not lose.", $57 + text "Hello. Lovely" + line "weather isn't it?" + next "It's so pleasant." + + page "...Oh dear..." + line "I must have dozed" + next "off. Welcome." + + page "My name is ERIKA." + line "I am the LEADER" + next "of CELADON GYM." + + page "I teach the art of" + line "flower arranging." + next "My #MON are of" + next "the grass-type." + + page "Oh, I'm sorry, I" + line "had no idea that" + next "you wished to" + next "challenge me." + + page "Very well, but I" + line "shall not lose." + done _UnnamedText_48a63: ; 9d3c2 (27:53c2) - db $0, "Oh!", $4f - db "I concede defeat.", $51 - db "You are remarkably", $4f - db "strong.", $51 - db "I must confer you", $4f - db "the RAINBOWBADGE.", $58 + text "Oh!" + line "I concede defeat." + + page "You are remarkably" + line "strong." + + page "I must confer you" + line "the RAINBOWBADGE." + prompt _UnnamedText_48a68: ; 9d418 (27:5418) - db $0, "You are cataloging", $4f - db "#MON? I must", $55 - db "say I'm impressed.", $51 - db "I would never", $4f - db "collect #MON", $55 - db "if they were", $55 - db "unattractive.", $57 + text "You are cataloging" + line "#MON? I must" + next "say I'm impressed." + + page "I would never" + line "collect #MON" + next "if they were" + next "unattractive." + done _UnnamedText_48a6d: ; 9d481 (27:5481) - db $0, "The RAINBOWBADGE", $4f - db "will make #MON", $55 - db "up to L50 obey.", $51 - db "It also allows", $4f - db "#MON to use", $55 - db "STRENGTH in and", $55 - db "out of battle.", $51 - db "Please also take", $4f - db "this with you.", $57 + text "The RAINBOWBADGE" + line "will make #MON" + next "up to L50 obey." + + page "It also allows" + line "#MON to use" + next "STRENGTH in and" + next "out of battle." + + page "Please also take" + line "this with you." + done _ReceivedTM21Text: ; 9d50c (27:550c) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM21ExplanationText: ; 9d520 (27:5520) - db $0, $51 - db "TM21 contains", $4f - db "MEGA DRAIN.", $51 - db "Half the damage", $4f - db "it inflicts is", $55 - db "drained to heal", $55 - db "your #MON!", $57 + text $51 + db "TM21 contains" + line "MEGA DRAIN." + + page "Half the damage" + line "it inflicts is" + next "drained to heal" + next "your #MON!" + done _TM21NoRoomText: ; 9d576 (27:5576) - db $0, "You should make", $4f - db "room for this.", $57 + text "You should make" + line "room for this." + done _CeladonGymBattleText2: ; 9d596 (27:5596) - db $0, "Hey!", $51 - db "You are not", $4f - db "allowed in here!", $57 + text "Hey!" + + page "You are not" + line "allowed in here!" + done _CeladonGymEndBattleText2: ; 9d5b9 (27:55b9) - db $0, "You're", $4f - db "too rough!", $58 + text "You're" + line "too rough!" + prompt _CeladonGymAfterBattleText2: ; 9d5cb (27:55cb) - db $0, "Bleaah!", $4f - db "I hope ERIKA", $55 - db "wipes you out!", $57 + text "Bleaah!" + line "I hope ERIKA" + next "wipes you out!" + done _CeladonGymBattleText3: ; 9d5f0 (27:55f0) - db $0, "I was getting", $4f - db "bored.", $57 + text "I was getting" + line "bored." + done _CeladonGymEndBattleText3: ; 9d606 (27:5606) - db $0, "My", $4f - db "makeup!", $58 + text "My" + line "makeup!" + prompt _CeladonGymAfterBattleText3: ; 9d612 (27:5612) - db $0, "Grass-type #MON", $4f - db "are tough against", $55 - db "the water-type!", $51 - db "They also have an", $4f - db "edge on rock and", $55 - db "ground #MON!", $57 + text "Grass-type #MON" + line "are tough against" + next "the water-type!" + + page "They also have an" + line "edge on rock and" + next "ground #MON!" + done _CeladonGymBattleText4: ; 9d675 (27:5675) - db $0, "Aren't you the", $4f - db "peeping Tom?", $57 + text "Aren't you the" + line "peeping Tom?" + done _CeladonGymEndBattleText4: ; 9d691 (27:5691) - db $0, "I'm", $4f - db "in shock!", $58 + text "I'm" + line "in shock!" + prompt _CeladonGymAfterBattleText4: ; 9d69f (27:569f) - db $0, "Oh, you weren't", $4f - db "peeping? We get a", $55 - db "lot of gawkers!", $57 + text "Oh, you weren't" + line "peeping? We get a" + next "lot of gawkers!" + done _CeladonGymBattleText5: ; 9d6d1 (27:56d1) - db $0, "Look at my grass", $4f - db "#MON!", $51 - db "They're so easy", $4f - db "to raise!", $57 + text "Look at my grass" + line "#MON!" + + page "They're so easy" + line "to raise!" + done _CeladonGymEndBattleText5: ; 9d702 (27:5702) - db $0, "No!", $58 + text "No!" + prompt _CeladonGymAfterBattleText5: ; 9d707 (27:5707) - db $0, "We only use grass-", $4f - db "type #MON at", $55 - db "our GYM!", $51 - db "We also use them", $4f - db "for making flower", $55 - db "arrangements!", $57 + text "We only use grass-" + line "type #MON at" + next "our GYM!" + + page "We also use them" + line "for making flower" + next "arrangements!" + done _CeladonGymBattleText6: ; 9d762 (27:5762) - db $0, "Don't bring any", $4f - db "bugs or fire", $55 - db "#MON in here!", $57 + text "Don't bring any" + line "bugs or fire" + next "#MON in here!" + done _CeladonGymEndBattleText6: ; 9d78d (27:578d) - db $0, "Oh!", $4f - db "You!", $58 + text "Oh!" + line "You!" + prompt _CeladonGymAfterBattleText6: ; 9d797 (27:5797) - db $0, "Our LEADER, ERIKA,", $4f - db "might be quiet,", $55 - db "but she's also", $55 - db "very skilled!", $57 + text "Our LEADER, ERIKA," + line "might be quiet," + next "but she's also" + next "very skilled!" + done _CeladonGymBattleText7: ; 9d7d7 (27:57d7) - db $0, "Pleased to meet", $4f - db "you. My hobby is", $55 - db "#MON training.", $57 + text "Pleased to meet" + line "you. My hobby is" + next "#MON training." + done _CeladonGymEndBattleText7: ; 9d808 (27:5808) - db $0, "Oh!", $4f - db "Splendid!", $58 + text "Oh!" + line "Splendid!" + prompt _CeladonGymAfterBattleText7: ; 9d817 (27:5817) - db $0, "I have a blind", $4f - db "date coming up.", $55 - db "I have to learn", $55 - db "to be polite.", $57 + text "I have a blind" + line "date coming up." + next "I have to learn" + next "to be polite." + done _CeladonGymBattleText8: ; 9d855 (27:5855) - db $0, "Welcome to", $4f - db "CELADON GYM!", $51 - db "You better not", $4f - db "underestimate", $55 - db "girl power!", $57 + text "Welcome to" + line "CELADON GYM!" + + page "You better not" + line "underestimate" + next "girl power!" + done _CeladonGymEndBattleText8: ; 9d897 (27:5897) - db $0, "Oh!", $4f - db "Beaten!", $58 + text "Oh!" + line "Beaten!" + prompt _CeladonGymAfterBattleText8: ; 9d8a4 (27:58a4) - db $0, "I didn't bring my", $4f - db "best #MON!", $51 - db "Wait 'til next", $4f - db "time!", $57 + text "I didn't bring my" + line "best #MON!" + + page "Wait 'til next" + line "time!" + done _CeladonGameCornerText1: ; 9d8d5 (27:58d5) - db $0, "Welcome!", $51 - db "You can exchange", $4f - db "your coins for", $55 - db "fabulous prizes", $55 - db "next door.", $57 + text "Welcome!" + + page "You can exchange" + line "your coins for" + next "fabulous prizes" + next "next door." + done _UnnamedText_48d22: ; 9d91a (27:591a) - db $0, "Welcome to ROCKET", $4f - db "GAME CORNER!", $51 - db "Do you need some", $4f - db "game coins?", $51 - db "It's ¥1000 for 50", $4f - db "coins. Would you", $55 - db "like some?", $57 + text "Welcome to ROCKET" + line "GAME CORNER!" + + page "Do you need some" + line "game coins?" + + page "It's ¥1000 for 50" + line "coins. Would you" + next "like some?" + done _UnnamedText_48d27: ; 9d984 (27:5984) - db $0, "Thanks! Here are", $4f - db "your 50 coins!", $57 + text "Thanks! Here are" + line "your 50 coins!" + done _UnnamedText_48d2c: ; 9d9a5 (27:59a5) - db $0, "No? Please come", $4f - db "play sometime!", $57 + text "No? Please come" + line "play sometime!" + done _UnnamedText_48d31: ; 9d9c5 (27:59c5) - db $0, "You can't afford", $4f - db "the coins!", $57 + text "You can't afford" + line "the coins!" + done _UnnamedText_48d36: ; 9d9e1 (27:59e1) - db $0, "Oops! Your COIN", $4f - db "CASE is full.", $57 + text "Oops! Your COIN" + line "CASE is full." + done _UnnamedText_48d3b: ; 9da00 (27:5a00) - db $0, "You don't have a", $4f - db "COIN CASE!", $57 + text "You don't have a" + line "COIN CASE!" + done _CeladonGameCornerText3: ; 9da1c (27:5a1c) - db $0, "Keep this quiet.", $51 - db "It's rumored that", $4f - db "this place is run", $55 - db "by TEAM ROCKET.", $57 + text "Keep this quiet." + + page "It's rumored that" + line "this place is run" + next "by TEAM ROCKET." + done _CeladonGameCornerText4: ; 9da61 (27:5a61) - db $0, "I think these", $4f - db "machines have", $55 - db "different odds.", $57 + text "I think these" + line "machines have" + next "different odds." + done _UnnamedText_48d9c: ; 9da8e (27:5a8e) - db $0, "Kid, do you want", $4f - db "to play?", $58 + text "Kid, do you want" + line "to play?" + prompt _Received10CoinsText: ; 9daa9 (27:5aa9) - db $0, $52, " received", $4f - db "10 coins!@@" + text $52, " received" + line "10 coins!@@" _UnnamedText_48da7: ; 9dac0 (27:5ac0) - db $0, "You don't need my", $4f - db "coins!", $57 + text "You don't need my" + line "coins!" + done _UnnamedText_48dac: ; 9dad9 (27:5ad9) - db $0, "Wins seem to come", $4f - db "and go.", $57 + text "Wins seem to come" + line "and go." + done _CeladonGameCornerText6: ; 9daf4 (27:5af4) - db $0, "I'm having a", $4f - db "wonderful time!", $57 + text "I'm having a" + line "wonderful time!" + done _UnnamedText_48dca: ; 9db11 (27:5b11) - db $0, "Hey!", $51 - db "You have better", $4f - db "things to do,", $55 - db "champ in making!", $51 - db "CELADON GYM's", $4f - db "LEADER is ERIKA!", $55 - db "She uses grass-", $55 - db "type #MON!", $51 - db "She might appear", $4f - db "docile, but don't", $55 - db "be fooled!", $57 + text "Hey!" + + page "You have better" + line "things to do," + next "champ in making!" + + page "CELADON GYM's" + line "LEADER is ERIKA!" + next "She uses grass-" + next "type #MON!" + + page "She might appear" + line "docile, but don't" + next "be fooled!" + done _UnnamedText_48dcf: ; 9dbac (27:5bac) - db $0, "They offer rare", $4f - db "#MON that can", $55 - db "be exchanged for", $55 - db "your coins.", $51 - db "But, I just can't", $4f - db "seem to win!", $57 + text "They offer rare" + line "#MON that can" + next "be exchanged for" + next "your coins." + + page "But, I just can't" + line "seem to win!" + done _CeladonGameCornerText8: ; 9dc06 (27:5c06) - db $0, "Games are scary!", $4f - db "It's so easy to", $55 - db "get hooked!", $57 + text "Games are scary!" + line "It's so easy to" + next "get hooked!" + done _UnnamedText_48e26: ; 9dc33 (27:5c33) - db $0, "What's up? Want", $4f - db "some coins?", $58 + text "What's up? Want" + line "some coins?" + prompt _Received20CoinsText: ; 9dc4f (27:5c4f) - db $0, $52, " received", $4f - db "20 coins!@@" + text $52, " received" + line "20 coins!@@" _UnnamedText_48e31: ; 9dc66 (27:5c66) - db $0, "You have lots of", $4f - db "coins!", $57 + text "You have lots of" + line "coins!" + done _UnnamedText_48e36: ; 9dc7f (27:5c7f) - db $0, "Darn! I need more", $4f - db "coins for the", $55 - db "#MON I want!", $57 + text "Darn! I need more" + line "coins for the" + next "#MON I want!" + done _UnnamedText_48e88: ; 9dcad (27:5cad) - db $0, "Hey, what? You're", $4f - db "throwing me off!", $55 - db "Here are some", $55 - db "coins, shoo!", $58 + text "Hey, what? You're" + line "throwing me off!" + next "Here are some" + next "coins, shoo!" + prompt _UnnamedText_48e8d: ; 9dceb (27:5ceb) - db $0, $52, " received", $4f - db "20 coins!@@" + text $52, " received" + line "20 coins!@@" _UnnamedText_48e93: ; 9dd02 (27:5d02) - db $0, "You've got your", $4f - db "own coins!", $57 + text "You've got your" + line "own coins!" + done _UnnamedText_48e98: ; 9dd1d (27:5d1d) - db $0, "The trick is to", $4f - db "watch the reels", $55 - db "closely!", $57 + text "The trick is to" + line "watch the reels" + next "closely!" + done _UnnamedText_48ece: ; 9dd47 (27:5d47) - db $0, "I'm guarding this", $4f - db "poster!", $55 - db "Go away, or else!", $57 + text "I'm guarding this" + line "poster!" + next "Go away, or else!" + done _UnnamedText_48ed3: ; 9dd73 (27:5d73) - db $0, "Dang!", $58 + text "Dang!" + prompt _UnnamedText_48ed8: ; 9dd7a (27:5d7a) - db $0, "Our hideout might", $4f - db "be discovered! I", $55 - db "better tell BOSS!", $57 + text "Our hideout might" + line "be discovered! I" + next "better tell BOSS!" + done _UnnamedText_48f09: ; 9ddb0 (27:5db0) - db $0, "Hey!", $51 - db "A switch behind", $4f - db "the poster!?", $55 - db "Let's push it!@@" + text "Hey!" + + page "A switch behind" + line "the poster!?" + next "Let's push it!@@" _UnnamedText_48f19: ; 9dde2 (27:5de2) - db $0, "Oops! Forgot the", $4f - db "COIN CASE!", $57 + text "Oops! Forgot the" + line "COIN CASE!" + done _CeladonMart5Text1: ; 9ddff (27:5dff) - db $0, "#MON ability", $4f - db "enhancers can be", $55 - db "bought only here.", $51 - db "Use CALCIUM to", $4f - db "increase SPECIAL", $55 - db "abilities.", $51 - db "Use CARBOS to", $4f - db "increase SPEED.", $57 + text "#MON ability" + line "enhancers can be" + next "bought only here." + + page "Use CALCIUM to" + line "increase SPECIAL" + next "abilities." + + page "Use CARBOS to" + line "increase SPEED." + done _CeladonMart5Text2: ; 9de79 (27:5e79) - db $0, "I'm here for", $4f - db "#MON ability", $55 - db "enhancers.", $51 - db "PROTEIN increases", $4f - db "ATTACK power.", $51 - db "IRON increases", $4f - db "DEFENSE!", $57 + text "I'm here for" + line "#MON ability" + next "enhancers." + + page "PROTEIN increases" + line "ATTACK power." + + page "IRON increases" + line "DEFENSE!" + done _CeladonMart5Text5: ; 9ded6 (27:5ed6) db $0, "5F: DRUG STORE", $57 _CeladonPrizeRoomText1: ; 9dee6 (27:5ee6) - db $0, "I sure do fancy", $4f - db "that PORYGON!", $51 - db "But, it's hard to", $4f - db "win at slots!", $57 + text "I sure do fancy" + line "that PORYGON!" + + page "But, it's hard to" + line "win at slots!" + done _CeladonPrizeRoomText2: ; 9df24 (27:5f24) - db $0, "I had a major", $4f - db "haul today!", $57 + text "I had a major" + line "haul today!" + done _CeladonDinerText1: ; 9df3f (27:5f3f) - db $0, "Hi!", $51 - db "We're taking a", $4f - db "break now.", $57 + text "Hi!" + + page "We're taking a" + line "break now." + done _CeladonDinerText2: ; 9df5d (27:5f5d) - db $0, "My #MON are", $4f - db "weak, so I often", $55 - db "have to go to the", $55 - db "DRUG STORE.", $57 + text "My #MON are" + line "weak, so I often" + next "have to go to the" + next "DRUG STORE." + done _CeladonDinerText3: ; 9df99 (27:5f99) - db $0, "Psst! There's a", $4f - db "basement under", $55 - db "the GAME CORNER.", $57 + text "Psst! There's a" + line "basement under" + next "the GAME CORNER." + done _CeladonDinerText4: ; 9dfc9 (27:5fc9) - db $0, "Munch...", $51 - db "The man at that", $4f - db "table lost it all", $55 - db "at the slots.", $57 + text "Munch..." + + page "The man at that" + line "table lost it all" + next "at the slots." + done _UnnamedText_491a7: ; 9e003 (27:6003) - db $0, "Go ahead! Laugh!", $51 - db "I'm flat out", $4f - db "busted!", $51 - db "No more slots for", $4f - db "me! I'm going", $55 - db "straight!", $51 - db "Here! I won't be", $4f - db "needing this any-", $55 - db "more!", $58 + text "Go ahead! Laugh!" + + page "I'm flat out" + line "busted!" + + page "No more slots for" + line "me! I'm going" + next "straight!" + + page "Here! I won't be" + line "needing this any-" + next "more!" + prompt _ReceivedCoinCaseText: ; 9e07a (27:607a) - db $0, $52, " received", $4f - db "a @" + text $52, " received" + line "a @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _CoinCaseNoRoomText: ; 9e090 (27:6090) - db $0, "Make room for", $4f - db "this!", $57 + text "Make room for" + line "this!" + done _UnnamedText_491b7: ; 9e0a5 (27:60a5) - db $0, "I always thought", $4f - db "I was going to", $55 - db "win it back...", $57 + text "I always thought" + line "I was going to" + next "win it back..." + done _CeladonHouseText1: ; 9e0d5 (27:60d5) - db $0, "Hehehe! The slots", $4f - db "just reel in the", $55 - db "dough, big time!", $57 + text "Hehehe! The slots" + line "just reel in the" + next "dough, big time!" + done _CeladonHouseText2: ; 9e10a (27:610a) - db $0, "CHIEF!", $51 - db "We just shipped", $4f - db "2000 #MON as", $55 - db "slot prizes!", $57 + text "CHIEF!" + + page "We just shipped" + line "2000 #MON as" + next "slot prizes!" + done _CeladonHouseText3: ; 9e13c (27:613c) - db $0, "Don't touch the", $4f - db "poster at the", $55 - db "GAME CORNER!", $51 - db "There's no secret", $4f - db "switch behind it!", $57 + text "Don't touch the" + line "poster at the" + next "GAME CORNER!" + + page "There's no secret" + line "switch behind it!" + done _CeladonHotelText1: ; 9e18a (27:618a) - db $0, "#MON? No, this", $4f - db "is a hotel for", $55 - db "people.", $51 - db "We're full up.", $57 + text "#MON? No, this" + line "is a hotel for" + next "people." + + page "We're full up." + done _CeladonHotelText2: ; 9e1bf (27:61bf) - db $0, "I'm on vacation", $4f - db "with my brother", $55 - db "and boy friend.", $51 - db "CELADON is such a", $4f - db "pretty city!", $57 + text "I'm on vacation" + line "with my brother" + next "and boy friend." + + page "CELADON is such a" + line "pretty city!" + done _CeladonHotelText3: ; 9e20e (27:620e) - db $0, "Why did she bring", $4f - db "her brother?", $57 + text "Why did she bring" + line "her brother?" + done _FuchsiaMartText2: ; 9e22e (27:622e) - db $0, "Do you have a", $4f - db "SAFARI ZONE flag?", $51 - db "What about cards", $4f - db "or calendars?", $57 + text "Do you have a" + line "SAFARI ZONE flag?" + + page "What about cards" + line "or calendars?" + done _FuchsiaMartText3: ; 9e26e (27:626e) - db $0, "Did you try X", $4f - db "SPEED? It speeds", $55 - db "up a #MON in", $55 - db "battle!", $57 + text "Did you try X" + line "SPEED? It speeds" + next "up a #MON in" + next "battle!" + done _FuchsiaHouse1Text1: ; 9e2a3 (27:62a3) - db $0, "SAFARI ZONE's", $4f - db "WARDEN is old,", $55 - db "but still active!", $51 - db "All his teeth are", $4f - db "false, though.", $57 + text "SAFARI ZONE's" + line "WARDEN is old," + next "but still active!" + + page "All his teeth are" + line "false, though." + done _FuchsiaHouse1Text2: ; 9e2f3 (27:62f3) - db $0, "Hmm? You've met", $4f - db "BILL?", $51 - db "He's my grandson!", $51 - db "He always liked", $4f - db "collecting things", $55 - db "even as a child!", $57 + text "Hmm? You've met" + line "BILL?" + + page "He's my grandson!" + + page "He always liked" + line "collecting things" + next "even as a child!" + done _FuchsiaHouse1Text3: ; 9e34d (27:634d) - db $0, "BILL files his", $4f - db "own #MON data", $55 - db "on his PC!", $51 - db "Did he show you?", $57 + text "BILL files his" + line "own #MON data" + next "on his PC!" + + page "Did he show you?" + done _FuchsiaPokecenterText1: ; 9e387 (27:6387) - db $0, "You can't win", $4f - db "with just one", $55 - db "strong #MON.", $51 - db "It's tough, but", $4f - db "you have to raise", $55 - db "them evenly.", $57 + text "You can't win" + line "with just one" + next "strong #MON." + + page "It's tough, but" + line "you have to raise" + next "them evenly." + done _FuchsiaPokecenterText3: ; 9e3de (27:63de) - db $0, "There's a narrow", $4f - db "trail west of", $55 - db "VIRIDIAN CITY.", $51 - db "It goes to #MON", $4f - db "LEAGUE HQ.", $55 - db "The HQ governs", $55 - db "all trainers.", $57 + text "There's a narrow" + line "trail west of" + next "VIRIDIAN CITY." + + page "It goes to #MON" + line "LEAGUE HQ." + next "The HQ governs" + next "all trainers." + done _WardenGibberishText1: ; 9e444 (27:6444) db $0, "WARDEN: Hif fuff", $4f @@ -126006,22 +128224,25 @@ _WardenGibberishText1: ; 9e444 (27:6444) db "hee fwee!", $57 _WardenGibberishText2: ; 9e48b (27:648b) - db $0, "Ah howhee ho hoo!", $4f - db "Eef ee hafahi ho!", $57 + text "Ah howhee ho hoo!" + line "Eef ee hafahi ho!" + done _WardenGibberishText3: ; 9e4b0 (27:64b0) - db $0, "Ha? He ohay heh", $4f - db "ha hoo ee haheh!", $57 + text "Ha? He ohay heh" + line "ha hoo ee haheh!" + done _WardenTeethText1: ; 9e4d2 (27:64d2) - db $0, $52, " gave the", $4f - db "GOLD TEETH to the", $55 - db "WARDEN!@@" + text $52, " gave the" + line "GOLD TEETH to the" + next "WARDEN!@@" _WardenTeethText2: ; 9e4f9 (27:64f9) - db $0, $51 - db "The WARDEN popped", $4f - db "in his teeth!", $58 + text $51 + db "The WARDEN popped" + line "in his teeth!" + prompt _WardenThankYouText: ; 9e51b (27:651b) db $0, "WARDEN: Thanks,", $4f @@ -126035,10 +128256,10 @@ _WardenThankYouText: ; 9e51b (27:651b) db "your trouble.", $58 _ReceivedHM04Text: ; 9e5a2 (27:65a2) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _HM04ExplanationText: ; 9e5b6 (27:65b6) db $0, "WARDEN: HM04", $4f @@ -126056,94 +128277,113 @@ _HM04ExplanationText: ; 9e5b6 (27:65b6) db "rare SURF HM.", $57 _HM04NoRoomText: ; 9e67a (27:667a) - db $0, "Your pack is", $4f - db "stuffed full!", $57 + text "Your pack is" + line "stuffed full!" + done _UnnamedText_75176: ; 9e696 (27:6696) - db $0, "#MON photos", $4f - db "and fossils.", $57 + text "#MON photos" + line "and fossils." + done _UnnamedText_7517b: ; 9e6b0 (27:66b0) - db $0, "Old #MON", $4f - db "merchandise.", $57 + text "Old #MON" + line "merchandise." + done _SafariZoneEntranceText1: ; 9e6c7 (27:66c7) - db $0, "Welcome to the", $4f - db "SAFARI ZONE!", $57 + text "Welcome to the" + line "SAFARI ZONE!" + done UnnamedText_9e6e4: ; 9e6e4 (27:66e4) - db $0, "For just ¥500,", $4f - db "you can catch all", $55 - db "the #MON you", $55 - db "want in the park!", $51 - db "Would you like to", $4f - db "join the hunt?@@" + text "For just ¥500," + line "you can catch all" + next "the #MON you" + next "want in the park!" + + page "Would you like to" + line "join the hunt?@@" UnnamedText_9e747: ; 9e747 (27:6747) - db $0, "That'll be ¥500", $4f - db "please!", $51 - db "We only use a", $4f - db "special # BALL", $55 - db "here.", $51 - db $52, " received", $4f - db "30 SAFARI BALLs!@@" + text "That'll be ¥500" + line "please!" + + page "We only use a" + line "special # BALL" + next "here." + + page $52, " received" + line "30 SAFARI BALLs!@@" _UnnamedText_75360: ; 9e79f (27:679f) - db $0, $51 - db "We'll call you on", $4f - db "the PA when you", $55 - db "run out of time", $55 - db "or SAFARI BALLs!", $57 + text $51 + db "We'll call you on" + line "the PA when you" + next "run out of time" + next "or SAFARI BALLs!" + done _UnnamedText_75365: ; 9e7e3 (27:67e3) - db $0, "OK! Please come", $4f - db "again!", $57 + text "OK! Please come" + line "again!" + done _UnnamedText_7536a: ; 9e7fb (27:67fb) - db $0, "Oops! Not enough", $4f - db "money!", $57 + text "Oops! Not enough" + line "money!" + done UnnamedText_9e814: ; 9e814 (27:6814) - db $0, "Leaving early?@@" + text "Leaving early?@@" _UnnamedText_753bb: ; 9e825 (27:6825) - db $0, "Please return any", $4f - db "SAFARI BALLs you", $55 - db "have left.", $57 + text "Please return any" + line "SAFARI BALLs you" + next "have left." + done _UnnamedText_753c0: ; 9e854 (27:6854) - db $0, "Good Luck!", $57 + text "Good Luck!" + done _UnnamedText_753c5: ; 9e860 (27:6860) - db $0, "Did you get a", $4f - db "good haul?", $55 - db "Come again!", $57 + text "Did you get a" + line "good haul?" + next "Come again!" + done _UnnamedText_753e6: ; 9e886 (27:6886) - db $0, "Hi! Is it your", $4f - db "first time here?", $57 + text "Hi! Is it your" + line "first time here?" + done _UnnamedText_753eb: ; 9e8a7 (27:68a7) - db $0, "SAFARI ZONE has 4", $4f - db "zones in it.", $51 - db "Each zone has", $4f - db "different kinds", $55 - db "of #MON. Use", $55 - db "SAFARI BALLs to", $55 - db "catch them!", $51 - db "When you run out", $4f - db "of time or SAFARI", $55 - db "BALLs, it's game", $55 - db "over for you!", $51 - db "Before you go,", $4f - db "open an unused", $55 - db "#MON BOX so", $55 - db "there's room for", $55 - db "new #MON!", $57 + text "SAFARI ZONE has 4" + line "zones in it." + + page "Each zone has" + line "different kinds" + next "of #MON. Use" + next "SAFARI BALLs to" + next "catch them!" + + page "When you run out" + line "of time or SAFARI" + next "BALLs, it's game" + next "over for you!" + + page "Before you go," + line "open an unused" + next "#MON BOX so" + next "there's room for" + next "new #MON!" + done _UnnamedText_753f0: ; 9e993 (27:6993) - db $0, "Sorry, you're a", $4f - db "regular here!", $57 + text "Sorry, you're a" + line "regular here!" + done _UnnamedText_75581: ; 9e9b1 (27:69b1) db $0, "KOGA: Fwahahaha!", $51 @@ -126160,477 +128400,596 @@ _UnnamedText_75581: ; 9e9b1 (27:69b1) db "techniques!", $57 _UnnamedText_75586: ; 9ea66 (27:6a66) - db $0, "Humph!", $4f - db "You have proven", $55 - db "your worth!", $51 - db "Here! Take the", $4f - db "SOULBADGE!", $58 + text "Humph!" + line "You have proven" + next "your worth!" + + page "Here! Take the" + line "SOULBADGE!" + prompt SECTION "bank28",ROMX,BANK[$28] _UnnamedText_7558b: ; a0000 (28:4000) - db $0, "When afflicted by", $4f - db "TOXIC, #MON", $55 - db "suffer more and", $55 - db "more as battle", $55 - db "progresses!", $51 - db "It will surely", $4f - db "terrorize foes!", $57 + text "When afflicted by" + line "TOXIC, #MON" + next "suffer more and" + next "more as battle" + next "progresses!" + + page "It will surely" + line "terrorize foes!" + done _UnnamedText_75590: ; a0069 (28:4069) - db $0, "Now that you have", $4f - db "the SOULBADGE,", $55 - db "the DEFENSE of", $55 - db "your #MON", $55 - db "increases!", $51 - db "It also lets you", $4f - db "SURF outside of", $55 - db "battle!", $51 - db "Ah! Take this", $4f - db "too!", $57 + text "Now that you have" + line "the SOULBADGE," + next "the DEFENSE of" + next "your #MON" + next "increases!" + + page "It also lets you" + line "SURF outside of" + next "battle!" + + page "Ah! Take this" + line "too!" + done _ReceivedTM06Text: ; a00eb (28:40eb) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM06ExplanationText: ; a00ff (28:40ff) - db $0, $51 - db "TM06 contains", $4f - db "TOXIC!", $51 - db "It is a secret", $4f - db "technique over", $55 - db "400 years old!", $57 + text $51 + db "TM06 contains" + line "TOXIC!" + + page "It is a secret" + line "technique over" + next "400 years old!" + done _TM06NoRoomText: ; a0143 (28:4143) - db $0, "Make space for", $4f - db "this, child!", $57 + text "Make space for" + line "this, child!" + done _FuchsiaGymBattleText1: ; a0160 (28:4160) - db $0, "Strength isn't", $4f - db "the key for", $55 - db "#MON!", $51 - db "It's strategy!", $51 - db "I'll show you how", $4f - db "strategy can beat", $55 - db "brute strength!", $57 + text "Strength isn't" + line "the key for" + next "#MON!" + + page "It's strategy!" + + page "I'll show you how" + line "strategy can beat" + next "brute strength!" + done _FuchsiaGymEndBattleText1: ; a01c2 (28:41c2) - db $0, "What?", $4f - db "Extraordinary!", $58 + text "What?" + line "Extraordinary!" + prompt _FuchsiaGymAfterBattleText1: ; a01d8 (28:41d8) - db $0, "So, you mix brawn", $4f - db "with brains?", $55 - db "Good strategy!", $57 + text "So, you mix brawn" + line "with brains?" + next "Good strategy!" + done _FuchsiaGymBattleText2: ; a0207 (28:4207) - db $0, "I wanted to become", $4f - db "a ninja, so I", $55 - db "joined this GYM!", $57 + text "I wanted to become" + line "a ninja, so I" + next "joined this GYM!" + done _FuchsiaGymEndBattleText2: ; a023a (28:423a) - db $0, "I'm done", $4f - db "for!", $58 + text "I'm done" + line "for!" + prompt _FuchsiaGymAfterBattleText2: ; a0248 (28:4248) - db $0, "I will keep on", $4f - db "training under", $55 - db "KOGA, my ninja", $55 - db "master!", $57 + text "I will keep on" + line "training under" + next "KOGA, my ninja" + next "master!" + done _FuchsiaGymBattleText3: ; a027e (28:427e) - db $0, "Let's see you", $4f - db "beat my special", $55 - db "techniques!", $57 + text "Let's see you" + line "beat my special" + next "techniques!" + done _FuchsiaGymEndBattleText3: ; a02a8 (28:42a8) - db $0, "You", $4f - db "had me fooled!", $58 + text "You" + line "had me fooled!" + prompt _FuchsiaGymAfterBattleText3: ; a02bc (28:42bc) - db $0, "I like poison and", $4f - db "sleep techniques,", $55 - db "as they linger", $55 - db "after battle!", $57 + text "I like poison and" + line "sleep techniques," + next "as they linger" + next "after battle!" + done _FuchsiaGymBattleText4: ; a02fe (28:42fe) - db $0, "Stop right there!", $51 - db "Our invisible", $4f - db "walls have you", $55 - db "frustrated?", $57 + text "Stop right there!" + + page "Our invisible" + line "walls have you" + next "frustrated?" + done _FuchsiaGymEndBattleText4: ; a033a (28:433a) - db $0, "Whoa!", $4f - db "He's got it!", $58 + text "Whoa!" + line "He's got it!" + prompt _FuchsiaGymAfterBattleText4: ; a034d (28:434d) - db $0, "You impressed me!", $4f - db "Here's a hint!", $51 - db "Look very closely", $4f - db "for gaps in the", $55 - db "invisible walls!", $57 + text "You impressed me!" + line "Here's a hint!" + + page "Look very closely" + line "for gaps in the" + next "invisible walls!" + done _FuchsiaGymBattleText5: ; a03a1 (28:43a1) - db $0, "I also study the", $4f - db "way of the ninja", $55 - db "with master KOGA!", $51 - db "Ninja have a long", $4f - db "history of using", $55 - db "animals!", $57 + text "I also study the" + line "way of the ninja" + next "with master KOGA!" + + page "Ninja have a long" + line "history of using" + next "animals!" + done _FuchsiaGymEndBattleText5: ; a0402 (28:4402) - db $0, "Awoo!", $58 + text "Awoo!" + prompt _FuchsiaGymAfterBattleText5: ; a0409 (28:4409) - db $0, "I still have much", $4f - db "to learn!", $57 + text "I still have much" + line "to learn!" + done _FuchsiaGymBattleText6: ; a0426 (28:4426) - db $0, "Master KOGA comes", $4f - db "from a long line", $55 - db "of ninjas!", $51 - db "What did you", $4f - db "descend from?", $57 + text "Master KOGA comes" + line "from a long line" + next "of ninjas!" + + page "What did you" + line "descend from?" + done _FuchsiaGymEndBattleText6: ; a0470 (28:4470) - db $0, "Dropped", $4f - db "my balls!", $58 + text "Dropped" + line "my balls!" + prompt _FuchsiaGymAfterBattleText6: ; a0483 (28:4483) - db $0, "Where there is", $4f - db "light, there is", $55 - db "shadow!", $51 - db "Light and shadow!", $4f - db "Which do you", $55 - db "choose?", $57 + text "Where there is" + line "light, there is" + next "shadow!" + + page "Light and shadow!" + line "Which do you" + next "choose?" + done _UnnamedText_7564e: ; a04d2 (28:44d2) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "FUCHSIA GYM is", $4f - db "riddled with", $55 - db "invisible walls!", $51 - db "KOGA might appear", $4f - db "close, but he's", $55 - db "blocked off!", $51 - db "You have to find", $4f - db "gaps in the walls", $55 - db "to reach him!", $57 + text "Yo! Champ in" + line "making!" + + page "FUCHSIA GYM is" + line "riddled with" + next "invisible walls!" + + page "KOGA might appear" + line "close, but he's" + next "blocked off!" + + page "You have to find" + line "gaps in the walls" + next "to reach him!" + done _UnnamedText_75653: ; a0574 (28:4574) - db $0, "It's amazing how", $4f - db "ninja can terrify", $55 - db "even now!", $57 + text "It's amazing how" + line "ninja can terrify" + next "even now!" + done _FuchsiaMeetingRoomText1: ; a05a1 (28:45a1) - db $0, "We nicknamed the", $4f - db "WARDEN SLOWPOKE.", $51 - db "He and SLOWPOKE", $4f - db "both look vacant!", $57 + text "We nicknamed the" + line "WARDEN SLOWPOKE." + + page "He and SLOWPOKE" + line "both look vacant!" + done _FuchsiaMeetingRoomText2: ; a05e6 (28:45e6) - db $0, "SLOWPOKE is very", $4f - db "knowledgeable", $55 - db "about #MON!", $51 - db "He even has some", $4f - db "fossils of rare,", $55 - db "extinct #MON!", $57 + text "SLOWPOKE is very" + line "knowledgeable" + next "about #MON!" + + page "He even has some" + line "fossils of rare," + next "extinct #MON!" + done _FuchsiaMeetingRoomText3: ; a0642 (28:4642) - db $0, "SLOWPOKE came in,", $4f - db "but I couldn't", $55 - db "understand him.", $51 - db "I think he's got", $4f - db "a speech problem!", $57 + text "SLOWPOKE came in," + line "but I couldn't" + next "understand him." + + page "I think he's got" + line "a speech problem!" + done _UnnamedText_561bd: ; a0695 (28:4695) - db $0, "I'm the FISHING", $4f - db "GURU's older", $55 - db "brother!", $51 - db "I simply Looove", $4f - db "fishing!", $51 - db "Do you like to", $4f - db "fish?", $57 + text "I'm the FISHING" + line "GURU's older" + next "brother!" + + page "I simply Looove" + line "fishing!" + + page "Do you like to" + line "fish?" + done _UnnamedText_561c2: ; a06e8 (28:46e8) - db $0, "Grand! I like", $4f - db "your style!", $51 - db "Take this and", $4f - db "fish, young one!", $51 - db $52, " received", $4f - db "a @" + text "Grand! I like" + line "your style!" + + page "Take this and" + line "fish, young one!" + + page $52, " received" + line "a @" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_56212: ; a0737 (28:4737) - db $0, "Oh... That's so", $4f - db "disappointing...", $57 + text "Oh... That's so" + line "disappointing..." + done _UnnamedText_56217: ; a0758 (28:4758) - db $0, "Hello there,", $4f - db $52, "!", $51 - db "How are the fish", $4f - db "biting?", $57 + text "Hello there," + line $52, "!" + + page "How are the fish" + line "biting?" + done _UnnamedText_5621c: ; a0782 (28:4782) - db $0, "Oh no!", $51 - db "You have no room", $4f - db "for my gift!", $57 + text "Oh no!" + + page "You have no room" + line "for my gift!" + done _Mansion1BattleText2: ; a07a8 (28:47a8) - db $0, "Who are you? There", $4f - db "shouldn't be", $55 - db "anyone here.", $57 + text "Who are you? There" + line "shouldn't be" + next "anyone here." + done _Mansion1EndBattleText2: ; a07d5 (28:47d5) - db $0, "Ouch!", $58 + text "Ouch!" + prompt _Mansion1AfterBattleText2: ; a07dc (28:47dc) - db $0, "A key? I don't", $4f - db "know what you're", $55 - db "talking about.", $57 + text "A key? I don't" + line "know what you're" + next "talking about." + done _UnnamedText_44395: ; a080a (28:480a) - db $0, "A secret switch!", $51 - db "Press it?", $57 + text "A secret switch!" + + page "Press it?" + done _UnnamedText_4439a: ; a0826 (28:4826) - db $0, "Who wouldn't?", $58 + text "Who wouldn't?" + prompt _UnnamedText_4439f: ; a0834 (28:4834) - db $0, "Not quite yet!", $57 + text "Not quite yet!" + done _UnnamedText_75914: ; a0844 (28:4844) - db $0, "Hah!", $51 - db "I am BLAINE! I", $4f - db "am the LEADER of", $55 - db "CINNABAR GYM!", $51 - db "My fiery #MON", $4f - db "will incinerate", $55 - db "all challengers!", $51 - db "Hah! You better", $4f - db "have BURN HEAL!", $57 + text "Hah!" + + page "I am BLAINE! I" + line "am the LEADER of" + next "CINNABAR GYM!" + + page "My fiery #MON" + line "will incinerate" + next "all challengers!" + + page "Hah! You better" + line "have BURN HEAL!" + done UnnamedText_a08c7: ; a08c7 (28:48c7) - db $0, "I have", $4f - db "burnt out!", $51 - db "You have earned", $4f - db "the VOLCANOBADGE!@@" + text "I have" + line "burnt out!" + + page "You have earned" + line "the VOLCANOBADGE!@@" _UnnamedText_75920: ; a08fd (28:48fd) - db $0, "FIRE BLAST is the", $4f - db "ultimate fire", $55 - db "technique!", $51 - db "Don't waste it on", $4f - db "water #MON!", $57 + text "FIRE BLAST is the" + line "ultimate fire" + next "technique!" + + page "Don't waste it on" + line "water #MON!" + done _UnnamedText_75925: ; a0946 (28:4946) - db $0, "Hah!", $51 - db "The VOLCANOBADGE", $4f - db "heightens the", $55 - db "SPECIAL abilities", $55 - db "of your #MON!", $51 - db "Here, you can", $4f - db "have this too!", $57 + text "Hah!" + + page "The VOLCANOBADGE" + line "heightens the" + next "SPECIAL abilities" + next "of your #MON!" + + page "Here, you can" + line "have this too!" + done _ReceivedTM38Text: ; a09a8 (28:49a8) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM38ExplanationText: ; a09bc (28:49bc) - db $0, $51 - db "TM38 contains", $4f - db "FIRE BLAST!", $51 - db "Teach it to fire-", $4f - db "type #MON!", $51 - db "CHARMELEON or", $4f - db "PONYTA would be", $55 - db "good bets!", $57 + text $51 + db "TM38 contains" + line "FIRE BLAST!" + + page "Teach it to fire-" + line "type #MON!" + + page "CHARMELEON or" + line "PONYTA would be" + next "good bets!" + done _TM38NoRoomText: ; a0a1e (28:4a1e) - db $0, "Make room for my", $4f - db "gift!", $57 + text "Make room for my" + line "gift!" + done _UnnamedText_7595f: ; a0a36 (28:4a36) - db $0, "Do you know how", $4f - db "hot #MON fire", $55 - db "breath can get?", $57 + text "Do you know how" + line "hot #MON fire" + next "breath can get?" + done _UnnamedText_75964: ; a0a65 (28:4a65) - db $0, "Yow!", $4f - db "Hot, hot, hot!", $58 + text "Yow!" + line "Hot, hot, hot!" + prompt _UnnamedText_75969: ; a0a7a (28:4a7a) - db $0, "Fire, or to be", $4f - db "more precise,", $55 - db "combustion...", $51 - db "Blah, blah, blah,", $4f - db "blah...", $57 + text "Fire, or to be" + line "more precise," + next "combustion..." + + page "Blah, blah, blah," + line "blah..." + done _UnnamedText_75994: ; a0ac0 (28:4ac0) - db $0, "I was a thief, but", $4f - db "I became straight", $55 - db "as a trainer!", $57 + text "I was a thief, but" + line "I became straight" + next "as a trainer!" + done _UnnamedText_75999: ; a0af4 (28:4af4) - db $0, "I", $4f - db "surrender!", $58 + text "I" + line "surrender!" + prompt _UnnamedText_7599e: ; a0b02 (28:4b02) - db $0, "I can't help", $4f - db "stealing other", $55 - db "people's #MON!", $57 + text "I can't help" + line "stealing other" + next "people's #MON!" + done _UnnamedText_759c9: ; a0b2c (28:4b2c) - db $0, "You can't win!", $4f - db "I have studied", $55 - db "#MON totally!", $57 + text "You can't win!" + line "I have studied" + next "#MON totally!" + done _UnnamedText_759ce: ; a0b58 (28:4b58) - db $0, "Waah!", $4f - db "My studies!", $58 + text "Waah!" + line "My studies!" + prompt _UnnamedText_759d3: ; a0b6b (28:4b6b) - db $0, "My theories are", $4f - db "too complicated", $55 - db "for you!", $57 + text "My theories are" + line "too complicated" + next "for you!" + done _UnnamedText_759fe: ; a0b95 (28:4b95) - db $0, "I just like using", $4f - db "fire #MON!", $57 + text "I just like using" + line "fire #MON!" + done _UnnamedText_75a03: ; a0bb3 (28:4bb3) - db $0, "Too hot", $4f - db "to handle!", $58 + text "Too hot" + line "to handle!" + prompt _UnnamedText_75a08: ; a0bc7 (28:4bc7) - db $0, "I wish there was", $4f - db "a thief #MON!", $55 - db "I'd use that!", $57 + text "I wish there was" + line "a thief #MON!" + next "I'd use that!" + done _UnnamedText_75a33: ; a0bf4 (28:4bf4) - db $0, "I know why BLAINE", $4f - db "became a trainer!", $57 + text "I know why BLAINE" + line "became a trainer!" + done _UnnamedText_75a38: ; a0c19 (28:4c19) - db $0, "Ow!", $58 + text "Ow!" + prompt _UnnamedText_75a3d: ; a0c1e (28:4c1e) - db $0, "BLAINE was lost", $4f - db "in the mountains", $55 - db "when a fiery bird", $55 - db "#MON appeared.", $51 - db "Its light enabled", $4f - db "BLAINE to find", $55 - db "his way down!", $57 + text "BLAINE was lost" + line "in the mountains" + next "when a fiery bird" + next "#MON appeared." + + page "Its light enabled" + line "BLAINE to find" + next "his way down!" + done _UnnamedText_75a68: ; a0c90 (28:4c90) - db $0, "I've been to many", $4f - db "GYMs, but this is", $55 - db "my favorite!", $57 + text "I've been to many" + line "GYMs, but this is" + next "my favorite!" + done _UnnamedText_75a6d: ; a0cc1 (28:4cc1) - db $0, "Yowza!", $4f - db "Too hot!", $58 + text "Yowza!" + line "Too hot!" + prompt _UnnamedText_75a72: ; a0cd2 (28:4cd2) - db $0, "Us fire #MON", $4f - db "fans like PONYTA", $55 - db "and NINETALES!", $57 + text "Us fire #MON" + line "fans like PONYTA" + next "and NINETALES!" + done _UnnamedText_75a9d: ; a0d00 (28:4d00) - db $0, "Fire is weak", $4f - db "against H2O!", $57 + text "Fire is weak" + line "against H2O!" + done _UnnamedText_75aa2: ; a0d1b (28:4d1b) - db $0, "Oh!", $4f - db "Snuffed out!", $58 + text "Oh!" + line "Snuffed out!" + prompt _UnnamedText_75aa7: ; a0d2d (28:4d2d) - db $0, "Water beats fire!", $4f - db "But, fire melts", $55 - db "ice #MON!", $57 + text "Water beats fire!" + line "But, fire melts" + next "ice #MON!" + done _UnnamedText_75ac2: ; a0d5a (28:4d5a) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "The hot-headed", $4f - db "BLAINE is a fire", $55 - db "#MON pro!", $51 - db "Douse his spirits", $4f - db "with water!", $51 - db "You better take", $4f - db "some BURN HEALs!", $57 + text "Yo! Champ in" + line "making!" + + page "The hot-headed" + line "BLAINE is a fire" + next "#MON pro!" + + page "Douse his spirits" + line "with water!" + + page "You better take" + line "some BURN HEALs!" + done _UnnamedText_75ac7: ; a0dd9 (28:4dd9) - db $0, $52, "! You beat", $4f - db "that fire brand!", $57 + text $52, "! You beat" + line "that fire brand!" + done _Lab1Text1: ; a0df7 (28:4df7) - db $0, "We study #MON", $4f - db "extensively here.", $51 - db "People often bring", $4f - db "us rare #MON", $55 - db "for examination.", $57 + text "We study #MON" + line "extensively here." + + page "People often bring" + line "us rare #MON" + next "for examination." + done _Lab1Text2: ; a0e49 (28:4e49) - db $0, "A photo of the", $4f - db "LAB's founder,", $55 - db "DR.FUJI!", $57 + text "A photo of the" + line "LAB's founder," + next "DR.FUJI!" + done _Lab1Text3: ; a0e70 (28:4e70) - db $0, "#MON LAB", $4f - db "Meeting Room", $57 + text "#MON LAB" + line "Meeting Room" + done _Lab1Text4: ; a0e87 (28:4e87) - db $0, "#MON LAB", $4f - db "R-and-D Room", $57 + text "#MON LAB" + line "R-and-D Room" + done _Lab1Text5: ; a0e9e (28:4e9e) - db $0, "#MON LAB", $4f - db "Testing Room", $57 + text "#MON LAB" + line "Testing Room" + done _Lab2Text1: ; a0eb5 (28:4eb5) - db $0, "I found this very", $4f - db "strange fossil in", $55 - db "MT.MOON!", $51 - db "I think it's a", $4f - db "rare, prehistoric", $55 - db "#MON!", $57 + text "I found this very" + line "strange fossil in" + next "MT.MOON!" + + page "I think it's a" + line "rare, prehistoric" + next "#MON!" + done _TM35PreReceiveText: ; a0f09 (28:4f09) - db $0, "Tch-tch-tch!", $4f - db "I made a cool TM!", $51 - db "It can cause all", $4f - db "kinds of fun!", $58 + text "Tch-tch-tch!" + line "I made a cool TM!" + + page "It can cause all" + line "kinds of fun!" + prompt _ReceivedTM35Text: ; a0f48 (28:4f48) - db $0, $52, " received ", $4f - db "@" + text $52, " received " + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM35ExplanationText: ; a0f5d (28:4f5d) - db $0, "Tch-tch-tch!", $4f - db "That's the sound", $55 - db "of a METRONOME!", $51 - db "It tweaks your", $4f - db "#MON's brain", $55 - db "into using moves", $55 - db "it doesn't know!", $57 + text "Tch-tch-tch!" + line "That's the sound" + next "of a METRONOME!" + + page "It tweaks your" + line "#MON's brain" + next "into using moves" + next "it doesn't know!" + done _TM35NoRoomText: ; a0fc7 (28:4fc7) - db $0, "Your pack is", $4f - db "crammed full!", $57 + text "Your pack is" + line "crammed full!" + done _Lab3Text2: ; a0fe3 (28:4fe3) - db $0, "EEVEE can evolve", $4f - db "into 1 of 3 kinds", $55 - db "of #MON.", $57 + text "EEVEE can evolve" + line "into 1 of 3 kinds" + next "of #MON." + done _Lab3Text3: ; a1010 (28:5010) db $0, "There's an e-mail", $4f @@ -126650,25 +129009,33 @@ _Lab3Text3: ; a1010 (28:5010) db "...", $57 _Lab3Text5: ; a10d8 (28:50d8) - db $0, "An amber pipe!", $57 + text "An amber pipe!" + done _UnnamedText_75dc6: ; a10e8 (28:50e8) - db $0, "Hiya!", $51 - db "I am important", $4f - db "doctor!", $51 - db "I study here rare", $4f - db "#MON fossils!", $51 - db "You! Have you a", $4f - db "fossil for me?", $58 + text "Hiya!" + + page "I am important" + line "doctor!" + + page "I study here rare" + line "#MON fossils!" + + page "You! Have you a" + line "fossil for me?" + prompt _UnnamedText_75dcb: ; a1145 (28:5145) - db $0, "No! Is too bad!", $57 + text "No! Is too bad!" + done _UnnamedText_75dd0: ; a1156 (28:5156) - db $0, "I take a little", $4f - db "time!", $51 - db "You go for walk a", $4f - db "little while!", $57 + text "I take a little" + line "time!" + + page "You go for walk a" + line "little while!" + done _UnnamedText_75dd5: ; a118d (28:518d) db $0, "Where were you?", $51 @@ -126678,8 +129045,9 @@ _UnnamedText_75dd5: ; a118d (28:518d) UnnamedText_a11c3: ; a11c3 (28:51c3) TX_RAM $cf4b - db $0, $4f - db "like I think!", $58 + db $0 + line "like I think!" + prompt _UnnamedText_610ae: ; a11d6 (28:51d6) db $0, "Oh! That is", $4f @@ -126687,97 +129055,120 @@ _UnnamedText_610ae: ; a11d6 (28:51d6) UnnamedText_a11e4: ; a11e4 (28:51e4) TX_RAM $cd6d - db $0, "!", $51 - db "It is fossil of", $4f - db "@" + text "!" + + page "It is fossil of" + line "@" TX_RAM $cf4b - db $0, ", a", $55 - db "#MON that is", $55 - db "already extinct!", $51 - db "My Resurrection", $4f - db "Machine will make", $55 - db "that #MON live", $55 - db "again!", $57 + text ", a" + next "#MON that is" + next "already extinct!" + + page "My Resurrection" + line "Machine will make" + next "that #MON live" + next "again!" + done _UnnamedText_610b3: ; a1259 (28:5259) - db $0, "So! You hurry and", $4f - db "give me that!", $51 - db $52, " handed", $4f - db "over @" + text "So! You hurry and" + line "give me that!" + + page $52, " handed" + line "over @" TX_RAM $cd6d - db $0, "!", $58 + text "!" + prompt _UnnamedText_610b8: ; a128f (28:528f) - db $0, "I take a little", $4f - db "time!", $51 - db "You go for walk a", $4f - db "little while!", $57 + text "I take a little" + line "time!" + + page "You go for walk a" + line "little while!" + done _UnnamedText_610bd: ; a12c6 (28:52c6) - db $0, "Aiyah! You come", $4f - db "again!", $57 + text "Aiyah! You come" + line "again!" + done _CinnabarPokecenterText2: ; a12de (28:52de) _CinnabarPokecenterText1: ; a12de (28:52de) - db $0, "You can cancel", $4f - db "evolution.", $51 - db "When a #MON is", $4f - db "evolving, you can", $55 - db "stop it and leave", $55 - db "it the way it is.", $57 + text "You can cancel" + line "evolution." + + page "When a #MON is" + line "evolving, you can" + next "stop it and leave" + next "it the way it is." + done _CinnabarPokecenterText3: ; a133e (28:533e) - db $0, "Do you have any", $4f - db "friends?", $51 - db "#MON you get", $4f - db "in trades grow", $55 - db "very quickly.", $51 - db "I think it's", $4f - db "worth a try!", $57 + text "Do you have any" + line "friends?" + + page "#MON you get" + line "in trades grow" + next "very quickly." + + page "I think it's" + line "worth a try!" + done _CinnabarMartText2: ; a139b (28:539b) - db $0, "Don't they have X", $4f - db "ATTACK? It's good", $55 - db "for battles!", $57 + text "Don't they have X" + line "ATTACK? It's good" + next "for battles!" + done _CinnabarMartText3: ; a13cb (28:53cb) - db $0, "It never hurts to", $4f - db "have extra items!", $57 + text "It never hurts to" + line "have extra items!" + done _IndigoPlateauLobbyText1: ; a13f0 (28:53f0) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "At #MON LEAGUE,", $4f - db "you have to face", $55 - db "the ELITE FOUR in", $55 - db "succession.", $51 - db "If you lose, you", $4f - db "have to start all", $55 - db "over again! This", $55 - db "is it! Go for it!", $57 + text "Yo! Champ in" + line "making!" + + page "At #MON LEAGUE," + line "you have to face" + next "the ELITE FOUR in" + next "succession." + + page "If you lose, you" + line "have to start all" + next "over again! This" + next "is it! Go for it!" + done _IndigoPlateauLobbyText3: ; a148b (28:548b) - db $0, "From here on, you", $4f - db "face the ELITE", $55 - db "FOUR one by one!", $51 - db "If you win, a", $4f - db "door opens to the", $55 - db "next trainer!", $55 - db "Good luck!", $57 + text "From here on, you" + line "face the ELITE" + next "FOUR one by one!" + + page "If you win, a" + line "door opens to the" + next "next trainer!" + next "Good luck!" + done _CopycatsHouseF1Text1: ; a14f7 (28:54f7) - db $0, "My daughter is so", $4f - db "self-centered.", $55 - db "She only has a", $55 - db "few friends.", $57 + text "My daughter is so" + line "self-centered." + next "She only has a" + next "few friends." + done _CopycatsHouseF1Text2: ; a1535 (28:5535) - db $0, "My daughter likes", $4f - db "to mimic people.", $51 - db "Her mimicry has", $4f - db "earned her the", $55 - db "nickname COPYCAT", $55 - db "around here!", $57 + text "My daughter likes" + line "to mimic people." + + page "Her mimicry has" + line "earned her the" + next "nickname COPYCAT" + next "around here!" + done _CopycatsHouseF1Text3: ; a1596 (28:5596) db $0, "CHANSEY: Chaan!", $4f @@ -126796,25 +129187,29 @@ _UnnamedText_5ccd4: ; a15ad (28:55ad) db "favorite hobby!", $58 _TM31PreReceiveText: ; a1636 (28:5636) - db $0, "Oh wow!", $4f - db "A # DOLL!", $51 - db "For me?", $4f - db "Thank you!", $51 - db "You can have", $4f - db "this, then!", $58 + text "Oh wow!" + line "A # DOLL!" + + page "For me?" + line "Thank you!" + + page "You can have" + line "this, then!" + prompt _ReceivedTM31Text: ; a1675 (28:5675) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM31ExplanationText1: ; a1689 (28:5689) - db $0, $51 - db "TM31 contains my", $4f - db "favorite, MIMIC!", $51 - db "Use it on a good", $4f - db "#MON!@@" + text $51 + db "TM31 contains my" + line "favorite, MIMIC!" + + page "Use it on a good" + line "#MON!@@" _TM31ExplanationText2: ; a16c5 (28:56c5) db $0, $52, ": Hi!", $4f @@ -126827,8 +129222,8 @@ _TM31ExplanationText2: ; a16c5 (28:56c5) db "It's a scream!", $57 _TM31NoRoomText: ; a1733 (28:5733) - db $0, "Don't you want", $4f - db "this?@@" + text "Don't you want" + line "this?@@" _CopycatsHouseF2Text2: ; a1749 (28:5749) db $0, "DODUO: Giiih!", $51 @@ -126838,14 +129233,16 @@ _CopycatsHouseF2Text2: ; a1749 (28:5749) db "OF ALL?", $57 _CopycatsHouseF2Text3: ; a1792 (28:5792) - db $0, "This is a rare", $4f - db "#MON! Huh?", $55 - db "It's only a doll!", $57 + text "This is a rare" + line "#MON! Huh?" + next "It's only a doll!" + done _CopycatsHouseF2Text6: ; a17be (28:57be) - db $0, "A game with MARIO", $4f - db "wearing a bucket", $55 - db "on his head!", $57 + text "A game with MARIO" + line "wearing a bucket" + next "on his head!" + done _UnnamedText_5cd17: ; a17ef (28:57ef) db $0, "...", $51 @@ -126857,439 +129254,546 @@ _UnnamedText_5cd17: ; a17ef (28:57ef) db "CLEFAIRY!", $57 _UnnamedText_5cd1c: ; a1842 (28:5842) - db $0, "Huh? Can't see!", $57 + text "Huh? Can't see!" + done _UnnamedText_5ce8e: ; a1852 (28:5852) - db $0, "Grunt!", $51 - db "I am the KARATE", $4f - db "MASTER! I am the", $55 - db "LEADER here!", $51 - db "You wish to", $4f - db "challenge us?", $55 - db "Expect no mercy!", $51 - db "Fwaaa!", $57 + text "Grunt!" + + page "I am the KARATE" + line "MASTER! I am the" + next "LEADER here!" + + page "You wish to" + line "challenge us?" + next "Expect no mercy!" + + page "Fwaaa!" + done _UnnamedText_5ce93: ; a18ba (28:58ba) - db $0, "Hwa!", $4f - db "Arrgh! Beaten!", $58 + text "Hwa!" + line "Arrgh! Beaten!" + prompt _UnnamedText_5ce98: ; a18cf (28:58cf) - db $0, "Indeed, I have", $4f - db "lost!", $51 - db "But, I beseech", $4f - db "you, do not take", $55 - db "our emblem as", $55 - db "your trophy!", $51 - db "In return, I will", $4f - db "give you a prized", $55 - db "fighting #MON!", $51 - db "Choose whichever", $4f - db "one you like!", $57 + text "Indeed, I have" + line "lost!" + + page "But, I beseech" + line "you, do not take" + next "our emblem as" + next "your trophy!" + + page "In return, I will" + line "give you a prized" + next "fighting #MON!" + + page "Choose whichever" + line "one you like!" + done _UnnamedText_5ce9d: ; a1972 (28:5972) - db $0, "Ho!", $51 - db "Stay and train at", $4f - db "Karate with us!", $57 + text "Ho!" + + page "Stay and train at" + line "Karate with us!" + done _FightingDojoBattleText1: ; a1999 (28:5999) - db $0, "Hoargh! Take your", $4f - db "shoes off!", $57 + text "Hoargh! Take your" + line "shoes off!" + done _FightingDojoEndBattleText1: ; a19b7 (28:59b7) - db $0, "I give", $4f - db "up!", $58 + text "I give" + line "up!" + prompt _FightingDojoAfterBattleText1: ; a19c3 (28:59c3) - db $0, "You wait 'til you", $4f - db "see our Master!", $51 - db "I'm a small fry", $4f - db "compared to him!", $57 + text "You wait 'til you" + line "see our Master!" + + page "I'm a small fry" + line "compared to him!" + done _FightingDojoBattleText2: ; a1a05 (28:5a05) - db $0, "I hear you're", $4f - db "good! Show me!", $57 + text "I hear you're" + line "good! Show me!" + done _FightingDojoEndBattleText2: ; a1a22 (28:5a22) - db $0, "Judge!", $4f - db "1 point!", $58 + text "Judge!" + line "1 point!" + prompt _FightingDojoAfterBattleText2: ; a1a33 (28:5a33) - db $0, "Our Master is a", $4f - db "pro fighter!", $57 + text "Our Master is a" + line "pro fighter!" + done _FightingDojoBattleText3: ; a1a51 (28:5a51) - db $0, "Nothing tough", $4f - db "frightens me!", $51 - db "I break boulders", $4f - db "for training!", $57 + text "Nothing tough" + line "frightens me!" + + page "I break boulders" + line "for training!" + done _FightingDojoEndBattleText3: ; a1a8d (28:5a8d) - db $0, "Yow!", $4f - db "Stubbed fingers!", $58 + text "Yow!" + line "Stubbed fingers!" + prompt _FightingDojoAfterBattleText3: ; a1aa4 (28:5aa4) - db $0, "The only thing", $4f - db "that frightens us", $55 - db "is psychic power!", $57 + text "The only thing" + line "that frightens us" + next "is psychic power!" + done _FightingDojoBattleText4: ; a1ad8 (28:5ad8) - db $0, "Hoohah!", $51 - db "You're trespassing", $4f - db "in our FIGHTING", $55 - db "DOJO!", $57 + text "Hoohah!" + + page "You're trespassing" + line "in our FIGHTING" + next "DOJO!" + done _FightingDojoEndBattleText4: ; a1b09 (28:5b09) - db $0, "Oof!", $4f - db "I give up!", $58 + text "Oof!" + line "I give up!" + prompt _FightingDojoAfterBattleText4: ; a1b1a (28:5b1a) - db $0, "The prime fighters", $4f - db "across the land", $55 - db "train here.", $57 + text "The prime fighters" + line "across the land" + next "train here." + done _WantHitmonleeText: ; a1b4a (28:5b4a) - db $0, "You want the", $4f - db "hard kicking", $55 - db "HITMONLEE?", $57 + text "You want the" + line "hard kicking" + next "HITMONLEE?" + done _WantHitmonchanText: ; a1b70 (28:5b70) - db $0, "You want the", $4f - db "piston punching", $55 - db "HITMONCHAN?", $57 + text "You want the" + line "piston punching" + next "HITMONCHAN?" + done _OtherHitmonText: ; a1b9a (28:5b9a) - db $0, "Better not get", $4f - db "greedy...", $57 + text "Better not get" + line "greedy..." + done _UnnamedText_5d162: ; a1bb4 (28:5bb4) - db $0, "I had a vision of", $4f - db "your arrival!", $51 - db "I have had psychic", $4f - db "powers since I", $55 - db "was a child.", $51 - db "I first learned", $4f - db "to bend spoons", $55 - db "with my mind.", $51 - db "I dislike fight-", $4f - db "ing, but if you", $55 - db "wish, I will show", $55 - db "you my powers!", $57 + text "I had a vision of" + line "your arrival!" + + page "I have had psychic" + line "powers since I" + next "was a child." + + page "I first learned" + line "to bend spoons" + next "with my mind." + + page "I dislike fight-" + line "ing, but if you" + next "wish, I will show" + next "you my powers!" + done _UnnamedText_5d167: ; a1c73 (28:5c73) - db $0, "I'm", $4f - db "shocked!", $55 - db "But, a loss is a", $55 - db "loss.", $51 - db "I admit I didn't", $4f - db "work hard enough", $55 - db "to win!", $51 - db "You earned the", $4f - db "MARSHBADGE!@@" + text "I'm" + line "shocked!" + next "But, a loss is a" + next "loss." + + page "I admit I didn't" + line "work hard enough" + next "to win!" + + page "You earned the" + line "MARSHBADGE!@@" _UnnamedText_5d16e: ; a1cdc (28:5cdc) - db $0, "Everyone has", $4f - db "psychic power!", $55 - db "People just don't", $55 - db "realize it!", $57 + text "Everyone has" + line "psychic power!" + next "People just don't" + next "realize it!" + done _UnnamedText_5d173: ; a1d16 (28:5d16) - db $0, "The MARSHBADGE", $4f - db "makes #MON up", $55 - db "to L70 obey you!", $51 - db "Stronger #MON", $4f - db "will become wild,", $55 - db "ignoring your", $55 - db "orders in battle!", $51 - db "Just don't raise", $4f - db "your #MON too", $55 - db "much!", $51 - db "Wait, please take", $4f - db "this TM with you!", $57 + text "The MARSHBADGE" + line "makes #MON up" + next "to L70 obey you!" + + page "Stronger #MON" + line "will become wild," + next "ignoring your" + next "orders in battle!" + + page "Just don't raise" + line "your #MON too" + next "much!" + + page "Wait, please take" + line "this TM with you!" + done ReceivedTM46Text: ; a1dcd (28:5dcd) - db $0, $52, " received", $4f - db "TM46!@@" + text $52, " received" + line "TM46!@@" _TM46ExplanationText: ; a1de0 (28:5de0) - db $0, $51 - db "TM46 is PSYWAVE!", $4f - db "It uses powerful", $55 - db "psychic waves to", $55 - db "inflict damage!", $57 + text $51 + db "TM46 is PSYWAVE!" + line "It uses powerful" + next "psychic waves to" + next "inflict damage!" + done _TM46NoRoomText: ; a1e25 (28:5e25) - db $0, "Your pack is full", $4f - db "of other items!", $57 + text "Your pack is full" + line "of other items!" + done _UnnamedText_5d1e6: ; a1e48 (28:5e48) - db $0, "Yo! Champ in", $4f - db "making!", $51 - db "SABRINA's #MON", $4f - db "use psychic power", $55 - db "instead of force!", $51 - db "Fighting #MON", $4f - db "are weak against", $55 - db "psychic #MON!", $51 - db "They get creamed", $4f - db "before they can", $55 - db "even aim a punch!", $57 + text "Yo! Champ in" + line "making!" + + page "SABRINA's #MON" + line "use psychic power" + next "instead of force!" + + page "Fighting #MON" + line "are weak against" + next "psychic #MON!" + + page "They get creamed" + line "before they can" + next "even aim a punch!" + done _UnnamedText_5d1eb: ; a1ef0 (28:5ef0) - db $0, "Psychic power,", $4f - db "huh?", $51 - db "If I had that,", $4f - db "I'd make a bundle", $55 - db "at the slots!", $57 + text "Psychic power," + line "huh?" + + page "If I had that," + line "I'd make a bundle" + next "at the slots!" + done _SaffronGymBattleText1: ; a1f33 (28:5f33) - db $0, "SABRINA is younger", $4f - db "than I, but I", $55 - db "respect her!", $57 + text "SABRINA is younger" + line "than I, but I" + next "respect her!" + done _SaffronGymEndBattleText1: ; a1f62 (28:5f62) - db $0, "Not", $4f - db "good enough!", $58 + text "Not" + line "good enough!" + prompt _SaffronGymAfterBattleText1: ; a1f74 (28:5f74) - db $0, "In a battle of", $4f - db "equals, the one", $55 - db "with the stronger", $55 - db "will wins!", $51 - db "If you wish", $4f - db "to beat SABRINA,", $55 - db "focus on winning!", $57 + text "In a battle of" + line "equals, the one" + next "with the stronger" + next "will wins!" + + page "If you wish" + line "to beat SABRINA," + next "focus on winning!" + done _SaffronGymBattleText2: ; a1fe0 (28:5fe0) - db $0, "Does our unseen", $4f - db "power scare you?", $57 + text "Does our unseen" + line "power scare you?" + done _SaffronGymEndBattleText2: ; a2002 (28:6002) - db $0, "I never", $4f - db "foresaw this!", $58 + text "I never" + line "foresaw this!" + prompt _SaffronGymAfterBattleText2: ; a2019 (28:6019) - db $0, "Psychic #MON", $4f - db "fear only ghosts", $55 - db "and bugs!", $57 + text "Psychic #MON" + line "fear only ghosts" + next "and bugs!" + done _SaffronGymBattleText3: ; a2042 (28:6042) - db $0, "#MON take on", $4f - db "the appearance of", $55 - db "their trainers.", $51 - db "Your #MON must", $4f - db "be tough, then!", $57 + text "#MON take on" + line "the appearance of" + next "their trainers." + + page "Your #MON must" + line "be tough, then!" + done _SaffronGymEndBattleText3: ; a2091 (28:6091) - db $0, "I knew", $4f - db "it!", $58 + text "I knew" + line "it!" + prompt _SaffronGymAfterBattleText3: ; a209d (28:609d) - db $0, "I must teach", $4f - db "better techniques", $55 - db "to my #MON!", $57 + text "I must teach" + line "better techniques" + next "to my #MON!" + done _SaffronGymBattleText4: ; a20c9 (28:60c9) - db $0, "You know that", $4f - db "power alone isn't", $55 - db "enough!", $57 + text "You know that" + line "power alone isn't" + next "enough!" + done _SaffronGymEndBattleText4: ; a20f1 (28:60f1) - db $0, "I don't", $4f - db "believe this!", $58 + text "I don't" + line "believe this!" + prompt _SaffronGymAfterBattleText4: ; a2107 (28:6107) - db $0, "SABRINA just wiped", $4f - db "out the KARATE", $55 - db "MASTER next door!", $57 + text "SABRINA just wiped" + line "out the KARATE" + next "MASTER next door!" + done _SaffronGymBattleText5: ; a213c (28:613c) - db $0, "You and I, our", $4f - db "#MON shall", $55 - db "fight!", $57 + text "You and I, our" + line "#MON shall" + next "fight!" + done _SaffronGymEndBattleText5: ; a215e (28:615e) - db $0, "I lost", $4f - db "after all!", $58 + text "I lost" + line "after all!" + prompt _SaffronGymAfterBattleText5: ; a2171 (28:6171) - db $0, "I knew that this", $4f - db "was going to take", $55 - db "place.", $57 + text "I knew that this" + line "was going to take" + next "place." + done _SaffronGymBattleText6: ; a219c (28:619c) - db $0, "SABRINA is young,", $4f - db "but she's also", $55 - db "our LEADER!", $51 - db "You won't reach", $4f - db "her easily!", $57 + text "SABRINA is young," + line "but she's also" + next "our LEADER!" + + page "You won't reach" + line "her easily!" + done _SaffronGymEndBattleText6: ; a21e4 (28:61e4) - db $0, "I lost", $4f - db "my concentration!", $58 + text "I lost" + line "my concentration!" + prompt _SaffronGymAfterBattleText6: ; a21fe (28:61fe) - db $0, "There used to be", $4f - db "2 #MON GYMs in", $55 - db "SAFFRON.", $51 - db "The FIGHTING DOJO", $4f - db "next door lost", $55 - db "its GYM status", $55 - db "when we went and", $55 - db "creamed them!", $57 + text "There used to be" + line "2 #MON GYMs in" + next "SAFFRON." + + page "The FIGHTING DOJO" + line "next door lost" + next "its GYM status" + next "when we went and" + next "creamed them!" + done _SaffronGymBattleText7: ; a2277 (28:6277) - db $0, "SAFFRON #MON", $4f - db "GYM is famous for", $55 - db "its psychics!", $51 - db "You want to see", $4f - db "SABRINA!", $55 - db "I can tell!", $57 + text "SAFFRON #MON" + line "GYM is famous for" + next "its psychics!" + + page "You want to see" + line "SABRINA!" + next "I can tell!" + done _SaffronGymEndBattleText7: ; a22ca (28:62ca) - db $0, "Arrrgh!", $58 + text "Arrrgh!" + prompt _SaffronGymAfterBattleText7: ; a22d3 (28:62d3) - db $0, "That's right! I", $4f - db "used telepathy to", $55 - db "read your mind!", $57 + text "That's right! I" + line "used telepathy to" + next "read your mind!" + done _SaffronHouse1Text1: ; a2305 (28:6305) - db $0, "Thank you for", $4f - db "writing. I hope", $55 - db "to see you soon!", $51 - db "Hey! Don't look", $4f - db "at my letter!", $57 + text "Thank you for" + line "writing. I hope" + next "to see you soon!" + + page "Hey! Don't look" + line "at my letter!" + done _SaffronHouse1Text2: ; a2352 (28:6352) db $0, "PIDGEY: Kurukkoo!@@" _SaffronHouse1Text3: ; a2366 (28:6366) - db $0, "The COPYCAT is", $4f - db "cute! I'm getting", $55 - db "her a # DOLL!", $57 + text "The COPYCAT is" + line "cute! I'm getting" + next "her a # DOLL!" + done _SaffronHouse1Text4: ; a2395 (28:6395) - db $0, "I was given a PP", $4f - db "UP as a gift.", $51 - db "It's used for", $4f - db "increasing the PP", $55 - db "of techniques!", $57 + text "I was given a PP" + line "UP as a gift." + + page "It's used for" + line "increasing the PP" + next "of techniques!" + done _SaffronMartText2: ; a23e3 (28:63e3) - db $0, "MAX REPEL lasts", $4f - db "longer than SUPER", $55 - db "REPEL for keeping", $55 - db "weaker #MON", $55 - db "away!", $57 + text "MAX REPEL lasts" + line "longer than SUPER" + next "REPEL for keeping" + next "weaker #MON" + next "away!" + done _SaffronMartText3: ; a242a (28:642a) - db $0, "REVIVE is costly,", $4f - db "but it revives", $55 - db "fainted #MON!", $57 + text "REVIVE is costly," + line "but it revives" + next "fainted #MON!" + done _SilphCo1Text1: ; a245a (28:645a) - db $0, "Welcome!", $51 - db "The PRESIDENT is", $4f - db "in the boardroom", $55 - db "on 11F!", $57 + text "Welcome!" + + page "The PRESIDENT is" + line "in the boardroom" + next "on 11F!" + done _SaffronPokecenterText1: ; a248e (28:648e) - db $0, "#MON growth", $4f - db "rates differ from", $55 - db "specie to specie.", $57 + text "#MON growth" + line "rates differ from" + next "specie to specie." + done _SaffronPokecenterText3: ; a24bf (28:64bf) - db $0, "SILPH CO. is very", $4f - db "famous. That's", $55 - db "why it attracted", $55 - db "TEAM ROCKET!", $57 + text "SILPH CO. is very" + line "famous. That's" + next "why it attracted" + next "TEAM ROCKET!" + done _TM29PreReceiveText: ; a24fe (28:64fe) - db $0, "...Wait! Don't", $4f - db "say a word!", $51 - db "You wanted this!", $58 + text "...Wait! Don't" + line "say a word!" + + page "You wanted this!" + prompt _ReceivedTM29Text: ; a252a (28:652a) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM29ExplanationText: ; a253e (28:653e) - db $0, "TM29 is PSYCHIC!", $51 - db "It can lower the", $4f - db "target's SPECIAL", $55 - db "abilities.", $57 + text "TM29 is PSYCHIC!" + + page "It can lower the" + line "target's SPECIAL" + next "abilities." + done _TM29NoRoomText: ; a257c (28:657c) - db $0, "Where do you plan", $4f - db "to put this?", $57 + text "Where do you plan" + line "to put this?" + done _PokemartGreetingText: ; a259c (28:659c) - db $0, "Hi there!", $4e, "May I help you?", $57 + text "Hi there!", $4e, "May I help you?" + done _PokemonFaintedText: ; a25b7 (28:65b7) TX_RAM $cd6d - db $0, $4f - db "fainted!", $57 + db $0 + line "fainted!" + done _PlayerBlackedOutText: ; a25c5 (28:65c5) - db $0, $52, " is out of", $4f - db "useable #MON!", $51 - db $52, " blacked", $4f - db "out!", $58 + text $52, " is out of" + line "useable #MON!" + + page $52, " blacked" + line "out!" + prompt _RepelWoreOffText: ; a25ef (28:65ef) - db $0, "REPEL's effect", $4f - db "wore off.", $57 + text "REPEL's effect" + line "wore off." + done _PokemartBuyingGreetingText: ; a2608 (28:6608) - db $0, "Take your time.", $57 + text "Take your time." + done _PokemartTellBuyPrice: ; a2619 (28:6619) TX_RAM $cf4b - db $0, "?", $4f - db "That will be", $55 - db "¥@" + text "?" + line "That will be" + next "¥@" db $2, $9f, $ff, $c3 - db $0, ". OK?", $57 + text ". OK?" + done _PokemartBoughtItemText: ; a2639 (28:6639) - db $0, "Here you are!", $4f - db "Thank you!", $58 + text "Here you are!" + line "Thank you!" + prompt _PokemartNotEnoughMoneyText: ; a2653 (28:6653) - db $0, "You don't have", $4f - db "enough money.", $58 + text "You don't have" + line "enough money." + prompt _PokemartItemBagFullText: ; a2670 (28:6670) - db $0, "You can't carry", $4f - db "any more items.", $58 + text "You can't carry" + line "any more items." + prompt _PokemonSellingGreetingText: ; a2690 (28:6690) - db $0, "What would you", $4f - db "like to sell?", $57 + text "What would you" + line "like to sell?" + done _PokemartTellSellPrice: ; a26ae (28:66ae) - db $0, "I can pay you", $4f - db "¥@" + text "I can pay you" + line "¥@" db $2, $9f, $ff, $c3 ; XXX - db $0, " for that.", $57 + text " for that." + done _PokemartItemBagEmptyText: ; a26cf (28:66cf) - db $0, "You don't have", $4f - db "anything to sell.", $58 + text "You don't have" + line "anything to sell." + prompt _PokemartUnsellableItemText: ; a26f0 (28:66f0) - db $0, "I can't put a", $4f - db "price on that.", $58 + text "I can't put a" + line "price on that." + prompt _PokemartThankYouText: ; a270d (28:670d) - db $0, "Thank you!", $57 + text "Thank you!" + done _PokemartAnythingElseText: ; a2719 (28:6719) - db $0, "Is there anything", $4f - db "else I can do?", $57 + text "Is there anything" + line "else I can do?" + done UnnamedText_a273b: ; a273b (28:673b) TX_RAM $d036 @@ -127298,10 +129802,11 @@ UnnamedText_a273b: ; a273b (28:673b) UnnamedText_a2749: ; a2749 (28:6749) TX_RAM $cf4b - db $0, "!@@" + text "!@@" _UnnamedText_6fb4: ; a2750 (28:6750) - db $0, "Which move should", $4e, "be forgotten?", $57 + text "Which move should", $4e, "be forgotten?" + done _UnnamedText_6fb9: ; a2771 (28:6771) db $0, "Abandon learning", $4f @@ -127309,7 +129814,8 @@ _UnnamedText_6fb9: ; a2771 (28:6771) UnnamedText_a2784: ; a2784 (28:6784) TX_RAM $cf4b - db $0, "?", $57 + text "?" + done _UnnamedText_6fbe: ; a278a (28:678a) TX_RAM $d036 @@ -127319,7 +129825,8 @@ _UnnamedText_6fbe: ; a278a (28:678a) UnnamedText_a279e: ; a279e (28:679e) TX_RAM $cf4b - db $0, "!", $58 + text "!" + prompt _UnnamedText_6fc3: ; a27a4 (28:67a4) TX_RAM $d036 @@ -127341,13 +129848,14 @@ UnnamedText_a27bd: ; a27bd (28:67bd) UnnamedText_a2813: ; a2813 (28:6813) TX_RAM $cf4b - db $0, "?", $57 + text "?" + done _UnnamedText_6fc8: ; a2819 (28:6819) - db $0, "1, 2 and...@@" + text "1, 2 and...@@" _UnnamedText_6fd7: ; a2827 (28:6827) - db $0, " Poof!@@" + text " Poof!@@" _UnnamedText_6fdc: ; a2830 (28:6830) db $0, $51 @@ -127355,386 +129863,472 @@ _UnnamedText_6fdc: ; a2830 (28:6830) UnnamedText_a2833: ; a2833 (28:6833) TX_RAM $d036 - db $0, " forgot", $4f - db "@" + text " forgot" + line "@" TX_RAM $cd6d - db $0, "!", $51 - db "And...", $58 + text "!" + + page "And..." + prompt _UnnamedText_6fe1: ; a284d (28:684d) - db $0, "HM techniques", $4f - db "can't be deleted!", $58 + text "HM techniques" + line "can't be deleted!" + prompt _PokemonCenterWelcomeText: ; a286d (28:686d) - db $0, "Welcome to our", $4f - db "#MON CENTER!", $51 - db "We heal your", $4f - db "#MON back to", $55 - db "perfect health!", $58 + text "Welcome to our" + line "#MON CENTER!" + + page "We heal your" + line "#MON back to" + next "perfect health!" + prompt _ShallWeHealYourPokemonText: ; a28b4 (28:68b4) - db $0, "Shall we heal your", $4f - db "#MON?", $57 + text "Shall we heal your" + line "#MON?" + done _NeedYourPokemonText: ; a28ce (28:68ce) - db $0, "OK. We'll need", $4f - db "your #MON.", $57 + text "OK. We'll need" + line "your #MON." + done _PokemonFightingFitText: ; a28e8 (28:68e8) - db $0, "Thank you!", $4f - db "Your #MON are", $55 - db "fighting fit!", $58 + text "Thank you!" + line "Your #MON are" + next "fighting fit!" + prompt _PokemonCenterFarewellText: ; a2910 (28:6910) - db $0, "We hope to see", $4f - db "you again!", $57 + text "We hope to see" + line "you again!" + done _CableClubNPCText7: ; a292b (28:692b) - db $0, "This area is", $4f - db "reserved for 2", $55 - db "friends who are", $55 - db "linked by cable.", $57 + text "This area is" + line "reserved for 2" + next "friends who are" + next "linked by cable." + done _CableClubNPCText1: ; a2969 (28:6969) - db $0, "Welcome to the", $4f - db "Cable Club!", $57 + text "Welcome to the" + line "Cable Club!" + done _CableClubNPCText2: ; a2985 (28:6985) - db $0, "Please apply here.", $51 - db "Before opening", $4f - db "the link, we have", $55 - db "to save the game.", $57 + text "Please apply here." + + page "Before opening" + line "the link, we have" + next "to save the game." + done _CableClubNPCText3: ; a29cc (28:69cc) - db $0, "Please wait.@@" + text "Please wait.@@" _CableClubNPCText4: ; a29db (28:69db) - db $0, "The link has been", $4f - db "closed because of", $55 - db "inactivity.", $51 - db "Please contact", $4f - db "your friend and", $55 - db "come again!", $57 + text "The link has been" + line "closed because of" + next "inactivity." + + page "Please contact" + line "your friend and" + next "come again!" + done SECTION "bank29",ROMX,BANK[$29] _CableClubNPCText5: ; a4000 (29:4000) - db $0, "Please come again!", $57 + text "Please come again!" + done _CableClubNPCText6: ; a4014 (29:4014) - db $0, "We're making", $4f - db "preparations.", $55 - db "Please wait.", $57 + text "We're making" + line "preparations." + next "Please wait." + done _UsedStrengthText: ; a403c (29:403c) TX_RAM $cd6d - db $0, " used", $4f - db "STRENGTH.@@" + text " used" + line "STRENGTH.@@" _UnnamedText_cdbb: ; a4051 (29:4051) TX_RAM $cd6d - db $0, " can", $4f - db "move boulders.", $58 + text " can" + line "move boulders." + prompt _UnnamedText_cdfa: ; a4069 (29:4069) - db $0, "The current is", $4f - db "much too fast!", $58 + text "The current is" + line "much too fast!" + prompt _UnnamedText_cdff: ; a4088 (29:4088) - db $0, "Cycling is fun!", $4f - db "Forget SURFing!", $58 + text "Cycling is fun!" + line "Forget SURFing!" + prompt _FlashLightsAreaText: ; a40a9 (29:40a9) - db $0, "A blinding FLASH", $4f - db "lights the area!", $58 + text "A blinding FLASH" + line "lights the area!" + prompt _WarpToLastPokemonCenterText: ; a40cc (29:40cc) - db $0, "Warp to the last", $4f - db "#MON CENTER.", $57 + text "Warp to the last" + line "#MON CENTER." + done _CannotUseTeleportNowText: ; a40eb (29:40eb) TX_RAM $cd6d - db $0, " can't", $4f - db "use TELEPORT now.", $58 + text " can't" + line "use TELEPORT now." + prompt _CannotFlyHereText: ; a4107 (29:4107) TX_RAM $cd6d - db $0, " can't", $4f - db "FLY here.", $58 + text " can't" + line "FLY here." + prompt _NotHealthyEnoughText: ; a411b (29:411b) - db $0, "Not healthy", $4f - db "enough.", $58 + text "Not healthy" + line "enough." + prompt _NewBadgeRequiredText: ; a4130 (29:4130) - db $0, "No! A new BADGE", $4f - db "is required.", $58 + text "No! A new BADGE" + line "is required." + prompt _CannotUseItemsHereText: ; a414e (29:414e) - db $0, "You can't use items", $4f - db "here.", $58 + text "You can't use items" + line "here." + prompt _CannotGetOffHereText: ; a4168 (29:4168) - db $0, "You can't get off", $4f - db "here.", $58 + text "You can't get off" + line "here." + prompt _UnnamedText_4fe39: ; a4180 (29:4180) - db $0, $52, " got", $4f - db "@" + text $52, " got" + line "@" TX_RAM $cd6d - db $0, "!@@" + text "!@@" _UnnamedText_4fe3f: ; a418f (29:418f) - db $0, "There's no more", $4f - db "room for #MON!", $55 - db "@" + text "There's no more" + line "room for #MON!" + next "@" TX_RAM $de06 - db $0, " was", $55 - db "sent to #MON", $55 - db "BOX @" + text " was" + next "sent to #MON" + next "BOX @" TX_RAM $cf4b - db $0, " on PC!", $57 + text " on PC!" + done _UnnamedText_4fe44: ; a41d6 (29:41d6) - db $0, "There's no more", $4f - db "room for #MON!", $51 - db "The #MON BOX", $4f - db "is full and can't", $55 - db "accept any more!", $51 - db "Change the BOX at", $4f - db "a #MON CENTER!", $57 + text "There's no more" + line "room for #MON!" + + page "The #MON BOX" + line "is full and can't" + next "accept any more!" + + page "Change the BOX at" + line "a #MON CENTER!" + done INCLUDE "text/mapPalletTown.asm" _ViridianCityText1: ; a43cc (29:43cc) - db $0, "Those # BALLs", $4f - db "at your waist!", $55 - db "You have #MON!", $51 - db "It's great that", $4f - db "you can carry and", $55 - db "use #MON any", $55 - db "time, anywhere!", $57 + text "Those # BALLs" + line "at your waist!" + next "You have #MON!" + + page "It's great that" + line "you can carry and" + next "use #MON any" + next "time, anywhere!" + done _UnnamedText_19122: ; a4437 (29:4437) - db $0, "This #MON GYM", $4f - db "is always closed.", $51 - db "I wonder who the", $4f - db "LEADER is?", $57 + text "This #MON GYM" + line "is always closed." + + page "I wonder who the" + line "LEADER is?" + done _UnnamedText_19127: ; a4474 (29:4474) - db $0, "VIRIDIAN GYM's", $4f - db "LEADER returned!", $57 + text "VIRIDIAN GYM's" + line "LEADER returned!" + done _UnnamedText_1914d: ; a4494 (29:4494) - db $0, "You want to know", $4f - db "about the 2 kinds", $55 - db "of caterpillar", $55 - db "#MON?", $57 + text "You want to know" + line "about the 2 kinds" + next "of caterpillar" + next "#MON?" + done _UnnamedText_19152: ; a44cd (29:44cd) - db $0, "Oh, OK then!", $57 + text "Oh, OK then!" + done _UnnamedText_19157: ; a44db (29:44db) - db $0, "CATERPIE has no", $4f - db "poison, but", $55 - db "WEEDLE does.", $51 - db "Watch out for its", $4f - db "POISON STING!", $57 + text "CATERPIE has no" + line "poison, but" + next "WEEDLE does." + + page "Watch out for its" + line "POISON STING!" + done _UnnamedText_19175: ; a4525 (29:4525) - db $0, "Oh Grandpa! Don't", $4f - db "be so mean!", $55 - db "He hasn't had his", $55 - db "coffee yet.", $57 + text "Oh Grandpa! Don't" + line "be so mean!" + next "He hasn't had his" + next "coffee yet." + done _UnnamedText_1917a: ; a4560 (29:4560) - db $0, "When I go shop in", $4f - db "PEWTER CITY, I", $55 - db "have to take the", $55 - db "winding trail in", $55 - db "VIRIDIAN FOREST.", $57 + text "When I go shop in" + line "PEWTER CITY, I" + next "have to take the" + next "winding trail in" + next "VIRIDIAN FOREST." + done _UnnamedText_19191: ; a45b5 (29:45b5) - db $0, "You can't go", $4f - db "through here!", $51 - db "This is private", $4f - db "property!", $57 + text "You can't go" + line "through here!" + + page "This is private" + line "property!" + done _UnnamedText_191ca: ; a45ea (29:45ea) - db $0, "Yawn!", $4f - db "I must have dozed", $55 - db "off in the sun.", $51 - db "I had this dream", $4f - db "about a DROWZEE", $55 - db "eating my dream.", $55 - db "What's this?", $55 - db "Where did this TM", $55 - db "come from?", $51 - db "This is spooky!", $4f - db "Here, you can", $55 - db "have this TM.", $58 + text "Yawn!" + line "I must have dozed" + next "off in the sun." + + page "I had this dream" + line "about a DROWZEE" + next "eating my dream." + next "What's this?" + next "Where did this TM" + next "come from?" + + page "This is spooky!" + line "Here, you can" + next "have this TM." + prompt _ReceivedTM42Text: ; a469a (29:469a) - db $0, $52, " received", $4f - db "TM42!@@" + text $52, " received" + line "TM42!@@" _TM42Explanation: ; a46ad (29:46ad) - db $0, "TM42 contains", $4f - db "DREAM EATER...", $55 - db "...Snore...", $57 + text "TM42 contains" + line "DREAM EATER..." + next "...Snore..." + done _TM42NoRoomText: ; a46d7 (29:46d7) - db $0, "You have too much", $4f - db "stuff already.", $57 + text "You have too much" + line "stuff already." + done _UnnamedText_1920a: ; a46f9 (29:46f9) - db $0, "Ahh, I've had my", $4f - db "coffee now and I", $55 - db "feel great!", $51 - db "Sure you can go", $4f - db "through!", $51 - db "Are you in a", $4f - db "hurry?", $57 + text "Ahh, I've had my" + line "coffee now and I" + next "feel great!" + + page "Sure you can go" + line "through!" + + page "Are you in a" + line "hurry?" + done _UnnamedText_1920f: ; a4754 (29:4754) - db $0, "I see you're using", $4f - db "a #DEX.", $51 - db "When you catch a", $4f - db "#MON, #DEX", $55 - db "is automatically", $55 - db "updated.", $51 - db "What? Don't you", $4f - db "know how to catch", $55 - db "#MON?", $51 - db "I'll show you", $4f - db "how to then.", $57 + text "I see you're using" + line "a #DEX." + + page "When you catch a" + line "#MON, #DEX" + next "is automatically" + next "updated." + + page "What? Don't you" + line "know how to catch" + next "#MON?" + + page "I'll show you" + line "how to then." + done _UnnamedText_19214: ; a47e6 (29:47e6) - db $0, "Time is money...", $4f - db "Go along then.", $57 + text "Time is money..." + line "Go along then." + done _UnnamedText_19219: ; a4807 (29:4807) - db $0, "First, you need", $4f - db "to weaken the", $55 - db "target #MON.", $57 + text "First, you need" + line "to weaken the" + next "target #MON." + done _ViridianCityText8: ; a4833 (29:4833) - db $0, "VIRIDIAN CITY ", $4f - db "The Eternally", $55 - db "Green Paradise", $57 + text "VIRIDIAN CITY " + line "The Eternally" + next "Green Paradise" + done _ViridianCityText9: ; a4860 (29:4860) - db $0, "TRAINER TIPS", $51 - db "Catch #MON", $4f - db "and expand your", $55 - db "collection!", $51 - db "The more you have,", $4f - db "the easier it is", $55 - db "to fight!", $57 + text "TRAINER TIPS" + + page "Catch #MON" + line "and expand your" + next "collection!" + + page "The more you have," + line "the easier it is" + next "to fight!" + done _ViridianCityText10: ; a48c3 (29:48c3) - db $0, "TRAINER TIPS", $51 - db "The battle moves", $4f - db "of #MON are", $55 - db "limited by their", $55 - db "POWER POINTs, PP.", $51 - db "To replenish PP,", $4f - db "rest your tired", $55 - db "#MON at a", $55 - db "#MON CENTER!", $57 + text "TRAINER TIPS" + + page "The battle moves" + line "of #MON are" + next "limited by their" + next "POWER POINTs, PP." + + page "To replenish PP," + line "rest your tired" + next "#MON at a" + next "#MON CENTER!" + done _ViridianCityText13: ; a4949 (29:4949) - db $0, "VIRIDIAN CITY", $4f - db "#MON GYM", $57 + text "VIRIDIAN CITY" + line "#MON GYM" + done _ViridianCityText14: ; a4961 (29:4961) - db $0, "The GYM's doors", $4f - db "are locked...", $57 + text "The GYM's doors" + line "are locked..." + done _PewterCityText1: ; a497f (29:497f) - db $0, "It's rumored that", $4f - db "CLEFAIRYs came", $55 - db "from the moon!", $51 - db "They appeared ", $4f - db "after MOON STONE", $55 - db "fell on MT.MOON.", $57 + text "It's rumored that" + line "CLEFAIRYs came" + next "from the moon!" + + page "They appeared " + line "after MOON STONE" + next "fell on MT.MOON." + done _PewterCityText2: ; a49e0 (29:49e0) - db $0, "There aren't many", $4f - db "serious #MON", $55 - db "trainers here!", $51 - db "They're all like", $4f - db "BUG CATCHERs,", $55 - db "but PEWTER GYM's", $55 - db "BROCK is totally", $55 - db "into it!", $57 + text "There aren't many" + line "serious #MON" + next "trainers here!" + + page "They're all like" + line "BUG CATCHERs," + next "but PEWTER GYM's" + next "BROCK is totally" + next "into it!" + done _UnnamedText_193f1: ; a4a56 (29:4a56) - db $0, "Did you check out", $4f - db "the MUSEUM?", $57 + text "Did you check out" + line "the MUSEUM?" + done _UnnamedText_193f6: ; a4a75 (29:4a75) - db $0, "Weren't those", $4f - db "fossils from MT.", $55 - db "MOON amazing?", $57 + text "Weren't those" + line "fossils from MT." + next "MOON amazing?" + done _UnnamedText_193fb: ; a4aa2 (29:4aa2) - db $0, "Really?", $4f - db "You absolutely", $55 - db "have to go!", $57 + text "Really?" + line "You absolutely" + next "have to go!" + done _PewterCityText13: ; a4ac6 (29:4ac6) - db $0, "It's right here!", $4f - db "You have to pay", $55 - db "to get in, but", $55 - db "it's worth it!", $55 - db "See you around!", $57 + text "It's right here!" + line "You have to pay" + next "to get in, but" + next "it's worth it!" + next "See you around!" + done _UnnamedText_19427: ; a4b14 (29:4b14) - db $0, "Psssst!", $4f - db "Do you know what", $55 - db "I'm doing?", $57 + text "Psssst!" + line "Do you know what" + next "I'm doing?" + done _UnnamedText_1942c: ; a4b38 (29:4b38) - db $0, "That's right!", $4f - db "It's hard work!", $57 + text "That's right!" + line "It's hard work!" + done _UnnamedText_19431: ; a4b55 (29:4b55) - db $0, "I'm spraying REPEL", $4f - db "to keep #MON", $55 - db "out of my garden!", $57 + text "I'm spraying REPEL" + line "to keep #MON" + next "out of my garden!" + done _UnnamedText_1945d: ; a4b87 (29:4b87) - db $0, "You're a trainer", $4f - db "right? BROCK's", $55 - db "looking for new", $55 - db "challengers!", $55 - db "Follow me!", $57 + text "You're a trainer" + line "right? BROCK's" + next "looking for new" + next "challengers!" + next "Follow me!" + done _UnnamedText_19462: ; a4bce (29:4bce) - db $0, "If you have the", $4f - db "right stuff, go", $55 - db "take on BROCK!", $57 + text "If you have the" + line "right stuff, go" + next "take on BROCK!" + done _PewterCityText6: ; a4bfe (29:4bfe) - db $0, "TRAINER TIPS", $51 - db "Any #MON that", $4f - db "takes part in", $55 - db "battle, however", $55 - db "short, earns EXP!", $57 + text "TRAINER TIPS" + + page "Any #MON that" + line "takes part in" + next "battle, however" + next "short, earns EXP!" + done _PewterCityText7: ; a4c4a (29:4c4a) - db $0, "NOTICE!", $51 - db "Thieves have been", $4f - db "stealing #MON", $55 - db "fossils at MT.", $55 - db "MOON! Please call", $55 - db "PEWTER POLICE", $55 - db "with any info!", $57 + text "NOTICE!" + + page "Thieves have been" + line "stealing #MON" + next "fossils at MT." + next "MOON! Please call" + next "PEWTER POLICE" + next "with any info!" + done _PewterCityText10: ; a4cb1 (29:4cb1) - db $0, "PEWTER MUSEUM", $4f - db "OF SCIENCE", $57 + text "PEWTER MUSEUM" + line "OF SCIENCE" + done _PewterCityText11: ; a4ccb (29:4ccb) db $0, "PEWTER CITY", $4f @@ -127744,9 +130338,10 @@ _PewterCityText11: ; a4ccb (29:4ccb) db "#MON Trainer!", $57 _PewterCityText12: ; a4d0c (29:4d0c) - db $0, "PEWTER CITY", $4f - db "A Stone Gray", $55 - db "City", $57 + text "PEWTER CITY" + line "A Stone Gray" + next "City" + done _UnnamedText_19668: ; a4d2b (29:4d2b) db $0, $53, ": Yo!", $4f @@ -127763,14 +130358,16 @@ _UnnamedText_19668: ; a4d2b (29:4d2b) db $52, "!", $57 _UnnamedText_1966d: ; a4dbe (29:4dbe) - db $0, "Hey!", $4f - db "Take it easy!", $55 - db "You won already!", $58 + text "Hey!" + line "Take it easy!" + next "You won already!" + prompt _UnnamedText_19672: ; a4de3 (29:4de3) - db $0, "Heh!", $4f - db "You're no match", $55 - db "for my genius!", $58 + text "Heh!" + line "You're no match" + next "for my genius!" + prompt _UnnamedText_19677: ; a4e07 (29:4e07) db $0, $53, ": Hey,", $4f @@ -127796,138 +130393,168 @@ _UnnamedText_19677: ; a4e07 (29:4e07) db "Smell ya later!", $57 _UnnamedText_196d9: ; a4f27 (29:4f27) - db $0, "Hey! Stay out!", $4f - db "It's not your", $55 - db "yard! Huh? Me?", $51 - db "I'm an innocent", $4f - db "bystander! Don't", $55 - db "you believe me?", $57 + text "Hey! Stay out!" + line "It's not your" + next "yard! Huh? Me?" + + page "I'm an innocent" + line "bystander! Don't" + next "you believe me?" + done _ReceivedTM28Text: ; a4f82 (29:4f82) - db $0, $52, " recovered", $4f - db "TM28!@@" + text $52, " recovered" + line "TM28!@@" _ReceivedTM28Text2: ; a4f96 (29:4f96) - db $0, $51 - db "I better get", $4f - db "moving! Bye!@@" + text $51 + db "I better get" + line "moving! Bye!@@" _TM28NoRoomText: ; a4fb3 (29:4fb3) - db $0, "Make room for", $4f - db "this!", $51 - db "I can't run until", $4f - db "I give it to you!", $57 + text "Make room for" + line "this!" + + page "I can't run until" + line "I give it to you!" + done _UnnamedText_196ee: ; a4feb (29:4feb) - db $0, "Stop!", $4f - db "I give up! I'll", $55 - db "leave quietly!", $58 + text "Stop!" + line "I give up! I'll" + next "leave quietly!" + prompt _UnnamedText_196f3: ; a5010 (29:5010) - db $0, "OK! I'll return", $4f - db "the TM I stole!", $58 + text "OK! I'll return" + line "the TM I stole!" + prompt _CeruleanCityText3: ; a5030 (29:5030) - db $0, "You're a trainer", $4f - db "too? Collecting,", $55 - db "fighting, it's a", $55 - db "tough life.", $57 + text "You're a trainer" + line "too? Collecting," + next "fighting, it's a" + next "tough life." + done _CeruleanCityText4: ; a506e (29:506e) - db $0, "That bush in", $4f - db "front of the shop", $55 - db "is in the way.", $51 - db "There might be a", $4f - db "way around.", $57 + text "That bush in" + line "front of the shop" + next "is in the way." + + page "There might be a" + line "way around." + done _CeruleanCityText5: ; a50ba (29:50ba) - db $0, "You're making an", $4f - db "encyclopedia on", $55 - db "#MON? That", $55 - db "sounds amusing.", $57 + text "You're making an" + line "encyclopedia on" + next "#MON? That" + next "sounds amusing." + done _CeruleanCityText6: ; a50f6 (29:50f6) - db $0, "The people here", $4f - db "were robbed.", $51 - db "It's obvious that", $4f - db "TEAM ROCKET is", $55 - db "behind this most", $55 - db "heinous crime!", $51 - db "Even our POLICE", $4f - db "force has trouble", $55 - db "with the ROCKETs!", $57 + text "The people here" + line "were robbed." + + page "It's obvious that" + line "TEAM ROCKET is" + next "behind this most" + next "heinous crime!" + + page "Even our POLICE" + line "force has trouble" + next "with the ROCKETs!" + done _UnnamedText_19730: ; a5188 (29:5188) - db $0, "OK! SLOWBRO!", $4f - db "Use SONICBOOM!", $55 - db "Come on, SLOWBRO", $55 - db "pay attention!", $57 + text "OK! SLOWBRO!" + line "Use SONICBOOM!" + next "Come on, SLOWBRO" + next "pay attention!" + done _UnnamedText_19735: ; a51c5 (29:51c5) - db $0, "SLOWBRO punch!", $4f - db "No! You blew it", $55 - db "again!", $57 + text "SLOWBRO punch!" + line "No! You blew it" + next "again!" + done _UnnamedText_1973a: ; a51ec (29:51ec) - db $0, "SLOWBRO, WITHDRAW!", $4f - db "No! That's wrong!", $51 - db "It's so hard to", $4f - db "control #MON!", $51 - db "Your #MON's", $4f - db "obedience depends", $55 - db "on your abilities", $55 - db "as a trainer!", $57 + text "SLOWBRO, WITHDRAW!" + line "No! That's wrong!" + + page "It's so hard to" + line "control #MON!" + + page "Your #MON's" + line "obedience depends" + next "on your abilities" + next "as a trainer!" + done _UnnamedText_1976f: ; a526b (29:526b) - db $0, "SLOWBRO took a", $4f - db "snooze...", $57 + text "SLOWBRO took a" + line "snooze..." + done _UnnamedText_19774: ; a5285 (29:5285) - db $0, "SLOWBRO is", $4f - db "loafing around...", $57 + text "SLOWBRO is" + line "loafing around..." + done _UnnamedText_19779: ; a52a3 (29:52a3) - db $0, "SLOWBRO turned", $4f - db "away...", $57 + text "SLOWBRO turned" + line "away..." + done _UnnamedText_1977e: ; a52bb (29:52bb) - db $0, "SLOWBRO", $4f - db "ignored orders...", $57 + text "SLOWBRO" + line "ignored orders..." + done _CeruleanCityText9: ; a52d6 (29:52d6) - db $0, "I want a bright", $4f - db "red BICYCLE!", $51 - db "I'll keep it at", $4f - db "home, so it won't", $55 - db "get dirty!", $57 + text "I want a bright" + line "red BICYCLE!" + + page "I'll keep it at" + line "home, so it won't" + next "get dirty!" + done _CeruleanCityText10: ; a531f (29:531f) - db $0, "This is CERULEAN", $4f - db "CAVE! Horribly", $55 - db "strong #MON", $55 - db "live in there!", $51 - db "The #MON LEAGUE", $4f - db "champion is the", $55 - db "only person who", $55 - db "is allowed in!", $57 + text "This is CERULEAN" + line "CAVE! Horribly" + next "strong #MON" + next "live in there!" + + page "The #MON LEAGUE" + line "champion is the" + next "only person who" + next "is allowed in!" + done _CeruleanCityText12: ; a539a (29:539a) - db $0, "CERULEAN CITY", $4f - db "A Mysterious,", $55 - db "Blue Aura", $55 - db "Surrounds It", $57 + text "CERULEAN CITY" + line "A Mysterious," + next "Blue Aura" + next "Surrounds It" + done _CeruleanCityText13: ; a53ce (29:53ce) - db $0, "TRAINER TIPS", $51 - db "Pressing B Button", $4f - db "during evolution", $55 - db "cancels the whole", $55 - db "process.", $57 + text "TRAINER TIPS" + + page "Pressing B Button" + line "during evolution" + next "cancels the whole" + next "process." + done _CeruleanCityText16: ; a541a (29:541a) - db $0, "Grass and caves", $4f - db "handled easily!", $55 - db "BIKE SHOP", $57 + text "Grass and caves" + line "handled easily!" + next "BIKE SHOP" + done _CeruleanCityText17: ; a5445 (29:5445) db $0, "CERULEAN CITY", $4f @@ -127937,144 +130564,183 @@ _CeruleanCityText17: ; a5445 (29:5445) db "Mermaid!", $57 _UnnamedText_4413c: ; a5482 (29:5482) - db $0, "Do you believe in", $4f - db "GHOSTs?", $57 + text "Do you believe in" + line "GHOSTs?" + done _UnnamedText_44141: ; a549d (29:549d) - db $0, "Really? So there", $4f - db "are believers...", $57 + text "Really? So there" + line "are believers..." + done _UnnamedText_44146: ; a54c0 (29:54c0) - db $0, "Hahaha, I guess", $4f - db "not.", $51 - db "That white hand", $4f - db "on your shoulder,", $55 - db "it's not real.", $57 + text "Hahaha, I guess" + line "not." + + page "That white hand" + line "on your shoulder," + next "it's not real." + done _LavenderTownText2: ; a5506 (29:5506) - db $0, "This town is known", $4f - db "as the grave site", $55 - db "of #MON.", $51 - db "Memorial services", $4f - db "are held in", $55 - db "#MON TOWER.", $57 + text "This town is known" + line "as the grave site" + next "of #MON." + + page "Memorial services" + line "are held in" + next "#MON TOWER." + done _LavenderTownText3: ; a555f (29:555f) - db $0, "GHOSTs appeared", $4f - db "in #MON TOWER.", $51 - db "I think they're", $4f - db "the spirits of", $55 - db "#MON that the", $55 - db "ROCKETs killed.", $57 + text "GHOSTs appeared" + line "in #MON TOWER." + + page "I think they're" + line "the spirits of" + next "#MON that the" + next "ROCKETs killed." + done _LavenderTownText4: ; a55bb (29:55bb) - db $0, "LAVENDER TOWN", $4f - db "The Noble Purple", $55 - db "Town", $57 + text "LAVENDER TOWN" + line "The Noble Purple" + next "Town" + done _LavenderTownText5: ; a55e0 (29:55e0) - db $0, "New SILPH SCOPE!", $51 - db "Make the Invisible", $4f - db "Plain to See!", $51 - db "SILPH CO.", $57 + text "New SILPH SCOPE!" + + page "Make the Invisible" + line "Plain to See!" + + page "SILPH CO." + done _LavenderTownText8: ; a561d (29:561d) - db $0, "LAVENDER VOLUNTEER", $4f - db "#MON HOUSE", $57 + text "LAVENDER VOLUNTEER" + line "#MON HOUSE" + done _LavenderTownText9: ; a563c (29:563c) - db $0, "May the Souls of", $4f - db "#MON Rest Easy", $55 - db "#MON TOWER", $57 + text "May the Souls of" + line "#MON Rest Easy" + next "#MON TOWER" + done _VermilionCityText1: ; a5668 (29:5668) - db $0, "We're careful", $4f - db "about pollution!", $51 - db "We've heard GRIMER", $4f - db "multiplies in", $55 - db "toxic sludge!", $57 + text "We're careful" + line "about pollution!" + + page "We've heard GRIMER" + line "multiplies in" + next "toxic sludge!" + done _UnnamedText_198a7: ; a56b5 (29:56b5) - db $0, "Did you see S.S.", $4f - db "ANNE moored in", $55 - db "the harbor?", $57 + text "Did you see S.S." + line "ANNE moored in" + next "the harbor?" + done _UnnamedText_198ac: ; a56e2 (29:56e2) - db $0, "So, S.S.ANNE has", $4f - db "departed!", $51 - db "She'll be back in", $4f - db "about a year.", $57 + text "So, S.S.ANNE has" + line "departed!" + + page "She'll be back in" + line "about a year." + done _SSAnneWelcomeText4: ; a571d (29:571d) - db $0, "Welcome to S.S.", $4f - db "ANNE!", $57 + text "Welcome to S.S." + line "ANNE!" + done _SSAnneWelcomeText9: ; a5734 (29:5734) - db $0, "Welcome to S.S.", $4f - db "ANNE!", $51 - db "Excuse me, do you", $4f - db "have a ticket?", $58 + text "Welcome to S.S." + line "ANNE!" + + page "Excuse me, do you" + line "have a ticket?" + prompt _SSAnneFlashedTicketText: ; a576c (29:576c) - db $0, $52, " flashed", $4f - db "the S.S.TICKET!", $51 - db "Great! Welcome to", $4f - db "S.S.ANNE!", $57 + text $52, " flashed" + line "the S.S.TICKET!" + + page "Great! Welcome to" + line "S.S.ANNE!" + done _SSAnneNoTicketText: ; a57a3 (29:57a3) - db $0, $52, " doesn't", $4f - db "have the needed", $55 - db "S.S.TICKET.", $51 - db "Sorry!", $51 - db "You need a ticket", $4f - db "to get aboard.", $57 + text $52, " doesn't" + line "have the needed" + next "S.S.TICKET." + + page "Sorry!" + + page "You need a ticket" + line "to get aboard." + done _SSAnneNotHereText: ; a57f1 (29:57f1) - db $0, "The ship set sail.", $57 + text "The ship set sail." + done _VermilionCityText4: ; a5805 (29:5805) - db $0, "I'm putting up a", $4f - db "building on this", $55 - db "plot of land.", $51 - db "My #MON is", $4f - db "tamping the land.", $57 + text "I'm putting up a" + line "building on this" + next "plot of land." + + page "My #MON is" + line "tamping the land." + done _VermilionCityText5: ; a5852 (29:5852) db $0, "MACHOP: Guoh!", $4f db "Gogogoh!@@" _VermilionCityText14: ; a586b (29:586b) - db $0, $51 - db "A MACHOP is", $4f - db "stomping the land", $55 - db "flat.", $57 + text $51 + db "A MACHOP is" + line "stomping the land" + next "flat." + done _VermilionCityText6: ; a5891 (29:5891) - db $0, "S.S.ANNE is a", $4f - db "famous luxury", $55 - db "cruise ship.", $51 - db "We visit VERMILION", $4f - db "once a year.", $57 + text "S.S.ANNE is a" + line "famous luxury" + next "cruise ship." + + page "We visit VERMILION" + line "once a year." + done _VermilionCityText7: ; a58db (29:58db) - db $0, "VERMILION CITY", $4f - db "The Port of", $55 - db "Exquisite Sunsets", $57 + text "VERMILION CITY" + line "The Port of" + next "Exquisite Sunsets" + done _VermilionCityText8: ; a5909 (29:5909) - db $0, "NOTICE!", $51 - db "ROUTE 12 may be", $4f - db "blocked off by a", $55 - db "sleeping #MON.", $51 - db "Detour through", $4f - db "ROCK TUNNEL to", $55 - db "LAVENDER TOWN.", $51 - db "VERMILION POLICE", $57 + text "NOTICE!" + + page "ROUTE 12 may be" + line "blocked off by a" + next "sleeping #MON." + + page "Detour through" + line "ROCK TUNNEL to" + next "LAVENDER TOWN." + + page "VERMILION POLICE" + done _VermilionCityText11: ; a5980 (29:5980) - db $0, "#MON FAN CLUB", $4f - db "All #MON fans", $55 - db "welcome!", $57 + text "#MON FAN CLUB" + line "All #MON fans" + next "welcome!" + done _VermilionCityText12: ; a59a6 (29:59a6) db $0, "VERMILION CITY", $4f @@ -128084,93 +130750,116 @@ _VermilionCityText12: ; a59a6 (29:59a6) db "American!", $57 _VermilionCityText13: ; a59e9 (29:59e9) - db $0, "VERMILION HARBOR", $57 + text "VERMILION HARBOR" + done _CeladonCityText1: ; a59fb (29:59fb) - db $0, "I got my KOFFING", $4f - db "in CINNABAR!", $51 - db "It's nice, but it", $4f - db "breathes poison", $55 - db "when it's angry!", $57 + text "I got my KOFFING" + line "in CINNABAR!" + + page "It's nice, but it" + line "breathes poison" + next "when it's angry!" + done _CeladonCityText2: ; a5a4b (29:5a4b) - db $0, "Heheh! This GYM", $4f - db "is great! It's", $55 - db "full of women!", $57 + text "Heheh! This GYM" + line "is great! It's" + next "full of women!" + done _CeladonCityText3: ; a5a79 (29:5a79) - db $0, "The GAME CORNER", $4f - db "is bad for our", $55 - db "city's image!", $57 + text "The GAME CORNER" + line "is bad for our" + next "city's image!" + done _CeladonCityText4: ; a5aa6 (29:5aa6) - db $0, "Moan! I blew it", $4f - db "all at the slots!", $51 - db "I knew I should", $4f - db "have cashed in my", $55 - db "coins for prizes!", $57 + text "Moan! I blew it" + line "all at the slots!" + + page "I knew I should" + line "have cashed in my" + next "coins for prizes!" + done _TM41PreText: ; a5afd (29:5afd) - db $0, "Hello, there!", $51 - db "I've seen you,", $4f - db "but I never had a", $55 - db "chance to talk!", $51 - db "Here's a gift for", $4f - db "dropping by!", $58 + text "Hello, there!" + + page "I've seen you," + line "but I never had a" + next "chance to talk!" + + page "Here's a gift for" + line "dropping by!" + prompt _ReceivedTM41Text: ; a5b5a (29:5b5a) - db $0, $52, " received", $4f - db "@" + text $52, " received" + line "@" TX_RAM $cf4b - db $0, "!@@" + text "!@@" _TM41ExplanationText: ; a5b6e (29:5b6e) - db $0, "TM41 teaches", $4f - db "SOFTBOILED!", $51 - db "Only one #MON", $4f - db "can use it!", $51 - db "That #MON is", $4f - db "CHANSEY!", $57 + text "TM41 teaches" + line "SOFTBOILED!" + + page "Only one #MON" + line "can use it!" + + page "That #MON is" + line "CHANSEY!" + done _TM41NoRoomText: ; a5bb8 (29:5bb8) - db $0, "Oh, your pack is", $4f - db "full of items!", $57 + text "Oh, your pack is" + line "full of items!" + done _CeladonCityText6: ; a5bd9 (29:5bd9) - db $0, "This is my trusted", $4f - db "pal, POLIWRATH!", $51 - db "It evolved from", $4f - db "POLIWHIRL when I", $55 - db "used WATER STONE!", $57 + text "This is my trusted" + line "pal, POLIWRATH!" + + page "It evolved from" + line "POLIWHIRL when I" + next "used WATER STONE!" + done _CeladonCityText7: ; a5c30 (29:5c30) db $0, "POLIWRATH: Ribi", $4f db "ribit!@@" _CeladonCityText8: ; a5c49 (29:5c49) - db $0, "What are you", $4f - db "staring at?", $57 + text "What are you" + line "staring at?" + done _CeladonCityText9: ; a5c63 (29:5c63) - db $0, "Keep out of TEAM", $4f - db "ROCKET's way!", $57 + text "Keep out of TEAM" + line "ROCKET's way!" + done _CeladonCityText10: ; a5c82 (29:5c82) - db $0, "TRAINER TIPS", $51 - db "X ACCURACY boosts", $4f - db "the accuracy of", $55 - db "techniques!", $51 - db "DIRE HIT jacks up", $4f - db "the likelihood of", $55 - db "critical hits!", $51 - db "Get your items at", $4f - db "CELADON DEPT.", $55 - db "STORE!", $57 + text "TRAINER TIPS" + + page "X ACCURACY boosts" + line "the accuracy of" + next "techniques!" + + page "DIRE HIT jacks up" + line "the likelihood of" + next "critical hits!" + + page "Get your items at" + line "CELADON DEPT." + next "STORE!" + done _CeladonCityText11: ; a5d18 (29:5d18) - db $0, "CELADON CITY", $4f - db "The City of", $55 - db "Rainbow Dreams", $57 + text "CELADON CITY" + line "The City of" + next "Rainbow Dreams" + done _CeladonCityText13: ; a5d41 (29:5d41) db $0, "CELADON CITY", $4f @@ -128180,47 +130869,57 @@ _CeladonCityText13: ; a5d41 (29:5d41) db "Princess!", $57 _CeladonCityText14: ; a5d82 (29:5d82) - db $0, "CELADON MANSION", $57 + text "CELADON MANSION" + done _CeladonCityText15: ; a5d93 (29:5d93) - db $0, "Find what you", $4f - db "need at CELADON", $55 - db "DEPT. STORE!", $57 + text "Find what you" + line "need at CELADON" + next "DEPT. STORE!" + done _CeladonCityText16: ; a5dbf (29:5dbf) - db $0, "TRAINER TIPS", $51 - db "GUARD SPEC.", $4f - db "protects #MON", $55 - db "against SPECIAL", $55 - db "attacks such as", $55 - db "fire and water!", $51 - db "Get your items at", $4f - db "CELADON DEPT.", $55 - db "STORE!", $57 + text "TRAINER TIPS" + + page "GUARD SPEC." + line "protects #MON" + next "against SPECIAL" + next "attacks such as" + next "fire and water!" + + page "Get your items at" + line "CELADON DEPT." + next "STORE!" + done _CeladonCityText17: ; a5e3e (29:5e3e) - db $0, "Coins exchanged", $4f - db "for prizes!", $55 - db "PRIZE EXCHANGE", $57 + text "Coins exchanged" + line "for prizes!" + next "PRIZE EXCHANGE" + done _CeladonCityText18: ; a5e6a (29:5e6a) - db $0, "ROCKET GAME CORNER", $4f - db "The playground", $55 - db "for grown-ups!", $57 + text "ROCKET GAME CORNER" + line "The playground" + next "for grown-ups!" + done _FuchsiaCityText1: ; a5e9c (29:5e9c) - db $0, "Did you try the", $4f - db "SAFARI GAME? Some", $55 - db "#MON can only", $55 - db "be caught there.", $57 + text "Did you try the" + line "SAFARI GAME? Some" + next "#MON can only" + next "be caught there." + done _FuchsiaCityText2: ; a5ede (29:5ede) - db $0, "SAFARI ZONE has a", $4f - db "zoo in front of", $55 - db "the entrance.", $51 - db "Out back is the", $4f - db "SAFARI GAME for", $55 - db "catching #MON.", $57 + text "SAFARI ZONE has a" + line "zoo in front of" + next "the entrance." + + page "Out back is the" + line "SAFARI GAME for" + next "catching #MON." + done _FuchsiaCityText3: ; a5f3e (29:5f3e) db $0, "ERIK: Where's", $4f @@ -128228,29 +130927,35 @@ _FuchsiaCityText3: ; a5f3e (29:5f3e) db "meet her here.", $57 _FuchsiaCityText4: ; a5f6b (29:5f6b) - db $0, "That item ball in", $4f - db "there is really a", $55 - db "#MON.", $57 + text "That item ball in" + line "there is really a" + next "#MON." + done _FuchsiaCityText5: ; a5f96 (29:5f96) - db $0, "!", $57 + text "!" + done _FuchsiaCityText11: ; a5f99 (29:5f99) - db $0, "FUCHSIA CITY", $4f - db "Behold! It's", $55 - db "Passion Pink!", $57 + text "FUCHSIA CITY" + line "Behold! It's" + next "Passion Pink!" + done _FuchsiaCityText13: ; a5fc1 (29:5fc1) - db $0, "SAFARI GAME", $4f - db "#MON-U-CATCH!", $57 + text "SAFARI GAME" + line "#MON-U-CATCH!" + done _FuchsiaCityText16: ; a5fdc (29:5fdc) - db $0, "SAFARI ZONE", $4f - db "WARDEN's HOME", $57 + text "SAFARI ZONE" + line "WARDEN's HOME" + done _FuchsiaCityText17: ; a5ff6 (29:5ff6) - db $0, "#MON PARADISE", $4f - db "SAFARI ZONE", $57 + text "#MON PARADISE" + line "SAFARI ZONE" + done _FuchsiaCityText18: ; a6011 (29:6011) db $0, "FUCHSIA CITY", $4f @@ -128299,31 +131004,37 @@ _FuchsiaCityKabutoText: ; a6191 (29:6191) db "from a fossil.", $58 _UnnamedText_19b2a: ; a61ca (29:61ca) - db $0, "...", $57 + text "..." + done _CinnabarIslandText8: ; a61cf (29:61cf) - db $0, "The door is", $4f - db "locked...", $57 + text "The door is" + line "locked..." + done _CinnabarIslandText1: ; a61e6 (29:61e6) - db $0, "CINNABAR GYM's", $4f - db "BLAINE is an odd", $55 - db "man who has lived", $55 - db "here for decades.", $57 + text "CINNABAR GYM's" + line "BLAINE is an odd" + next "man who has lived" + next "here for decades." + done _CinnabarIslandText2: ; a622a (29:622a) - db $0, "Scientists conduct", $4f - db "experiments in", $55 - db "the burned out", $55 - db "building.", $57 + text "Scientists conduct" + line "experiments in" + next "the burned out" + next "building." + done _CinnabarIslandText3: ; a6266 (29:6266) - db $0, "CINNABAR ISLAND", $4f - db "The Fiery Town of", $55 - db "Burning Desire", $57 + text "CINNABAR ISLAND" + line "The Fiery Town of" + next "Burning Desire" + done _CinnabarIslandText6: ; a6298 (29:6298) - db $0, "#MON LAB", $57 + text "#MON LAB" + done _CinnabarIslandText7: ; a62a2 (29:62a2) db $0, "CINNABAR ISLAND", $4f @@ -128333,86 +131044,105 @@ _CinnabarIslandText7: ; a62a2 (29:62a2) db "Quiz Master!", $57 _SaffronCityText1: ; a62e7 (29:62e7) - db $0, "What do you want?", $4f - db "Get lost!", $57 + text "What do you want?" + line "Get lost!" + done _SaffronCityText2: ; a6304 (29:6304) - db $0, "BOSS said he'll", $4f - db "take this town!", $57 + text "BOSS said he'll" + line "take this town!" + done _SaffronCityText3: ; a6324 (29:6324) - db $0, "Get out of the", $4f - db "way!", $57 + text "Get out of the" + line "way!" + done _SaffronCityText4: ; a6339 (29:6339) - db $0, "SAFFRON belongs", $4f - db "to TEAM ROCKET!", $57 + text "SAFFRON belongs" + line "to TEAM ROCKET!" + done _SaffronCityText5: ; a635a (29:635a) - db $0, "Being evil makes", $4f - db "me feel so alive!", $57 + text "Being evil makes" + line "me feel so alive!" + done _SaffronCityText6: ; a637e (29:637e) - db $0, "Ow! Watch where", $4f - db "you're walking!", $57 + text "Ow! Watch where" + line "you're walking!" + done _SaffronCityText7: ; a639e (29:639e) - db $0, "With SILPH under", $4f - db "control, we can", $55 - db "exploit #MON", $55 - db "around the world!", $57 + text "With SILPH under" + line "control, we can" + next "exploit #MON" + next "around the world!" + done _SaffronCityText8: ; a63df (29:63df) - db $0, "You beat TEAM", $4f - db "ROCKET all alone?", $55 - db "That's amazing!", $57 + text "You beat TEAM" + line "ROCKET all alone?" + next "That's amazing!" + done _SaffronCityText9: ; a640f (29:640f) - db $0, "Yeah! TEAM ROCKET", $4f - db "is gone!", $55 - db "It's safe to go", $55 - db "out again!", $57 + text "Yeah! TEAM ROCKET" + line "is gone!" + next "It's safe to go" + next "out again!" + done _SaffronCityText10: ; a6445 (29:6445) - db $0, "People should be", $4f - db "flocking back to", $55 - db "SAFFRON now.", $57 + text "People should be" + line "flocking back to" + next "SAFFRON now." + done _SaffronCityText11: ; a6475 (29:6475) - db $0, "I flew here on my", $4f - db "PIDGEOT when I", $55 - db "read about SILPH.", $51 - db "It's already over?", $4f - db "I missed the", $55 - db "media action.", $57 + text "I flew here on my" + line "PIDGEOT when I" + next "read about SILPH." + + page "It's already over?" + line "I missed the" + next "media action." + done _SaffronCityText12: ; a64d6 (29:64d6) db $0, "PIDGEOT: Bi bibii!@@" _SaffronCityText13: ; a64eb (29:64eb) - db $0, "I saw ROCKET", $4f - db "BOSS escaping", $55 - db "SILPH's building.", $57 + text "I saw ROCKET" + line "BOSS escaping" + next "SILPH's building." + done _SaffronCityText14: ; a6518 (29:6518) - db $0, "I'm a security", $4f - db "guard.", $51 - db "Suspicious kids I", $4f - db "don't allow in!", $57 + text "I'm a security" + line "guard." + + page "Suspicious kids I" + line "don't allow in!" + done _SaffronCityText15: ; a654f (29:654f) - db $0, "...", $4f - db "Snore...", $51 - db "Hah! He's taking", $4f - db "a snooze!", $57 + text "..." + line "Snore..." + + page "Hah! He's taking" + line "a snooze!" + done _SaffronCityText16: ; a6577 (29:6577) - db $0, "SAFFRON CITY", $4f - db "Shining, Golden", $55 - db "Land of Commerce", $57 + text "SAFFRON CITY" + line "Shining, Golden" + next "Land of Commerce" + done _SaffronCityText17: ; a65a6 (29:65a6) - db $0, "FIGHTING DOJO", $57 + text "FIGHTING DOJO" + done _SaffronCityText18: ; a65b5 (29:65b5) db $0, "SAFFRON CITY", $4f @@ -128422,36 +131152,46 @@ _SaffronCityText18: ; a65b5 (29:65b5) db "Psychic #MON!", $57 _SaffronCityText20: ; a65f8 (29:65f8) - db $0, "TRAINER TIPS", $51 - db "FULL HEAL cures", $4f - db "all ailments like", $55 - db "sleep and burns.", $51 - db "It costs a bit", $4f - db "more, but it's", $55 - db "more convenient.", $57 + text "TRAINER TIPS" + + page "FULL HEAL cures" + line "all ailments like" + next "sleep and burns." + + page "It costs a bit" + line "more, but it's" + next "more convenient." + done _SaffronCityText21: ; a6667 (29:6667) - db $0, "TRAINER TIPS", $51 - db "New GREAT BALL", $4f - db "offers improved", $55 - db "capture rates.", $51 - db "Try it on those", $4f - db "hard-to-catch", $55 - db "#MON.", $57 + text "TRAINER TIPS" + + page "New GREAT BALL" + line "offers improved" + next "capture rates." + + page "Try it on those" + line "hard-to-catch" + next "#MON." + done _SaffronCityText22: ; a66c7 (29:66c7) - db $0, "SILPH CO.", $4f - db "OFFICE BUILDING", $57 + text "SILPH CO." + line "OFFICE BUILDING" + done _SaffronCityText24: ; a66e2 (29:66e2) - db $0, "MR.PSYCHIC's", $4f - db "HOUSE", $57 + text "MR.PSYCHIC's" + line "HOUSE" + done _SaffronCityText25: ; a66f5 (29:66f5) - db $0, "SILPH's latest", $4f - db "product!", $51 - db "Release to be", $4f - db "determined...", $57 + text "SILPH's latest" + line "product!" + + page "Release to be" + line "determined..." + done _ItemUseBallText00: ; a6729 (29:6729) db 0,"It dodged the",$4F @@ -128502,111 +131242,134 @@ _ItemUseBallText06: ; a6835 (29:6835) db 0,"!@@" _SurfingGotOnText: ; a685e (29:685e) - db $0, $52, " got on", $4f - db "@" + text $52, " got on" + line "@" TX_RAM $cd6d - db $0, "!", $58 + text "!" + prompt _SurfingNoPlaceToGetOffText: ; a686f (29:686f) - db $0, "There's no place", $4f - db "to get off!", $58 + text "There's no place" + line "to get off!" + prompt _VitaminStatRoseText: ; a688c (29:688c) TX_RAM $cd6d - db $0, "'s", $4f - db "@" + text "'s" + line "@" TX_RAM $cf4b - db $0, " rose.", $58 + text " rose." + prompt _VitaminNoEffectText: ; a689e (29:689e) - db $0, "It won't have any", $4f - db "effect.", $58 + text "It won't have any" + line "effect." + prompt _ThrewBaitText: ; a68b8 (29:68b8) - db $0, $52, " threw", $4f - db "some BAIT.", $57 + text $52, " threw" + line "some BAIT." + done _ThrewRockText: ; a68cc (29:68cc) - db $0, $52, " threw a", $4f - db "ROCK.", $57 + text $52, " threw a" + line "ROCK." + done _PlayedFluteNoEffectText: ; a68dd (29:68dd) - db $0, "Played the #", $4f - db "FLUTE.", $51 - db "Now, that's a", $4f - db "catchy tune!", $58 + text "Played the #" + line "FLUTE." + + page "Now, that's a" + line "catchy tune!" + prompt _FluteWokeUpText: ; a690c (29:690c) - db $0, "All sleeping", $4f - db "#MON woke up.", $58 + text "All sleeping" + line "#MON woke up." + prompt _PlayedFluteHadEffectText: ; a6928 (29:6928) - db $0, $52, " played the", $4f - db "# FLUTE.@@" + text $52, " played the" + line "# FLUTE.@@" _CoinCaseNumCoinsText: ; a6940 (29:6940) - db $0, "Coins", $4f - db "@" + text "Coins" + line "@" db $2, $a4, $d5, $c2 ; print BCD number - db $0, " ", $58 + text " " + prompt _ItemfinderFoundItemText: ; a694f (29:694f) - db $0, "Yes! ITEMFINDER", $4f - db "indicates there's", $55 - db "an item nearby.", $58 + text "Yes! ITEMFINDER" + line "indicates there's" + next "an item nearby." + prompt _ItemfinderFoundNothingText: ; a6981 (29:6981) - db $0, "Nope! ITEMFINDER", $4f - db "isn't responding.", $58 + text "Nope! ITEMFINDER" + line "isn't responding." + prompt _RaisePPWhichTechniqueText: ; a69a4 (29:69a4) - db $0, "Raise PP of which", $4f - db "technique?", $57 + text "Raise PP of which" + line "technique?" + done _RestorePPWhichTechniqueText: ; a69c2 (29:69c2) - db $0, "Restore PP of", $4f - db "which technique?", $57 + text "Restore PP of" + line "which technique?" + done _PPMaxedOutText: ; a69e2 (29:69e2) TX_RAM $cf4b - db $0, "'s PP", $4f - db "is maxed out.", $58 + text "'s PP" + line "is maxed out." + prompt _PPIncreasedText: ; a69f9 (29:69f9) TX_RAM $cf4b - db $0, "'s PP", $4f - db "increased.", $58 + text "'s PP" + line "increased." + prompt _PPRestoredText: ; a6a0d (29:6a0d) - db $0, "PP was restored.", $58 + text "PP was restored." + prompt _BootedUpTMText: ; a6a1f (29:6a1f) - db $0, "Booted up a TM!", $58 + text "Booted up a TM!" + prompt _BootedUpHMText: ; a6a30 (29:6a30) - db $0, "Booted up an HM!", $58 + text "Booted up an HM!" + prompt _TeachMachineMoveText: ; a6a42 (29:6a42) - db $0, "It contained", $4f - db "@" + text "It contained" + line "@" TX_RAM $cf4b - db $0, "!", $51 - db "Teach @" + text "!" + + page "Teach @" TX_RAM $cf4b - db $0, $4f - db "to a #MON?", $57 + db $0 + line "to a #MON?" + done _MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) TX_RAM $cd6d - db $0, " is not", $4f - db "compatible with", $55 - db "@" + text " is not" + line "compatible with" + next "@" TX_RAM $cf4b - db $0, ".", $51 - db "It can't learn", $4f - db "@" + text "." + + page "It can't learn" + line "@" TX_RAM $cf4b - db $0, ".", $58 + text "." + prompt _ItemUseNotTimeText: ; a6aa6 (29:6aa6) db $0, "OAK: ", $52, "!", $4f @@ -128614,33 +131377,40 @@ _ItemUseNotTimeText: ; a6aa6 (29:6aa6) db "time to use that! ", $58 _ItemUseNotYoursToUseText: ; a6ad0 (29:6ad0) - db $0, "This isn't yours", $4f - db "to use!", $58 + text "This isn't yours" + line "to use!" + prompt _ItemUseNoEffectText: ; a6ae9 (29:6ae9) - db $0, "It won't have any", $4f - db "effect.", $58 + text "It won't have any" + line "effect." + prompt _ThrowBallAtTrainerMonText1: ; a6b03 (29:6b03) - db $0, "The trainer", $4f - db "blocked the BALL!", $58 + text "The trainer" + line "blocked the BALL!" + prompt _ThrowBallAtTrainerMonText2: ; a6b22 (29:6b22) - db $0, "Don't be a thief!", $58 + text "Don't be a thief!" + prompt _NoCyclingAllowedHereText: ; a6b34 (29:6b34) - db $0, "No cycling", $4e, "allowed here.", $58 + text "No cycling", $4e, "allowed here." + prompt _NoSurfingHereText: ; a6b4e (29:6b4e) - db $0, "No SURFing on", $4f - db "@" + text "No SURFing on" + line "@" TX_RAM $cd6d - db $0, " here!", $58 + text " here!" + prompt _BoxFullCannotThrowBallText: ; a6b69 (29:6b69) - db $0, "The #MON BOX", $4f - db "is full! Can't", $55 - db "use that item!", $58 + text "The #MON BOX" + line "is full! Can't" + next "use that item!" + prompt SECTION "bank2A",ROMX,BANK[$2A] @@ -128649,22 +131419,25 @@ _ItemUseText001: ; a8000 (2a:4000) _ItemUseText002: ; a8009 (2a:4009) TX_RAM $cf4b - db $0, "!", $57 + text "!" + done _GotOnBicycleText1: ; a800f (2a:400f) - db $0, $52, " got on the@@" + text $52, " got on the@@" _GotOnBicycleText2: ; a801e (2a:401e) TX_RAM $cf4b - db $0, "!", $58 + text "!" + prompt _GotOffBicycleText1: ; a8024 (2a:4024) - db $0, $52, " got off@@" + text $52, " got off@@" _GotOffBicycleText2: ; a8030 (2a:4030) - db $0, "the @" + text "the @" TX_RAM $cf4b - db $0, ".", $58 + text "." + prompt _ThrewAwayItemText: ; a803c (2a:403c) db $0, "Threw away", $4f @@ -128672,51 +131445,59 @@ _ThrewAwayItemText: ; a803c (2a:403c) UnnamedText_a8049: ; a8049 (2a:4049) TX_RAM $cd6d - db $0, ".", $58 + text "." + prompt _IsItOKToTossItemText: ; a804f (2a:404f) - db $0, "Is it OK to toss", $4f - db "@" + text "Is it OK to toss" + line "@" TX_RAM $cf4b - db $0, "?", $58 + text "?" + prompt _TooImportantToTossText: ; a8068 (2a:4068) - db $0, "That's too impor-", $4f - db "tant to toss!", $58 + text "That's too impor-" + line "tant to toss!" + prompt _UnnamedText_2fe3b: ; a8088 (2a:4088) TX_RAM $cd6d - db $0, " knows", $4f - db "@" + text " knows" + line "@" TX_RAM $cf4b - db $0, "!", $58 + text "!" + prompt _UnnamedText_71d88: ; a809a (2a:409a) - db $0, "Okay, connect the", $4f - db "cable like so!", $58 + text "Okay, connect the" + line "cable like so!" + prompt _UnnamedText_71d8d: ; a80bc (2a:40bc) - db $0, $52, " traded", $4f - db "@" + text $52, " traded" + line "@" TX_RAM $cd13 - db $0, " for", $55 - db "@" + text " for" + next "@" TX_RAM $cd1e - db $0, "!@@" + text "!@@" _UnnamedText_71d94: ; a80d8 (2a:40d8) - db $0, "I'm looking for", $4f - db "@" + text "I'm looking for" + line "@" TX_RAM $cd13 - db $0, "! Wanna", $51 - db "trade one for", $4f - db "@" + text "! Wanna" + + page "trade one for" + line "@" TX_RAM $cd1e - db $0, "? ", $57 + text "? " + done _UnnamedText_71d99: ; a810b (2a:410b) - db $0, "Awww!", $4f - db "Oh well...", $57 + text "Awww!" + line "Oh well..." + done _UnnamedText_71d9e: ; a811d (2a:411d) db $0, "What? That's not", $4f @@ -128724,93 +131505,115 @@ _UnnamedText_71d9e: ; a811d (2a:411d) UnnamedText_a812f: ; a812f (2a:412f) TX_RAM $cd13 - db $0, "!", $51 - db "If you get one,", $4f - db "come back here!", $57 + text "!" + + page "If you get one," + line "come back here!" + done _UnnamedText_71da3: ; a8155 (2a:4155) - db $0, "Hey thanks!", $57 + text "Hey thanks!" + done _UnnamedText_71da8: ; a8162 (2a:4162) - db $0, "Isn't my old", $4f - db "@" + text "Isn't my old" + line "@" TX_RAM $cd1e - db $0, " great?", $57 + text " great?" + done _UnnamedText_71dad: ; a817c (2a:417c) - db $0, "Hello there! Do", $4f - db "you want to trade", $51 - db "your @" + text "Hello there! Do" + line "you want to trade" + + page "your @" TX_RAM $cd13 - db $0, $4f - db "for @" + db $0 + line "for @" TX_RAM $cd1e - db $0, "?", $57 + text "?" + done _UnnamedText_71db2: ; a81b5 (2a:41b5) - db $0, "Well, if you", $4f - db "don't want to...", $57 + text "Well, if you" + line "don't want to..." + done _UnnamedText_71db7: ; a81d3 (2a:41d3) - db $0, "Hmmm? This isn't", $4f - db "@" + text "Hmmm? This isn't" + line "@" TX_RAM $cd13 - db $0, ".", $51 - db "Think of me when", $4f - db "you get one.", $57 + text "." + + page "Think of me when" + line "you get one." + done _UnnamedText_71dbc: ; a8209 (2a:4209) - db $0, "Thanks!", $57 + text "Thanks!" + done _UnnamedText_71dc1: ; a8212 (2a:4212) - db $0, "The @" + text "The @" TX_RAM $cd13 - db $0, " you", $4f - db "traded to me", $51 - db "went and evolved!", $57 + text " you" + line "traded to me" + + page "went and evolved!" + done _UnnamedText_71dc6: ; a8240 (2a:4240) - db $0, "Hi! Do you have", $4f - db "@" + text "Hi! Do you have" + line "@" TX_RAM $cd13 - db $0, "?", $51 - db "Want to trade it", $4f - db "for @" + text "?" + + page "Want to trade it" + line "for @" TX_RAM $cd1e - db $0, "?", $57 + text "?" + done _UnnamedText_71dcb: ; a8274 (2a:4274) - db $0, "That's too bad.", $57 + text "That's too bad." + done _UnnamedText_71dd0: ; a8284 (2a:4284) - db $0, "...This is no", $4f - db "@" + text "...This is no" + line "@" TX_RAM $cd13 - db $0, ".", $51 - db "If you get one,", $4f - db "trade it with me!", $57 + text "." + + page "If you get one," + line "trade it with me!" + done _UnnamedText_71dd5: ; a82bc (2a:42bc) - db $0, "Thanks pal!", $57 + text "Thanks pal!" + done _UnnamedText_71dda: ; a82c9 (2a:42c9) - db $0, "How is my old", $4f - db "@" + text "How is my old" + line "@" TX_RAM $cd1e - db $0, "?", $51 - db "My @" + text "?" + + page "My @" TX_RAM $cd13 - db $0, " is", $4f - db "doing great!", $57 + text " is" + line "doing great!" + done _UnnamedText_ef7d ; a82f8 (2a:42f8) - db $0, "There isn't", $4f - db "anything to CUT!", $58 + text "There isn't" + line "anything to CUT!" + prompt _UsedCutText: ; a8315 (2a:4315) TX_RAM $cd6d - db $0, " hacked", $4f - db "away with CUT!", $58 + text " hacked" + line "away with CUT!" + prompt SECTION "bank2B",ROMX,BANK[$2B] @@ -128984,3 +131787,4 @@ MoveNames: ; b0000 (2c:4000) db "SLASH@" db "SUBSTITUTE@" db "STRUGGLE@" + From 1295e2a605b52dac93b2163601d5afb8548f8b1d Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 20:16:52 -0500 Subject: [PATCH 14/41] clean up missed text macros in main.asm --- main.asm | 2378 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 1308 insertions(+), 1070 deletions(-) diff --git a/main.asm b/main.asm index c7279038..ae1d0831 100644 --- a/main.asm +++ b/main.asm @@ -25013,8 +25013,9 @@ ItemUseMedicine: ; dabb (3:5abb) ld [$cd6a],a ; item use failed jp PrintText .emptyPartyText - db $0,"You don't have",$4F - db "any #MON!",$58 + text "You don't have" + line "any #MON!" + prompt .notUsingSoftboiled call DisplayPartyMenu .getPartyMonDataAddress @@ -85139,16 +85140,18 @@ UnnamedText_561bd: ; 561bd (15:61bd) UnnamedText_561c2: ; 561c2 (15:61c2) TX_FAR _UnnamedText_561c2 ; 0xa06e8 - db $0B, "@" + db $0B + db "@" UnnamedText_561c8: ; 561c8 - db $51 - db "つり こそ", $4f - db "おとこの ロマン だ!", $51 - db "へぼいつりざおは", $4f - db "コイキングしか つれ なんだが", $4f - db "この いいつりざおなら", $4f - db "もっと いいもんが つれるんじゃ!", $57 + page "つり こそ" + line "おとこの ロマン だ!" + + page "へぼいつりざおは" + line "コイキングしか つれ なんだが" + line "この いいつりざおなら" + line "もっと いいもんが つれるんじゃ!" + done UnnamedText_56212: ; 56212 (15:6212) TX_FAR _UnnamedText_56212 @@ -115590,7 +115593,7 @@ _CardKeyFailText: ; 80029 (20:4029) _UnnamedText_33cf: ; 80045 (20:4045) TX_RAM $cd6d - db $0, ": @@" + text ": @@" _UnnamedText_70847: ; 8004d (20:404d) text "Not even a nibble!" @@ -115643,12 +115646,11 @@ _NoMoreRoomForItemText: ; 8012a (20:412a) done _UnnamedText_59091: ; 80143 (20:4143) - db $0, "Hi! Remember me?", $4f - db "I'm PROF.OAK's", $55 - db "AIDE!", $51 - db "If you caught @" + text "Hi! Remember me?" + line "I'm PROF.OAK's" + next "AIDE!" -UnnamedText_80177: ; 80177 (20:4177) + page "If you caught @" TX_NUM $ffdb, 1, 3 db $0 line "kinds of #MON," @@ -115667,14 +115669,14 @@ UnnamedText_80177: ; 80177 (20:4177) done _UnnamedText_59096: ; 801e4 (20:41e4) - db $0, "Let's see...", $4f - db "Uh-oh! You have", $55 - db "caught only @" + text "Let's see..." + line "Uh-oh! You have" + next "caught only @" UnnamedText_8020e: ; 8020e (20:420e) TX_NUM $ffdd, 1, 3 - text $55 - db "kinds of #MON!" + db $0 + next "kinds of #MON!" page "You need @" TX_NUM $ffdb, 1, 3 @@ -115698,10 +115700,8 @@ _UnnamedText_5909b: ; 80250 (20:4250) done _UnnamedText_590a0: ; 8028c (20:428c) - db $0, "Great! You have", $4f - db "caught @" - -UnnamedText_802a5: ; 802a5 (20:42a5) + text "Great! You have" + line "caught @" TX_NUM $ffdd, 1, 3 text " kinds " next "of #MON!" @@ -115717,12 +115717,10 @@ _UnnamedText_590a5: ; 802d9 (20:42d9) text "!@@" _UnnamedText_590ab: ; 802ec (20:42ec) - db $0, "Oh! I see you", $4f - db "don't have any", $55 - db "room for the", $55 - db "@" - -UnnamedText_80317: ; 80317 (20:4317) + text "Oh! I see you" + line "don't have any" + next "room for the" + next "@" TX_RAM $cc5b text "." done @@ -115972,7 +115970,8 @@ _MtMoon1Text14: ; 8093a (20:493a) done _UnnamedText_51a48: ; 8095c (20:495c) - db $0, $57 + db $0 + done _UnnamedText_49f24: ; 8095e (20:495e) text "You want the" @@ -116130,20 +116129,27 @@ _SSAnne2Text1: ; 80d34 (20:4d34) done _SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) - db $0, $53, ": Bonjour!", $4f - db $52, "!", $51 - db "Imagine seeing", $4f - db "you here!", $51 - db $52, ", were you", $4f - db "really invited?", $51 - db "So how's your", $4f - db "#DEX coming?", $51 - db "I already caught", $4f - db "40 kinds, pal!", $51 - db "Different kinds", $4f - db "are everywhere!", $51 - db "Crawl around in", $4f - db "grassy areas!", $57 + text $53, ": Bonjour!" + line $52, "!" + + page "Imagine seeing" + line "you here!" + + page $52, ", were you" + line "really invited?" + + page "So how's your" + line "#DEX coming?" + + page "I already caught" + line "40 kinds, pal!" + + page "Different kinds" + line "are everywhere!" + + page "Crawl around in" + line "grassy areas!" + done _SSAnneRivalDefeatedText: ; 80e57 (20:4e57) text "Humph!" @@ -116162,15 +116168,19 @@ _SSAnneRivalWonText: ; 80e81 (20:4e81) prompt _SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) - db $0, $53, ": I heard", $4f - db "there was a CUT", $55 - db "master on board.", $51 - db "But, he was just a", $4f - db "seasick, old man!", $51 - db "But, CUT itself is", $4f - db "really useful!", $51 - db "You should go see", $4f - db "him! Smell ya!", $57 + text $53, ": I heard" + line "there was a CUT" + next "master on board." + + page "But, he was just a" + line "seasick, old man!" + + page "But, CUT itself is" + line "really useful!" + + page "You should go see" + line "him! Smell ya!" + done _SSAnne3Text1: ; 80f4b (20:4f4b) text "Our CAPTAIN is a" @@ -116304,29 +116314,36 @@ _UnnamedText_61816: ; 812a6 (20:52a6) done _SSAnne7RubText: ; 812dd (20:52dd) - db $0, "CAPTAIN: Ooargh...", $4f - db "I feel hideous...", $55 - db "Urrp! Seasick...", $51 - db $52, " rubbed", $4f - db "the CAPTAIN's", $55 - db "back!", $51 - db "Rub-rub...", $4f - db "Rub-rub...@@" + text "CAPTAIN: Ooargh..." + line "I feel hideous..." + next "Urrp! Seasick..." + + page $52, " rubbed" + line "the CAPTAIN's" + next "back!" + + page "Rub-rub..." + line "Rub-rub...@@" _ReceivingHM01Text: ; 81347 (20:5347) - db $0, "CAPTAIN: Whew!", $4f - db "Thank you! I", $55 - db "feel much better!", $51 - db "You want to see", $4f - db "my CUT technique?", $51 - db "I could show you", $4f - db "if I wasn't ill...", $51 - db "I know! You can", $4f - db "have this!", $51 - db "Teach it to your", $4f - db "#MON and you", $55 - db "can see it CUT", $55 - db "any time!", $58 + text "CAPTAIN: Whew!" + line "Thank you! I" + next "feel much better!" + + page "You want to see" + line "my CUT technique?" + + page "I could show you" + line "if I wasn't ill..." + + page "I know! You can" + line "have this!" + + page "Teach it to your" + line "#MON and you" + next "can see it CUT" + next "any time!" + prompt _ReceivedHM01Text: ; 8140d (20:540d) text $52, " got" @@ -116335,10 +116352,12 @@ _ReceivedHM01Text: ; 8140d (20:540d) text "!@@" _UnnamedText_61932: ; 8141c (20:541c) - db $0, "CAPTAIN: Whew!", $51 - db "Now that I'm not", $4f - db "sick any more, I", $55 - db "guess it's time.", $57 + text "CAPTAIN: Whew!" + + page "Now that I'm not" + line "sick any more, I" + next "guess it's time." + done _HM01NoRoomText: ; 8145d (20:545d) text "Oh no! You have" @@ -116358,8 +116377,8 @@ _SSAnne7Text3: ; 8149d (20:549d) done _SSAnne8Text8: ; 814d7 (20:54d7) - db $0, "WIGGLYTUFF: Puup", $4f - db "pupuu!@@" + text "WIGGLYTUFF: Puup" + line "pupuu!@@" _SSAnne8BattleText1: ; 814f1 (20:54f1) text "I travel alone" @@ -116577,8 +116596,8 @@ _SSAnne9AfterBattleText4: ; 81a8b (20:5a8b) done _SSAnne10Text8: ; 81aaa (20:5aaa) - db $0, "MACHOKE: Gwoh!", $4f - db "Goggoh!@@" + text "MACHOKE: Gwoh!" + line "Goggoh!@@" _SSAnne10BattleText1: ; 81ac3 (20:5ac3) text "You know what they" @@ -117526,22 +117545,26 @@ _SilphCo7AfterBattleText4: ; 84861 (21:4861) done _UnnamedText_51ebe: ; 8488d (21:488d) - db $0, $53, ": What", $4f - db "kept you ", $52, "?", $57 + text $53, ": What" + line "kept you ", $52, "?" + done _UnnamedText_51ec3: ; 848a2 (21:48a2) - db $0, $53, ": Hahaha!", $4f - db "I thought you'd", $55 - db "turn up if I", $55 - db "waited here!", $51 - db "I guess TEAM", $4f - db "ROCKET slowed you", $55 - db "down! Not that I", $55 - db "care!", $51 - db "I saw you in", $4f - db "SAFFRON, so I", $55 - db "decided to see if", $55 - db "you got better!", $57 + text $53, ": Hahaha!" + line "I thought you'd" + next "turn up if I" + next "waited here!" + + page "I guess TEAM" + line "ROCKET slowed you" + next "down! Not that I" + next "care!" + + page "I saw you in" + line "SAFFRON, so I" + next "decided to see if" + next "you got better!" + done _UnnamedText_51ec8: ; 8494a (21:494a) text "Oh ho!" @@ -117550,11 +117573,13 @@ _UnnamedText_51ec8: ; 8494a (21:494a) prompt _UnnamedText_51ecd: ; 84975 (21:4975) - db $0, $53, ": How can", $4f - db "I put this?", $51 - db "You're not good", $4f - db "enough to play", $55 - db "with us big boys!", $58 + text $53, ": How can" + line "I put this?" + + page "You're not good" + line "enough to play" + next "with us big boys!" + prompt _UnnamedText_51ed2: ; 849bd (21:49bd) text "Well, ", $52, "!" @@ -117747,20 +117772,25 @@ _SilphCo10AfterBattleText2: ; 84e66 (21:4e66) done _SilphCoPresidentText: ; 84e9b (21:4e9b) - db $0, "PRESIDENT: Thank", $4f - db "you for saving", $55 - db "SILPH!", $51 - db "I will never", $4f - db "forget you saved", $55 - db "us in our moment", $55 - db "of peril!", $51 - db "I have to thank", $4f - db "you in some way!", $51 - db "Because I am rich,", $4f - db "I can give you", $55 - db "anything!", $51 - db "Here, maybe this", $4f - db "will do!", $58 + text "PRESIDENT: Thank" + line "you for saving" + next "SILPH!" + + page "I will never" + line "forget you saved" + next "us in our moment" + next "of peril!" + + page "I have to thank" + line "you in some way!" + + page "Because I am rich," + line "I can give you" + next "anything!" + + page "Here, maybe this" + line "will do!" + prompt _ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) text $52, " got a" @@ -117769,18 +117799,22 @@ _ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) text "!@@" _UnnamedText_6231c: ; 84f74 (21:4f74) - db $0, "PRESIDENT: You", $4f - db "can't buy that", $55 - db "anywhere!", $51 - db "It's our secret", $4f - db "prototype MASTER", $55 - db "BALL!", $51 - db "It will catch any", $4f - db "#MON without", $55 - db "fail!", $51 - db "You should be", $4f - db "quiet about using", $55 - db "it, though.", $57 + text "PRESIDENT: You" + line "can't buy that" + next "anywhere!" + + page "It's our secret" + line "prototype MASTER" + next "BALL!" + + page "It will catch any" + line "#MON without" + next "fail!" + + page "You should be" + line "quiet about using" + next "it, though." + done _SilphCoMasterBallNoRoomText: ; 85013 (21:5013) text "You have no" @@ -117788,11 +117822,13 @@ _SilphCoMasterBallNoRoomText: ; 85013 (21:5013) done _SilphCo11Text2: ; 8502f (21:502f) - db $0, "SECRETARY: Thank", $4f - db "you for rescuing", $55 - db "all of us!", $51 - db "We admire your", $4f - db "courage.", $57 + text "SECRETARY: Thank" + line "you for rescuing" + next "all of us!" + + page "We admire your" + line "courage." + done _SilphCo11Text3: ; 85075 (21:5075) text "Ah ", $52, "!" @@ -117888,18 +117924,21 @@ _Mansion2AfterBattleText1: ; 85302 (21:5302) done _Mansion2Text3: ; 85336 (21:5336) - db $0, "Diary: July 5", $4f - db "Guyana,", $55 - db "South America", $51 - db "A new #MON was", $4f - db "discovered deep", $55 - db "in the jungle.", $57 + text "Diary: July 5" + line "Guyana," + next "South America" + + page "A new #MON was" + line "discovered deep" + next "in the jungle." + done _Mansion2Text4: ; 85389 (21:5389) - db $0, "Diary: July 10", $4f - db "We christened the", $55 - db "newly discovered", $55 - db "#MON, MEW.", $57 + text "Diary: July 10" + line "We christened the" + next "newly discovered" + next "#MON, MEW." + done _UnnamedText_520c2: ; 853c7 (21:53c7) text "A secret switch!" @@ -117946,10 +117985,12 @@ _Mansion3AfterBattleText2: ; 85475 (21:5475) done _Mansion3Text5: ; 854a3 (21:54a3) - db $0, "Diary: Feb. 6", $4f - db "MEW gave birth.", $51 - db "We named the", $4f - db "newborn MEWTWO.", $57 + text "Diary: Feb. 6" + line "MEW gave birth." + + page "We named the" + line "newborn MEWTWO." + done _Mansion4BattleText1: ; 854df (21:54df) text "Uh-oh. Where am" @@ -118004,8 +118045,9 @@ _SafariZoneEastText6: ; 855ec (21:55ec) done _SafariZoneEastText7: ; 8562b (21:562b) - db $0, "CENTER AREA", $4f - db "NORTH: AREA 2", $57 + text "CENTER AREA" + line "NORTH: AREA 2" + done _SafariZoneNorthText3: ; 85646 (21:5646) text "REST HOUSE" @@ -118046,14 +118088,17 @@ _SafariZoneWestText5: ; 85719 (21:5719) done _SafariZoneWestText6: ; 85725 (21:5725) - db $0, "REQUEST NOTICE", $51 - db "Please find the", $4f - db "SAFARI WARDEN's", $55 - db "lost GOLD TEETH.", $55 - db "They're around", $55 - db "here somewhere.", $51 - db "Reward offered!", $4f - db "Contact: WARDEN", $57 + text "REQUEST NOTICE" + + page "Please find the" + line "SAFARI WARDEN's" + next "lost GOLD TEETH." + next "They're around" + next "here somewhere." + + page "Reward offered!" + line "Contact: WARDEN" + done _SafariZoneWestText7: ; 857a3 (21:57a3) text "TRAINER TIPS" @@ -118066,8 +118111,9 @@ _SafariZoneWestText7: ; 857a3 (21:57a3) done _SafariZoneWestText8: ; 857ed (21:57ed) - db $0, "AREA 3", $4f - db "EAST: CENTER AREA", $57 + text "AREA 3" + line "EAST: CENTER AREA" + done _SafariZoneCenterText2: ; 85807 (21:5807) text "REST HOUSE" @@ -118082,9 +118128,10 @@ _SafariZoneCenterText3: ; 85813 (21:5813) done _SafariZoneRestHouse1Text1: ; 85851 (21:5851) - db $0, "SARA: Where did", $4f - db "my boy friend,", $55 - db "ERIK, go?", $57 + text "SARA: Where did" + line "my boy friend," + next "ERIK, go?" + done _SafariZoneRestHouse1Text2: ; 8587b (21:587b) text "I'm catching" @@ -118304,54 +118351,70 @@ _LanceAfterBattleText: ; 85e9e (21:5e9e) next "champion!@@" _HallofFameRoomText1: ; 85fb5 (21:5fb5) - db $0, "OAK: Er-hem!", $4f - db "Congratulations", $55 - db $52, "!", $51 - db "This floor is the", $4f - db "#MON HALL OF", $55 - db "FAME!", $51 - db "#MON LEAGUE", $4f - db "champions are", $55 - db "honored for their", $55 - db "exploits here!", $51 - db "Their #MON are", $4f - db "also recorded in", $55 - db "the HALL OF FAME!", $51 - db $52, "! You have", $4f - db "endeavored hard", $55 - db "to become the new", $55 - db "LEAGUE champion!", $51 - db "Congratulations,", $4f - db $52, ", you and", $55 - db "your #MON are", $55 - db "HALL OF FAMERs!", $57 + text "OAK: Er-hem!" + line "Congratulations" + next $52, "!" + + page "This floor is the" + line "#MON HALL OF" + next "FAME!" + + page "#MON LEAGUE" + line "champions are" + next "honored for their" + next "exploits here!" + + page "Their #MON are" + line "also recorded in" + next "the HALL OF FAME!" + + page $52, "! You have" + line "endeavored hard" + next "to become the new" + next "LEAGUE champion!" + + page "Congratulations," + line $52, ", you and" + next "your #MON are" + next "HALL OF FAMERs!" + done _UnnamedText_760f4: ; 860e1 (21:60e1) - db $0, $53, ": Hey!", $51 - db "I was looking", $4f - db "forward to seeing", $55 - db "you, ", $52, "!", $51 - db "My rival should", $4f - db "be strong to keep", $55 - db "me sharp!", $51 - db "While working on", $4f - db "#DEX, I looked", $55 - db "all over for", $55 - db "powerful #MON!", $51 - db "Not only that, I", $4f - db "assembled teams", $55 - db "that would beat", $55 - db "any #MON type!", $51 - db "And now!", $51 - db "I'm the #MON", $4f - db "LEAGUE champion!", $51 - db $52, "! Do you", $4f - db "know what that", $55 - db "means?", $51 - db "I'll tell you!", $51 - db "I am the most", $4f - db "powerful trainer", $55 - db "in the world!", $57 + text $53, ": Hey!" + + page "I was looking" + line "forward to seeing" + next "you, ", $52, "!" + + page "My rival should" + line "be strong to keep" + next "me sharp!" + + page "While working on" + line "#DEX, I looked" + next "all over for" + next "powerful #MON!" + + page "Not only that, I" + line "assembled teams" + next "that would beat" + next "any #MON type!" + + page "And now!" + + page "I'm the #MON" + line "LEAGUE champion!" + + page $52, "! Do you" + line "know what that" + next "means?" + + page "I'll tell you!" + + page "I am the most" + line "powerful trainer" + next "in the world!" + done _UnnamedText_760f9: ; 8623b (21:623b) text "NO!" @@ -118400,18 +118463,20 @@ _UnnamedText_76103: ; 8632f (21:632f) done _GaryText2: ; 863c1 (21:63c1) - db $0, "OAK: ", $52, "!", $57 + text "OAK: ", $52, "!" + done _UnnamedText_76120: ; 863ca (21:63ca) - db $0, "OAK: So, you won!", $4f - db "Congratulations!", $55 - db "You're the new", $55 - db "#MON LEAGUE", $55 - db "champion!", $51 - db "You've grown up so", $4f - db "much since you", $55 - db "first left with", $55 - db "@" + text "OAK: So, you won!" + line "Congratulations!" + next "You're the new" + next "#MON LEAGUE" + next "champion!" + + page "You've grown up so" + line "much since you" + next "first left with" + next "@" TX_RAM $cd6d text "!" @@ -118420,36 +118485,46 @@ _UnnamedText_76120: ; 863ca (21:63ca) done _UnnamedText_76125: ; 86463 (21:6463) - db $0, "OAK: ", $53, "! I'm", $4f - db "disappointed!", $51 - db "I came when I", $4f - db "heard you beat", $55 - db "the ELITE FOUR!", $51 - db "But, when I got", $4f - db "here, you had", $55 - db "already lost!", $51 - db $53, "! Do you", $4f - db "understand why", $55 - db "you lost?", $51 - db "You have forgotten", $4f - db "to treat your", $55 - db "#MON with", $55 - db "trust and love!", $51 - db "Without them, you", $4f - db "will never become", $55 - db "a champ again!", $57 + text "OAK: ", $53, "! I'm" + line "disappointed!" + + page "I came when I" + line "heard you beat" + next "the ELITE FOUR!" + + page "But, when I got" + line "here, you had" + next "already lost!" + + page $53, "! Do you" + line "understand why" + next "you lost?" + + page "You have forgotten" + line "to treat your" + next "#MON with" + next "trust and love!" + + page "Without them, you" + line "will never become" + next "a champ again!" + done _UnnamedText_7612a: ; 86567 (21:6567) - db $0, "OAK: ", $52, "!", $51 - db "You understand", $4f - db "that your victory", $55 - db "was not just your", $55 - db "own doing!", $51 - db "The bond you share", $4f - db "with your #MON", $55 - db "is marvelous!", $51 - db $52, "!", $4f - db "Come with me!", $57 + text "OAK: ", $52, "!" + + page "You understand" + line "that your victory" + next "was not just your" + next "own doing!" + + page "The bond you share" + line "with your #MON" + next "is marvelous!" + + page $52, "!" + line "Come with me!" + done _LoreleiBeforeBattleText: ; 865ef (21:65ef) text "Welcome to" @@ -118490,8 +118565,9 @@ _LoreleiAfterBattleText: ; 866d3 (21:66d3) done _UnnamedText_7627b: ; 86729 (21:6729) - db $0, "Someone's voice:", $4f - db "Don't run away!", $57 + text "Someone's voice:" + line "Don't run away!" + done _BrunoBeforeBattleText: ; 86749 (21:6749) text "I am BRUNO of" @@ -118527,8 +118603,9 @@ _BrunoAfterBattleText: ; 8681d (21:681d) done _UnnamedText_763d2: ; 8684b (21:684b) - db $0, "Someone's voice:", $4f - db "Don't run away!", $57 + text "Someone's voice:" + line "Don't run away!" + done _AgathaBeforeBattleText: ; 8686b (21:686b) text "I am AGATHA of" @@ -118571,8 +118648,9 @@ _AgathaAfterBattleText: ; 86998 (21:6998) done _AgathaText2: ; 869fd (21:69fd) - db $0, "Someone's voice:", $4f - db "Don't run away!", $57 + text "Someone's voice:" + line "Don't run away!" + done _RockTunnel2BattleText2: ; 86a1d (21:6a1d) text "Hikers leave twigs" @@ -118721,19 +118799,23 @@ _SeafoamIslands5Text5: ; 880a8 (22:40a8) done _AIBattleWithdrawText: ; 880be (22:40be) - db 1 - dw W_TRAINERNAME - db 0," with-",$4F,"drew @",1 - dw W_ENEMYMONNAME - db 0,"!",$58 + TX_RAM W_TRAINERNAME + text " with-" + line "drew @" + TX_RAM W_ENEMYMONNAME + text "!" + prompt + _AIBattleUseItemText: ; 880d5 (22:40d5) - db 1 - dw W_TRAINERNAME - db 0,$4F,"used @",1 - dw $CD6D - db 0,$55,"on @",1 - dw W_ENEMYMONNAME - db 0,"!",$58 + TX_RAM W_TRAINERNAME + db $0 + line "used @" + TX_RAM $CD6D + db $0 + next "on @" + TX_RAM W_ENEMYMONNAME + text "!" + prompt _UnnamedText_4160c: ; 880ef (22:40ef) TX_RAM $cf4b @@ -118771,22 +118853,19 @@ _UnnamedText_41647: ; 8813b (22:413b) done _UnnamedText_41655: ; 88150 (22:4150) - db $0, "Take good care of", $4f - db "@" - -UnnamedText_88164: ; 88164 (22:4164) + text "Take good care of" + line "@" TX_RAM $cd6d text "." done _UnnamedText_4166c: ; 8816a (22:416a) TX_RAM $d887 - db $0, " will", $4f - db "trade @" - -UnnamedText_8817b: ; 8817b (22:417b) + text " will" + line "trade @" TX_RAM $cd6d - db $0, $57 + db $0 + done _UnnamedText_41671: ; 88180 (22:4180) text "for ", $52, "'s" @@ -118825,10 +118904,8 @@ _UnnamedText_3747b: ; 881f7 (22:41f7) done _UnnamedText_37673: ; 88206 (22:4206) - db $0, " lined up!", $4f - db "Scored @" - -UnnamedText_8821a: ; 8821a (22:421a) + text " lined up!" + line "Scored @" TX_RAM $cf4b text " coins!" done @@ -118841,12 +118918,10 @@ _UnnamedText_37722: ; 88236 (22:4236) text "Yeah!@@" _UnnamedText_703fa: ; 8823e (22:423e) - db $0, "#DEX Seen:@" - -UnnamedText_8824c: ; 8824c (22:424c) + text "#DEX Seen:@" TX_NUM $cc5b, 1, 3 - db $0, $4f - db " Owned:@" + db $0 + line " Owned:@" TX_NUM $cc5c, 1, 3 db "@" @@ -118856,24 +118931,28 @@ _UnnamedText_703ff: ; 88267 (22:4267) _GymStatueText1: ; 88275 (22:4275) TX_RAM wGymCityName - db $0, $4f - db "#MON GYM", $55 - db "LEADER: @" + db $0 + line "#MON GYM" + next "LEADER: @" TX_RAM wGymLeaderName - db $0, $51 - db "WINNING TRAINERS:", $4f - db $53, $57 + db $0 + + page "WINNING TRAINERS:" + line $53 + done _GymStatueText2: ; 882a5 (22:42a5) TX_RAM wGymCityName - db $0, $4f - db "#MON GYM", $55 - db "LEADER: @" + db $0 + line "#MON GYM" + next "LEADER: @" TX_RAM wGymLeaderName - db $0, $51 - db "WINNING TRAINERS:", $4f - db $53, $55 - db $52, $57 + db $0 + + page "WINNING TRAINERS:" + line $53 + next $52 + done _ViridianCityPokecenterGuyText: ; 882d7 (22:42d7) text "#MON CENTERs" @@ -119028,12 +119107,15 @@ _UnnamedText_1e983: ; 88742 (22:4742) done _UnnamedText_1ea0d: ; 8877e (22:477e) - db $0, "PA: Ding-dong!", $51 - db "Time's up!", $58 + text "PA: Ding-dong!" + + page "Time's up!" + prompt _UnnamedText_1ea12: ; 88798 (22:4798) - db $0, "PA: Your SAFARI", $4f - db "GAME is over!", $57 + text "PA: Your SAFARI" + line "GAME is over!" + done _CinnabarGymQuizIntroText: ; 887b7 (22:47b7) text "#MON Quiz!" @@ -119129,24 +119211,31 @@ _BillsHousePokemonListText2: ; 88a40 (22:4a40) done _OakLabEmailText: ; 88a60 (22:4a60) - db $0, "There's an e-mail", $4f - db "message here!", $51 - db "...", $51 - db "Calling all", $4f - db "#MON trainers!", $51 - db "The elite trainers", $4f - db "of #MON LEAGUE", $55 - db "are ready to take", $55 - db "on all comers!", $51 - db "Bring your best", $4f - db "#MON and see", $55 - db "how you rate as a", $55 - db "trainer!", $51 - db "#MON LEAGUE HQ", $4f - db "INDIGO PLATEAU", $51 - db "PS: PROF.OAK,", $4f - db "please visit us!", $55 - db "...", $57 + text "There's an e-mail" + line "message here!" + + page "..." + + page "Calling all" + line "#MON trainers!" + + page "The elite trainers" + line "of #MON LEAGUE" + next "are ready to take" + next "on all comers!" + + page "Bring your best" + line "#MON and see" + next "how you rate as a" + next "trainer!" + + page "#MON LEAGUE HQ" + line "INDIGO PLATEAU" + + page "PS: PROF.OAK," + line "please visit us!" + next "..." + done _GameCornerCoinCaseText: ; 88b5b (22:4b5b) text "A COIN CASE is" @@ -119197,8 +119286,8 @@ _TurnPageText: ; 88c6f (22:4c6f) done _ViridianSchoolNotebookText5: ; 88c7f (22:4c7f) - db $0, "GIRL: Hey! Don't", $4f - db "look at my notes!@@" + text "GIRL: Hey! Don't" + line "look at my notes!@@" _ViridianSchoolNotebookText1: ; 88ca3 (22:4ca3) text "Looked at the" @@ -119476,8 +119565,8 @@ _FoundHiddenCoins2Text: ; 89523 (22:5523) text " coins!@@" _DroppedHiddenCoinsText: ; 8953b (22:553b) - text $51 - db "Oops! Dropped" + db $0 + page "Oops! Dropped" line "some coins!" done @@ -119521,9 +119610,11 @@ _UnnamedText_fc45: ; 8961f (22:561f) done _UnnamedText_3c1a8: ; 89639 (22:5639) - db $0, "PA: Ding-dong!", $51 - db "You are out of", $4f - db "SAFARI BALLs!", $58 + text "PA: Ding-dong!" + + page "You are out of" + line "SAFARI BALLs!" + prompt _UnnamedText_3c229: ; 89666 (22:5666) text "Wild @" @@ -119587,8 +119678,9 @@ _UnnamedText_3c7d3: ; 8971a (22:571a) done _Sony1WinText: ; 8972a (22:572a) - db $0, $53, ": Yeah! Am", $4f - db "I great or what?", $58 + text $53, ": Yeah! Am" + line "I great or what?" + prompt _PlayerBlackedOutText2: ; 89748 (22:5748) text $52, " is out of" @@ -119606,22 +119698,23 @@ _LinkBattleLostText: ; 89772 (22:5772) prompt _TrainerAboutToUseText: ; 89784 (22:5784) - db 1 - dw W_TRAINERNAME - db 0," is",$4F - db "about to use",$55,"@",1 + TX_RAM W_TRAINERNAME + text " is" + line "about to use",$55,"@",1 dw W_ENEMYMONNAME - db 0,"!",$51 - db "Will ",$52,$4F - db "change #MON?",$57 + text "!" + + page "Will ",$52 + line "change #MON?" + done _TrainerSentOutText: ; 897b4 (22:57b4) - db 1 - dw W_TRAINERNAME - db 0," sent",$4F - db "out @",1 - dw W_ENEMYMONNAME - db 0,"!",$57 + TX_RAM W_TRAINERNAME + text " sent" + line "out @" + TX_RAM W_ENEMYMONNAME + text "!" + done _UnnamedText_3cab4: ; 897c9 (22:57c9) text "There's no will" @@ -119670,85 +119763,101 @@ _UnnamedText_3d430: ; 89892 (22:5892) done _MultiHitText: ; 898aa (22:58aa) - db 0,"Hit the enemy",$4F,"@" + text "Hit the enemy" + line "@" TX_NUM W_NUMHITS,1,1 - db 0," times!",$58 + text " times!" + prompt _ScaredText: ; 898c7 (22:58c7) - db 1 - dw W_PLAYERMONNAME - db 0," is too",$4F - db "scared to move!",$58 + TX_RAM W_PLAYERMONNAME + text " is too" + line "scared to move!" + prompt _GetOutText: ; 898e3 (22:58e3) - db 0,"GHOST: Get out...",$4F - db "Get out...",$58 + text "GHOST: Get out..." + line "Get out..." + prompt _FastAsleepText: ; 89901 (22:5901) - db 0,$5A,$4F - db "is fast asleep!",$58 + text $5A + line "is fast asleep!" + prompt _WokeUpText: ; 89914 (22:5914) - db 0,$5A,$4F - db "woke up!",$58 + text $5A + line "woke up!" + prompt _FrozenText: ; 89920 (22:5920) - db 0,$5A,$4F - db "is frozen solid!",$58 + text $5A + line "is frozen solid!" + prompt _FullyParalyzedText: ; 89934 (22:5934) - db 0,$5A,"'s",$4F - db "fully paralyzed!",$58 + text $5A,"'s" + line "fully paralyzed!" + prompt _FlinchedText: ; 89949 (22:5949) - db 0,$5A,$4F - db "flinched!",$58 + text $5A + line "flinched!" + prompt _MustRechargeText: ; 89956 (22:5956) - db 0,$5A,$4F - db "must recharge!",$58 + text $5A + line "must recharge!" + prompt _DisabledNoMoreText: ; 89968 (22:5968) - db 0,$5A,"'s",$4F - db "disabled no more!",$58 + text $5A,"'s" + line "disabled no more!" + prompt _IsConfusedText: ; 8997e (22:597e) - db 0,$5A,$4F - db "is confused!",$58 + text $5A + line "is confused!" + prompt _HurtItselfText: ; 8998e (22:598e) - db 0,"It hurt itself in",$4F - db "its confusion!",$58 + text "It hurt itself in" + line "its confusion!" + prompt _ConfusedNoMoreText: ; 899b0 (22:59b0) - db 0,$5A,"'s",$4F - db "confused no more!",$58 + text $5A,"'s" + line "confused no more!" + prompt _SavingEnergyText: ; 899c6 (22:59c6) - db 0,$5A,$4F - db "is saving energy!",$58 + text $5A + line "is saving energy!" + prompt _UnleashedEnergyText: ; 899db (22:59db) - db 0,$5A,$4F - db "unleashed energy!",$58 + text $5A + line "unleashed energy!" + prompt _ThrashingAboutText: ; 899f0 (22:59f0) - db 0,$5A,"'s",$4F - db "thrashing about!",$57 + text $5A,"'s" + line "thrashing about!" + done _AttackContinuesText: ; 89a05 (22:5a05) - db 0,$5A,"'s",$4F - db "attack continues!",$57 + text $5A,"'s" + line "attack continues!" + done _CantMoveText: ; 89a1b (22:5a1b) - db 0,$5A,$4F - db "can't move!",$58 + text $5A + line "can't move!" + prompt _UnnamedText_3daa8: ; 89a29 (22:5a29) - db $0, $5a, "'s", $4f - db "@" - -UnnamedText_89a2e: ; 89a2e (22:5a2e) + text $5a, "'s" + line "@" TX_RAM $cd6d text " is" next "disabled!" @@ -119771,7 +119880,7 @@ _UnnamedText_3db43: ; 89a56 (22:5a56) _UnnamedText_3db4c: ; 89a62 (22:5a62) TX_RAM $cf4b - db $0, "@" + text "@" _UnnamedText_3db6c: ; 89a67 (22:5a67) text "!" @@ -119873,9 +119982,7 @@ _MirrorMoveFailedText: ; 89b96 (22:5b96) prompt _UnnamedText_3e887: ; 89baf (22:5baf) - db $0, "Hit @" - -UnnamedText_89bb5: ; 89bb5 (22:5bb5) + text "Hit @" TX_NUM $cd05, 1, 1 text " times!" prompt @@ -120242,10 +120349,9 @@ _BoxFullText: ; 0x8a198 _MonIsTakenOutText: ; 0x8a1b9 TX_RAM $cf4b - db $0, " is", $4f - db "taken out.", $55 - db "Got @" -UnnamedText_8a1d1: ; 8a1d1 (22:61d1) + text " is" + line "taken out." + next "Got @" TX_RAM $cf4b text "." prompt @@ -120269,10 +120375,8 @@ _ReleaseWhichMonText: ; 0x8a228 done _OnceReleasedText: ; 0x8a23d - db $0, "Once released,", $4f - db "@" - -MonIsGoneForeverText: ; 0x8a24e + text "Once released," + line "@" TX_RAM $cf4b text " is" next "gone forever. OK?" @@ -120280,9 +120384,9 @@ MonIsGoneForeverText: ; 0x8a24e _MonWasReleasedText: ; 0x8a268 TX_RAM $cf4b - db $0, " was", $4f - db "released outside.", $55 - db "Bye @" + text " was" + line "released outside." + next "Bye @" _UnnamedText_8a288: ; 8a288 (22:6288) TX_RAM $cf4b @@ -120290,37 +120394,39 @@ _UnnamedText_8a288: ; 8a288 (22:6288) prompt _RequireCoinCaseText: ; 8a28e (22:628e) - db 0,"A COIN CASE is",$4F - db "required!@@" + text "A COIN CASE is" + line "required!@@" _ExchangeCoinsForPrizesText: ; 8a2a9 (22:62a9) - db 0,"We exchange your",$4F - db "coins for prizes.",$58 + text "We exchange your" + line "coins for prizes." + prompt _WhichPrizeText: ; 8a2cd (22:62cd) - db 0,"Which prize do",$4F - db "you want?",$57 + text "Which prize do" + line "you want?" + done _HereYouGoText: ; 8a2e7 (22:62e7) - db 0,"Here you go!@@" + text "Here you go!@@" _SoYouWantPrizeText: ; 8a2f6 (22:62f6) - db 0,"So, you want",$4F - db "@" - db 1 - dw $CD6D - db 0,"?",$57 + text "So, you want" + line "@" + TX_RAM $CD6D + text "?" + done _SorryNeedMoreCoins: ; 8a30b (22:630b) - db 0,"Sorry, you need",$4F - db "more coins.@@" + text "Sorry, you need" + line "more coins.@@" _OopsYouDontHaveEnoughRoomText: ; 8a329 (22:6329) - db 0,"Oops! You don't",$4F - db "have enough room.@@" + text "Oops! You don't" + line "have enough room.@@" _OhFineThenText: ; 8a34c (22:634c) - db 0,"Oh, fine then.@@" + text "Oh, fine then.@@" _UnnamedText_1e93b: ; 8a35d (22:635d) text "Want to get your" @@ -120357,9 +120463,9 @@ _UnnamedText_5d4d: ; 8a40d (22:640d) INCLUDE "text/oakspeech.asm" _DoYouWantToNicknameText: ; 0x8a605 - db $0, "Do you want to", $4f - db "give a nickname", $55 - db "to @" + text "Do you want to" + line "give a nickname" + next "to @" UnnamedText_8a629: ; 8a629 (22:6629) TX_RAM $cd6d @@ -120379,10 +120485,8 @@ _UnnamedText_69e7: ; 8a64a (22:664a) _SSAnne8AfterBattleText2: ; 8a677 (22:6677) TX_RAM $cd3f - db $0, " and", $4f - db "@" - -UnnamedText_8a681: ; 8a681 (22:6681) + text " and" + line "@" TX_RAM $cd6d text " will" next "be traded." @@ -120390,10 +120494,11 @@ UnnamedText_8a681: ; 8a681 (22:6681) _Char00Text: ; 8a696 (22:6696) TX_NUM $FF8C,1,2 - db 0," ERROR.",$57 + text " ERROR." + done _Char55Text: ; 8a6a3 (22:66a3) - db 0,$4B,"@@" + text $4B,"@@" _DiglettsCaveRoute2Text1: ; 8a6a7 (22:66a7) text "I went to ROCK" @@ -120478,13 +120583,15 @@ _MtMoonPokecenterText3: ; 8a929 (22:6929) done _UnnamedText_4935c: ; 8a976 (22:6976) - db $0, "MAN: Hello, there!", $4f - db "Have I got a deal", $55 - db "just for you!", $51 - db "I'll let you have", $4f - db "a swell MAGIKARP", $55 - db "for just ¥500!", $55 - db "What do you say?", $57 + text "MAN: Hello, there!" + line "Have I got a deal" + next "just for you!" + + page "I'll let you have" + line "a swell MAGIKARP" + next "for just ¥500!" + next "What do you say?" + done _UnnamedText_49361: ; 8a9ec (22:69ec) text "No? I'm only" @@ -120498,11 +120605,13 @@ _UnnamedText_49366: ; 8aa17 (22:6a17) done _UnnamedText_4936b: ; 8aa39 (22:6a39) - db $0, "MAN: Well, I don't", $4f - db "give refunds!", $57 + text "MAN: Well, I don't" + line "give refunds!" + done _MtMoonPokecenterText5: ; 8aa5a (22:6a5a) - db $0, $57 + db $0 + done _UnnamedText_1dfe7: ; 8aa5c (22:6a5c) text "I'm on guard duty." @@ -120554,13 +120663,11 @@ _UnnamedText_56414: ; 8abd4 (22:6bd4) prompt _UnnamedText_56419: ; 8abf0 (22:6bf0) - db $0, "Fine, I'll look", $4f - db "after @" - -UnnamedText_8ac07: ; 8ac07 (22:6c07) + text "Fine, I'll look" + line "after @" TX_RAM $cd6d - text $55 - db "for a while." + db $0 + next "for a while." prompt _UnnamedText_5641e: ; 8ac19 (22:6c19) @@ -120569,14 +120676,13 @@ _UnnamedText_5641e: ; 8ac19 (22:6c19) done _UnnamedText_56423: ; 8ac32 (22:6c32) - db $0, "Your @" - -UnnamedText_8ac39: ; 8ac39 (22:6c39) + text "Your @" TX_RAM $cd6d - db $0, $4f - db "has grown a lot!", $51 - db "By level, it's", $4f - db "grown by @" + db $0 + line "has grown a lot!" + + page "By level, it's" + line "grown by @" UnnamedText_8ac67: ; 8ac67 (22:6c67) TX_NUM $cd3e,$1,$3 @@ -120586,34 +120692,26 @@ UnnamedText_8ac67: ; 8ac67 (22:6c67) prompt _UnnamedText_56428: ; 8ac7d (22:6c7d) - db $0, "You owe me ¥@" - -;XXX + text "You owe me ¥@" db $2, $3f, $cd, $c2 - -UnnamedText_8ac8f: ; 8ac8f (22:6c8f) db $0 line "for the return" next "of this #MON." done _UnnamedText_5642d: ; 8acae (22:6cae) - db $0, $52, " got", $4f - db "@" - -UnnamedText_8acb6: ; 8acb6 (22:6cb6) + text $52, " got" + line "@" TX_RAM $da49 text " back!" done _UnnamedText_56432: ; 8acc1 (22:6cc1) - db $0, "Back already?", $4f - db "Your @" - -UnnamedText_8acd6: ; 8acd6 (22:6cd6) + text "Back already?" + line "Your @" TX_RAM $cd6d - text $55 - db "needs some more" + db $0 + next "needs some more" next "time with me." prompt @@ -120969,14 +121067,14 @@ _UnnamedText_564c0: ; 8c9b3 (23:49b3) done _UnnamedText_564c5: ; 8ca00 (23:4a00) - db $0, "Grand! I like", $4f - db "your style!", $51 - db "Take this and", $4f - db "fish, young one!", $51 - db $52, " received", $4f - db "a @" + text "Grand! I like" + line "your style!" -UnnamedText_8ca48: ; 8ca48 (23:4a48) + page "Take this and" + line "fish, young one!" + + page $52, " received" + line "a @" TX_RAM $cf4b text "!@@" @@ -121130,7 +121228,8 @@ _HM02NoRoomText: ; 8cebe (23:4ebe) done _UnnamedText_1e652: ; 8cee0 (23:4ee0) - db $0, "FEAROW: Kyueen!", $57 + text "FEAROW: Kyueen!" + done _UnnamedText_49928: ; 8cef1 (23:4ef1) text "You need a BICYCLE" @@ -121172,8 +121271,8 @@ _UnnamedText_1e704: ; 8cfbb (23:4fbb) line "BOULDERBADGE yet!@@" _UnnamedText_1e715: ; 8d012 (23:5012) - text $51 - db "The rules are" + db $0 + page "The rules are" line "rules. I can't" next "let you pass." done @@ -121309,17 +121408,20 @@ _UnnamedText_1e86f: ; 8d391 (23:5391) prompt _BillThankYouText: ; 8d3f5 (23:53f5) - db $0, "BILL: Yeehah!", $4f - db "Thanks, bud! I", $55 - db "owe you one!", $51 - db "So, did you come", $4f - db "to see my #MON", $55 - db "collection?", $55 - db "You didn't?", $55 - db "That's a bummer.", $51 - db "I've got to thank", $4f - db "you... Oh here,", $55 - db "maybe this'll do.", $58 + text "BILL: Yeehah!" + line "Thanks, bud! I" + next "owe you one!" + + page "So, did you come" + line "to see my #MON" + next "collection?" + next "You didn't?" + next "That's a bummer." + + page "I've got to thank" + line "you... Oh here," + next "maybe this'll do." + prompt _SSTicketReceivedText: ; 8d499 (23:5499) text $52, " received" @@ -121348,10 +121450,11 @@ _UnnamedText_1e8cb: ; 8d4d0 (23:54d0) done _UnnamedText_1e8da: ; 8d57f (23:557f) - db $0, "BILL: Look, bud,", $4f - db "just check out", $55 - db "some of my rare", $55 - db "#MON on my PC!", $57 + text "BILL: Look, bud," + line "just check out" + next "some of my rare" + next "#MON on my PC!" + done _Route1ViridianMartSampleText: ; 8d5bf (23:55bf) text "Hi! I work at a" @@ -121368,10 +121471,8 @@ _Route1ViridianMartSampleText: ; 8d5bf (23:55bf) prompt _UnnamedText_1cae8: ; 8d643 (23:5643) - db $0, $52, " got", $4f - db "@" - -UnnamedText_8d64b: ; 8d64b (23:564b) + text $52, " got" + line "@" TX_RAM $cf4b text "!@@" @@ -123791,18 +123892,23 @@ _Route21AfterBattleText9: ; 922af (24:62af) done _UnnamedText_511ad: ; 922cd (24:62cd) - db $0, $53, ": Hey!", $4f - db $52, "!", $51 - db "You're going to", $4f - db "#MON LEAGUE?", $51 - db "Forget it! You", $4f - db "probably don't", $55 - db "have any BADGEs!", $51 - db "The guard won't", $4f - db "let you through!", $51 - db "By the way, did", $4f - db "your #MON", $55 - db "get any stronger?", $57 + text $53, ": Hey!" + line $52, "!" + + page "You're going to" + line "#MON LEAGUE?" + + page "Forget it! You" + line "probably don't" + next "have any BADGEs!" + + page "The guard won't" + line "let you through!" + + page "By the way, did" + line "your #MON" + next "get any stronger?" + done _UnnamedText_511b2: ; 9236f (24:636f) text "I heard #MON" @@ -123825,27 +123931,34 @@ _UnnamedText_511b7: ; 923f4 (24:63f4) prompt _UnnamedText_511bc: ; 92410 (24:6410) - db $0, $53, ": What?", $4f - db "Why do I have 2", $55 - db "#MON?", $51 - db "You should catch", $55 - db "some more too!", $58 + text $53, ": What?" + line "Why do I have 2" + next "#MON?" + + page "You should catch" + next "some more too!" + prompt _UnnamedText_511c1: ; 92450 (24:6450) - db $0, $53, ": What?", $4f - db $52, "! What a", $55 - db "surprise to see", $55 - db "you here!", $51 - db "So you're going to", $4f - db "#MON LEAGUE?", $51 - db "You collected all", $4f - db "the BADGEs too?", $55 - db "That's cool!", $51 - db "Then I'll whip you", $4f - db $52, " as a", $55 - db "warm up for", $55 - db "#MON LEAGUE!", $51 - db "Come on!", $57 + text $53, ": What?" + line $52, "! What a" + next "surprise to see" + next "you here!" + + page "So you're going to" + line "#MON LEAGUE?" + + page "You collected all" + line "the BADGEs too?" + next "That's cool!" + + page "Then I'll whip you" + line $52, " as a" + next "warm up for" + next "#MON LEAGUE!" + + page "Come on!" + done _UnnamedText_511c6: ; 92506 (24:6506) text "That loosened me" @@ -123868,13 +123981,15 @@ _UnnamedText_511cb: ; 92583 (24:6583) prompt _UnnamedText_511d0: ; 925a0 (24:65a0) - db $0, $53, ": Hahaha!", $4f - db $52, "! That's", $55 - db "your best? You're", $55 - db "nowhere near as", $55 - db "good as me, pal!", $51 - db "Go train some", $4f - db "more! You loser!", $58 + text $53, ": Hahaha!" + line $52, "! That's" + next "your best? You're" + next "nowhere near as" + next "good as me, pal!" + + page "Go train some" + line "more! You loser!" + prompt _Route22Text3: ; 92606 (24:6606) text "#MON LEAGUE" @@ -123882,17 +123997,14 @@ _Route22Text3: ; 92606 (24:6606) done _VictoryRoadGuardText1: ; 9261e (24:661e) - db $0, "You can pass here", $4f - db "only if you have", $55 - db "the @" - -UnnamedText_92647: ; 92647 (24:6647) + text "You can pass here" + line "only if you have" + next "the @" TX_RAM $cd6d - db $0, "!", $51 - db "You don't have the", $4f - db "@" + text "!" -UnnamedText_92660: ; 92660 (24:6660) + page "You don't have the" + line "@" TX_RAM $cd6d text " yet!" @@ -123901,23 +124013,20 @@ UnnamedText_92660: ; 92660 (24:6660) next "#MON LEAGUE!@@" _VictoryRoadGuardText2: ; 92696 (24:6696) - db $0, "You can pass here", $4f - db "only if you have", $55 - db "the @" - -UnnamedText_926bf: ; 926bf (24:66bf) + text "You can pass here" + line "only if you have" + next "the @" TX_RAM $cd6d - db $0, "!", $51 - db "Oh! That is the", $4f - db "@" + text "!" -UnnamedText_926d6: ; 926d6 (24:66d6) + page "Oh! That is the" + line "@" TX_RAM $cd6d text "!@@" _UnnamedText_513a3: ; 926dd (24:66dd) - text $51 - db "OK then! Please," + db $0 + page "OK then! Please," line "go right ahead!" done @@ -123932,16 +124041,14 @@ _UnnamedText_51510: ; 92721 (24:6721) next "contest trainers!@@" _UnnamedText_51515: ; 92755 (24:6755) - text $51 - db "You just earned a" + db $0 + page "You just earned a" line "fabulous prize!" prompt _UnnamedText_5151a: ; 92779 (24:6779) - db $0, $52, " received", $4f - db "a @" - -UnnamedText_92788: ; 92788 (24:6788) + text $52, " received" + line "a @" TX_RAM $cf4b text "!@@" @@ -124282,27 +124389,21 @@ _UnnamedText_3af3e: ; 946c2 (25:46c2) done _UnnamedText_3af43: ; 946cf (25:46cf) - db $0, $4f - db "into @" - -UnnamedText_946d7: ; 946d7 (25:46d7) + db $0 + line "into @" TX_RAM $cd6d text "!" done _UnnamedText_3af48: ; 946dd (25:46dd) - db $0, "Huh? @" - -UnnamedText_946e4: ; 946e4 (25:46e4) + text "Huh? @" TX_RAM $cf4b db $0 line "stopped evolving!" prompt _UnnamedText_3af4d: ; 946fb (25:46fb) - db $0, "What? @" - -UnnamedText_94703: ; 94703 (25:4703) + text "What? @" TX_RAM $cf4b db $0 line "is evolving!" @@ -124344,10 +124445,8 @@ _UnnamedText_3f423: ; 94782 (25:4782) prompt _UnnamedText_3f528: ; 94795 (25:4795) - db $0, $5a, "'s", $4f - db "@" - -UnnamedText_9479a: ; 9479a (25:479a) + text $5a, "'s" + line "@" TX_RAM $cf4b text "@@" @@ -124359,10 +124458,8 @@ _UnnamedText_3f547: ; 947ab (25:47ab) prompt _UnnamedText_3f661: ; 947b3 (25:47b3) - db $0, $59, "'s", $4f - db "@" - -UnnamedText_947b8: ; 947b8 (25:47b8) + text $59, "'s" + line "@" TX_RAM $cf4b text "@@" @@ -124427,20 +124524,16 @@ _UnnamedText_3f9a1: ; 94878 (25:4878) prompt _UnnamedText_3fa77: ; 9488c (25:488c) - db $0, $5a, $4f - db "learned", $55 - db "@" - -UnnamedText_94898: ; 94898 (25:4898) + text $5a + line "learned" + next "@" TX_RAM $cd6d text "!" prompt _UnnamedText_3fb09: ; 9489e (25:489e) - db $0, $59, "'s", $4f - db "@" - -UnnamedText_948a3: ; 948a3 (25:48a3) + text $59, "'s" + line "@" TX_RAM $cd6d text " was" next "disabled!" @@ -124541,11 +124634,9 @@ _UnnamedText_3baac: ; 94a58 (25:4a58) prompt _UnnamedText_3bb92: ; 94a6c (25:4a6c) - db $0, $5a, $4f - db "transformed into", $55 - db "@" - -UnnamedText_94a81: ; 94a81 (25:4a81) + text $5a + line "transformed into" + next "@" TX_RAM $cd6d text "!" prompt @@ -124588,21 +124679,25 @@ INCLUDE "text/mapRedsHouse1F.asm" INCLUDE "text/mapBluesHouse.asm" _OaksLabGaryText1: ; 94d5b (25:4d5b) - db $0, $53, ": Yo", $4f - db $52, "! Gramps", $55 - db "isn't around!", $57 + text $53, ": Yo" + line $52, "! Gramps" + next "isn't around!" + done _OaksLabText40: ; 94d79 (25:4d79) - db $0, $53, ": Heh, I", $4f - db "don't need to be", $55 - db "greedy like you!", $51 - db "Go ahead and", $4f - db "choose, ", $52, "!", $57 + text $53, ": Heh, I" + line "don't need to be" + next "greedy like you!" + + page "Go ahead and" + line "choose, ", $52, "!" + done _OaksLabText41: ; 94dbd (25:4dbd) - db $0, $53, ": My", $4f - db "#MON looks a", $55 - db "lot stronger.", $57 + text $53, ": My" + line "#MON looks a" + next "lot stronger." + done _OaksLabText39: ; 94ddf (25:4ddf) db $0 @@ -124645,35 +124740,43 @@ _OaksLabLastMonText: ; 94eb6 (25:4eb6) done _UnnamedText_1d2f0: ; 94ed2 (25:4ed2) - db $0, "OAK: Now, ", $52, ",", $4f - db "which #MON do", $55 - db "you want?", $57 + text "OAK: Now, ", $52, "," + line "which #MON do" + next "you want?" + done _UnnamedText_1d2f5: ; 94ef8 (25:4ef8) - db $0, "OAK: If a wild", $4f - db "#MON appears,", $55 - db "your #MON can", $55 - db "fight against it!", $57 + text "OAK: If a wild" + line "#MON appears," + next "your #MON can" + next "fight against it!" + done _UnnamedText_1d2fa: ; 94f36 (25:4f36) - db $0, "OAK: ", $52, ",", $4f - db "raise your young", $55 - db "#MON by making", $55 - db "it fight!", $57 + text "OAK: ", $52, "," + line "raise your young" + next "#MON by making" + next "it fight!" + done _OaksLabDeliverParcelText1: ; 94f69 (25:4f69) - db $0, "OAK: Oh, ", $52, "!", $51 - db "How is my old", $4f - db "#MON?", $51 - db "Well, it seems to", $4f - db "like you a lot.", $51 - db "You must be", $4f - db "talented as a", $55 - db "#MON trainer!", $51 - db "What? You have", $4f - db "something for me?", $51 - db $52, " delivered", $4f - db "OAK's PARCEL.@@" + text "OAK: Oh, ", $52, "!" + + page "How is my old" + line "#MON?" + + page "Well, it seems to" + line "like you a lot." + + page "You must be" + line "talented as a" + next "#MON trainer!" + + page "What? You have" + line "something for me?" + + page $52, " delivered" + line "OAK's PARCEL.@@" _OaksLabDeliverParcelText2: ; 9500f (25:500f) text $51 @@ -124690,16 +124793,18 @@ _OaksLabAroundWorldText: ; 95045 (25:5045) done _OaksLabGivePokeballsText1: ; 9506d (25:506d) - db $0, "OAK: You can't get", $4f - db "detailed data on", $55 - db "#MON by just", $55 - db "seeing them.", $51 - db "You must catch", $4f - db "them! Use these", $55 - db "to capture wild", $55 - db "#MON.", $51 - db $52, " got 5", $4f - db "# BALLs!@@" + text "OAK: You can't get" + line "detailed data on" + next "#MON by just" + next "seeing them." + + page "You must catch" + line "them! Use these" + next "to capture wild" + next "#MON." + + page $52, " got 5" + line "# BALLs!@@" _OaksLabGivePokeballsText2: ; 950f2 (25:50f2) text $51 @@ -124720,18 +124825,21 @@ _OaksLabGivePokeballsText2: ; 950f2 (25:50f2) done _OaksLabPleaseVisitText: ; 9519e (25:519e) - db $0, "OAK: Come see me", $4f - db "sometimes.", $51 - db "I want to know how", $4f - db "your #DEX is", $55 - db "coming along.", $57 + text "OAK: Come see me" + line "sometimes." + + page "I want to know how" + line "your #DEX is" + next "coming along." + done _UnnamedText_1d31d: ; 951e9 (25:51e9) - db $0, "OAK: Good to see ", $4f - db "you! How is your ", $55 - db "#DEX coming? ", $55 - db "Here, let me take", $55 - db "a look!", $58 + text "OAK: Good to see " + line "you! How is your " + next "#DEX coming? " + next "Here, let me take" + next "a look!" + prompt _UnnamedText_1d32c: ; 95236 (25:5236) text "It's encyclopedia-" @@ -124754,63 +124862,76 @@ _UnnamedText_1d340: ; 9526b (25:526b) done _OaksLabRivalWaitingText: ; 952bb (25:52bb) - db $0, $53, ": Gramps!", $4f - db "I'm fed up with", $55 - db "waiting!", $57 + text $53, ": Gramps!" + line "I'm fed up with" + next "waiting!" + done _OaksLabChooseMonText: ; 952df (25:52df) - db $0, "OAK: ", $53, "?", $4f - db "Let me think...", $51 - db "Oh, that's right,", $4f - db "I told you to", $55 - db "come! Just wait!", $51 - db "Here, ", $52, "!", $51 - db "There are 3", $4f - db "#MON here!", $51 - db "Haha!", $51 - db "They are inside", $4f - db "the # BALLs.", $51 - db "When I was young,", $4f - db "I was a serious", $55 - db "#MON trainer!", $51 - db "In my old age, I", $4f - db "have only 3 left,", $55 - db "but you can have", $55 - db "one! Choose!", $57 + text "OAK: ", $53, "?" + line "Let me think..." + + page "Oh, that's right," + line "I told you to" + next "come! Just wait!" + + page "Here, ", $52, "!" + + page "There are 3" + line "#MON here!" + + page "Haha!" + + page "They are inside" + line "the # BALLs." + + page "When I was young," + line "I was a serious" + next "#MON trainer!" + + page "In my old age, I" + line "have only 3 left," + next "but you can have" + next "one! Choose!" + done _OaksLabRivalInterjectionText: ; 953dc (25:53dc) - db $0, $53, ": Hey!", $4f - db "Gramps! What", $55 - db "about me?", $57 + text $53, ": Hey!" + line "Gramps! What" + next "about me?" + done _OaksLabBePatientText: ; 953fc (25:53fc) - db $0, "OAK: Be patient!", $4f - db $53, ", you can", $55 - db "have one too!", $57 + text "OAK: Be patient!" + line $53, ", you can" + next "have one too!" + done _OaksLabLeavingText: ; 95427 (25:5427) - db $0, "OAK: Hey! Don't go", $4f - db "away yet!", $57 + text "OAK: Hey! Don't go" + line "away yet!" + done _OaksLabRivalPickingMonText: ; 95444 (25:5444) - db $0, $53, ": I'll take", $4f - db "this one, then!", $57 + text $53, ": I'll take" + line "this one, then!" + done _OaksLabRivalReceivedMonText: ; 95461 (25:5461) - db $0, $53, " received", $4f - db "a @" - -UnnamedText_95470: ; 95470 (25:5470) + text $53, " received" + line "a @" TX_RAM $cd6d text "!@@" _OaksLabRivalChallengeText: ; 95477 (25:5477) - db $0, $53, ": Wait", $4f - db $52, "!", $55 - db "Let's check out", $55 - db "our #MON!", $51 - db "Come on, I'll take", $4f - db "you on!", $57 + text $53, ": Wait" + line $52, "!" + next "Let's check out" + next "our #MON!" + + page "Come on, I'll take" + line "you on!" + done _UnnamedText_1d3be: ; 954b6 (25:54b6) text "WHAT?" @@ -124820,28 +124941,34 @@ _UnnamedText_1d3be: ; 954b6 (25:54b6) prompt _UnnamedText_1d3c3: ; 954e4 (25:54e4) - db $0, $53, ": Yeah! Am", $4f - db "I great or what?", $58 + text $53, ": Yeah! Am" + line "I great or what?" + prompt _OaksLabRivalToughenUpText: ; 95502 (25:5502) - db $0, $53, ": Okay!", $4f - db "I'll make my", $55 - db "#MON fight to", $55 - db "toughen it up!", $51 - db $52, "! Gramps!", $4f - db "Smell you later!", $57 + text $53, ": Okay!" + line "I'll make my" + next "#MON fight to" + next "toughen it up!" + + page $52, "! Gramps!" + line "Smell you later!" + done _OaksLabText21: ; 95551 (25:5551) - db $0, $53, ": Gramps!", $57 + text $53, ": Gramps!" + done _OaksLabText22: ; 9555d (25:555d) - db $0, $53, ": What did", $4f - db "you call me for?", $57 + text $53, ": What did" + line "you call me for?" + done _OaksLabText23: ; 9557b (25:557b) - db $0, "OAK: Oh right! I", $4f - db "have a request", $55 - db "of you two.", $57 + text "OAK: Oh right! I" + line "have a request" + next "of you two." + done _OaksLabText24: ; 955a8 (25:55a8) text "On the desk there" @@ -124858,11 +124985,12 @@ _OaksLabText24: ; 955a8 (25:55a8) done _OaksLabText25: ; 9562a (25:562a) - db $0, "OAK: ", $52, " and", $4f - db $53, "! Take", $55 - db "these with you!", $51 - db $52, " got", $4f - db "#DEX from OAK!@@" + text "OAK: ", $52, " and" + line $53, "! Take" + next "these with you!" + + page $52, " got" + line "#DEX from OAK!@@" _OaksLabText26: ; 95664 (25:5664) text "To make a complete" @@ -124888,18 +125016,22 @@ _OaksLabText26: ; 95664 (25:5664) done _OaksLabText27: ; 95741 (25:5741) - db $0, $53, ": Alright", $4f - db "Gramps! Leave it", $55 - db "all to me!", $51 - db $52, ", I hate to", $4f - db "say it, but I", $55 - db "don't need you!", $51 - db "I know! I'll", $4f - db "borrow a TOWN MAP", $55 - db "from my sis!", $51 - db "I'll tell her not", $4f - db "to lend you one,", $55 - db $52, "! Hahaha!", $57 + text $53, ": Alright" + line "Gramps! Leave it" + next "all to me!" + + page $52, ", I hate to" + line "say it, but I" + next "don't need you!" + + page "I know! I'll" + line "borrow a TOWN MAP" + next "from my sis!" + + page "I'll tell her not" + line "to lend you one," + next $52, "! Hahaha!" + done _UnnamedText_1d405: ; 957eb (25:57eb) text "I study #MON as" @@ -124907,20 +125039,20 @@ _UnnamedText_1d405: ; 957eb (25:57eb) done _UnnamedText_441cc: ; 9580c (25:580c) - db $0, "#DEX comp-", $4f + text "#DEX comp-", $4f db "letion is:", $51 db "@" UnnamedText_95824: ; 95824 (25:5824) TX_NUM $ffdb, 1, 3 - db $0, " #MON seen", $4f - db "@" - -UnnamedText_95835: ; 95835 (25:5835) + text " #MON seen" + line "@" TX_NUM $ffdc, 1, 3 - db $0, " #MON owned", $51 - db "PROF.OAK's", $4f - db "Rating:", $58 + text " #MON owned" + + page "PROF.OAK's" + line "Rating:" + prompt _UnnamedText_44201: ; 95858 (25:5858) text "You still have" @@ -125104,11 +125236,13 @@ _ViridianHouseText2: ; 95dc7 (25:5dc7) done _UnnamedText_1d5b1: ; 95de1 (25:5de1) - db $0, "SPEARY: Tetweet!", $57 + text "SPEARY: Tetweet!" + done _ViridianHouseText4: ; 95df3 (25:5df3) - db $0, "SPEAROW", $4f - db "Name: SPEARY", $57 + text "SPEAROW" + line "Name: SPEARY" + done _UnnamedText_74ace: ; 95e09 (25:5e09) text "Fwahahaha! This is" @@ -125666,7 +125800,7 @@ _UnnamedText_5c529: ; 9849f (26:449f) done _PewterHouse1Text1: ; 984ce (26:44ce) - db $0, "NIDORAN: Bowbow!@@" + text "NIDORAN: Bowbow!@@" _PewterHouse1Text2: ; 984e1 (26:44e1) text "NIDORAN sit!" @@ -125739,8 +125873,9 @@ _PewterPokecenterText1: ; 98704 (26:4704) done _PewterPokecenterText5: ; 98744 (26:4744) - db $0, "JIGGLYPUFF: Puu", $4f - db "pupuu!", $57 + text "JIGGLYPUFF: Puu" + line "pupuu!" + done _UnnamedText_1d6ab: ; 9875c (26:475c) text "Those miserable" @@ -126183,14 +126318,16 @@ _PokemonTower1Text5: ; 99546 (26:5546) done _UnnamedText_6062d: ; 9957b (26:557b) - db $0, $53, ": Hey,", $4f - db $52, "! What", $55 - db "brings you here?", $55 - db "Your #MON", $55 - db "don't look dead!", $51 - db "I can at least", $4f - db "make them faint!", $55 - db "Let's go, pal!", $57 + text $53, ": Hey," + line $52, "! What" + next "brings you here?" + next "Your #MON" + next "don't look dead!" + + page "I can at least" + line "make them faint!" + next "Let's go, pal!" + done _UnnamedText_60632: ; 995e5 (26:55e5) text "What?" @@ -126201,11 +126338,13 @@ _UnnamedText_60632: ; 995e5 (26:55e5) prompt _UnnamedText_60637: ; 99614 (26:5614) - db $0, $53, ": Well,", $4f - db "look at all your", $55 - db "wimpy #MON!", $51 - db "Toughen them up a", $4f - db "bit more!", $58 + text $53, ": Well," + line "look at all your" + next "wimpy #MON!" + + page "Toughen them up a" + line "bit more!" + prompt _UnnamedText_6063c: ; 99657 (26:5657) text "How's your #DEX" @@ -126463,24 +126602,30 @@ _UnnamedText_60c56: ; 99c01 (26:5c01) done _UnnamedText_60ec4: ; 99c1a (26:5c1a) - db $0, "MR.FUJI: Heh? You", $4f - db "came to save me?", $51 - db "Thank you. But, I", $4f - db "came here of my", $55 - db "own free will.", $51 - db "I came to calm", $4f - db "the soul of", $55 - db "CUBONE's mother.", $51 - db "I think MAROWAK's", $4f - db "spirit has gone", $55 - db "to the afterlife.", $51 - db "I must thank you", $4f - db "for your kind", $55 - db "concern!", $51 - db "Follow me to my", $4f - db "home, #MON", $55 - db "HOUSE at the foot", $55 - db "of this tower.", $57 + text "MR.FUJI: Heh? You" + line "came to save me?" + + page "Thank you. But, I" + line "came here of my" + next "own free will." + + page "I came to calm" + line "the soul of" + next "CUBONE's mother." + + page "I think MAROWAK's" + line "spirit has gone" + next "to the afterlife." + + page "I must thank you" + line "for your kind" + next "concern!" + + page "Follow me to my" + line "home, #MON" + next "HOUSE at the foot" + next "of this tower." + done _PokemonTower7BattleText1: ; 99d31 (26:5d31) text "What do you want?" @@ -126565,19 +126710,22 @@ _UnnamedText_1d8f9: ; 99f4b (26:5f4b) done _LavenderHouse1Text3: ; 99f72 (26:5f72) - db $0, "PSYDUCK: Gwappa!@@" + text "PSYDUCK: Gwappa!@@" _LavenderHouse1Text4: ; 99f85 (26:5f85) - db $0, "NIDORINO: Gaoo!@@" + text "NIDORINO: Gaoo!@@" _UnnamedText_1d94c: ; 99f97 (26:5f97) - db $0, "MR.FUJI: ", $52, ".", $51 - db "Your #DEX quest", $4f - db "may fail without", $55 - db "love for your", $55 - db "#MON.", $51 - db "I think this may", $4f - db "help your quest.", $58 + text "MR.FUJI: ", $52, "." + + page "Your #DEX quest" + line "may fail without" + next "love for your" + next "#MON." + + page "I think this may" + line "help your quest." + prompt _ReceivedFluteText: ; 99ffb (26:5ffb) text $52, " received" @@ -126602,8 +126750,9 @@ _FluteNoRoomText: ; 9a069 (26:6069) done _MrFujiAfterFluteText: ; 9a087 (26:6087) - db $0, "MR.FUJI: Has my", $4f - db "FLUTE helped you?", $57 + text "MR.FUJI: Has my" + line "FLUTE helped you?" + done _LavenderHouse1Text6: ; 9a0aa (26:60aa) text "#MON Monthly" @@ -126649,7 +126798,7 @@ _UnnamedText_5c958: ; 9a1e3 (26:61e3) done _LavenderHouse2Text1: ; 9a238 (26:6238) - db $0, "CUBONE: Kyarugoo!@@" + text "CUBONE: Kyarugoo!@@" _UnnamedText_1d9dc: ; 9a24c (26:624c) text "I hate those" @@ -126707,11 +126856,9 @@ _UnnamedText_1dac2: ; 9a3e5 (26:63e5) prompt _UnnamedText_1dac7: ; 9a404 (26:6404) - db $0, "OK! This #MON", $4f - db "has been renamed", $55 - db "@" - -UnnamedText_9a425: ; 9a425 (26:6425) + text "OK! This #MON" + line "has been renamed" + next "@" TX_RAM $cee9 text "!" @@ -126785,11 +126932,13 @@ _UnnamedText_59be9: ; 9a5ff (26:65ff) done _UnnamedText_59c00: ; 9a629 (26:6629) - db $0, "PIKACHU: Chu!", $4f - db "Pikachu!", $57 + text "PIKACHU: Chu!" + line "Pikachu!" + done _UnnamedText_59c17: ; 9a641 (26:6641) - db $0, "SEEL: Kyuoo!", $57 + text "SEEL: Kyuoo!" + done _UnnamedText_59c65: ; 9a64f (26:664f) text "I chair the" @@ -127099,7 +127248,7 @@ _VermilionHouse1Text1: ; 9c449 (27:4449) done _VermilionHouse1Text2: ; 9c488 (27:4488) - db $0, "PIDGEY: Kurukkoo!@@" + text "PIDGEY: Kurukkoo!@@" _VermilionHouse1Text3: ; 9c49c (27:449c) text "Dear PIPPI, I hope" @@ -127181,19 +127330,26 @@ _CeladonMart1Text1: ; 9c672 (27:4672) done _CeladonMart1Text2: ; 9c6cd (27:46cd) - db $0, "1F: SERVICE", $4f - db " COUNTER", $51 - db "2F: TRAINER'S", $4f - db " MARKET", $51 - db "3F: TV GAME SHOP", $51 - db "4F: WISEMAN GIFTS", $51 - db "5F: DRUG STORE", $51 - db "ROOFTOP SQUARE:", $4f - db "VENDING MACHINES", $57 + text "1F: SERVICE" + line " COUNTER" + + page "2F: TRAINER'S" + line " MARKET" + + page "3F: TV GAME SHOP" + + page "4F: WISEMAN GIFTS" + + page "5F: DRUG STORE" + + page "ROOFTOP SQUARE:" + line "VENDING MACHINES" + done _CeladonMart1Text3: ; 9c752 (27:4752) - db $0, "1F: SERVICE", $4f - db " COUNTER", $57 + text "1F: SERVICE" + line " COUNTER" + done _CeladonMart2Text3: ; 9c76b (27:476b) text "SUPER REPEL keeps" @@ -127211,10 +127367,12 @@ _CeladonMart2Text4: ; 9c7b2 (27:47b2) done _CeladonMart2Text5: ; 9c7dc (27:47dc) - db $0, "Top Grade Items", $4f - db "for Trainers!", $51 - db "2F: TRAINER'S", $4f - db " MARKET", $57 + text "Top Grade Items" + line "for Trainers!" + + page "2F: TRAINER'S" + line " MARKET" + done _TM18PreReceiveText: ; 9c814 (27:4814) text "Oh, hi! I finally" @@ -127307,7 +127465,8 @@ _CeladonMart3Text13: ; 9ca85 (27:4a85) done _CeladonMart3Text14: ; 9caa4 (27:4aa4) - db $0, "3F: TV GAME SHOP", $57 + text "3F: TV GAME SHOP" + done _CeladonMart3Text15: ; 9cab6 (27:4ab6) text "Red and Blue!" @@ -127331,12 +127490,15 @@ _CeladonMart4Text3: ; 9cafd (27:4afd) done _CeladonMart4Text4: ; 9cb56 (27:4b56) - db $0, "Express yourself", $4f - db "with gifts!", $51 - db "4F: WISEMAN GIFTS", $51 - db "Evolution Special!", $4f - db "Element STONEs on", $55 - db "sale now!", $57 + text "Express yourself" + line "with gifts!" + + page "4F: WISEMAN GIFTS" + + page "Evolution Special!" + line "Element STONEs on" + next "sale now!" + done _UnnamedText_484ee: ; 9cbb5 (27:4bb5) text "Give her which" @@ -127448,8 +127610,9 @@ _CeladonMartRoofText4: ; 9ce16 (27:4e16) done _CeladonMartRoofText6: ; 9ce50 (27:4e50) - db $0, "ROOFTOP SQUARE:", $4f - db "VENDING MACHINES", $57 + text "ROOFTOP SQUARE:" + line "VENDING MACHINES" + done _VendingMachineText1: ; 9ce72 (27:4e72) text "A vending machine!" @@ -127477,7 +127640,7 @@ _VendingMachineText7: ; 9cee0 (27:4ee0) done _CeladonMansion1Text1: ; 9ceee (27:4eee) - db $0, "MEOWTH: Meow!@@" + text "MEOWTH: Meow!@@" _CeladonMansion1Text2: ; 9cefe (27:4efe) text "My dear #MON" @@ -127488,12 +127651,12 @@ _CeladonMansion1Text2: ; 9cefe (27:4efe) done _CeladonMansion1Text3: ; 9cf3c (27:4f3c) - db $0, "CLEFAIRY: Pi", $4f - db "pippippi!@@" + text "CLEFAIRY: Pi" + line "pippippi!@@" _CeladonMansion1Text4: ; 9cf55 (27:4f55) - db $0, "NIDORAN: Kya", $4f - db "kyaoo!@@" + text "NIDORAN: Kya" + line "kyaoo!@@" _CeladonMansion1Text5: ; 9cf6b (27:4f6b) text "CELADON MANSION" @@ -128032,7 +128195,8 @@ _CeladonMart5Text2: ; 9de79 (27:5e79) done _CeladonMart5Text5: ; 9ded6 (27:5ed6) - db $0, "5F: DRUG STORE", $57 + text "5F: DRUG STORE" + done _CeladonPrizeRoomText1: ; 9dee6 (27:5ee6) text "I sure do fancy" @@ -128217,11 +128381,13 @@ _FuchsiaPokecenterText3: ; 9e3de (27:63de) done _WardenGibberishText1: ; 9e444 (27:6444) - db $0, "WARDEN: Hif fuff", $4f - db "hefifoo!", $51 - db "Ha lof ha feef ee", $4f - db "hafahi ho. Heff", $55 - db "hee fwee!", $57 + text "WARDEN: Hif fuff" + line "hefifoo!" + + page "Ha lof ha feef ee" + line "hafahi ho. Heff" + next "hee fwee!" + done _WardenGibberishText2: ; 9e48b (27:648b) text "Ah howhee ho hoo!" @@ -128245,15 +128411,17 @@ _WardenTeethText2: ; 9e4f9 (27:64f9) prompt _WardenThankYouText: ; 9e51b (27:651b) - db $0, "WARDEN: Thanks,", $4f - db "kid! No one could", $55 - db "understand a word", $55 - db "that I said.", $51 - db "I couldn't work", $4f - db "that way.", $55 - db "Let me give you", $55 - db "something for", $55 - db "your trouble.", $58 + text "WARDEN: Thanks," + line "kid! No one could" + next "understand a word" + next "that I said." + + page "I couldn't work" + line "that way." + next "Let me give you" + next "something for" + next "your trouble." + prompt _ReceivedHM04Text: ; 9e5a2 (27:65a2) text $52, " received" @@ -128262,19 +128430,24 @@ _ReceivedHM04Text: ; 9e5a2 (27:65a2) text "!@@" _HM04ExplanationText: ; 9e5b6 (27:65b6) - db $0, "WARDEN: HM04", $4f - db "teaches STRENGTH!", $51 - db "It lets #MON", $4f - db "move boulders", $55 - db "when you're out-", $55 - db "side of battle.", $51 - db "Oh yes, did you", $4f - db "find SECRET HOUSE", $55 - db "in SAFARI ZONE?", $51 - db "If you do, you", $4f - db "win an HM!", $51 - db "I hear it's the", $4f - db "rare SURF HM.", $57 + text "WARDEN: HM04" + line "teaches STRENGTH!" + + page "It lets #MON" + line "move boulders" + next "when you're out-" + next "side of battle." + + page "Oh yes, did you" + line "find SECRET HOUSE" + next "in SAFARI ZONE?" + + page "If you do, you" + line "win an HM!" + + page "I hear it's the" + line "rare SURF HM." + done _HM04NoRoomText: ; 9e67a (27:667a) text "Your pack is" @@ -128317,8 +128490,8 @@ UnnamedText_9e747: ; 9e747 (27:6747) line "30 SAFARI BALLs!@@" _UnnamedText_75360: ; 9e79f (27:679f) - text $51 - db "We'll call you on" + db $0 + page "We'll call you on" line "the PA when you" next "run out of time" next "or SAFARI BALLs!" @@ -128386,18 +128559,22 @@ _UnnamedText_753f0: ; 9e993 (27:6993) done _UnnamedText_75581: ; 9e9b1 (27:69b1) - db $0, "KOGA: Fwahahaha!", $51 - db "A mere child like", $4f - db "you dares to", $55 - db "challenge me?", $51 - db "Very well, I", $4f - db "shall show you", $55 - db "true terror as a", $55 - db "ninja master!", $51 - db "You shall feel", $4f - db "the despair of", $55 - db "poison and sleep", $55 - db "techniques!", $57 + text "KOGA: Fwahahaha!" + + page "A mere child like" + line "you dares to" + next "challenge me?" + + page "Very well, I" + line "shall show you" + next "true terror as a" + next "ninja master!" + + page "You shall feel" + line "the despair of" + next "poison and sleep" + next "techniques!" + done _UnnamedText_75586: ; 9ea66 (27:6a66) text "Humph!" @@ -128992,21 +129169,28 @@ _Lab3Text2: ; a0fe3 (28:4fe3) done _Lab3Text3: ; a1010 (28:5010) - db $0, "There's an e-mail", $4f - db "message!", $51 - db "...", $51 - db "The 3 legendary", $4f - db "bird #MON are", $55 - db "ARTICUNO, ZAPDOS", $55 - db "and MOLTRES.", $51 - db "Their whereabouts", $4f - db "are unknown.", $51 - db "We plan to explore", $4f - db "the cavern close", $55 - db "to CERULEAN.", $51 - db "From: #MON", $4f - db "RESEARCH TEAM", $51 - db "...", $57 + text "There's an e-mail" + line "message!" + + page "..." + + page "The 3 legendary" + line "bird #MON are" + next "ARTICUNO, ZAPDOS" + next "and MOLTRES." + + page "Their whereabouts" + line "are unknown." + + page "We plan to explore" + line "the cavern close" + next "to CERULEAN." + + page "From: #MON" + line "RESEARCH TEAM" + + page "..." + done _Lab3Text5: ; a10d8 (28:50d8) text "An amber pipe!" @@ -129038,22 +129222,20 @@ _UnnamedText_75dd0: ; a1156 (28:5156) done _UnnamedText_75dd5: ; a118d (28:518d) - db $0, "Where were you?", $51 - db "Your fossil is", $4f - db "back to life!", $51 - db "It was @" + text "Where were you?" -UnnamedText_a11c3: ; a11c3 (28:51c3) + page "Your fossil is" + line "back to life!" + + page "It was @" TX_RAM $cf4b db $0 line "like I think!" prompt _UnnamedText_610ae: ; a11d6 (28:51d6) - db $0, "Oh! That is", $4f - db "@" - -UnnamedText_a11e4: ; a11e4 (28:51e4) + text "Oh! That is" + line "@" TX_RAM $cd6d text "!" @@ -129171,20 +129353,25 @@ _CopycatsHouseF1Text2: ; a1535 (28:5535) done _CopycatsHouseF1Text3: ; a1596 (28:5596) - db $0, "CHANSEY: Chaan!", $4f - db "Sii!@@" + text "CHANSEY: Chaan!" + line "Sii!@@" _UnnamedText_5ccd4: ; a15ad (28:55ad) - db $0, $52, ": Hi! Do", $4f - db "you like #MON?", $51 - db $52, ": Uh no, I", $4f - db "just asked you.", $51 - db $52, ": Huh?", $4f - db "You're strange!", $51 - db "COPYCAT: Hmm?", $4f - db "Quit mimicking?", $51 - db "But, that's my", $4f - db "favorite hobby!", $58 + text $52, ": Hi! Do" + line "you like #MON?" + + page $52, ": Uh no, I" + line "just asked you." + + page $52, ": Huh?" + line "You're strange!" + + page "COPYCAT: Hmm?" + line "Quit mimicking?" + + page "But, that's my" + line "favorite hobby!" + prompt _TM31PreReceiveText: ; a1636 (28:5636) text "Oh wow!" @@ -129212,25 +129399,31 @@ _TM31ExplanationText1: ; a1689 (28:5689) line "#MON!@@" _TM31ExplanationText2: ; a16c5 (28:56c5) - db $0, $52, ": Hi!", $4f - db "Thanks for TM31!", $51 - db $52, ": Pardon?", $51 - db $52, ": Is it", $4f - db "that fun to mimic", $55 - db "my every move?", $51 - db "COPYCAT: You bet!", $4f - db "It's a scream!", $57 + text $52, ": Hi!" + line "Thanks for TM31!" + + page $52, ": Pardon?" + + page $52, ": Is it" + line "that fun to mimic" + next "my every move?" + + page "COPYCAT: You bet!" + line "It's a scream!" + done _TM31NoRoomText: ; a1733 (28:5733) text "Don't you want" line "this?@@" _CopycatsHouseF2Text2: ; a1749 (28:5749) - db $0, "DODUO: Giiih!", $51 - db "MIRROR MIRROR ON", $4f - db "THE WALL, WHO IS", $55 - db "THE FAIREST ONE", $55 - db "OF ALL?", $57 + text "DODUO: Giiih!" + + page "MIRROR MIRROR ON" + line "THE WALL, WHO IS" + next "THE FAIREST ONE" + next "OF ALL?" + done _CopycatsHouseF2Text3: ; a1792 (28:5792) text "This is a rare" @@ -129245,13 +129438,16 @@ _CopycatsHouseF2Text6: ; a17be (28:57be) done _UnnamedText_5cd17: ; a17ef (28:57ef) - db $0, "...", $51 - db "My Secrets!", $51 - db "Skill: Mimicry!", $4f - db "Hobby: Collecting", $55 - db "dolls!", $55 - db "Favorite #MON:", $55 - db "CLEFAIRY!", $57 + text "..." + + page "My Secrets!" + + page "Skill: Mimicry!" + line "Hobby: Collecting" + next "dolls!" + next "Favorite #MON:" + next "CLEFAIRY!" + done _UnnamedText_5cd1c: ; a1842 (28:5842) text "Huh? Can't see!" @@ -129635,7 +129831,7 @@ _SaffronHouse1Text1: ; a2305 (28:6305) done _SaffronHouse1Text2: ; a2352 (28:6352) - db $0, "PIDGEY: Kurukkoo!@@" + text "PIDGEY: Kurukkoo!@@" _SaffronHouse1Text3: ; a2366 (28:6366) text "The COPYCAT is" @@ -129797,20 +129993,19 @@ _PokemartAnythingElseText: ; a2719 (28:6719) UnnamedText_a273b: ; a273b (28:673b) TX_RAM $d036 - db $0, " learned", $4f - db "@" - -UnnamedText_a2749: ; a2749 (28:6749) + text " learned" + line "@" TX_RAM $cf4b text "!@@" _UnnamedText_6fb4: ; a2750 (28:6750) - text "Which move should", $4e, "be forgotten?" + text "Which move should" + db $4e, "be forgotten?" done _UnnamedText_6fb9: ; a2771 (28:6771) - db $0, "Abandon learning", $4f - db "@" + text "Abandon learning" + line "@" UnnamedText_a2784: ; a2784 (28:6784) TX_RAM $cf4b @@ -129819,34 +130014,30 @@ UnnamedText_a2784: ; a2784 (28:6784) _UnnamedText_6fbe: ; a278a (28:678a) TX_RAM $d036 - db $0, $4f - db "did not learn", $55 - db "@" - -UnnamedText_a279e: ; a279e (28:679e) + db $0 + line "did not learn" + next "@" TX_RAM $cf4b text "!" prompt _UnnamedText_6fc3: ; a27a4 (28:67a4) TX_RAM $d036 - db $0, " is", $4f - db "trying to learn", $55 - db "@" - -UnnamedText_a27bd: ; a27bd (28:67bd) + text " is" + line "trying to learn" + next "@" TX_RAM $cf4b - db $0, "!", $51 - db "But, @" - TX_RAM $d036 - db $0, $4f - db "can't learn more", $55 - db "than 4 moves!", $51 - db "Delete an older", $4f - db "move to make room", $55 - db "for @" + text "!" -UnnamedText_a2813: ; a2813 (28:6813) + page "But, @" + TX_RAM $d036 + db $0 + line "can't learn more" + next "than 4 moves!" + + page "Delete an older" + line "move to make room" + next "for @" TX_RAM $cf4b text "?" done @@ -129858,10 +130049,8 @@ _UnnamedText_6fd7: ; a2827 (28:6827) text " Poof!@@" _UnnamedText_6fdc: ; a2830 (28:6830) - db $0, $51 - db "@" - -UnnamedText_a2833: ; a2833 (28:6833) + db $0 + page "@" TX_RAM $d036 text " forgot" line "@" @@ -130331,11 +130520,13 @@ _PewterCityText10: ; a4cb1 (29:4cb1) done _PewterCityText11: ; a4ccb (29:4ccb) - db $0, "PEWTER CITY", $4f - db "#MON GYM", $55 - db "LEADER: BROCK", $51 - db "The Rock Solid", $4f - db "#MON Trainer!", $57 + text "PEWTER CITY" + line "#MON GYM" + next "LEADER: BROCK" + + page "The Rock Solid" + line "#MON Trainer!" + done _PewterCityText12: ; a4d0c (29:4d0c) text "PEWTER CITY" @@ -130344,18 +130535,22 @@ _PewterCityText12: ; a4d0c (29:4d0c) done _UnnamedText_19668: ; a4d2b (29:4d2b) - db $0, $53, ": Yo!", $4f - db $52, "!", $51 - db "You're still", $4f - db "struggling along", $55 - db "back here?", $51 - db "I'm doing great!", $4f - db "I caught a bunch", $55 - db "of strong and", $55 - db "smart #MON!", $51 - db "Here, let me see", $4f - db "what you caught,", $55 - db $52, "!", $57 + text $53, ": Yo!" + line $52, "!" + + page "You're still" + line "struggling along" + next "back here?" + + page "I'm doing great!" + line "I caught a bunch" + next "of strong and" + next "smart #MON!" + + page "Here, let me see" + line "what you caught," + next $52, "!" + done _UnnamedText_1966d: ; a4dbe (29:4dbe) text "Hey!" @@ -130370,27 +130565,34 @@ _UnnamedText_19672: ; a4de3 (29:4de3) prompt _UnnamedText_19677: ; a4e07 (29:4e07) - db $0, $53, ": Hey,", $4f - db "guess what?", $51 - db "I went to BILL's", $4f - db "and got him to", $55 - db "show me his rare", $55 - db "#MON!", $51 - db "That added a lot", $4f - db "of pages to my", $55 - db "#DEX!", $51 - db "After all, BILL's", $4f - db "world famous as a", $55 - db "#MANIAC!", $51 - db "He invented the", $4f - db "#MON Storage", $55 - db "System on PC!", $51 - db "Since you're using", $4f - db "his system, go", $55 - db "thank him!", $51 - db "Well, I better", $4f - db "get rolling!", $55 - db "Smell ya later!", $57 + text $53, ": Hey," + line "guess what?" + + page "I went to BILL's" + line "and got him to" + next "show me his rare" + next "#MON!" + + page "That added a lot" + line "of pages to my" + next "#DEX!" + + page "After all, BILL's" + line "world famous as a" + next "#MANIAC!" + + page "He invented the" + line "#MON Storage" + next "System on PC!" + + page "Since you're using" + line "his system, go" + next "thank him!" + + page "Well, I better" + line "get rolling!" + next "Smell ya later!" + done _UnnamedText_196d9: ; a4f27 (29:4f27) text "Hey! Stay out!" @@ -130557,11 +130759,13 @@ _CeruleanCityText16: ; a541a (29:541a) done _CeruleanCityText17: ; a5445 (29:5445) - db $0, "CERULEAN CITY", $4f - db "#MON GYM", $55 - db "LEADER: MISTY", $51 - db "The Tomboyish", $4f - db "Mermaid!", $57 + text "CERULEAN CITY" + line "#MON GYM" + next "LEADER: MISTY" + + page "The Tomboyish" + line "Mermaid!" + done _UnnamedText_4413c: ; a5482 (29:5482) text "Do you believe in" @@ -130697,8 +130901,8 @@ _VermilionCityText4: ; a5805 (29:5805) done _VermilionCityText5: ; a5852 (29:5852) - db $0, "MACHOP: Guoh!", $4f - db "Gogogoh!@@" + text "MACHOP: Guoh!" + line "Gogogoh!@@" _VermilionCityText14: ; a586b (29:586b) text $51 @@ -130743,11 +130947,13 @@ _VermilionCityText11: ; a5980 (29:5980) done _VermilionCityText12: ; a59a6 (29:59a6) - db $0, "VERMILION CITY", $4f - db "#MON GYM", $55 - db "LEADER: LT.SURGE", $51 - db "The Lightning ", $4f - db "American!", $57 + text "VERMILION CITY" + line "#MON GYM" + next "LEADER: LT.SURGE" + + page "The Lightning " + line "American!" + done _VermilionCityText13: ; a59e9 (29:59e9) text "VERMILION HARBOR" @@ -130826,8 +131032,8 @@ _CeladonCityText6: ; a5bd9 (29:5bd9) done _CeladonCityText7: ; a5c30 (29:5c30) - db $0, "POLIWRATH: Ribi", $4f - db "ribit!@@" + text "POLIWRATH: Ribi" + line "ribit!@@" _CeladonCityText8: ; a5c49 (29:5c49) text "What are you" @@ -130862,11 +131068,13 @@ _CeladonCityText11: ; a5d18 (29:5d18) done _CeladonCityText13: ; a5d41 (29:5d41) - db $0, "CELADON CITY", $4f - db "#MON GYM", $55 - db "LEADER: ERIKA", $51 - db "The Nature Loving", $4f - db "Princess!", $57 + text "CELADON CITY" + line "#MON GYM" + next "LEADER: ERIKA" + + page "The Nature Loving" + line "Princess!" + done _CeladonCityText14: ; a5d82 (29:5d82) text "CELADON MANSION" @@ -130922,9 +131130,10 @@ _FuchsiaCityText2: ; a5ede (29:5ede) done _FuchsiaCityText3: ; a5f3e (29:5f3e) - db $0, "ERIK: Where's", $4f - db "SARA? I said I'd", $55 - db "meet her here.", $57 + text "ERIK: Where's" + line "SARA? I said I'd" + next "meet her here." + done _FuchsiaCityText4: ; a5f6b (29:5f6b) text "That item ball in" @@ -130958,50 +131167,66 @@ _FuchsiaCityText17: ; a5ff6 (29:5ff6) done _FuchsiaCityText18: ; a6011 (29:6011) - db $0, "FUCHSIA CITY", $4f - db "#MON GYM", $55 - db "LEADER: KOGA", $51 - db "The Poisonous", $4f - db "Ninja Master", $57 + text "FUCHSIA CITY" + line "#MON GYM" + next "LEADER: KOGA" + + page "The Poisonous" + line "Ninja Master" + done _FuchsiaCityChanseyText: ; a6050 (29:6050) - db $0, "Name: CHANSEY", $51 - db "Catching one is", $4f - db "all up to chance.", $58 + text "Name: CHANSEY" + + page "Catching one is" + line "all up to chance." + prompt _FuchsiaCityVoltorbText: ; a6081 (29:6081) - db $0, "Name: VOLTORB", $51 - db "The very image of", $4f - db "a # BALL.", $58 + text "Name: VOLTORB" + + page "The very image of" + line "a # BALL." + prompt _FuchsiaCityKangaskhanText: ; a60ac (29:60ac) - db $0, "Name: KANGASKHAN", $51 - db "A maternal #MON", $4f - db "that raises its", $55 - db "young in a pouch", $55 - db "on its belly.", $58 + text "Name: KANGASKHAN" + + page "A maternal #MON" + line "that raises its" + next "young in a pouch" + next "on its belly." + prompt _FuchsiaCitySlowpokeText: ; a60fd (29:60fd) - db $0, "Name: SLOWPOKE", $51 - db "Friendly and very", $4f - db "slow moving.", $58 + text "Name: SLOWPOKE" + + page "Friendly and very" + line "slow moving." + prompt _FuchsiaCityLaprasText: ; a612c (29:612c) - db $0, "Name: LAPRAS", $51 - db "A.K.A. the king", $4f - db "of the seas.", $58 + text "Name: LAPRAS" + + page "A.K.A. the king" + line "of the seas." + prompt _FuchsiaCityOmanyteText: ; a6157 (29:6157) - db $0, "Name: OMANYTE", $51 - db "A #MON that", $4f - db "was resurrected", $55 - db "from a fossil.", $58 + text "Name: OMANYTE" + + page "A #MON that" + line "was resurrected" + next "from a fossil." + prompt _FuchsiaCityKabutoText: ; a6191 (29:6191) - db $0, "Name: KABUTO", $51 - db "A #MON that", $4f - db "was resurrected", $55 - db "from a fossil.", $58 + text "Name: KABUTO" + + page "A #MON that" + line "was resurrected" + next "from a fossil." + prompt _UnnamedText_19b2a: ; a61ca (29:61ca) text "..." @@ -131037,11 +131262,13 @@ _CinnabarIslandText6: ; a6298 (29:6298) done _CinnabarIslandText7: ; a62a2 (29:62a2) - db $0, "CINNABAR ISLAND", $4f - db "#MON GYM", $55 - db "LEADER: BLAINE", $51 - db "The Hot-Headed", $4f - db "Quiz Master!", $57 + text "CINNABAR ISLAND" + line "#MON GYM" + next "LEADER: BLAINE" + + page "The Hot-Headed" + line "Quiz Master!" + done _SaffronCityText1: ; a62e7 (29:62e7) text "What do you want?" @@ -131110,7 +131337,7 @@ _SaffronCityText11: ; a6475 (29:6475) done _SaffronCityText12: ; a64d6 (29:64d6) - db $0, "PIDGEOT: Bi bibii!@@" + text "PIDGEOT: Bi bibii!@@" _SaffronCityText13: ; a64eb (29:64eb) text "I saw ROCKET" @@ -131145,11 +131372,13 @@ _SaffronCityText17: ; a65a6 (29:65a6) done _SaffronCityText18: ; a65b5 (29:65b5) - db $0, "SAFFRON CITY", $4f - db "#MON GYM", $55 - db "LEADER: SABRINA", $51 - db "The Master of", $4f - db "Psychic #MON!", $57 + text "SAFFRON CITY" + line "#MON GYM" + next "LEADER: SABRINA" + + page "The Master of" + line "Psychic #MON!" + done _SaffronCityText20: ; a65f8 (29:65f8) text "TRAINER TIPS" @@ -131194,52 +131423,60 @@ _SaffronCityText25: ; a66f5 (29:66f5) done _ItemUseBallText00: ; a6729 (29:6729) - db 0,"It dodged the",$4F - db "thrown BALL!",$51 - db "This #MON",$4F - db "can't be caught!",$58 + text "It dodged the" + line "thrown BALL!" + + page "This #MON" + line "can't be caught!" + prompt _ItemUseBallText01: ; a675f (29:675f) - db 0,"You missed the",$4F - db "#MON!",$58 + text "You missed the" + line "#MON!" + prompt _ItemUseBallText02: ; a6775 (29:6775) - db 0,"Darn! The #MON",$4F - db "broke free!",$58 + text "Darn! The #MON" + line "broke free!" + prompt _ItemUseBallText03: ; a6791 (29:6791) - db 0,"Aww! It appeared",$4F - db "to be caught! ",$58 + text "Aww! It appeared" + line "to be caught! " + prompt _ItemUseBallText04: ; a67b2 (29:67b2) - db 0,"Shoot! It was so",$4F - db "close too!",$58 + text "Shoot! It was so" + line "close too!" + prompt _ItemUseBallText05: ; a67cf (29:67cf) - db 0,"All right!",$4F,"@",1 + text "All right!",$4F,"@",1 dw W_ENEMYMONNAME - db 0," was",$55 - db "caught!@@" + text " was" + next "caught!@@" _ItemUseBallText07: ; a67ee (29:67ee) db 1 dw $DE06 - db 0," was",$4F - db "transferred to",$55 - db "BILL's PC!",$58 + text " was" + line "transferred to" + next "BILL's PC!" + prompt _ItemUseBallText08: ; a6810 (29:6810) db 1 dw $DE06 - db 0," was",$4F - db "transferred to",$55 - db "someone's PC!",$58 + text " was" + line "transferred to" + next "someone's PC!" + prompt _ItemUseBallText06: ; a6835 (29:6835) - db 0,"New #DEX data",$4F - db "will be added for",$55,"@" + text "New #DEX data" + line "will be added for",$55,"@" TX_RAM W_ENEMYMONNAME - db 0,"!@@" + text "!@@" _SurfingGotOnText: ; a685e (29:685e) text $52, " got on" @@ -131372,9 +131609,10 @@ _MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) prompt _ItemUseNotTimeText: ; a6aa6 (29:6aa6) - db $0, "OAK: ", $52, "!", $4f - db "This isn't the", $55 - db "time to use that! ", $58 + text "OAK: ", $52, "!" + line "This isn't the" + next "time to use that! " + prompt _ItemUseNotYoursToUseText: ; a6ad0 (29:6ad0) text "This isn't yours" @@ -131415,7 +131653,7 @@ _BoxFullCannotThrowBallText: ; a6b69 (29:6b69) SECTION "bank2A",ROMX,BANK[$2A] _ItemUseText001: ; a8000 (2a:4000) - db 0,$52," used@@" + text $52," used@@" _ItemUseText002: ; a8009 (2a:4009) TX_RAM $cf4b @@ -131440,8 +131678,8 @@ _GotOffBicycleText2: ; a8030 (2a:4030) prompt _ThrewAwayItemText: ; a803c (2a:403c) - db $0, "Threw away", $4f - db "@" + text "Threw away" + line "@" UnnamedText_a8049: ; a8049 (2a:4049) TX_RAM $cd6d @@ -131500,8 +131738,8 @@ _UnnamedText_71d99: ; a810b (2a:410b) done _UnnamedText_71d9e: ; a811d (2a:411d) - db $0, "What? That's not", $4f - db "@" + text "What? That's not" + line "@" UnnamedText_a812f: ; a812f (2a:412f) TX_RAM $cd13 From 2ac15d2475b575207caf74494dd3b6896636a3c4 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 21 Jan 2014 21:08:30 -0500 Subject: [PATCH 15/41] text macros in text/ --- text/mapBluesHouse.asm | 50 +++++++++++++++----------- text/mapPalletTown.asm | 70 +++++++++++++++++++++--------------- text/mapRedsHouse1F.asm | 50 +++++++++++++++----------- text/oakspeech.asm | 78 ++++++++++++++++++++++++----------------- 4 files changed, 144 insertions(+), 104 deletions(-) diff --git a/text/mapBluesHouse.asm b/text/mapBluesHouse.asm index d2bb54de..0d94460b 100644 --- a/text/mapBluesHouse.asm +++ b/text/mapBluesHouse.asm @@ -1,34 +1,42 @@ _DaisyInitialText: - db 0,"Hi ",$52,"!",$4F - db $53," is out at",$55 - db "Grandpa's lab.",$57 + text "Hi ",$52,"!" + line $53," is out at" + next "Grandpa's lab." + done _DaisyOfferMapText: - db 0,"Grandpa asked you",$4F - db "to run an errand?",$55 - db "Here, this will",$55 - db "help you!",$58 + text "Grandpa asked you" + line "to run an errand?" + next "Here, this will" + next "help you!" + prompt _GotMapText: - db 0,$52," got a",$4F,"@",1 - dw $CF4B - db 0,"!@@" + text $52," got a" + line "@" + TX_RAM $CF4B + text "!@@" _DaisyBagFullText: - db 0,"You have too much",$4F - db "stuff with you.",$57 + text "You have too much" + line "stuff with you." + done _DaisyUseMapText: - db 0,"Use the TOWN MAP",$4F - db "to find out where",$55 - db "you are.",$57 + text "Use the TOWN MAP" + line "to find out where" + next "you are." + done _BluesHouseText2: - db 0,"#MON are living",$4F - db "things! If they",$55 - db "get tired, give",$55 - db "them a rest!",$57 + text "#MON are living" + line "things! If they" + next "get tired, give" + next "them a rest!" + done _BluesHouseText3: - db 0,"It's a big map!",$4F - db "This is useful!",$57 + text "It's a big map!" + line "This is useful!" + done + diff --git a/text/mapPalletTown.asm b/text/mapPalletTown.asm index 6ed9b755..06f4e379 100644 --- a/text/mapPalletTown.asm +++ b/text/mapPalletTown.asm @@ -1,44 +1,56 @@ _OakAppearsText: - db 0,"OAK: Hey! Wait!",$4F - db "Don't go out!@@" + text "OAK: Hey! Wait!" + line "Don't go out!@@" _OakWalksUpText: - db 0,"OAK: It's unsafe!",$4F - db "Wild #MON live",$55 - db "in tall grass!",$51 - db "You need your own",$4F - db "#MON for your",$55 - db "protection.",$55 - db "I know!",$51 - db "Here, come with",$4F - db "me!",$57 + text "OAK: It's unsafe!" + line "Wild #MON live" + next "in tall grass!" + + page "You need your own" + line "#MON for your" + next "protection." + next "I know!" + + page "Here, come with" + line "me!" + done _PalletTownText2: - db 0,"I",$E5," raising",$4F - db "#MON too!",$51 - db "When they get",$4F - db "strong, they can",$55 - db "protect me!",$57 + text "I'm raising" + line "#MON too!" + + page "When they get" + line "strong, they can" + next "protect me!" + done _PalletTownText3: - db 0,"Technology is",$4F - db "incredible!",$51 - db "You can now store",$4F - db "and recall items",$55 - db "and #MON as",$55 - db "data via PC!",$57 + text "Technology is" + line "incredible!" + + page "You can now store" + line "and recall items" + next "and #MON as" + next "data via PC!" + done _PalletTownText4: - db 0,"OAK #MON",$4F - db "RESEARCH LAB",$57 + text "OAK #MON" + line "RESEARCH LAB" + done _PalletTownText5: - db 0,"PALLET TOWN",$4F - db "Shades of your",$55 - db "journey await!",$57 + text "PALLET TOWN" + line "Shades of your" + next "journey await!" + done _PalletTownText6: - db 0,$52,"'s house ",$57 + text $52,"'s house " + done _PalletTownText7: - db 0,$53,"'s house ",$57 + text $53,"'s house " + done + diff --git a/text/mapRedsHouse1F.asm b/text/mapRedsHouse1F.asm index 69bed285..77bec0db 100644 --- a/text/mapRedsHouse1F.asm +++ b/text/mapRedsHouse1F.asm @@ -1,30 +1,38 @@ _MomWakeUpText: - db 0,"MOM: Right.",$4F - db "All boys leave",$55 - db "home some day.",$55 - db "It said so on TV.",$51 - db "PROF.OAK, next",$4F - db "door, is looking",$55 - db "for you.",$57 + text "MOM: Right." + line "All boys leave" + next "home some day." + next "It said so on TV." + + page "PROF.OAK, next" + line "door, is looking" + next "for you." + done _MomHealText1: - db 0,"MOM: ",$52,"!",$4F - db "You should take a",$55 - db "quick rest.",$58 + text "MOM: ",$52,"!" + line "You should take a" + next "quick rest." + prompt _MomHealText2: - db 0,"MOM: Oh good!",$4F - db "You and your",$55 - db "#MON are",$55 - db "looking great!",$55 - db "Take care now!",$57 + text "MOM: Oh good!" + line "You and your" + next "#MON are" + next "looking great!" + next "Take care now!" + done _StandByMeText: - db 0,"There's a movie",$4F - db "on TV. Four boys",$55 - db "are walking on",$55 - db "railroad tracks.",$51 - db "I better go too.",$57 + text "There's a movie" + line "on TV. Four boys" + next "are walking on" + next "railroad tracks." + + page "I better go too." + done _TVWrongSideText: - db 0,"Oops, wrong side.",$57 + text "Oops, wrong side." + done + 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 + From fea5be469940f400e41fed59a219897a7175d10d Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 00:33:44 -0500 Subject: [PATCH 16/41] rename and add some text macros cont replaces next, and next becomes a generic newline. para replaces page (now used for pokedex entries). dex ends a pokedex entry. --- macros.asm | 8 +- main.asm | 5106 +++++++++++++++++++-------------------- text/mapBluesHouse.asm | 12 +- text/mapPalletTown.asm | 22 +- text/mapRedsHouse1F.asm | 22 +- text/oakspeech.asm | 34 +- 6 files changed, 2604 insertions(+), 2600 deletions(-) diff --git a/macros.asm b/macros.asm index e07e0404..90fafdbe 100644 --- a/macros.asm +++ b/macros.asm @@ -1,11 +1,15 @@ text EQUS "db $00," ; Start writing text. +next EQUS "db $4e," ; Move a line down. line EQUS "db $4f," ; Start writing at the bottom line. -page EQUS "db $51," ; Start a new page. -next EQUS "db $55," ; Scroll to the next line. +para EQUS "db $51," ; Start a new paragraph. +cont EQUS "db $55," ; Scroll to the next line. done EQUS "db $57" ; End a text box. prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event). +page EQUS "db $49," ; Start a new Pokedex page. +dex EQUS "db $5f, $50" ; End a Pokedex entry. + ;\1 = X ;\2 = Y diff --git a/main.asm b/main.asm index ae1d0831..8a9ef84a 100644 --- a/main.asm +++ b/main.asm @@ -85144,10 +85144,10 @@ UnnamedText_561c2: ; 561c2 (15:61c2) db "@" UnnamedText_561c8: ; 561c8 - page "つり こそ" + para "つり こそ" line "おとこの ロマン だ!" - page "へぼいつりざおは" + para "へぼいつりざおは" line "コイキングしか つれ なんだが" line "この いいつりざおなら" line "もっと いいもんが つれるんじゃ!" @@ -115583,7 +115583,7 @@ _CardKeySuccessText1: ; 80000 (20:4000) _CardKeySuccessText2: ; 80009 (20:4009) db $0 line "The CARD KEY" - next "opened the door!" + cont "opened the door!" done _CardKeyFailText: ; 80029 (20:4029) @@ -115626,7 +115626,7 @@ _BoulderText: ; 800b1 (20:40b1) _MartSignText: ; 800d2 (20:40d2) text "All your item" line "needs fulfilled!" - next "#MON MART" + cont "#MON MART" done _PokeCenterSignText: ; 800fc (20:40fc) @@ -115648,41 +115648,41 @@ _NoMoreRoomForItemText: ; 8012a (20:412a) _UnnamedText_59091: ; 80143 (20:4143) text "Hi! Remember me?" line "I'm PROF.OAK's" - next "AIDE!" + cont "AIDE!" - page "If you caught @" + para "If you caught @" TX_NUM $ffdb, 1, 3 db $0 line "kinds of #MON," - next "I'm supposed to" - next "give you an" - next "@" + cont "I'm supposed to" + cont "give you an" + cont "@" TX_RAM $cc5b text "!" - page "So, ", $52, "! Have" + para "So, ", $52, "! Have" line "you caught at" - next "least @" + cont "least @" TX_NUM $ffdb, 1, 3 text " kinds of" - next "#MON?" + cont "#MON?" done _UnnamedText_59096: ; 801e4 (20:41e4) text "Let's see..." line "Uh-oh! You have" - next "caught only @" + cont "caught only @" UnnamedText_8020e: ; 8020e (20:420e) TX_NUM $ffdd, 1, 3 db $0 - next "kinds of #MON!" + cont "kinds of #MON!" - page "You need @" + para "You need @" TX_NUM $ffdb, 1, 3 text " kinds" line "if you want the" - next "@" + cont "@" TX_RAM $cc5b text "." done @@ -115690,11 +115690,11 @@ UnnamedText_8020e: ; 8020e (20:420e) _UnnamedText_5909b: ; 80250 (20:4250) text "Oh. I see." - page "When you get @" + para "When you get @" TX_NUM $ffdb, 1, 3 db $0 line "kinds, come back" - next "for @" + cont "for @" TX_RAM $cc5b text "." done @@ -115704,10 +115704,10 @@ _UnnamedText_590a0: ; 8028c (20:428c) line "caught @" TX_NUM $ffdd, 1, 3 text " kinds " - next "of #MON!" - next "Congratulations!" + cont "of #MON!" + cont "Congratulations!" - page "Here you go!" + para "Here you go!" prompt _UnnamedText_590a5: ; 802d9 (20:42d9) @@ -115719,8 +115719,8 @@ _UnnamedText_590a5: ; 802d9 (20:42d9) _UnnamedText_590ab: ; 802ec (20:42ec) text "Oh! I see you" line "don't have any" - next "room for the" - next "@" + cont "room for the" + cont "@" TX_RAM $cc5b text "." done @@ -115729,20 +115729,20 @@ _ViridianForestText1: ; 8031d (20:431d) text "I came here with" line "some friends!" - page "They're out for" + para "They're out for" line "#MON fights!" done _ViridianForestBattleText1: ; 80359 (20:4359) text "Hey! You have" line "#MON! Come on!" - next "Let's battle'em!" + cont "Let's battle'em!" done _ViridianForestEndBattleText1: ; 80387 (20:4387) text "No!" line "CATERPIE can't" - next "cut it!" + cont "cut it!" prompt _ViridianFrstAfterBattleText1: ; 803a2 (20:43a2) @@ -115753,19 +115753,19 @@ _ViridianFrstAfterBattleText1: ; 803a2 (20:43a2) _ViridianForestBattleText2: ; 803c3 (20:43c3) text "Yo! You can't jam" line "out if you're a" - next "#MON trainer!" + cont "#MON trainer!" done _ViridianForestEndBattleText2: ; 803f2 (20:43f2) text "Huh?" line "I ran out of" - next "#MON!" + cont "#MON!" prompt _ViridianFrstAfterBattleText2: ; 8040b (20:440b) text "Darn! I'm going" line "to catch some" - next "stronger ones!" + cont "stronger ones!" done _ViridianForestBattleText3: ; 80438 (20:4438) @@ -115776,83 +115776,83 @@ _ViridianForestBattleText3: ; 80438 (20:4438) _ViridianForestEndBattleText3: ; 80458 (20:4458) text "I" line "give! You're good" - next "at this!" + cont "at this!" prompt _ViridianFrstAfterBattleText3: ; 80475 (20:4475) text "Sometimes, you" line "can find stuff on" - next "the ground!" + cont "the ground!" - page "I'm looking for" + para "I'm looking for" line "the stuff I" - next "dropped!" + cont "dropped!" done _ViridianForestText8: ; 804c7 (20:44c7) text "I ran out of #" line "BALLs to catch" - next "#MON with!" + cont "#MON with!" - page "You should carry" + para "You should carry" line "extras!" done _ViridianForestText9: ; 8050a (20:450a) text "TRAINER TIPS" - page "If you want to" + para "If you want to" line "avoid battles," - next "stay away from" - next "grassy areas!" + cont "stay away from" + cont "grassy areas!" done _ViridianForestText10: ; 80553 (20:4553) text "For poison, use" line "ANTIDOTE! Get it" - next "at #MON MARTs!" + cont "at #MON MARTs!" done _ViridianForestText11: ; 80584 (20:4584) text "TRAINER TIPS" - page "Contact PROF.OAK" + para "Contact PROF.OAK" line "via PC to get" - next "your #DEX" - next "evaluated!" + cont "your #DEX" + cont "evaluated!" done _ViridianForestText12: ; 805c6 (20:45c6) text "TRAINER TIPS" - page "No stealing of" + para "No stealing of" line "#MON from" - next "other trainers!" - next "Catch only wild" - next "#MON!" + cont "other trainers!" + cont "Catch only wild" + cont "#MON!" done _ViridianForestText13: ; 80613 (20:4613) text "TRAINER TIPS" - page "Weaken #MON" + para "Weaken #MON" line "before attempting" - next "capture!" + cont "capture!" - page "When healthy," + para "When healthy," line "they may escape!" done _ViridianForestText14: ; 80667 (20:4667) text "LEAVING" line "VIRIDIAN FOREST" - next "PEWTER CITY AHEAD" + cont "PEWTER CITY AHEAD" done _MtMoon1BattleText2: ; 80692 (20:4692) text "WHOA! You shocked" line "me! Oh, you're" - next "just a kid!" + cont "just a kid!" done _MtMoon1EndBattleText2: ; 806bf (20:46bf) @@ -115863,7 +115863,7 @@ _MtMoon1EndBattleText2: ; 806bf (20:46bf) _MtMoon1AfterBattleText2: ; 806d4 (20:46d4) text "Kids like you" line "shouldn't be" - next "here!" + cont "here!" done _MtMoon1BattleText3: ; 806f5 (20:46f5) @@ -115879,13 +115879,13 @@ _MtMoon1EndBattleText3: ; 80713 (20:4713) _MtMoon1AfterBattleText3: ; 80723 (20:4723) text "I came down here" line "to show off to" - next "girls." + cont "girls." done _MtMoon1BattleText4: ; 8074b (20:474b) text "Wow! It's way" line "bigger in here" - next "than I thought!" + cont "than I thought!" done _MtMoon1EndBattleText4: ; 80778 (20:4778) @@ -115916,7 +115916,7 @@ _MtMoon1AfterBattleText5: ; 807d3 (20:47d3) _MtMoon1BattleText6: ; 807f2 (20:47f2) text "What? I'm waiting" line "for my friends to" - next "find me here." + cont "find me here." done _MtMoon1EndBattleText6: ; 80824 (20:4824) @@ -115926,13 +115926,13 @@ _MtMoon1EndBattleText6: ; 80824 (20:4824) _MtMoon1AfterBattleText6: ; 8082d (20:482d) text "I heard there are" line "some very rare" - next "fossils here." + cont "fossils here." done _MtMoon1BattleText7: ; 8085d (20:485d) text "Suspicious men" line "are in the cave." - next "What about you?" + cont "What about you?" done _MtMoon1EndBattleText7: ; 8088e (20:488e) @@ -115943,13 +115943,13 @@ _MtMoon1EndBattleText7: ; 8088e (20:488e) _MtMoon1AfterBattleText7: ; 8089b (20:489b) text "I saw them! I'm" line "sure they're from" - next "TEAM ROCKET!" + cont "TEAM ROCKET!" done _MtMoon1BattleText8: ; 808c9 (20:48c9) text "Go through this" line "cave to get to" - next "CERULEAN CITY!" + cont "CERULEAN CITY!" done _MtMoon1EndBattleText8: ; 808f8 (20:48f8) @@ -115960,8 +115960,8 @@ _MtMoon1EndBattleText8: ; 808f8 (20:48f8) _MtMoon1AfterBattleText8: ; 80901 (20:4901) text "ZUBAT is tough!" line "But, it can be" - next "useful if you" - next "catch one." + cont "useful if you" + cont "catch one." done _MtMoon1Text14: ; 8093a (20:493a) @@ -115996,9 +115996,9 @@ _UnnamedText_49f7f: ; 809a8 (20:49a8) _UnnamedText_49f85: ; 809cc (20:49cc) text "Hey, stop!" - page "I found these" + para "I found these" line "fossils! They're" - next "both mine!" + cont "both mine!" done _UnnamedText_49f8a: ; 80a01 (20:4a01) @@ -116009,18 +116009,18 @@ _UnnamedText_49f8a: ; 80a01 (20:4a01) _UnnamedText_49f8f: ; 80a11 (20:4a11) text "We'll each take" line "one!" - next "No being greedy!" + cont "No being greedy!" done _UnnamedText_49f94: ; 80a37 (20:4a37) text "Far away, on" line "CINNABAR ISLAND," - next "there's a #MON" - next "LAB." + cont "there's a #MON" + cont "LAB." - page "They do research" + para "They do research" line "on regenerating" - next "fossils." + cont "fossils." done _UnnamedText_49f99: ; 80a93 (20:4a93) @@ -116030,8 +116030,8 @@ _UnnamedText_49f99: ; 80a93 (20:4a93) _MtMoon3BattleText2: ; 80ab3 (20:4ab3) text "TEAM ROCKET will" line "find the fossils," - next "revive and sell" - next "them for cash!" + cont "revive and sell" + cont "them for cash!" done _MtMoon3EndBattleText2: ; 80af6 (20:4af6) @@ -116042,13 +116042,13 @@ _MtMoon3EndBattleText2: ; 80af6 (20:4af6) _MtMoon3AfterBattleText2: ; 80b09 (20:4b09) text "You made me mad!" line "TEAM ROCKET will" - next "blacklist you!" + cont "blacklist you!" done _MtMoon3BattleText3: ; 80b3b (20:4b3b) text "We, TEAM ROCKET," line "are #MON" - next "gangsters!" + cont "gangsters!" done _MtMoon3EndBattleText3: ; 80b61 (20:4b61) @@ -116059,13 +116059,13 @@ _MtMoon3EndBattleText3: ; 80b61 (20:4b61) _MtMoon3AfterBattleText3: ; 80b6d (20:4b6d) text "Darn it all! My" line "associates won't" - next "stand for this!" + cont "stand for this!" done _MtMoon3BattleText4: ; 80b9e (20:4b9e) text "We're pulling a" line "big job here!" - next "Get lost, kid!" + cont "Get lost, kid!" done _MtMoon3EndBattleText4: ; 80bcb (20:4bcb) @@ -116076,13 +116076,13 @@ _MtMoon3EndBattleText4: ; 80bcb (20:4bcb) _MtMoon3AfterBattleText4: ; 80bde (20:4bde) text "If you find a" line "fossil, give it" - next "to me and scram!" + cont "to me and scram!" done _MtMoon3BattleText5: ; 80c0e (20:4c0e) text "Little kids" line "should leave" - next "grown-ups alone!" + cont "grown-ups alone!" done _MtMoon3EndBattleText5: ; 80c39 (20:4c39) @@ -116093,19 +116093,19 @@ _MtMoon3EndBattleText5: ; 80c39 (20:4c39) _MtMoon3AfterBattleText5: ; 80c46 (20:4c46) text "#MON lived" line "here long before" - next "people came." + cont "people came." done _SSAnne1Text1: ; 80c70 (20:4c70) text "Bonjour!" line "I am le waiter on" - next "this ship!" + cont "this ship!" - page "I will be happy" + para "I will be happy" line "to serve you any-" - next "thing you please!" + cont "thing you please!" - page "Ah! Le strong" + para "Ah! Le strong" line "silent type!" done @@ -116113,72 +116113,72 @@ _SSAnne1Text2: ; 80ce6 (20:4ce6) text "The passengers" line "are restless!" - page "You might be" + para "You might be" line "challenged by the" - next "more bored ones!" + cont "more bored ones!" done _SSAnne2Text1: ; 80d34 (20:4d34) text "This ship, she is" line "a luxury liner" - next "for trainers!" + cont "for trainers!" - page "At every port, we" + para "At every port, we" line "hold parties with" - next "invited trainers!" + cont "invited trainers!" done _SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) text $53, ": Bonjour!" line $52, "!" - page "Imagine seeing" + para "Imagine seeing" line "you here!" - page $52, ", were you" + para $52, ", were you" line "really invited?" - page "So how's your" + para "So how's your" line "#DEX coming?" - page "I already caught" + para "I already caught" line "40 kinds, pal!" - page "Different kinds" + para "Different kinds" line "are everywhere!" - page "Crawl around in" + para "Crawl around in" line "grassy areas!" done _SSAnneRivalDefeatedText: ; 80e57 (20:4e57) text "Humph!" - page "At least you're" + para "At least you're" line "raising your" - next "#MON!" + cont "#MON!" prompt _SSAnneRivalWonText: ; 80e81 (20:4e81) text $52, "! What are" line "you, seasick?" - page "You should shape" + para "You should shape" line "up, pal!" prompt _SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) text $53, ": I heard" line "there was a CUT" - next "master on board." + cont "master on board." - page "But, he was just a" + para "But, he was just a" line "seasick, old man!" - page "But, CUT itself is" + para "But, CUT itself is" line "really useful!" - page "You should go see" + para "You should go see" line "him! Smell ya!" done @@ -116186,14 +116186,14 @@ _SSAnne3Text1: ; 80f4b (20:4f4b) text "Our CAPTAIN is a" line "sword master!" - page "He even teaches" + para "He even teaches" line "CUT to #MON!" done _SSAnne5Text1: ; 80f88 (20:4f88) text "The party's over." line "The ship will be" - next "departing soon." + cont "departing soon." done _SSAnne5Text2: ; 80fbb (20:4fbb) @@ -116204,14 +116204,14 @@ _SSAnne5Text2: ; 80fbb (20:4fbb) _SSAnne5Text3: ; 80fda (20:4fda) text "Urf. I feel ill." - page "I stepped out to" + para "I stepped out to" line "get some air." done _SSAnneBattleText1: ; 8100b (20:500b) text "Hey matey!" - page "Let's do a little" + para "Let's do a little" line "jig!" done @@ -116223,7 +116223,7 @@ _SSAnneEndBattleText1: ; 8102d (20:502d) _SSAnneAfterBattleText1: ; 81040 (20:5040) text "How many kinds of" line "#MON do you" - next "think there are?" + cont "think there are?" done _SSAnneBattleText2: ; 81070 (20:5070) @@ -116239,14 +116239,14 @@ _SSAnneEndBattleText2: ; 8108e (20:508e) _SSAnneAfterBattleText2: ; 810a4 (20:50a4) text "My Pa said there" line "are 100 kinds of" - next "#MON. I think" - next "there are more." + cont "#MON. I think" + cont "there are more." done _SSAnne6Text1: ; 810e5 (20:50e5) text "You, mon petit!" line "We're busy here!" - next "Out of the way!" + cont "Out of the way!" done _SSAnne6Text2: ; 81116 (20:5116) @@ -116263,86 +116263,86 @@ _SSAnne6Text4: ; 81155 (20:5155) text "Hum-de-hum-de-" line "ho..." - page "I peel spuds" + para "I peel spuds" line "every day!" - next "Hum-hum..." + cont "Hum-hum..." done _SSAnne6Text5: ; 8118e (20:518e) text "Did you hear about" line "SNORLAX?" - page "All it does is" + para "All it does is" line "eat and sleep!" done _SSAnne6Text6: ; 811c9 (20:51c9) text "Snivel...Sniff..." - page "I only get to" + para "I only get to" line "peel onions..." - next "Snivel..." + cont "Snivel..." done _UnnamedText_61807: ; 81203 (20:5203) text "Er-hem! Indeed I" line "am le CHEF!" - page "Le main course is" + para "Le main course is" prompt _UnnamedText_6180c: ; 81233 (20:5233) text "Salmon du Salad!" - page "Les guests may" + para "Les guests may" line "gripe it's fish" - next "again, however!" + cont "again, however!" done _UnnamedText_61811: ; 81273 (20:5273) text "Eels au Barbecue!" - page "Les guests will" + para "Les guests will" line "mutiny, I fear." done _UnnamedText_61816: ; 812a6 (20:52a6) text "Prime Beef Steak!" - page "But, have I enough" + para "But, have I enough" line "fillets du beef?" done _SSAnne7RubText: ; 812dd (20:52dd) text "CAPTAIN: Ooargh..." line "I feel hideous..." - next "Urrp! Seasick..." + cont "Urrp! Seasick..." - page $52, " rubbed" + para $52, " rubbed" line "the CAPTAIN's" - next "back!" + cont "back!" - page "Rub-rub..." + para "Rub-rub..." line "Rub-rub...@@" _ReceivingHM01Text: ; 81347 (20:5347) text "CAPTAIN: Whew!" line "Thank you! I" - next "feel much better!" + cont "feel much better!" - page "You want to see" + para "You want to see" line "my CUT technique?" - page "I could show you" + para "I could show you" line "if I wasn't ill..." - page "I know! You can" + para "I know! You can" line "have this!" - page "Teach it to your" + para "Teach it to your" line "#MON and you" - next "can see it CUT" - next "any time!" + cont "can see it CUT" + cont "any time!" prompt _ReceivedHM01Text: ; 8140d (20:540d) @@ -116354,9 +116354,9 @@ _ReceivedHM01Text: ; 8140d (20:540d) _UnnamedText_61932: ; 8141c (20:541c) text "CAPTAIN: Whew!" - page "Now that I'm not" + para "Now that I'm not" line "sick any more, I" - next "guess it's time." + cont "guess it's time." done _HM01NoRoomText: ; 8145d (20:545d) @@ -116372,8 +116372,8 @@ _SSAnne7Text2: ; 81480 (20:5480) _SSAnne7Text3: ; 8149d (20:549d) text "How to Conquer" line "Seasickness..." - next "The CAPTAIN's" - next "reading this!" + cont "The CAPTAIN's" + cont "reading this!" done _SSAnne8Text8: ; 814d7 (20:54d7) @@ -116384,7 +116384,7 @@ _SSAnne8BattleText1: ; 814f1 (20:54f1) text "I travel alone" line "on my journeys!" - page "My #MON are my" + para "My #MON are my" line "only friends!" done @@ -116427,35 +116427,35 @@ _SSAnne8AfterBattleText3: ; 815e7 (20:55e7) text "Let me be your" line "friend, OK?" - page "Then we can trade" + para "Then we can trade" line "#MON!" done _SSAnne8BattleText4: ; 8161b (20:561b) text "I collected these" line "#MON from all" - next "around the world!" + cont "around the world!" done _SSAnne8EndBattleText4: ; 8164e (20:564e) text "Oh no!" line "I went around the" - next "world for these!" + cont "world for these!" prompt _SSAnne8AfterBattleText4: ; 81679 (20:5679) text "You hurt my poor" line "worldly #MON!" - page "I demand that you" + para "I demand that you" line "heal them at a" - next "#MON CENTER!" + cont "#MON CENTER!" done _SSAnne8Text5: ; 816c7 (20:56c7) text "Waiter, I would" line "like a cherry pie" - next "please!" + cont "please!" done _SSAnne8Text6: ; 816f2 (20:56f2) @@ -116477,25 +116477,25 @@ _SSAnne8Text11: ; 81759 (20:5759) text "Ssh! I'm a GLOBAL" line "POLICE agent!" - page "I'm on the trail" + para "I'm on the trail" line "of TEAM ROCKET!" done _UnnamedText_61bf2: ; 81799 (20:5799) text "In all my travels" line "I've never seen" - next "any #MON sleep" - next "like this one!" + cont "any #MON sleep" + cont "like this one!" - page "It was something" + para "It was something" line "like this!" prompt _UnnamedText_61c01: ; 817f5 (20:57f5) text "Ah yes, I have" line "seen some #MON" - next "ferry people" - next "across the water!" + cont "ferry people" + cont "across the water!" done _UnnamedText_61c10: ; 81833 (20:5833) @@ -116506,22 +116506,22 @@ _UnnamedText_61c10: ; 81833 (20:5833) _UnnamedText_61c1f: ; 81854 (20:5854) text "Have you gone to" line "the SAFARI ZONE" - next "in FUCHSIA CITY?" + cont "in FUCHSIA CITY?" - page "It had many rare" + para "It had many rare" line "kinds of #MON!!" done _UnnamedText_61c2e: ; 818a8 (20:58a8) text "Me and my Daddy" line "think the SAFARI" - next "ZONE is awesome!" + cont "ZONE is awesome!" done _UnnamedText_61c3d: ; 818db (20:58db) text "The CAPTAIN looked" line "really sick and" - next "pale!" + cont "pale!" done _UnnamedText_61c4c: ; 81905 (20:5905) @@ -116532,13 +116532,13 @@ _UnnamedText_61c4c: ; 81905 (20:5905) _SSAnne9BattleText1: ; 81926 (20:5926) text "Competing against" line "the young keeps" - next "me youthful." + cont "me youthful." done _SSAnne9EndBattleText1: ; 81956 (20:5956) text "Good" line "fight! Ah, I feel" - next "young again!" + cont "young again!" prompt _SSAnne9AfterBattleText1: ; 8197b (20:597b) @@ -116559,15 +116559,15 @@ _SSAnne9EndBattleText2: ; 819b9 (20:59b9) _SSAnne9AfterBattleText2: ; 819c6 (20:59c6) text "Party?" - page "The cruise ship's" + para "The cruise ship's" line "party should be" - next "over by now." + cont "over by now." done _SSAnne9BattleText3: ; 819fc (20:59fc) text "Which do you like," line "a strong or a" - next "rare #MON?" + cont "rare #MON?" done _SSAnne9EndBattleText3: ; 81a29 (20:5a29) @@ -116602,7 +116602,7 @@ _SSAnne10Text8: ; 81aaa (20:5aaa) _SSAnne10BattleText1: ; 81ac3 (20:5ac3) text "You know what they" line "say about sailors" - next "and fighting!" + cont "and fighting!" done _SSAnne10EndBattleText1: ; 81af7 (20:5af7) @@ -116628,7 +116628,7 @@ _SSAnne10EndBattleText2: ; 81b52 (20:5b52) _SSAnne10AfterBattleText2: ; 81b68 (20:5b68) text "Did you see the" line "FISHING GURU in" - next "VERMILION CITY?" + cont "VERMILION CITY?" done _SSAnne10BattleText3: ; 81b99 (20:5b99) @@ -116644,7 +116644,7 @@ _SSAnne10EndBattleText3: ; 81bb4 (20:5bb4) _SSAnne10AfterBattleText3: ; 81bc9 (20:5bc9) text "We caught all our" line "#MON while" - next "out at sea!" + cont "out at sea!" done _SSAnne10BattleText4: ; 81bf3 (20:5bf3) @@ -116659,13 +116659,13 @@ _SSAnne10EndBattleText4: ; 81c12 (20:5c12) _SSAnne10AfterBattleText4: ; 81c22 (20:5c22) text "Sea #MON live" line "in deep water." - next "You'll need a ROD!" + cont "You'll need a ROD!" done _SSAnne10BattleText5: ; 81c52 (20:5c52) text "Matey, you're" line "walking the plank" - next "if you lose!" + cont "if you lose!" done _SSAnne10EndBattleText5: ; 81c7f (20:5c7f) @@ -116676,36 +116676,36 @@ _SSAnne10EndBattleText5: ; 81c7f (20:5c7f) _SSAnne10AfterBattleText5: ; 81c97 (20:5c97) text "Jellyfish some-" line "times drift into" - next "the ship." + cont "the ship." done _SSAnne10BattleText6: ; 81cc3 (20:5cc3) text "Hello stranger!" line "Stop and chat!" - page "All my #MON" + para "All my #MON" line "are from the sea!" done _SSAnne10EndBattleText6: ; 81d01 (20:5d01) text "Darn!" line "I let that one" - next "get away!" + cont "get away!" prompt _SSAnne10AfterBattleText6: ; 81d21 (20:5d21) text "I was going to" line "make you my" - next "assistant too!" + cont "assistant too!" done _SSAnne10Text7: ; 81d4c (20:5d4c) text "My buddy, MACHOKE," line "is super strong!" - page "He has enough" + para "He has enough" line "STRENGTH to move" - next "big rocks!" + cont "big rocks!" done _VictoryRoad3BattleText2: ; 81d9b (20:5d9b) @@ -116751,14 +116751,14 @@ _VictoryRoad3EndBattleText4: ; 81e6f (20:5e6f) _VictoryRoad3AfterBattleText4: ; 81e83 (20:5e83) text "All trainers here" line "are headed to the" - next "#MON LEAGUE!" - next "Be careful!" + cont "#MON LEAGUE!" + cont "Be careful!" done _VictoryRoad3BattleText5: ; 81ec1 (20:5ec1) text "Trainers live to" line "seek stronger" - next "opponents!" + cont "opponents!" done _VictoryRoad3EndBattleText5: ; 81eec (20:5eec) @@ -116769,7 +116769,7 @@ _VictoryRoad3EndBattleText5: ; 81eec (20:5eec) _VictoryRoad3AfterBattleText5: ; 81efc (20:5efc) text "By fighting tough" line "battles, you get" - next "stronger!" + cont "stronger!" done _RocketHideout1EndBattleText6: ; 81f2a (20:5f2a) @@ -116802,7 +116802,7 @@ _RocketHideout1EndBattleText3: ; 81fa3 (20:5fa3) _RocketHideout1AfterBattleTxt3: ; 81fab (20:5fab) text "You're not going" line "to get away with" - next "this, brat!" + cont "this, brat!" done _RocketHideout1BattleText4: ; 81fd9 (20:5fd9) @@ -116817,7 +116817,7 @@ _RocketHideout1EndBattleText4: ; 81fea (20:5fea) _RocketHideout1AfterBattleTxt4: ; 81ff9 (20:5ff9) text "SILPH SCOPE?" line "I don't know" - next "where it is!" + cont "where it is!" done _RocketHideout1BattleText5: ; 82020 (20:6020) @@ -116833,7 +116833,7 @@ _RocketHideout1EndBattleText5: ; 82038 (20:6038) _RocketHideout1AfterBattleTxt5: ; 82047 (20:6047) text "OK, I'll talk!" line "Take the elevator" - next "to see my BOSS!" + cont "to see my BOSS!" done _RocketHideout1BattleText6: ; 82078 (20:6078) @@ -116849,7 +116849,7 @@ _RocketHideout1AfterBattleTxt6: ; 82097 (20:6097) _RocketHideout2BattleText2: ; 820bb (20:60bb) text "BOSS said you can" line "see GHOSTs with" - next "the SILPH SCOPE!" + cont "the SILPH SCOPE!" done _RocketHideout2EndBattleText2: ; 820ef (20:60ef) @@ -116860,14 +116860,14 @@ _RocketHideout2EndBattleText2: ; 820ef (20:60ef) _RocketHideout2AfterBattleTxt2: ; 820fd (20:60fd) text "The TEAM ROCKET" line "HQ has 4 basement" - next "floors. Can you" - next "reach the BOSS?" + cont "floors. Can you" + cont "reach the BOSS?" done _RocketHideout3BattleText2: ; 82140 (20:6140) text "Stop meddling in" line "TEAM ROCKET's" - next "affairs!" + cont "affairs!" done _RocketHideout3EndBattleText2: ; 82168 (20:6168) @@ -116878,14 +116878,14 @@ _RocketHideout3EndBattleText2: ; 82168 (20:6168) _RocketHideout3AfterBattleTxt2: ; 8217a (20:617a) text "SILPH SCOPE?" line "The machine the" - next "BOSS stole. It's" - next "here somewhere." + cont "BOSS stole. It's" + cont "here somewhere." done _RocketHideout3BattleTxt: ; 821b8 (20:61b8) text "We got word from" line "upstairs that you" - next "were coming!" + cont "were coming!" done _RocketHideout3EndBattleText3: ; 821e9 (20:61e9) @@ -116896,14 +116896,14 @@ _RocketHideout3EndBattleText3: ; 821e9 (20:61e9) _RocketHide3AfterBattleText3: ; 821fc (20:61fc) text "Go ahead and go!" line "But, you need the" - next "LIFT KEY to run" - next "the elevator!" + cont "LIFT KEY to run" + cont "the elevator!" done _UnnamedText_4557a: ; 8223e (20:623e) text "So! I must say, I" line "am impressed you" - next "got here!" + cont "got here!" done _UnnamedText_4557f: ; 8226c (20:626c) @@ -116914,24 +116914,24 @@ _UnnamedText_4557f: ; 8226c (20:626c) _UnnamedText_45584: ; 82283 (20:6283) text "I see that you" line "raise #MON" - next "with utmost care." + cont "with utmost care." - page "A child like you" + para "A child like you" line "would never" - next "understand what I" - next "hope to achieve." + cont "understand what I" + cont "hope to achieve." - page "I shall step" + para "I shall step" line "aside this time!" - page "I hope we meet" + para "I hope we meet" line "again..." done _RocketHideout4BattleText2: ; 82326 (20:6326) text "I know you! You" line "ruined our plans" - next "at MT.MOON!" + cont "at MT.MOON!" done _RocketHideout4EndBattleText2: ; 82354 (20:6354) @@ -116942,13 +116942,13 @@ _RocketHideout4EndBattleText2: ; 82354 (20:6354) _RocketHide4AfterBattleText2: ; 82363 (20:6363) text "Do you have" line "something against" - next "TEAM ROCKET?" + cont "TEAM ROCKET?" done _RocketHideout4BattleText3: ; 8238f (20:638f) text "How can you not" line "see the beauty of" - next "our evil?" + cont "our evil?" done _RocketHideout4EndBattleText3: ; 823bc (20:63bc) @@ -116963,7 +116963,7 @@ _RocketHide4AfterBattleText3: ; 823c4 (20:63c4) _RocketHideout4BattleText4: ; 823e2 (20:63e2) text "The elevator" line "doesn't work? Who" - next "has the LIFT KEY?" + cont "has the LIFT KEY?" done _RocketHideout4EndBattleText4: ; 82413 (20:6413) @@ -116983,11 +116983,11 @@ _UnnamedText_59ded: ; 82454 (20:6454) text "Eeek!" line "No! Stop! Help!" - page "Oh, you're not" + para "Oh, you're not" line "with TEAM ROCKET." - next "I thought..." - next "I'm sorry. Here," - next "please take this!" + cont "I thought..." + cont "I'm sorry. Here," + cont "please take this!" prompt _ReceivedTM36Text: ; 824ba (20:64ba) @@ -117000,10 +117000,10 @@ _TM36ExplanationText: ; 824c9 (20:64c9) text "TM36 is" line "SELFDESTRUCT!" - page "It's powerful, but" + para "It's powerful, but" line "the #MON that" - next "uses it faints!" - next "Be careful." + cont "uses it faints!" + cont "Be careful." done _TM36NoRoomText: ; 8251c (20:651c) @@ -117019,13 +117019,13 @@ _SilphCo2BattleText1: ; 8253e (20:653e) _SilphCo2EndBattleText1: ; 8255a (20:655a) text "How" line "did you know I" - next "was a ROCKET?" + cont "was a ROCKET?" prompt _SilphCo2AfterBattleText1: ; 8257c (20:657c) text "I work for both" line "SILPH and TEAM" - next "ROCKET!" + cont "ROCKET!" done _SilphCo2BattleText2: ; 825a4 (20:65a4) @@ -117055,9 +117055,9 @@ _SilphCo2EndBattleText3: ; 8260f (20:660f) _SilphCo2AfterBattleText3: ; 82617 (20:6617) text "Diamond shaped" line "tiles are" - next "teleport blocks!" + cont "teleport blocks!" - page "They're hi-tech" + para "They're hi-tech" line "transporters!" done @@ -117073,7 +117073,7 @@ _SilphCo2EndBattleText4: ; 82682 (20:6682) _SilphCo2AfterBattleText4: ; 8268d (20:668d) text "SILPH CO. will" line "be merged with" - next "TEAM ROCKET!" + cont "TEAM ROCKET!" done _UnnamedText_59ff9: ; 826b9 (20:66b9) @@ -117084,7 +117084,7 @@ _UnnamedText_59ff9: ; 826b9 (20:66b9) _UnnamedText_59ffe: ; 826de (20:66de) text $52, "! You and" line "your #MON" - next "saved us!" + cont "saved us!" done _SilphCo3BattleText1: ; 826fe (20:66fe) @@ -117100,13 +117100,13 @@ _SilphCo3EndBattleText1: ; 8271a (20:671a) _SilphCo3AfterBattleText1: ; 82726 (20:6726) text "A hint? You can" line "open doors with a" - next "CARD KEY!" + cont "CARD KEY!" done _SilphCo3BattleText2: ; 82753 (20:6753) text "I support TEAM" line "ROCKET more than" - next "I support SILPH!" + cont "I support SILPH!" done _SilphCo3EndBattleText2: ; 82785 (20:6785) @@ -117117,10 +117117,10 @@ _SilphCo3EndBattleText2: ; 82785 (20:6785) _SilphCo3AfterBattleText2: ; 82799 (20:6799) text "Humph..." - page "TEAM ROCKET said" + para "TEAM ROCKET said" line "that if I helped" - next "them, they'd let" - next "me study #MON!" + cont "them, they'd let" + cont "me study #MON!" done _UnnamedText_19de0: ; 827e4 (20:67e4) @@ -117136,7 +117136,7 @@ _UnnamedText_19de5: ; 82803 (20:6803) _SilphCo4BattleText2: ; 8281e (20:681e) text "TEAM ROCKET has" line "taken command of" - next "SILPH CO.!" + cont "SILPH CO.!" done _SilphCo4EndBattleText2: ; 8284b (20:684b) @@ -117146,7 +117146,7 @@ _SilphCo4EndBattleText2: ; 8284b (20:684b) _SilphCo4AfterBattleText2: ; 82853 (20:6853) text "Fwahahaha!" line "My BOSS has been" - next "after this place!" + cont "after this place!" done _SilphCo4BattleText3: ; 82882 (20:6882) @@ -117162,8 +117162,8 @@ _SilphCo4EndBattleText3: ; 828a2 (20:68a2) _SilphCo4AfterBattleText3: ; 828b8 (20:68b8) text "The doors are" line "electronically" - next "locked! A CARD" - next "KEY opens them!" + cont "locked! A CARD" + cont "KEY opens them!" done _SilphCo4BattleText4: ; 828f5 (20:68f5) @@ -117183,14 +117183,14 @@ _SilphCo4AfterBattleText4: ; 82916 (20:6916) _UnnamedText_1a010: ; 82936 (20:6936) text "TEAM ROCKET is" line "in an uproar over" - next "some intruder." - next "That's you right?" + cont "some intruder." + cont "That's you right?" done _UnnamedText_1a015: ; 82978 (20:6978) text "TEAM ROCKET took" line "off! You're our" - next "hero! Thank you!" + cont "hero! Thank you!" done _SilphCo5BattleText2: ; 829aa (20:69aa) @@ -117205,13 +117205,13 @@ _SilphCo5EndBattleText2: ; 829cf (20:69cf) _SilphCo5AfterBattleText2: ; 829d6 (20:69d6) text "It's not smart" line "to pick a fight" - next "with TEAM ROCKET!" + cont "with TEAM ROCKET!" done _SilphCo5BattleText3: ; 82a07 (20:6a07) text "We study #" line "BALL technology" - next "on this floor!" + cont "on this floor!" done _SilphCo5EndBattleText3: ; 82a32 (20:6a32) @@ -117222,14 +117222,14 @@ _SilphCo5EndBattleText3: ; 82a32 (20:6a32) _SilphCo5AfterBattleText3: ; 82a43 (20:6a43) text "We worked on the" line "ultimate #" - next "BALL which would" - next "catch anything!" + cont "BALL which would" + cont "catch anything!" done _SilphCo5BattleText4: ; 82a81 (20:6a81) text "Whaaat? There" line "shouldn't be any" - next "children here?" + cont "children here?" done SECTION "bank21",ROMX,BANK[$21] @@ -117242,7 +117242,7 @@ _SilphCo5EndBattleText4: ; 84000 (21:4000) _SilphCo5AfterBattleText4: ; 8400e (21:400e) text "You're only on 5F." line "It's a long way" - next "to my BOSS!" + cont "to my BOSS!" done _SilphCo5BattleText5: ; 8403c (21:403c) @@ -117258,7 +117258,7 @@ _SilphCo5EndBattleText5: ; 84060 (21:4060) _SilphCo5AfterBattleText5: ; 84073 (21:4073) text "Which reminds me." - page "KOFFING evolves" + para "KOFFING evolves" line "into WEEZING!" done @@ -117266,34 +117266,34 @@ _SilphCo5Text9: ; 840a4 (21:40a4) text "It's a #MON" line "REPORT!" - page "#MON LAB" + para "#MON LAB" line "created PORYGON," - next "the first virtual" - next "reality #MON." + cont "the first virtual" + cont "reality #MON." done _SilphCo5Text10: ; 840f2 (21:40f2) text "It's a #MON" line "REPORT!" - page "Over 160 #MON" + para "Over 160 #MON" line "techniques have" - next "been confirmed." + cont "been confirmed." done _SilphCo5Text11: ; 84134 (21:4134) text "It's a #MON" line "REPORT!" - page "4 #MON evolve" + para "4 #MON evolve" line "only when traded" - next "by link-cable." + cont "by link-cable." done _UnnamedText_1a24a: ; 84176 (21:4176) text "The ROCKETs came" line "and took over the" - next "building!" + cont "building!" done _UnnamedText_1a24f: ; 841a4 (21:41a4) @@ -117319,14 +117319,14 @@ _UnnamedText_1a278: ; 841ff (21:41ff) _UnnamedText_1a27d: ; 84220 (21:4220) text "I feel so sorry" line "for him, I have" - next "to marry him!" + cont "to marry him!" done _UnnamedText_1a28f: ; 8424f (21:424f) text "TEAM ROCKET is" line "trying to conquer" - next "the world with" - next "#MON!" + cont "the world with" + cont "#MON!" done _UnnamedText_1a294: ; 84286 (21:4286) @@ -117337,14 +117337,14 @@ _UnnamedText_1a294: ; 84286 (21:4286) _UnnamedText_1a2a6: ; 842a7 (21:42a7) text "They must have" line "targeted SILPH" - next "for our #MON" - next "products." + cont "for our #MON" + cont "products." done _UnnamedText_1a2ab: ; 842dd (21:42dd) text "Come work for" line "SILPH when you" - next "get older!" + cont "get older!" done _SilphCo6BattleText2: ; 84306 (21:4306) @@ -117360,16 +117360,16 @@ _SilphCo6EndBattleText2: ; 8432a (21:432a) _SilphCo6AfterBattleText2: ; 84336 (21:4336) text "No matter!" line "My brothers will" - next "avenge me!" + cont "avenge me!" done _SilphCo6BattleText3: ; 8435e (21:435e) text "That rotten" line "PRESIDENT!" - page "He shouldn't have" + para "He shouldn't have" line "sent me to the" - next "TIKSI BRANCH!" + cont "TIKSI BRANCH!" done _SilphCo6EndBattleText3: ; 843a4 (21:43a4) @@ -117379,7 +117379,7 @@ _SilphCo6EndBattleText3: ; 843a4 (21:43a4) _SilphCo6AfterBattleText3: ; 843ac (21:43ac) text "TIKSI BRANCH?" line "It's in Russian" - next "no man's land!" + cont "no man's land!" done _SilphCo6BattleText4: ; 843d8 (21:43d8) @@ -117395,43 +117395,43 @@ _SilphCo6EndBattleText4: ; 843f6 (21:43f6) _SilphCo6AfterBattleText4: ; 84404 (21:4404) text "If you stand for" line "justice, you" - next "betray evil!" + cont "betray evil!" done _UnnamedText_51dd3: ; 84430 (21:4430) text "Oh! Hi! You're" line "not a ROCKET! You" - next "came to save us?" - next "Why, thank you!" + cont "came to save us?" + cont "Why, thank you!" - page "I want you to" + para "I want you to" line "have this #MON" - next "for saving us." + cont "for saving us." prompt _UnnamedText_51dd8: ; 8449e (21:449e) text "It's LAPRAS. It's" line "very intelligent." - page "We kept it in our" + para "We kept it in our" line "lab, but it will" - next "be much better" - next "off with you!" + cont "be much better" + cont "off with you!" - page "I think you will" + para "I think you will" line "be a good trainer" - next "for LAPRAS!" + cont "for LAPRAS!" - page "It's a good" + para "It's a good" line "swimmer. It'll" - next "give you a lift!" + cont "give you a lift!" done _UnnamedText_51ddd: ; 8455a (21:455a) text "TEAM ROCKET's" line "BOSS went to the" - next "boardroom! Is our" - next "PRESIDENT OK?" + cont "boardroom! Is our" + cont "PRESIDENT OK?" done _UnnamedText_51de2: ; 84599 (21:4599) @@ -117442,35 +117442,35 @@ _UnnamedText_51de2: ; 84599 (21:4599) _UnnamedText_51e00: ; 845b4 (21:45b4) text "TEAM ROCKET was" line "after the MASTER" - next "BALL which will" - next "catch any #MON!" + cont "BALL which will" + cont "catch any #MON!" done _UnnamedText_51e05: ; 845f6 (21:45f6) text "We canceled the" line "MASTER BALL" - next "project because" - next "of TEAM ROCKET." + cont "project because" + cont "of TEAM ROCKET." done _UnnamedText_51e23: ; 84633 (21:4633) text "It would be bad" line "if TEAM ROCKET" - next "took over SILPH" - next "or our #MON!" + cont "took over SILPH" + cont "or our #MON!" done _UnnamedText_51e28: ; 84670 (21:4670) text "Wow! You chased" line "off TEAM ROCKET" - next "all by yourself?" + cont "all by yourself?" done _UnnamedText_51e46: ; 846a2 (21:46a2) text "You! It's really" line "dangerous here!" - next "You came to save" - next "me? You can't!" + cont "You came to save" + cont "me? You can't!" done _UnnamedText_51e4b: ; 846e2 (21:46e2) @@ -117491,13 +117491,13 @@ _SilphCo7EndBattleText1: ; 8471d (21:471d) _SilphCo7AfterBattleText1: ; 8472a (21:472a) text "You won't find my" line "BOSS by just" - next "scurrying around!" + cont "scurrying around!" done _SilphCo7BattleText2: ; 8475b (21:475b) text "Heheh!" - page "You mistook me for" + para "You mistook me for" line "a SILPH worker?" done @@ -117509,7 +117509,7 @@ _SilphCo7EndBattleText2: ; 84786 (21:4786) _SilphCo7AfterBattleText2: ; 84790 (21:4790) text "Despite your age," line "you are a skilled" - next "trainer!" + cont "trainer!" done _SilphCo7BattleText3: ; 847be (21:47be) @@ -117525,7 +117525,7 @@ _SilphCo7EndBattleText3: ; 847e2 (21:47e2) _SilphCo7AfterBattleText3: ; 847fb (21:47fb) text "Doesn't matter." line "My brothers will" - next "repay the favor!" + cont "repay the favor!" done _SilphCo7BattleText4: ; 8482d (21:482d) @@ -117541,7 +117541,7 @@ _SilphCo7EndBattleText4: ; 84852 (21:4852) _SilphCo7AfterBattleText4: ; 84861 (21:4861) text "Go on home" line "before my BOSS" - next "gets ticked off!" + cont "gets ticked off!" done _UnnamedText_51ebe: ; 8488d (21:488d) @@ -117552,60 +117552,60 @@ _UnnamedText_51ebe: ; 8488d (21:488d) _UnnamedText_51ec3: ; 848a2 (21:48a2) text $53, ": Hahaha!" line "I thought you'd" - next "turn up if I" - next "waited here!" + cont "turn up if I" + cont "waited here!" - page "I guess TEAM" + para "I guess TEAM" line "ROCKET slowed you" - next "down! Not that I" - next "care!" + cont "down! Not that I" + cont "care!" - page "I saw you in" + para "I saw you in" line "SAFFRON, so I" - next "decided to see if" - next "you got better!" + cont "decided to see if" + cont "you got better!" done _UnnamedText_51ec8: ; 8494a (21:494a) text "Oh ho!" line "So, you are ready" - next "for BOSS ROCKET!" + cont "for BOSS ROCKET!" prompt _UnnamedText_51ecd: ; 84975 (21:4975) text $53, ": How can" line "I put this?" - page "You're not good" + para "You're not good" line "enough to play" - next "with us big boys!" + cont "with us big boys!" prompt _UnnamedText_51ed2: ; 849bd (21:49bd) text "Well, ", $52, "!" - page "I'm moving on up" + para "I'm moving on up" line "and ahead!" - page "By checking my" + para "By checking my" line "#DEX, I'm" - next "starting to see" - next "what's strong and" - next "how they evolve!" + cont "starting to see" + cont "what's strong and" + cont "how they evolve!" - page "I'm going to the" + para "I'm going to the" line "#MON LEAGUE" - next "to boot out the" - next "ELITE FOUR!" + cont "to boot out the" + cont "ELITE FOUR!" - page "I'll become the" + para "I'll become the" line "world's most" - next "powerful trainer!" + cont "powerful trainer!" - page $52, ", well" + para $52, ", well" line "good luck to you!" - next "Don't sweat it!" - next "Smell ya!" + cont "Don't sweat it!" + cont "Smell ya!" done _UnnamedText_565be: ; 84ac4 (21:4ac4) @@ -117631,7 +117631,7 @@ _SilphCo8EndBattleText1: ; 84b18 (21:4b18) _SilphCo8AfterBattleText1: ; 84b2a (21:4b2a) text "If you don't turn" line "back, I'll call" - next "for backup!" + cont "for backup!" done _SilphCo8BattleText2: ; 84b57 (21:4b57) @@ -117647,7 +117647,7 @@ _SilphCo8EndBattleText2: ; 84b73 (21:4b73) _SilphCo8AfterBattleText2: ; 84b81 (21:4b81) text "So, what do you" line "think of SILPH" - next "BUILDING's maze?" + cont "BUILDING's maze?" done _SilphCo8BattleText3: ; 84bb1 (21:4bb1) @@ -117668,7 +117668,7 @@ _SilphCo8AfterBattleText3: ; 84be9 (21:4be9) _UnnamedText_5d8e5: ; 84c0b (21:4c0b) text "You look tired!" line "You should take a" - next "quick nap!" + cont "quick nap!" prompt _UnnamedText_5d8ea: ; 84c39 (21:4c39) @@ -117692,13 +117692,13 @@ _SilphCo9EndBattleText1: ; 84c7f (21:4c7f) _SilphCo9AfterBattleText1: ; 84c88 (21:4c88) text "If I had started" line "as a trainer at" - next "your age..." + cont "your age..." done _SilphCo9BattleText2: ; 84cb6 (21:4cb6) text "Your #MON have" line "weak points! I" - next "can nail them!" + cont "can nail them!" done _SilphCo9EndBattleText2: ; 84ce4 (21:4ce4) @@ -117709,8 +117709,8 @@ _SilphCo9EndBattleText2: ; 84ce4 (21:4ce4) _SilphCo9AfterBattleText2: ; 84cf6 (21:4cf6) text "Exploiting weak" line "spots does work!" - next "Think about" - next "element types!" + cont "Think about" + cont "element types!" done _SilphCo9BattleText3: ; 84d33 (21:4d33) @@ -117730,7 +117730,7 @@ _SilphCo9AfterBattleText3: ; 84d70 (21:4d70) _UnnamedText_5a1d3: ; 84d8d (21:4d8d) text "Waaaaa!" - next "I'm scared!" + cont "I'm scared!" done _UnnamedText_5a1d8: ; 84da1 (21:4da1) @@ -117741,7 +117741,7 @@ _UnnamedText_5a1d8: ; 84da1 (21:4da1) _SilphCo10BattleText1: ; 84dc5 (21:4dc5) text "Welcome to the" line "10F! So good of" - next "you to join me!" + cont "you to join me!" done _SilphCo10EndBattleText1: ; 84df5 (21:4df5) @@ -117752,7 +117752,7 @@ _SilphCo10EndBattleText1: ; 84df5 (21:4df5) _SilphCo10AfterBattleText1: ; 84e02 (21:4e02) text "Nice try, but the" line "boardroom is up" - next "one more floor!" + cont "one more floor!" done _SilphCo10BattleText2: ; 84e35 (21:4e35) @@ -117768,27 +117768,27 @@ _SilphCo10EndBattleText2: ; 84e52 (21:4e52) _SilphCo10AfterBattleText2: ; 84e66 (21:4e66) text "Are you satisfied" line "with beating me?" - next "Then go on home!" + cont "Then go on home!" done _SilphCoPresidentText: ; 84e9b (21:4e9b) text "PRESIDENT: Thank" line "you for saving" - next "SILPH!" + cont "SILPH!" - page "I will never" + para "I will never" line "forget you saved" - next "us in our moment" - next "of peril!" + cont "us in our moment" + cont "of peril!" - page "I have to thank" + para "I have to thank" line "you in some way!" - page "Because I am rich," + para "Because I am rich," line "I can give you" - next "anything!" + cont "anything!" - page "Here, maybe this" + para "Here, maybe this" line "will do!" prompt @@ -117801,19 +117801,19 @@ _ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) _UnnamedText_6231c: ; 84f74 (21:4f74) text "PRESIDENT: You" line "can't buy that" - next "anywhere!" + cont "anywhere!" - page "It's our secret" + para "It's our secret" line "prototype MASTER" - next "BALL!" + cont "BALL!" - page "It will catch any" + para "It will catch any" line "#MON without" - next "fail!" + cont "fail!" - page "You should be" + para "You should be" line "quiet about using" - next "it, though." + cont "it, though." done _SilphCoMasterBallNoRoomText: ; 85013 (21:5013) @@ -117824,9 +117824,9 @@ _SilphCoMasterBallNoRoomText: ; 85013 (21:5013) _SilphCo11Text2: ; 8502f (21:502f) text "SECRETARY: Thank" line "you for rescuing" - next "all of us!" + cont "all of us!" - page "We admire your" + para "We admire your" line "courage." done @@ -117834,16 +117834,16 @@ _SilphCo11Text3: ; 85075 (21:5075) text "Ah ", $52, "!" line "So we meet again!" - page "The PRESIDENT and" + para "The PRESIDENT and" line "I are discussing" - next "a vital business" - next "proposition." + cont "a vital business" + cont "proposition." - page "Keep your nose" + para "Keep your nose" line "out of grown-up" - next "matters..." + cont "matters..." - page "Or, experience a" + para "Or, experience a" line "world of pain!" done @@ -117855,17 +117855,17 @@ _UnnamedText_62330: ; 85119 (21:5119) _UnnamedText_62335: ; 85131 (21:5131) text "Blast it all!" line "You ruined our" - next "plans for SILPH!" + cont "plans for SILPH!" - page "But, TEAM ROCKET" + para "But, TEAM ROCKET" line "will never fall!" - page $52, "! Never" + para $52, "! Never" line "forget that all" - next "#MON exist" - next "for TEAM ROCKET!" + cont "#MON exist" + cont "for TEAM ROCKET!" - page "I must go, but I" + para "I must go, but I" line "shall return!" done @@ -117887,7 +117887,7 @@ _SilphCo11AfterBattleText1: ; 85209 (21:5209) _SilphCo11BattleText2: ; 85227 (21:5227) text "Halt! Do you have" line "an appointment" - next "with my BOSS?" + cont "with my BOSS?" done _SilphCo11EndBattleText2: ; 85257 (21:5257) @@ -117898,7 +117898,7 @@ _SilphCo11EndBattleText2: ; 85257 (21:5257) _SilphCo11AfterBattleText2: ; 8526a (21:526a) text "Watch your step," line "my BOSS likes his" - next "#MON tough!" + cont "#MON tough!" done _UnnamedText_6237b: ; 8529a (21:529a) @@ -117909,7 +117909,7 @@ _UnnamedText_6237b: ; 8529a (21:529a) _Mansion2BattleText1: ; 852b7 (21:52b7) text "I can't get out!" line "This old place is" - next "one big puzzle!" + cont "one big puzzle!" done _Mansion2EndBattleText1: ; 852ea (21:52ea) @@ -117920,30 +117920,30 @@ _Mansion2EndBattleText1: ; 852ea (21:52ea) _Mansion2AfterBattleText1: ; 85302 (21:5302) text "Switches open and" line "close alternating" - next "sets of doors!" + cont "sets of doors!" done _Mansion2Text3: ; 85336 (21:5336) text "Diary: July 5" line "Guyana," - next "South America" + cont "South America" - page "A new #MON was" + para "A new #MON was" line "discovered deep" - next "in the jungle." + cont "in the jungle." done _Mansion2Text4: ; 85389 (21:5389) text "Diary: July 10" line "We christened the" - next "newly discovered" - next "#MON, MEW." + cont "newly discovered" + cont "#MON, MEW." done _UnnamedText_520c2: ; 853c7 (21:53c7) text "A secret switch!" - page "Press it?" + para "Press it?" done _UnnamedText_520c7: ; 853e3 (21:53e3) @@ -117981,14 +117981,14 @@ _Mansion3EndBattleText2: ; 85460 (21:5460) _Mansion3AfterBattleText2: ; 85475 (21:5475) text "So, you're stuck?" line "Try jumping off" - next "over there!" + cont "over there!" done _Mansion3Text5: ; 854a3 (21:54a3) text "Diary: Feb. 6" line "MEW gave birth." - page "We named the" + para "We named the" line "newborn MEWTWO." done @@ -118019,17 +118019,17 @@ _Mansion4EndBattleText2: ; 85541 (21:5541) _Mansion4AfterBattleText2: ; 85555 (21:5555) text "I like it here!" line "It's conducive to" - next "my studies!" + cont "my studies!" done _Mansion4Text7: ; 85583 (21:5583) text "Diary; Sept. 1" line "MEWTWO is far too" - next "powerful." + cont "powerful." - page "We have failed to" + para "We have failed to" line "curb its vicious" - next "tendencies..." + cont "tendencies..." done _SafariZoneEastText5: ; 855e0 (21:55e0) @@ -118039,9 +118039,9 @@ _SafariZoneEastText5: ; 855e0 (21:55e0) _SafariZoneEastText6: ; 855ec (21:55ec) text "TRAINER TIPS" - page "The remaining time" + para "The remaining time" line "declines only" - next "while you walk!" + cont "while you walk!" done _SafariZoneEastText7: ; 8562b (21:562b) @@ -118056,7 +118056,7 @@ _SafariZoneNorthText3: ; 85646 (21:5646) _SafariZoneNorthText4: ; 85652 (21:5652) text "TRAINER TIPS" - page "The SECRET HOUSE" + para "The SECRET HOUSE" line "is still ahead!" done @@ -118067,20 +118067,20 @@ _SafariZoneNorthText5: ; 85681 (21:5681) _SafariZoneNorthText6: ; 85689 (21:5689) text "TRAINER TIPS" - page "#MON hide in" + para "#MON hide in" line "tall grass!" - page "Zigzag through" + para "Zigzag through" line "grassy areas to" - next "flush them out." + cont "flush them out." done _SafariZoneNorthText7: ; 856df (21:56df) text "TRAINER TIPS" - page "Win a free HM for" + para "Win a free HM for" line "finding the" - next "SECRET HOUSE!" + cont "SECRET HOUSE!" done _SafariZoneWestText5: ; 85719 (21:5719) @@ -118090,23 +118090,23 @@ _SafariZoneWestText5: ; 85719 (21:5719) _SafariZoneWestText6: ; 85725 (21:5725) text "REQUEST NOTICE" - page "Please find the" + para "Please find the" line "SAFARI WARDEN's" - next "lost GOLD TEETH." - next "They're around" - next "here somewhere." + cont "lost GOLD TEETH." + cont "They're around" + cont "here somewhere." - page "Reward offered!" + para "Reward offered!" line "Contact: WARDEN" done _SafariZoneWestText7: ; 857a3 (21:57a3) text "TRAINER TIPS" - page "Zone Exploration" + para "Zone Exploration" line "Campaign!" - page "The Search for" + para "The Search for" line "the SECRET HOUSE!" done @@ -118122,36 +118122,36 @@ _SafariZoneCenterText2: ; 85807 (21:5807) _SafariZoneCenterText3: ; 85813 (21:5813) text "TRAINER TIPS" - page "Press the START" + para "Press the START" line "Button to check" - next "remaining time!" + cont "remaining time!" done _SafariZoneRestHouse1Text1: ; 85851 (21:5851) text "SARA: Where did" line "my boy friend," - next "ERIK, go?" + cont "ERIK, go?" done _SafariZoneRestHouse1Text2: ; 8587b (21:587b) text "I'm catching" line "#MON to take" - next "home as gifts!" + cont "home as gifts!" done _UnnamedText_4a350: ; 858a4 (21:58a4) text "Ah! Finally!" - page "You're the first" + para "You're the first" line "person to reach" - next "the SECRET HOUSE!" + cont "the SECRET HOUSE!" - page "I was getting" + para "I was getting" line "worried that no" - next "one would win our" - next "campaign prize." + cont "one would win our" + cont "campaign prize." - page "Congratulations!" + para "Congratulations!" line "You have won!" prompt @@ -118164,57 +118164,57 @@ _ReceivedHM03Text: ; 85943 (21:5943) _HM03ExplanationText: ; 85957 (21:5957) text "HM03 is SURF!" - page "#MON will be" + para "#MON will be" line "able to ferry you" - next "across water!" + cont "across water!" - page "And, this HM isn't" + para "And, this HM isn't" line "disposable! You" - next "can use it over" - next "and over!" + cont "can use it over" + cont "and over!" - page "You're super lucky" + para "You're super lucky" line "for winning this" - next "fabulous prize!" + cont "fabulous prize!" done _HM03NoRoomText: ; 85a02 (21:5a02) text "You don't have" line "room for this" - next "fabulous prize!" + cont "fabulous prize!" done _SafariZoneRestHouse2Text1: ; 85a2f (21:5a2f) text "Tossing ROCKs at" line "#MON might" - next "make them run," - next "but they'll be" - next "easier to catch." + cont "make them run," + cont "but they'll be" + cont "easier to catch." done _SafariZoneRestHouse2Text2: ; 85a7a (21:5a7a) text "Using BAIT will" line "make #MON" - next "easier to catch." + cont "easier to catch." done _SafariZoneRestHouse2Text3: ; 85aa6 (21:5aa6) text "I hiked a lot, but" line "I didn't see any" - next "#MON I wanted." + cont "#MON I wanted." done _SafariZoneRestHouse3Text1: ; 85ad9 (21:5ad9) text "How many did you" line "catch? I'm bushed" - next "from the work!" + cont "from the work!" done _SafariZoneRestHouse3Text2: ; 85b0b (21:5b0b) text "I caught a" line "CHANSEY!" - page "That makes this" + para "That makes this" line "all worthwhile!" done @@ -118226,29 +118226,29 @@ _SafariZoneRestHouse3Text3: ; 85b40 (21:5b40) _SafariZoneRestHouse4Text1: ; 85b62 (21:5b62) text "You can keep any" line "item you find on" - next "the ground here." + cont "the ground here." - page "But, you'll run" + para "But, you'll run" line "out of time if" - next "you try for all" - next "of them at once!" + cont "you try for all" + cont "of them at once!" done _SafariZoneRestHouse4Text2: ; 85bd5 (21:5bd5) text "Go to the deepest" line "part of the" - next "SAFARI ZONE. You" - next "will win a prize!" + cont "SAFARI ZONE. You" + cont "will win a prize!" done _SafariZoneRestHouse4Text3: ; 85c17 (21:5c17) text "My EEVEE evolved" line "into FLAREON!" - page "But, a friend's" + para "But, a friend's" line "EEVEE turned into" - next "a VAPOREON!" - next "I wonder why?" + cont "a VAPOREON!" + cont "I wonder why?" done _UnknownDungeon3MewtwoText: ; 85c72 (21:5c72) @@ -118257,7 +118257,7 @@ _UnknownDungeon3MewtwoText: ; 85c72 (21:5c72) _VictoryRoad1BattleText1: ; 85c79 (21:5c79) text "I wonder if you" line "are good enough" - next "for me!" + cont "for me!" done _VictoryRoad1EndBattleText1: ; 85ca2 (21:5ca2) @@ -118273,7 +118273,7 @@ _VictoryRoad1AfterBattleText1: ; 85caf (21:5caf) _VictoryRoad1BattleText2: ; 85cd3 (21:5cd3) text "I can see you're" line "good! Let me see" - next "exactly how good!" + cont "exactly how good!" done _VictoryRoad1EndBattleText2: ; 85d07 (21:5d07) @@ -118290,159 +118290,159 @@ _LanceBeforeBattleText: ; 85d3c (21:5d3c) text "Ah! I heard about" line "you ", $52, "!" - page "I lead the ELITE" + para "I lead the ELITE" line "FOUR! You can" - next "call me LANCE the" - next "dragon trainer!" + cont "call me LANCE the" + cont "dragon trainer!" - page "You know that" + para "You know that" line "dragons are" - next "mythical #MON!" + cont "mythical #MON!" - page "They're hard to" + para "They're hard to" line "catch and raise," - next "but their powers" - next "are superior!" + cont "but their powers" + cont "are superior!" - page "They're virtually" + para "They're virtually" line "indestructible!" - page "Well, are you" + para "Well, are you" line "ready to lose?" - page "Your LEAGUE" + para "Your LEAGUE" line "challenge ends" - next "with me, ", $52, "!" + cont "with me, ", $52, "!" done _LanceEndBattleText: ; 85e64 (21:5e64) text "That's it!" - page "I hate to admit" + para "I hate to admit" line "it, but you are a" - next "#MON master!" + cont "#MON master!" prompt _LanceAfterBattleText: ; 85e9e (21:5e9e) text "I still can't" line "believe my" - next "dragons lost to" - next "you, ", $52, "!" + cont "dragons lost to" + cont "you, ", $52, "!" - page "You are now the" + para "You are now the" line "#MON LEAGUE" - next "champion!" + cont "champion!" - page "...Or, you would" + para "...Or, you would" line "have been, but" - next "you have one more" - next "challenge ahead." + cont "you have one more" + cont "challenge ahead." - page "You have to face" + para "You have to face" line "another trainer!" - next "His name is..." + cont "His name is..." - page $53, "!" + para $53, "!" line "He beat the ELITE" - next "FOUR before you!" + cont "FOUR before you!" - page "He is the real" + para "He is the real" line "#MON LEAGUE" - next "champion!@@" + cont "champion!@@" _HallofFameRoomText1: ; 85fb5 (21:5fb5) text "OAK: Er-hem!" line "Congratulations" - next $52, "!" + cont $52, "!" - page "This floor is the" + para "This floor is the" line "#MON HALL OF" - next "FAME!" + cont "FAME!" - page "#MON LEAGUE" + para "#MON LEAGUE" line "champions are" - next "honored for their" - next "exploits here!" + cont "honored for their" + cont "exploits here!" - page "Their #MON are" + para "Their #MON are" line "also recorded in" - next "the HALL OF FAME!" + cont "the HALL OF FAME!" - page $52, "! You have" + para $52, "! You have" line "endeavored hard" - next "to become the new" - next "LEAGUE champion!" + cont "to become the new" + cont "LEAGUE champion!" - page "Congratulations," + para "Congratulations," line $52, ", you and" - next "your #MON are" - next "HALL OF FAMERs!" + cont "your #MON are" + cont "HALL OF FAMERs!" done _UnnamedText_760f4: ; 860e1 (21:60e1) text $53, ": Hey!" - page "I was looking" + para "I was looking" line "forward to seeing" - next "you, ", $52, "!" + cont "you, ", $52, "!" - page "My rival should" + para "My rival should" line "be strong to keep" - next "me sharp!" + cont "me sharp!" - page "While working on" + para "While working on" line "#DEX, I looked" - next "all over for" - next "powerful #MON!" + cont "all over for" + cont "powerful #MON!" - page "Not only that, I" + para "Not only that, I" line "assembled teams" - next "that would beat" - next "any #MON type!" + cont "that would beat" + cont "any #MON type!" - page "And now!" + para "And now!" - page "I'm the #MON" + para "I'm the #MON" line "LEAGUE champion!" - page $52, "! Do you" + para $52, "! Do you" line "know what that" - next "means?" + cont "means?" - page "I'll tell you!" + para "I'll tell you!" - page "I am the most" + para "I am the most" line "powerful trainer" - next "in the world!" + cont "in the world!" done _UnnamedText_760f9: ; 8623b (21:623b) text "NO!" line "That can't be!" - next "You beat my best!" + cont "You beat my best!" - page "After all that" + para "After all that" line "work to become" - next "LEAGUE champ?" + cont "LEAGUE champ?" - page "My reign is over" + para "My reign is over" line "already?" - next "It's not fair!" + cont "It's not fair!" prompt _UnnamedText_760fe: ; 862b4 (21:62b4) text "Hahaha!" line "I won, I won!" - page "I'm too good for" + para "I'm too good for" line "you, ", $52, "!" - page "You did well to" + para "You did well to" line "even reach me," - next $53, ", the" - next "#MON genius!" + cont $53, ", the" + cont "#MON genius!" - page "Nice try, loser!" + para "Nice try, loser!" line "Hahaha!" prompt @@ -118450,15 +118450,15 @@ _UnnamedText_76103: ; 8632f (21:632f) text "Why?" line "Why did I lose?" - page "I never made any" + para "I never made any" line "mistakes raising" - next "my #MON..." + cont "my #MON..." - page "Darn it! You're" + para "Darn it! You're" line "the new #MON" - next "LEAGUE champion!" + cont "LEAGUE champion!" - page "Although I don't" + para "Although I don't" line "like to admit it." done @@ -118469,18 +118469,18 @@ _GaryText2: ; 863c1 (21:63c1) _UnnamedText_76120: ; 863ca (21:63ca) text "OAK: So, you won!" line "Congratulations!" - next "You're the new" - next "#MON LEAGUE" - next "champion!" + cont "You're the new" + cont "#MON LEAGUE" + cont "champion!" - page "You've grown up so" + para "You've grown up so" line "much since you" - next "first left with" - next "@" + cont "first left with" + cont "@" TX_RAM $cd6d text "!" - page $52, ", you have" + para $52, ", you have" line "come of age!" done @@ -118488,41 +118488,41 @@ _UnnamedText_76125: ; 86463 (21:6463) text "OAK: ", $53, "! I'm" line "disappointed!" - page "I came when I" + para "I came when I" line "heard you beat" - next "the ELITE FOUR!" + cont "the ELITE FOUR!" - page "But, when I got" + para "But, when I got" line "here, you had" - next "already lost!" + cont "already lost!" - page $53, "! Do you" + para $53, "! Do you" line "understand why" - next "you lost?" + cont "you lost?" - page "You have forgotten" + para "You have forgotten" line "to treat your" - next "#MON with" - next "trust and love!" + cont "#MON with" + cont "trust and love!" - page "Without them, you" + para "Without them, you" line "will never become" - next "a champ again!" + cont "a champ again!" done _UnnamedText_7612a: ; 86567 (21:6567) text "OAK: ", $52, "!" - page "You understand" + para "You understand" line "that your victory" - next "was not just your" - next "own doing!" + cont "was not just your" + cont "own doing!" - page "The bond you share" + para "The bond you share" line "with your #MON" - next "is marvelous!" + cont "is marvelous!" - page $52, "!" + para $52, "!" line "Come with me!" done @@ -118530,22 +118530,22 @@ _LoreleiBeforeBattleText: ; 865ef (21:65ef) text "Welcome to" line "#MON LEAGUE!" - page "I am LORELEI of" + para "I am LORELEI of" line "the ELITE FOUR!" - page "No one can best" + para "No one can best" line "me when it comes" - next "to icy #MON!" + cont "to icy #MON!" - page "Freezing moves" + para "Freezing moves" line "are powerful!" - page "Your #MON will" + para "Your #MON will" line "be at my mercy" - next "when they are" - next "frozen solid!" + cont "when they are" + cont "frozen solid!" - page "Hahaha!" + para "Hahaha!" line "Are you ready?" done @@ -118557,11 +118557,11 @@ _LoreleiEndBattleText: ; 866c4 (21:66c4) _LoreleiAfterBattleText: ; 866d3 (21:66d3) text "You're better" line "than I thought!" - next "Go on ahead!" + cont "Go on ahead!" - page "You only got a" + para "You only got a" line "taste of #MON" - next "LEAGUE power!" + cont "LEAGUE power!" done _UnnamedText_7627b: ; 86729 (21:6729) @@ -118573,22 +118573,22 @@ _BrunoBeforeBattleText: ; 86749 (21:6749) text "I am BRUNO of" line "the ELITE FOUR!" - page "Through rigorous" + para "Through rigorous" line "training, people" - next "and #MON can" - next "become stronger!" + cont "and #MON can" + cont "become stronger!" - page "I've weight" + para "I've weight" line "trained with" - next "my #MON!" + cont "my #MON!" - page $52, "!" + para $52, "!" - page "We will grind you" + para "We will grind you" line "down with our" - next "superior power!" + cont "superior power!" - page "Hoo hah!" + para "Hoo hah!" done _BrunoEndBattleText: ; 86805 (21:6805) @@ -118599,7 +118599,7 @@ _BrunoEndBattleText: ; 86805 (21:6805) _BrunoAfterBattleText: ; 8681d (21:681d) text "My job is done!" line "Go face your next" - next "challenge!" + cont "challenge!" done _UnnamedText_763d2: ; 8684b (21:684b) @@ -118611,40 +118611,40 @@ _AgathaBeforeBattleText: ; 8686b (21:686b) text "I am AGATHA of" line "the ELITE FOUR!" - page "OAK's taken a lot" + para "OAK's taken a lot" line "of interest in" - next "you, child!" + cont "you, child!" - page "That old duff was" + para "That old duff was" line "once tough and" - next "handsome! That" - next "was decades ago!" + cont "handsome! That" + cont "was decades ago!" - page "Now he just wants" + para "Now he just wants" line "to fiddle with" - next "his #DEX! He's" - next "wrong! #MON" - next "are for fighting!" + cont "his #DEX! He's" + cont "wrong! #MON" + cont "are for fighting!" - page $52, "! I'll show" + para $52, "! I'll show" line "you how a real" - next "trainer fights!" + cont "trainer fights!" done _AgathaEndBattleText: ; 86970 (21:6970) text "Oh ho!" line "You're something" - next "special, child!" + cont "special, child!" prompt _AgathaAfterBattleText: ; 86998 (21:6998) text "You win! I see" line "what the old duff" - next "sees in you now!" + cont "sees in you now!" - page "I have nothing" + para "I have nothing" line "else to say! Run" - next "along now, child!" + cont "along now, child!" done _AgathaText2: ; 869fd (21:69fd) @@ -118680,13 +118680,13 @@ _RockTunnel2EndBattleText3: ; 86a8e (21:6a8e) _RockTunnel2AfterBattleText3: ; 86aa2 (21:6aa2) text "I go for power" line "because I hate" - next "thinking!" + cont "thinking!" done _RockTunnel2BattleText4: ; 86acb (21:6acb) text "You have a" line "#DEX?" - next "I want one too!" + cont "I want one too!" done _RockTunnel2EndBattleText4: ; 86aed (21:6aed) @@ -118697,7 +118697,7 @@ _RockTunnel2EndBattleText4: ; 86aed (21:6aed) _RockTunnel2AfterBattleText4: ; 86b04 (21:6b04) text "When you finish" line "your #DEX, can" - next "I have it?" + cont "I have it?" done _RockTunnel2BattleText5: ; 86b2f (21:6b2f) @@ -118713,31 +118713,31 @@ _RockTunnel2EndBattleText5: ; 86b53 (21:6b53) _RockTunnel2AfterBattleText5: ; 86b66 (21:6b66) text "Costume players" line "dress up as" - next "#MON for fun." + cont "#MON for fun." done _RockTunnel2BattleText6: ; 86b91 (21:6b91) text "My #MON" line "techniques will" - next "leave you crying!" + cont "leave you crying!" done _RockTunnel2EndBattleText6: ; 86bbc (21:6bbc) text "I give!" line "You're a better" - next "technician!" + cont "technician!" prompt _RockTunnel2AfterBattleText6: ; 86be0 (21:6be0) text "In mountains," line "you'll often find" - next "rock-type #MON." + cont "rock-type #MON." done _RockTunnel2BattleText7: ; 86c10 (21:6c10) text "I don't often" line "come here, but I" - next "will fight you." + cont "will fight you." done _RockTunnel2EndBattleText7: ; 86c3f (21:6c3f) @@ -118748,7 +118748,7 @@ _RockTunnel2EndBattleText7: ; 86c3f (21:6c3f) _RockTunnel2AfterBattleText7: ; 86c4c (21:6c4c) text "I like tiny" line "#MON, big ones" - next "are too scary!" + cont "are too scary!" done _RockTunnel2BattleText8: ; 86c77 (21:6c77) @@ -118766,7 +118766,7 @@ SECTION "bank22",ROMX,BANK[$22] _RockTunnel2AfterBattleText8: ; 88000 (22:4000) text "I'll raise my" line "#MON to beat" - next "yours, kid!" + cont "yours, kid!" done _RockTunnel2BattleText9: ; 88027 (22:4027) @@ -118790,7 +118790,7 @@ _SeafoamIslands5BattleText2: ; 88075 (22:4075) _SeafoamIslands5Text4: ; 8807e (22:407e) text "Boulders might" line "change the flow" - next "of water!" + cont "of water!" done _SeafoamIslands5Text5: ; 880a8 (22:40a8) @@ -118812,7 +118812,7 @@ _AIBattleUseItemText: ; 880d5 (22:40d5) line "used @" TX_RAM $CD6D db $0 - next "on @" + cont "on @" TX_RAM W_ENEMYMONNAME text "!" prompt @@ -118933,11 +118933,11 @@ _GymStatueText1: ; 88275 (22:4275) TX_RAM wGymCityName db $0 line "#MON GYM" - next "LEADER: @" + cont "LEADER: @" TX_RAM wGymLeaderName db $0 - page "WINNING TRAINERS:" + para "WINNING TRAINERS:" line $53 done @@ -118945,30 +118945,30 @@ _GymStatueText2: ; 882a5 (22:42a5) TX_RAM wGymCityName db $0 line "#MON GYM" - next "LEADER: @" + cont "LEADER: @" TX_RAM wGymLeaderName db $0 - page "WINNING TRAINERS:" + para "WINNING TRAINERS:" line $53 - next $52 + cont $52 done _ViridianCityPokecenterGuyText: ; 882d7 (22:42d7) text "#MON CENTERs" line "heal your tired," - next "hurt or fainted" - next "#MON!" + cont "hurt or fainted" + cont "#MON!" done _PewterCityPokecenterGuyText: ; 8830c (22:430c) text "Yawn!" - page "When JIGGLYPUFF" + para "When JIGGLYPUFF" line "sings, #MON" - next "get drowsy..." + cont "get drowsy..." - page "...Me too..." + para "...Me too..." line "Snore..." done @@ -118976,7 +118976,7 @@ _CeruleanPokecenterGuyText: ; 88353 (22:4353) text "BILL has lots of" line "#MON!" - page "He collects rare" + para "He collects rare" line "ones too!" done @@ -118984,21 +118984,21 @@ _LavenderPokecenterGuyText: ; 88386 (22:4386) text "CUBONEs wear" line "skulls, right?" - page "People will pay a" + para "People will pay a" line "lot for one!" done _MtMoonPokecenterBenchGuyText: ; 883c2 (22:43c2) text "If you have too" line "many #MON, you" - next "should store them" - next "via PC!" + cont "should store them" + cont "via PC!" done _RockTunnelPokecenterGuyText: ; 883fc (22:43fc) text "I heard that" line "GHOSTs haunt" - next "LAVENDER TOWN!" + cont "LAVENDER TOWN!" done _UnnamedText_624c1: ; 88426 (22:4426) @@ -119014,63 +119014,63 @@ _UnnamedText_624c6: ; 88442 (22:4442) _UnnamedText_624cb: ; 88460 (22:4460) text "SILPH's manager" line "is hiding in the" - next "SAFARI ZONE." + cont "SAFARI ZONE." done _VermilionPokecenterGuyText: ; 8848e (22:448e) text "It is true that a" line "higher level" - next "#MON will be" - next "more powerful..." + cont "#MON will be" + cont "more powerful..." - page "But, all #MON" + para "But, all #MON" line "will have weak" - next "points against" - next "specific types." + cont "points against" + cont "specific types." - page "So, there is no" + para "So, there is no" line "universally" - next "strong #MON." + cont "strong #MON." done _CeladonCityPokecenterGuyText: ; 88531 (22:4531) text "If I had a BIKE," line "I would go to" - next "CYCLING ROAD!" + cont "CYCLING ROAD!" done _FuchsiaCityPokecenterGuyText: ; 8855f (22:455f) text "If you're studying " line "#MON, visit" - next "the SAFARI ZONE." + cont "the SAFARI ZONE." - page "It has all sorts" + para "It has all sorts" line "of rare #MON." done _CinnabarPokecenterGuyText: ; 885af (22:45af) text "#MON can still" line "learn techniques" - next "after canceling" - next "evolution." + cont "after canceling" + cont "evolution." - page "Evolution can wait" + para "Evolution can wait" line "until new moves" - next "have been learned." + cont "have been learned." done _SaffronCityPokecenterGuyText1: ; 88621 (22:4621) text "It would be great" line "if the ELITE FOUR" - next "came and stomped" - next "TEAM ROCKET!" + cont "came and stomped" + cont "TEAM ROCKET!" done _SaffronCityPokecenterGuyText2: ; 88664 (22:4664) text "TEAM ROCKET took" line "off! We can go" - next "out safely again!" - next "That's great!" + cont "out safely again!" + cont "That's great!" done _CeladonCityHotelText: ; 886a4 (22:46a4) @@ -119096,20 +119096,20 @@ _UnnamedText_1e960: ; 886fc (22:46fc) _UnnamedText_1e97e: ; 8871a (22:471a) text "The SAVE option is" line "on the MENU" - next "screen." + cont "screen." done _UnnamedText_1e983: ; 88742 (22:4742) text "All #MON types" line "have strong and" - next "weak points" - next "against others." + cont "weak points" + cont "against others." done _UnnamedText_1ea0d: ; 8877e (22:477e) text "PA: Ding-dong!" - page "Time's up!" + para "Time's up!" prompt _UnnamedText_1ea12: ; 88798 (22:4798) @@ -119120,19 +119120,19 @@ _UnnamedText_1ea12: ; 88798 (22:4798) _CinnabarGymQuizIntroText: ; 887b7 (22:47b7) text "#MON Quiz!" - page "Get it right and" + para "Get it right and" line "the door opens to" - next "the next room!" + cont "the next room!" - page "Get it wrong and" + para "Get it wrong and" line "face a trainer!" - page "If you want to" + para "If you want to" line "conserve your" - next "#MON for the" - next "GYM LEADER..." + cont "#MON for the" + cont "GYM LEADER..." - page "Then get it right!" + para "Then get it right!" line "Here we go!" prompt @@ -119144,7 +119144,7 @@ _CinnabarQuizQuestionsText1: ; 8886d (22:486d) _CinnabarQuizQuestionsText2: ; 88890 (22:4890) text "There are 9" line "certified #MON" - next "LEAGUE BADGEs?" + cont "LEAGUE BADGEs?" done _CinnabarQuizQuestionsText3: ; 888bb (22:48bb) @@ -119155,15 +119155,15 @@ _CinnabarQuizQuestionsText3: ; 888bb (22:48bb) _CinnabarQuizQuestionsText4: ; 888d5 (22:48d5) text "Are thunder moves" line "effective against" - next "ground element-" - next "type #MON?" + cont "ground element-" + cont "type #MON?" done _CinnabarQuizQuestionsText5: ; 88915 (22:4915) text "#MON of the" line "same kind and" - next "level are not" - next "identical?" + cont "level are not" + cont "identical?" done _CinnabarQuizQuestionsText6: ; 88949 (22:4949) @@ -119175,7 +119175,7 @@ _CinnabarGymQuizCorrectText: ; 88964 (22:4964) text "You're absolutely" line "correct!" - page "Go on through!@@" + para "Go on through!@@" _CinnabarGymQuizIncorrectText: ; 8898f (22:498f) text "Sorry! Bad call!" @@ -119184,21 +119184,21 @@ _CinnabarGymQuizIncorrectText: ; 8898f (22:498f) _UnnamedText_1eb69: ; 889a1 (22:49a1) text "#MON magazines!" - page "#MON notebooks!" + para "#MON notebooks!" - page "#MON graphs!" + para "#MON graphs!" done _BillsHouseMonitorText: ; 889cf (22:49cf) text "TELEPORTER is" line "displayed on the" - next "PC monitor." + cont "PC monitor." done _BillsHouseInitiatedText: ; 889fb (22:49fb) text $52, " initiated" line "TELEPORTER's Cell" - next "Separator!@@" + cont "Separator!@@" _BillsHousePokemonListText1: ; 88a25 (22:4a25) text "BILL's favorite" @@ -119214,27 +119214,27 @@ _OakLabEmailText: ; 88a60 (22:4a60) text "There's an e-mail" line "message here!" - page "..." + para "..." - page "Calling all" + para "Calling all" line "#MON trainers!" - page "The elite trainers" + para "The elite trainers" line "of #MON LEAGUE" - next "are ready to take" - next "on all comers!" + cont "are ready to take" + cont "on all comers!" - page "Bring your best" + para "Bring your best" line "#MON and see" - next "how you rate as a" - next "trainer!" + cont "how you rate as a" + cont "trainer!" - page "#MON LEAGUE HQ" + para "#MON LEAGUE HQ" line "INDIGO PLATEAU" - page "PS: PROF.OAK," + para "PS: PROF.OAK," line "please visit us!" - next "..." + cont "..." done _GameCornerCoinCaseText: ; 88b5b (22:4b5b) @@ -119270,16 +119270,16 @@ TMNotebookText: ; 88bfd (22:4bfd) text "It's a pamphlet" line "on TMs." - page "..." + para "..." - page "There are 50 TMs" + para "There are 50 TMs" line "in all." - page "There are also 5" + para "There are also 5" line "HMs that can be" - next "used repeatedly." + cont "used repeatedly." - page "SILPH CO.@@" + para "SILPH CO.@@" _TurnPageText: ; 88c6f (22:4c6f) text "Turn the page?" @@ -119293,60 +119293,60 @@ _ViridianSchoolNotebookText1: ; 88ca3 (22:4ca3) text "Looked at the" line "notebook!" - page "First page..." + para "First page..." - page "# BALLs are" + para "# BALLs are" line "used to catch" - next "#MON." + cont "#MON." - page "Up to 6 #MON" + para "Up to 6 #MON" line "can be carried." - page "People who raise" + para "People who raise" line "and make #MON" - next "fight are called" - next "#MON trainers." + cont "fight are called" + cont "#MON trainers." prompt _ViridianSchoolNotebookText2: ; 88d46 (22:4d46) text "Second page..." - page "A healthy #MON" + para "A healthy #MON" line "may be hard to" - next "catch, so weaken" - next "it first!" + cont "catch, so weaken" + cont "it first!" - page "Poison, burns and" + para "Poison, burns and" line "other damage are" - next "effective!" + cont "effective!" prompt _ViridianSchoolNotebookText3: ; 88dbd (22:4dbd) text "Third page..." - page "#MON trainers" + para "#MON trainers" line "seek others to" - next "engage in #MON" - next "fights." + cont "engage in #MON" + cont "fights." - page "Battles are" + para "Battles are" line "constantly fought" - next "at #MON GYMs." + cont "at #MON GYMs." prompt _ViridianSchoolNotebookText4: ; 88e2c (22:4e2c) text "Fourth page..." - page "The goal for" + para "The goal for" line "#MON trainers" - next "is to beat the " - next "top 8 #MON" - next "GYM LEADERs." + cont "is to beat the " + cont "top 8 #MON" + cont "GYM LEADERs." - page "Do so to earn the" + para "Do so to earn the" line "right to face..." - page "The ELITE FOUR of" + para "The ELITE FOUR of" line "#MON LEAGUE!" prompt @@ -119372,35 +119372,35 @@ _IndigoPlateauHQText: ; 88f08 (22:4f08) _RedBedroomSNESText: ; 88f27 (22:4f27) text $52, " is" line "playing the SNES!" - next "...Okay!" - next "It's time to go!" + cont "...Okay!" + cont "It's time to go!" done _Route15UpstairsBinocularsText: ; 88f58 (22:4f58) text "Looked into the" line "binoculars..." - page "A large, shining" + para "A large, shining" line "bird is flying" - next "toward the sea." + cont "toward the sea." done _AerodactylFossilText: ; 88fa7 (22:4fa7) text "AERODACTYL Fossil" line "A primitive and" - next "rare #MON." + cont "rare #MON." done _KabutopsFossilText: ; 88fd5 (22:4fd5) text "KABUTOPS Fossil" line "A primitive and" - next "rare #MON." + cont "rare #MON." done _LinkCableHelpText1: ; 89001 (22:5001) text "TRAINER TIPS" - page "Using a Game Link" + para "Using a Game Link" line "Cable" prompt @@ -119412,30 +119412,30 @@ _LinkCableHelpText2: ; 89027 (22:5027) _LinkCableInfoText1: ; 8904b (22:504b) text "When you have" line "linked your GAME" - next "BOY with another" - next "GAME BOY, talk to" - next "the attendant on" - next "the right in any" - next "#MON CENTER." + cont "BOY with another" + cont "GAME BOY, talk to" + cont "the attendant on" + cont "the right in any" + cont "#MON CENTER." prompt _LinkCableInfoText2: ; 890bd (22:50bd) text "COLOSSEUM lets" line "you play against" - next "a friend." + cont "a friend." prompt _LinkCableInfoText3: ; 890e8 (22:50e8) text "TRADE CENTER is" line "used for trading" - next "#MON." + cont "#MON." prompt _ViridianSchoolBlackboardText1: ; 89110 (22:5110) text "The blackboard" line "describes #MON" - next "STATUS changes" - next "during battles." + cont "STATUS changes" + cont "during battles." prompt _ViridianSchoolBlackboardText2: ; 8914e (22:514e) @@ -119446,63 +119446,63 @@ _ViridianSchoolBlackboardText2: ; 8914e (22:514e) _ViridianBlackboardSleepText: ; 89172 (22:5172) text "A #MON can't" line "attack if it's" - next "asleep!" + cont "asleep!" - page "#MON will stay" + para "#MON will stay" line "asleep even after" - next "battles." + cont "battles." - page "Use AWAKENING to" + para "Use AWAKENING to" line "wake them up!" prompt _ViridianBlackboardPoisonText: ; 891de (22:51de) text "When poisoned, a" line "#MON's health" - next "steadily drops." + cont "steadily drops." - page "Poison lingers" + para "Poison lingers" line "after battles." - page "Use an ANTIDOTE" + para "Use an ANTIDOTE" line "to cure poison!" prompt _ViridianBlackbaordPrlzText: ; 8924b (22:524b) text "Paralysis could" line "make #MON" - next "moves misfire!" + cont "moves misfire!" - page "Paralysis remains" + para "Paralysis remains" line "after battles." - page "Use PARLYZ HEAL" + para "Use PARLYZ HEAL" line "for treatment!" prompt _ViridianBlackboardBurnText: ; 892b5 (22:52b5) text "A burn reduces" line "power and speed." - next "It also causes" - next "ongoing damage." + cont "It also causes" + cont "ongoing damage." - page "Burns remain" + para "Burns remain" line "after battles." - page "Use BURN HEAL to" + para "Use BURN HEAL to" line "cure a burn!" prompt _ViridianBlackboardFrozenText: ; 8932f (22:532f) text "If frozen, a" line "#MON becomes" - next "totally immobile!" + cont "totally immobile!" - page "It stays frozen" + para "It stays frozen" line "even after the" - next "battle ends." + cont "battle ends." - page "Use ICE HEAL to" + para "Use ICE HEAL to" line "thaw out #MON!" prompt @@ -119514,31 +119514,31 @@ _VermilionGymTrashText: ; 893a7 (22:53a7) _VermilionGymTrashSuccesText1: ; 893c6 (22:53c6) text "Hey! There's a" line "switch under the" - next "trash!" - next "Turn it on!" + cont "trash!" + cont "Turn it on!" - page "The 1st electric" + para "The 1st electric" line "lock opened!@@" _VermilionGymTrashSuccesText2: ; 89418 (22:5418) text "Hey! There's" line "another switch" - next "under the trash!" - next "Turn it on!" + cont "under the trash!" + cont "Turn it on!" prompt _VermilionGymTrashSuccesText3: ; 89451 (22:5451) text "The 2nd electric" line "lock opened!" - page "The motorized door" + para "The motorized door" line "opened!@@" _VermilionGymTrashFailText: ; 8948c (22:548c) text "Nope! There's" line "only trash here." - next "Hey! The electric" - next "locks were reset!@@" + cont "Hey! The electric" + cont "locks were reset!@@" UnnamedText_894d0: ; 894d0 (22:54d0) text $52, " found" @@ -119549,7 +119549,7 @@ UnnamedText_894d0: ; 894d0 (22:54d0) _UnnamedText_76794: ; 894e1 (22:54e1) text "But, ", $52, " has" line "no more room for" - next "other items!" + cont "other items!" done _FoundHiddenCoinsText: ; 8950b (22:550b) @@ -119566,7 +119566,7 @@ _FoundHiddenCoins2Text: ; 89523 (22:5523) _DroppedHiddenCoinsText: ; 8953b (22:553b) db $0 - page "Oops! Dropped" + para "Oops! Dropped" line "some coins!" done @@ -119577,13 +119577,13 @@ _IndigoPlateauStatuesText1: ; 89557 (22:5557) _IndigoPlateauStatuesText2: ; 89567 (22:5567) text "The ultimate goal" line "of trainers!" - next "#MON LEAGUE HQ" + cont "#MON LEAGUE HQ" done _IndigoPlateauStatuesText3: ; 89596 (22:5596) text "The highest" line "#MON authority" - next "#MON LEAGUE HQ" + cont "#MON LEAGUE HQ" done _UnnamedText_fc03: ; 895c1 (22:55c1) @@ -119612,7 +119612,7 @@ _UnnamedText_fc45: ; 8961f (22:561f) _UnnamedText_3c1a8: ; 89639 (22:5639) text "PA: Ding-dong!" - page "You are out of" + para "You are out of" line "SAFARI BALLs!" prompt @@ -119686,7 +119686,7 @@ _PlayerBlackedOutText2: ; 89748 (22:5748) text $52, " is out of" line "useable #MON!" - page $52, " blacked" + para $52, " blacked" line "out!" prompt @@ -119704,7 +119704,7 @@ _TrainerAboutToUseText: ; 89784 (22:5784) dw W_ENEMYMONNAME text "!" - page "Will ",$52 + para "Will ",$52 line "change #MON?" done @@ -119728,7 +119728,7 @@ _UnnamedText_3cb97: ; 897e3 (22:57e3) _UnnamedText_3cb9c: ; 897f1 (22:57f1) text "No! There's no" line "running from a" - next "trainer battle!" + cont "trainer battle!" prompt _UnnamedText_3cba1: ; 8981f (22:581f) @@ -119860,7 +119860,7 @@ _UnnamedText_3daa8: ; 89a29 (22:5a29) line "@" TX_RAM $cd6d text " is" - next "disabled!" + cont "disabled!" prompt _UnnamedText_3dafb: ; 89a40 (22:5a40) @@ -119876,7 +119876,7 @@ _UnnamedText_3db34: ; 89a4d (22:5a4d) _UnnamedText_3db43: ; 89a56 (22:5a56) text "instead," - next "@@" + cont "@@" _UnnamedText_3db4c: ; 89a62 (22:5a62) TX_RAM $cf4b @@ -119910,7 +119910,7 @@ _UnnamedText_3dc42: ; 89a76 (22:5a76) _UnnamedText_3dc47: ; 89a89 (22:5a89) text $5a line "kept going and" - next "crashed!" + cont "crashed!" prompt _UnnamedText_3dc4c: ; 89aa4 (22:5aa4) @@ -119964,7 +119964,7 @@ _UnnamedText_3ddca: ; 89b32 (22:5b32) _SubstituteTookDamageText: ; 89b47 (22:5b47) text "The SUBSTITUTE" line "took damage for" - next $59, "!" + cont $59, "!" prompt _SubstituteBrokeText: ; 89b6a (22:5b6a) @@ -119994,11 +119994,11 @@ _UnnamedText_554b2: ; 89bc2 (22:5bc2) _UnnamedText_554cb: ; 89bd0 (22:5bd0) text "with EXP.ALL," - next "@@" + cont "@@" _UnnamedText_554d4: ; 89be1 (22:5be1) text "a boosted" - next "@@" + cont "@@" _UnnamedText_554d8: ; 89bee (22:5bee) TX_NUM $cf4b, 2, 4 text " EXP. Points!" @@ -120041,7 +120041,7 @@ _UnnamedText_58e4a: ; 89c5e (22:5c5e) _UnnamedText_58e4f: ; 89c73 (22:5c73) text "SILPH SCOPE" line "unveiled the" - next "GHOST's identity!" + cont "GHOST's identity!" prompt _UnnamedText_58e54: ; 89c9e (22:5c9e) @@ -120219,7 +120219,7 @@ _UnnamedText_17f28: ; 89f13 (22:5f13) text "Accessed BILL's" line "PC." - page "Accessed #MON" + para "Accessed #MON" line "Storage System." prompt @@ -120227,14 +120227,14 @@ _UnnamedText_17f2d: ; 89f45 (22:5f45) text "Accessed someone's" line "PC." - page "Accessed #MON" + para "Accessed #MON" line "Storage System." prompt _UnnamedText_17f32: ; 89f7a (22:5f7a) text "Accessed my PC." - page "Accessed Item" + para "Accessed Item" line "Storage System." prompt @@ -120312,7 +120312,7 @@ _UnnamedText_76683: ; 8a0f4 (22:60f4) text "Accessed #MON" line "LEAGUE's site." - page "Accessed the HALL" + para "Accessed the HALL" line "OF FAME List." prompt @@ -120351,7 +120351,7 @@ _MonIsTakenOutText: ; 0x8a1b9 TX_RAM $cf4b text " is" line "taken out." - next "Got @" + cont "Got @" TX_RAM $cf4b text "." prompt @@ -120365,7 +120365,7 @@ _CantTakeMonText: ; 0x8a1f6 text "You can't take" line "any more #MON." - page "Deposit #MON" + para "Deposit #MON" line "first." prompt @@ -120379,14 +120379,14 @@ _OnceReleasedText: ; 0x8a23d line "@" TX_RAM $cf4b text " is" - next "gone forever. OK?" + cont "gone forever. OK?" done _MonWasReleasedText: ; 0x8a268 TX_RAM $cf4b text " was" line "released outside." - next "Bye @" + cont "Bye @" _UnnamedText_8a288: ; 8a288 (22:6288) TX_RAM $cf4b @@ -120441,7 +120441,7 @@ _UnnamedText_1e946: ; 8a39a (22:639a) text "Accessed PROF." line "OAK's PC." - page "Accessed #DEX" + para "Accessed #DEX" line "Rating System." prompt @@ -120465,7 +120465,7 @@ INCLUDE "text/oakspeech.asm" _DoYouWantToNicknameText: ; 0x8a605 text "Do you want to" line "give a nickname" - next "to @" + cont "to @" UnnamedText_8a629: ; 8a629 (22:6629) TX_RAM $cd6d @@ -120480,7 +120480,7 @@ _UnnamedText_699f: ; 8a62f (22:662f) _UnnamedText_69e7: ; 8a64a (22:664a) text "That's right! I" line "remember now! His" - next "name is ", $53, "!" + cont "name is ", $53, "!" prompt _SSAnne8AfterBattleText2: ; 8a677 (22:6677) @@ -120489,7 +120489,7 @@ _SSAnne8AfterBattleText2: ; 8a677 (22:6677) line "@" TX_RAM $cd6d text " will" - next "be traded." + cont "be traded." done _Char00Text: ; 8a696 (22:6696) @@ -120503,100 +120503,100 @@ _Char55Text: ; 8a6a3 (22:66a3) _DiglettsCaveRoute2Text1: ; 8a6a7 (22:66a7) text "I went to ROCK" line "TUNNEL, but it's" - next "dark and scary." + cont "dark and scary." - page "If a #MON's" + para "If a #MON's" line "FLASH could light" - next "it up..." + cont "it up..." done _ViridianForestexitText1: ; 8a6fd (22:66fd) text "Many #MON live" line "only in forests " - next "and caves." + cont "and caves." - page "You need to look" + para "You need to look" line "everywhere to get" - next "different kinds!" + cont "different kinds!" done _ViridianForestexitText2: ; 8a75d (22:675d) text "Have you noticed" line "the bushes on the" - next "roadside?" + cont "roadside?" - page "They can be cut" + para "They can be cut" line "down by a special" - next "#MON move." + cont "#MON move." done _Route2HouseText1: ; 8a7b8 (22:67b8) text "A fainted #MON" line "can't fight. But, " - next "it can still use " - next "moves like CUT!" + cont "it can still use " + cont "moves like CUT!" done _UnnamedText_5d616: ; 8a7fc (22:67fc) text "The HM FLASH" line "lights even the" - next "darkest dungeons." + cont "darkest dungeons." done _Route2GateText2: ; 8a82c (22:682c) text "Once a #MON" line "learns FLASH, you" - next "can get through" - next "ROCK TUNNEL." + cont "can get through" + cont "ROCK TUNNEL." done _ViridianForestEntranceText1: ; 8a868 (22:6868) text "Are you going to" line "VIRIDIAN FOREST?" - next "Be careful, it's" - next "a natural maze!" + cont "Be careful, it's" + cont "a natural maze!" done _ViridianForestEntranceText2: ; 8a8ab (22:68ab) text "RATTATA may be" line "small, but its" - next "bite is wicked!" - next "Did you get one?" + cont "bite is wicked!" + cont "Did you get one?" done _MtMoonPokecenterText1: ; 8a8eb (22:68eb) text "I've 6 # BALLs" line "set in my belt." - page "At most, you can" + para "At most, you can" line "carry 6 #MON." done _MtMoonPokecenterText3: ; 8a929 (22:6929) text "TEAM ROCKET" line "attacks CERULEAN" - next "citizens..." + cont "citizens..." - page "TEAM ROCKET is" + para "TEAM ROCKET is" line "always in the" - next "news!" + cont "news!" done _UnnamedText_4935c: ; 8a976 (22:6976) text "MAN: Hello, there!" line "Have I got a deal" - next "just for you!" + cont "just for you!" - page "I'll let you have" + para "I'll let you have" line "a swell MAGIKARP" - next "for just ¥500!" - next "What do you say?" + cont "for just ¥500!" + cont "What do you say?" done _UnnamedText_49361: ; 8a9ec (22:69ec) text "No? I'm only" line "doing this as a" - next "favor to you!" + cont "favor to you!" done _UnnamedText_49366: ; 8aa17 (22:6a17) @@ -120616,33 +120616,33 @@ _MtMoonPokecenterText5: ; 8aa5a (22:6a5a) _UnnamedText_1dfe7: ; 8aa5c (22:6a5c) text "I'm on guard duty." line "Gee, I'm thirsty," - next "though!" + cont "though!" - page "Oh wait there," + para "Oh wait there," line "the road's closed." done _UnnamedText_8aaa9: ; 8aaa9 (22:6aa9) text "Whoa, boy!" line "I'm parched!" - next "..." - next "Huh? I can have" - next "this drink?" - next "Gee, thanks!@@" + cont "..." + cont "Huh? I can have" + cont "this drink?" + cont "Gee, thanks!@@" _UnnamedText_1dff1: ; 8aaef (22:6aef) text $51 db "..." line "Glug glug..." - next "..." - next "Gulp..." - next "If you want to go" - next "to SAFFRON CITY..." - next "..." - next "You can go on" - next "through. I'll" - next "share this with" - next "the other guards!" + cont "..." + cont "Gulp..." + cont "If you want to go" + cont "to SAFFRON CITY..." + cont "..." + cont "You can go on" + cont "through. I'll" + cont "share this with" + cont "the other guards!" done _UnnamedText_1dff6: ; 8ab74 (22:6b74) @@ -120653,8 +120653,8 @@ _UnnamedText_1dff6: ; 8ab74 (22:6b74) _UnnamedText_5640f: ; 8ab95 (22:6b95) text "I run a DAYCARE." line "Would you like me" - next "to raise one of" - next "your #MON?" + cont "to raise one of" + cont "your #MON?" done _UnnamedText_56414: ; 8abd4 (22:6bd4) @@ -120667,7 +120667,7 @@ _UnnamedText_56419: ; 8abf0 (22:6bf0) line "after @" TX_RAM $cd6d db $0 - next "for a while." + cont "for a while." prompt _UnnamedText_5641e: ; 8ac19 (22:6c19) @@ -120681,14 +120681,14 @@ _UnnamedText_56423: ; 8ac32 (22:6c32) db $0 line "has grown a lot!" - page "By level, it's" + para "By level, it's" line "grown by @" UnnamedText_8ac67: ; 8ac67 (22:6c67) TX_NUM $cd3e,$1,$3 text "!" - page "Aren't I great?" + para "Aren't I great?" prompt _UnnamedText_56428: ; 8ac7d (22:6c7d) @@ -120696,7 +120696,7 @@ _UnnamedText_56428: ; 8ac7d (22:6c7d) db $2, $3f, $cd, $c2 db $0 line "for the return" - next "of this #MON." + cont "of this #MON." done _UnnamedText_5642d: ; 8acae (22:6cae) @@ -120711,8 +120711,8 @@ _UnnamedText_56432: ; 8acc1 (22:6cc1) line "Your @" TX_RAM $cd6d db $0 - next "needs some more" - next "time with me." + cont "needs some more" + cont "time with me." prompt SECTION "bank23",ROMX,BANK[$23] @@ -120738,7 +120738,7 @@ _UnnamedText_56445: ; 8c041 (23:4041) _UnnamedText_5644a: ; 8c063 (23:4063) text "I can't accept a" line "#MON that" - next "knows an HM move." + cont "knows an HM move." done _UnnamedText_5644f: ; 8c090 (23:4090) @@ -120754,64 +120754,64 @@ _UnnamedText_56454: ; 8c0ad (23:40ad) _UndergrdTunnelEntRoute6Text1: ; 8c0cb (23:40cb) text "People often lose" line "things in that" - next "UNDERGROUND PATH." + cont "UNDERGROUND PATH." done _UndergroundPathEntRoute7Text1: ; 8c0ff (23:40ff) text "I heard a sleepy" line "#MON appeared" - next "near CELADON CITY." + cont "near CELADON CITY." done _UnnamedText_5d773: ; 8c132 (23:4132) text "I want to shop at" line "the dept. store" - next "in CELADON but..." + cont "in CELADON but..." - page "There are so many" + para "There are so many" line "rough looking" - next "people there." + cont "people there." done _UnnamedText_5d778: ; 8c195 (23:4195) text "TEAM ROCKET had a" line "secret hideout in" - next "CELADON CITY?" + cont "CELADON CITY?" done _UnnamedText_5d77d: ; 8c1c8 (23:41c8) text "You're here to" line "shop in CELADON?" - page "Just step outside" + para "Just step outside" line "and head west!" done _UnnamedText_5d782: ; 8c209 (23:4209) text "The UNDERGROUND" line "PATH goes beneath" - next "SAFFRON and leads" - next "to LAVENDER." + cont "SAFFRON and leads" + cont "to LAVENDER." - page "If you're heading" + para "If you're heading" line "to CERULEAN, go" - next "to the building" - next "across the road." + cont "to the building" + cont "across the road." done _UndergroundPathEntRoute8Text1: ; 8c28d (23:428d) text "The dept. store" line "in CELADON has a" - next "great selection!" + cont "great selection!" done _RockTunnelPokecenterText1: ; 8c2c0 (23:42c0) text "The element types" line "of #MON make" - next "them stronger" - next "than some types" - next "and weaker than" - next "others!" + cont "them stronger" + cont "than some types" + cont "and weaker than" + cont "others!" done _RockTunnelPokecenterText3: ; 8c316 (23:4316) @@ -120832,7 +120832,7 @@ _RockTunnel1EndBattleText1: ; 8c35d (23:435d) _RockTunnel1AfterBattleText1: ; 8c36c (23:436c) text "Watch for ONIX!" line "It can put the" - next "squeeze on you!" + cont "squeeze on you!" done _RockTunnel1BattleText2: ; 8c39c (23:439c) @@ -120843,20 +120843,20 @@ _RockTunnel1BattleText2: ; 8c39c (23:439c) _RockTunnel1EndBattleText2: ; 8c3bb (23:43bb) text "Ease up!" line "What am I doing?" - next "Which way is out?" + cont "Which way is out?" prompt _RockTunnel1AfterBattleText2: ; 8c3e8 (23:43e8) text "That sleeping" line "#MON on ROUTE" - next "12 forced me to" - next "take this detour." + cont "12 forced me to" + cont "take this detour." done _RockTunnel1BattleText3: ; 8c427 (23:4427) text "Outsiders like" line "you need to show" - next "me some respect!" + cont "me some respect!" done _RockTunnel1EndBattleText3: ; 8c459 (23:4459) @@ -120886,7 +120886,7 @@ _RockTunnel1AfterBattleText4: ; 8c4a6 (23:44a6) _RockTunnel1BattleText5: ; 8c4c9 (23:44c9) text "Eek! Don't try" line "anything funny in" - next "the dark!" + cont "the dark!" done _RockTunnel1EndBattleText5: ; 8c4f4 (23:44f4) @@ -120932,7 +120932,7 @@ _RockTunnel1AfterBattleText7: ; 8c59d (23:459d) _RockTunnel1Text8: ; 8c5b7 (23:45b7) text "ROCK TUNNEL" line "CERULEAN CITY -" - next "LAVENDER TOWN" + cont "LAVENDER TOWN" done _VoltorbBattleText: ; 8c5e2 (23:45e2) @@ -120945,37 +120945,37 @@ _ZapdosBattleText: ; 8c5ea (23:45ea) _Route11GateText1: ; 8c5f3 (23:45f3) text "When you catch" line "lots of #MON," - next "isn't it hard to" - next "think up names?" + cont "isn't it hard to" + cont "think up names?" - page "In LAVENDER TOWN," + para "In LAVENDER TOWN," line "there's a man who" - next "rates #MON" - next "nicknames." + cont "rates #MON" + cont "nicknames." - page "He'll help you" + para "He'll help you" line "rename them too!" done _UnnamedText_494a3: ; 8c689 (23:4689) text "There are items on" line "the ground that" - next "can't be seen." + cont "can't be seen." - page "ITEMFINDER will" + para "ITEMFINDER will" line "detect an item" - next "close to you." + cont "close to you." - page "It can't pinpoint" + para "It can't pinpoint" line "it, so you have" - next "to look yourself!" + cont "to look yourself!" done _UnnamedText_494c4: ; 8c71b (23:471b) text "Looked into the" line "binoculars." - page "A big #MON is" + para "A big #MON is" line "asleep on a road!" done @@ -120983,7 +120983,7 @@ _UnnamedText_494c9: ; 8c758 (23:4758) text "Looked into the" line "binoculars." - page "It's a beautiful" + para "It's a beautiful" line "view!" done @@ -120991,19 +120991,19 @@ _UnnamedText_494d5: ; 8c78b (23:478b) text "Looked into the" line "binoculars." - page "The only way to" + para "The only way to" line "get from CERULEAN" - next "CITY to LAVENDER" - next "is by way of the" - next "ROCK TUNNEL." + cont "CITY to LAVENDER" + cont "is by way of the" + cont "ROCK TUNNEL." done _DiglettsCaveEntRoute11Text1: ; 8c7f9 (23:47f9) text "What a surprise!" line "DIGLETTs dug this" - next "long tunnel!" + cont "long tunnel!" - page "It goes right to" + para "It goes right to" line "VIRIDIAN CITY!" done @@ -121015,11 +121015,11 @@ _Route12GateText1: ; 8c84a (23:484a) _TM39PreReceiveText: ; 8c86b (23:486b) text "My #MON's" line "ashes are stored" - next "in #MON TOWER." + cont "in #MON TOWER." - page "You can have this" + para "You can have this" line "TM. I don't need" - next "it any more..." + cont "it any more..." prompt _ReceivedTM39Text: ; 8c8c6 (23:48c6) @@ -121030,10 +121030,10 @@ _TM39ExplanationText: ; 8c8d9 (23:48d9) text "TM39 is a move" line "called SWIFT." - page "It's very accurate," + para "It's very accurate," line "so use it during" - next "battles you can't" - next "afford to lose." + cont "battles you can't" + cont "afford to lose." done _TM39NoRoomText: ; 8c93c (23:493c) @@ -121045,24 +121045,24 @@ _UnnamedText_495b8: ; 8c95a (23:495a) text "Looked into the" line "binoculars." - page "A man fishing!" + para "A man fishing!" done _UnnamedText_495c4: ; 8c986 (23:4986) text "Looked into the" line "binoculars." - page "It's #MON TOWER!" + para "It's #MON TOWER!" done _UnnamedText_564c0: ; 8c9b3 (23:49b3) text "I'm the FISHING" line "GURU's brother!" - page "I simply Looove" + para "I simply Looove" line "fishing!" - page "Do you like to" + para "Do you like to" line "fish?" done @@ -121070,10 +121070,10 @@ _UnnamedText_564c5: ; 8ca00 (23:4a00) text "Grand! I like" line "your style!" - page "Take this and" + para "Take this and" line "fish, young one!" - page $52, " received" + para $52, " received" line "a @" TX_RAM $cf4b text "!@@" @@ -121083,10 +121083,10 @@ _UnnamedText_564ca: ; 8ca4f (23:4a4f) db "Fishing is a way" line "of life!" - page "From the seas to" + para "From the seas to" line "rivers, go out" - next "and land the big" - next "one!" + cont "and land the big" + cont "one!" done _UnnamedText_564cf: ; 8caa1 (23:4aa1) @@ -121098,68 +121098,68 @@ _UnnamedText_564d4: ; 8cac2 (23:4ac2) text "Hello there," line $52, "!" - page "Use the SUPER ROD" + para "Use the SUPER ROD" line "in any water!" - next "You can catch" - next "different kinds" - next "of #MON." + cont "You can catch" + cont "different kinds" + cont "of #MON." - page "Try fishing" + para "Try fishing" line "wherever you can!" done _UnnamedText_564d9: ; 8cb38 (23:4b38) text "Oh no!" - page "I had a gift for" + para "I had a gift for" line "you, but you have" - next "no room for it!" + cont "no room for it!" done _Route15GateText1: ; 8cb73 (23:4b73) text "Are you working" line "on a #DEX?" - page "PROF.OAK's AIDE" + para "PROF.OAK's AIDE" line "came by here." done _UnnamedText_4968c: ; 8cbac (23:4bac) text "EXP.ALL gives" line "EXP points to all" - next "the #MON with" - next "you, even if they" - next "don't fight." + cont "the #MON with" + cont "you, even if they" + cont "don't fight." - page "It does, however," + para "It does, however," line "reduce the amount" - next "of EXP for each" - next "#MON." + cont "of EXP for each" + cont "#MON." - page "If you don't need" + para "If you don't need" line "it, you should " - next "store it via PC." + cont "store it via PC." done _UnnamedText_49698: ; 8cc65 (23:4c65) text "Looked into the" line "binoculars." - page "It looks like a" + para "It looks like a" line "small island!" done _UnnamedText_49777: ; 8cca0 (23:4ca0) text "No pedestrians" line "are allowed on" - next "CYCLING ROAD!" + cont "CYCLING ROAD!" done _UnnamedText_4977c: ; 8cccd (23:4ccd) text "CYCLING ROAD is a" line "downhill course" - next "by the sea. It's" - next "a great ride." + cont "by the sea. It's" + cont "a great ride." done _UnnamedText_49781: ; 8cd0e (23:4d0e) @@ -121175,7 +121175,7 @@ _Route16GateMapText2: ; 8cd2a (23:4d2a) _UnnamedText_49820: ; 8cd49 (23:4d49) text "I'm going for a" line "ride with my girl" - next "friend!" + cont "friend!" done _UnnamedText_4982f: ; 8cd73 (23:4d73) @@ -121187,7 +121187,7 @@ _UnnamedText_4983b: ; 8cd90 (23:4d90) text "Looked into the" line "binoculars." - page "It's CELADON DEPT." + para "It's CELADON DEPT." line "STORE!" done @@ -121195,7 +121195,7 @@ _UnnamedText_49847: ; 8cdc6 (23:4dc6) text "Looked into the" line "binoculars." - page "There's a long" + para "There's a long" line "path over water!" done @@ -121203,10 +121203,10 @@ _Route16HouseText3: ; 8ce02 (23:4e02) text "Oh, you found my" line "secret retreat!" - page "Please don't tell" + para "Please don't tell" line "anyone I'm here." - next "I'll make it up" - next "to you with this!" + cont "I'll make it up" + cont "to you with this!" prompt _ReceivedHM02Text: ; 8ce66 (23:4e66) @@ -121216,9 +121216,9 @@ _ReceivedHM02Text: ; 8ce66 (23:4e66) _HM02ExplanationText: ; 8ce79 (23:4e79) text "HM02 is FLY." line "It will take you" - next "back to any town." + cont "back to any town." - page "Put it to good" + para "Put it to good" line "use!" done @@ -121239,7 +121239,7 @@ _UnnamedText_49928: ; 8cef1 (23:4ef1) _UnnamedText_4992d: ; 8cf17 (23:4f17) text "CYCLING ROAD is" line "all uphill from" - next "here." + cont "here." done _UnnamedText_49932: ; 8cf3e (23:4f3e) @@ -121250,7 +121250,7 @@ _UnnamedText_49993: ; 8cf4a (23:4f4a) text "Looked into the" line "binoculars." - page "PALLET TOWN is in" + para "PALLET TOWN is in" line "the west!" done @@ -121258,29 +121258,29 @@ _UnnamedText_4999f: ; 8cf83 (23:4f83) text "Looked into the" line "binoculars." - page "There are people" + para "There are people" line "swimming!" done _UnnamedText_1e704: ; 8cfbb (23:4fbb) text "Only truly skilled" line "trainers are" - next "allowed through." + cont "allowed through." - page "You don't have the" + para "You don't have the" line "BOULDERBADGE yet!@@" _UnnamedText_1e715: ; 8d012 (23:5012) db $0 - page "The rules are" + para "The rules are" line "rules. I can't" - next "let you pass." + cont "let you pass." done _UnnamedText_1e71a: ; 8d03e (23:503e) text "Oh! That is the" line "BOULDERBADGE!" - next "Go right ahead!@@" + cont "Go right ahead!@@" _VictoryRoad2BattleText6: ; 8d06e (23:506e) text "Gyaoo!@@" @@ -121288,7 +121288,7 @@ _VictoryRoad2BattleText6: ; 8d06e (23:506e) _VictoryRoad2BattleText1: ; 8d077 (23:5077) text "VICTORY ROAD is" line "the final test" - next "for trainers!" + cont "for trainers!" done _VictoryRoad2EndBattleText1: ; 8d0a5 (23:50a5) @@ -121298,13 +121298,13 @@ _VictoryRoad2EndBattleText1: ; 8d0a5 (23:50a5) _VictoryRoad2AfterBattleText1: ; 8d0ad (23:50ad) text "If you get stuck," line "try moving some" - next "boulders around!" + cont "boulders around!" done _VictoryRoad2BattleText2: ; 8d0e1 (23:50e1) text "Ah, so you wish" line "to challenge the" - next "ELITE FOUR?" + cont "ELITE FOUR?" done _VictoryRoad2EndBattleText2: ; 8d10f (23:510f) @@ -121330,14 +121330,14 @@ _VictoryRoad2EndBattleText3: ; 8d14f (23:514f) _VictoryRoad2AfterBattleText3: ; 8d15f (23:515f) text "You earned the" line "right to be on" - next "VICTORY ROAD!" + cont "VICTORY ROAD!" done _VictoryRoad2BattleText4: ; 8d18c (23:518c) text "If you can get" line "through here, you" - next "can go meet the" - next "ELITE FOUR!" + cont "can go meet the" + cont "ELITE FOUR!" done _VictoryRoad2EndBattleText4: ; 8d1ca (23:51ca) @@ -121348,8 +121348,8 @@ _VictoryRoad2EndBattleText4: ; 8d1ca (23:51ca) _VictoryRoad2AfterBattleText4: ; 8d1dd (23:51dd) text "I can beat you" line "when it comes to" - next "knowledge about" - next "#MON!" + cont "knowledge about" + cont "#MON!" done _VictoryRoad2BattleText5: ; 8d214 (23:5214) @@ -121365,62 +121365,62 @@ _VictoryRoad2EndBattleText5: ; 8d230 (23:5230) _VictoryRoad2AfterBattleText5: ; 8d23c (23:523c) text "Many trainers give" line "up the challenge" - next "here." + cont "here." done _UnnamedText_1e865: ; 8d267 (23:5267) text "Hiya! I'm a" line "#MON..." - next "...No I'm not!" + cont "...No I'm not!" - page "Call me BILL!" + para "Call me BILL!" line "I'm a true blue" - next "#MANIAC! Hey!" - next "What's with that" - next "skeptical look?" + cont "#MANIAC! Hey!" + cont "What's with that" + cont "skeptical look?" - page "I'm not joshing" + para "I'm not joshing" line "you, I screwed up" - next "an experiment and" - next "got combined with" - next "a #MON!" + cont "an experiment and" + cont "got combined with" + cont "a #MON!" - page "So, how about it?" + para "So, how about it?" line "Help me out here!" done _UnnamedText_1e86a: ; 8d345 (23:5345) text "When I'm in the" line "TELEPORTER, go to" - next "my PC and run the" - next "Cell Separation" - next "System!" + cont "my PC and run the" + cont "Cell Separation" + cont "System!" done _UnnamedText_1e86f: ; 8d391 (23:5391) text "No!? Come on, you" line "gotta help a guy" - next "in deep trouble!" + cont "in deep trouble!" - page "What do you say," + para "What do you say," line "chief? Please?" - next "OK? All right!" + cont "OK? All right!" prompt _BillThankYouText: ; 8d3f5 (23:53f5) text "BILL: Yeehah!" line "Thanks, bud! I" - next "owe you one!" + cont "owe you one!" - page "So, did you come" + para "So, did you come" line "to see my #MON" - next "collection?" - next "You didn't?" - next "That's a bummer." + cont "collection?" + cont "You didn't?" + cont "That's a bummer." - page "I've got to thank" + para "I've got to thank" line "you... Oh here," - next "maybe this'll do." + cont "maybe this'll do." prompt _SSTicketReceivedText: ; 8d499 (23:5499) @@ -121437,37 +121437,37 @@ _SSTicketNoRoomText: ; 8d4b0 (23:54b0) _UnnamedText_1e8cb: ; 8d4d0 (23:54d0) text "That cruise ship," line "S.S.ANNE, is in" - next "VERMILION CITY." - next "Its passengers" - next "are all trainers!" + cont "VERMILION CITY." + cont "Its passengers" + cont "are all trainers!" - page "They invited me" + para "They invited me" line "to their party," - next "but I can't stand" - next "fancy do's. Why" - next "don't you go" - next "instead of me?" + cont "but I can't stand" + cont "fancy do's. Why" + cont "don't you go" + cont "instead of me?" done _UnnamedText_1e8da: ; 8d57f (23:557f) text "BILL: Look, bud," line "just check out" - next "some of my rare" - next "#MON on my PC!" + cont "some of my rare" + cont "#MON on my PC!" done _Route1ViridianMartSampleText: ; 8d5bf (23:55bf) text "Hi! I work at a" line "#MON MART." - page "It's a convenient" + para "It's a convenient" line "shop, so please" - next "visit us in" - next "VIRIDIAN CITY." + cont "visit us in" + cont "VIRIDIAN CITY." - page "I know, I'll give" + para "I know, I'll give" line "you a sample!" - next "Here you go!" + cont "Here you go!" prompt _UnnamedText_1cae8: ; 8d643 (23:5643) @@ -121479,7 +121479,7 @@ _UnnamedText_1cae8: ; 8d643 (23:5643) _UnnamedText_1caee: ; 8d652 (23:5652) text "We also carry" line "# BALLs for" - next "catching #MON!" + cont "catching #MON!" done _UnnamedText_1caf3: ; 8d67c (23:567c) @@ -121491,25 +121491,25 @@ _Route1Text2: ; 8d69f (23:569f) text "See those ledges" line "along the road?" - page "It's a bit scary," + para "It's a bit scary," line "but you can jump" - next "from them." + cont "from them." - page "You can get back" + para "You can get back" line "to PALLET TOWN" - next "quicker that way." + cont "quicker that way." done _Route1Text3: ; 8d720 (23:5720) text "ROUTE 1" line "PALLET TOWN -" - next "VIRIDIAN CITY" + cont "VIRIDIAN CITY" done _Route2Text3: ; 8d745 (23:5745) text "ROUTE 2" line "VIRIDIAN CITY -" - next "PEWTER CITY" + cont "PEWTER CITY" done _Route2Text4: ; 8d76a (23:576a) @@ -121519,11 +121519,11 @@ _Route2Text4: ; 8d76a (23:576a) _Route3Text1: ; 8d779 (23:5779) text "Whew... I better" line "take a rest..." - next "Groan..." + cont "Groan..." - page "That tunnel from" + para "That tunnel from" line "CERULEAN takes a" - next "lot out of you!" + cont "lot out of you!" done _Route3BattleText1: ; 8d7d5 (23:57d5) @@ -121539,14 +121539,14 @@ _Route3EndBattleText1: ; 8d7f9 (23:57f9) _Route3AfterBattleText1: ; 8d80d (23:580d) text "There are other" line "kinds of #MON" - next "than those found" - next "in the forest!" + cont "than those found" + cont "in the forest!" done _Route3BattleText2: ; 8d84c (23:584c) text "Hi! I like shorts!" line "They're comfy and" - next "easy to wear!" + cont "easy to wear!" done _Route3EndBattleText2: ; 8d87f (23:587f) @@ -121557,8 +121557,8 @@ _Route3EndBattleText2: ; 8d87f (23:587f) _Route3AfterBattleText2: ; 8d893 (23:5893) text "Are you storing" line "your #MON on" - next "PC? Each BOX can" - next "hold 20 #MON!" + cont "PC? Each BOX can" + cont "hold 20 #MON!" done _Route3BattleText3: ; 8d8d0 (23:58d0) @@ -121574,7 +121574,7 @@ _Route3EndBattleText3: ; 8d8ee (23:58ee) _Route3AfterBattleText3: ; 8d8fb (23:58fb) text "Quit staring if" line "you don't want to" - next "fight!" + cont "fight!" done _Route3BattleText4: ; 8d924 (23:5924) @@ -121585,20 +121585,20 @@ _Route3BattleText4: ; 8d924 (23:5924) _Route3EndBattleText4: ; 8d944 (23:5944) text "If I" line "had new #MON I" - next "would've won!" + cont "would've won!" prompt _Route3AfterBattleText4: ; 8d966 (23:5966) text "If a #MON BOX" line "on the PC gets" - next "full, just switch" - next "to another BOX!" + cont "full, just switch" + cont "to another BOX!" done _Route3BattleText5: ; 8d9a6 (23:59a6) text "That look you" line "gave me, it's so" - next "intriguing!" + cont "intriguing!" done _Route3EndBattleText5: ; 8d9d1 (23:59d1) @@ -121608,7 +121608,7 @@ _Route3EndBattleText5: ; 8d9d1 (23:59d1) _Route3AfterBattleText5: ; 8d9db (23:59db) text "Avoid fights by" line "not letting" - next "people see you!" + cont "people see you!" done _Route3BattleText6: ; 8da08 (23:5a08) @@ -121624,7 +121624,7 @@ _Route3EndBattleText6: ; 8da28 (23:5a28) _Route3AfterBattleText6: ; 8da3b (23:5a3b) text "I always wear" line "shorts, even in" - next "winter!" + cont "winter!" done _Route3BattleText7: ; 8da62 (23:5a62) @@ -121640,7 +121640,7 @@ _Route3EndBattleText7: ; 8da7e (23:5a7e) _Route3AfterBattleText7: ; 8da91 (23:5a91) text "Trained #MON" line "are stronger than" - next "the wild ones!" + cont "the wild ones!" done _Route3BattleText8: ; 8dac0 (23:5ac0) @@ -121665,7 +121665,7 @@ _Route3Text10: ; 8db07 (23:5b07) _Route4Text1: ; 8db1e (23:5b1e) text "Ouch! I tripped" line "over a rocky" - next "#MON, GEODUDE!" + cont "#MON, GEODUDE!" done _Route4BattleText1: ; 8db4b (23:5b4b) @@ -121681,9 +121681,9 @@ _Route4EndBattleText1: ; 8db6c (23:5b6c) _Route4AfterBattleText1: ; 8db88 (23:5b88) text "There might not" line "be any more" - next "mushrooms here." + cont "mushrooms here." - page "I think I got" + para "I think I got" line "them all." done @@ -121695,19 +121695,19 @@ _Route4Text5: ; 8dbcd (23:5bcd) _Route4Text6: ; 8dbe6 (23:5be6) text "ROUTE 4" line "MT.MOON -" - next "CERULEAN CITY" + cont "CERULEAN CITY" done _Route5Text1: ; 8dc07 (23:5c07) text "UNDERGROUND PATH" line "CERULEAN CITY -" - next "VERMILION CITY" + cont "VERMILION CITY" done _Route6BattleText1: ; 8dc38 (23:5c38) text "Who's there?" line "Quit listening in" - next "on us!" + cont "on us!" done _Route6EndBattleText1: ; 8dc5e (23:5c5e) @@ -121723,7 +121723,7 @@ _Route6AfterBattleText1: ; 8dc70 (23:5c70) _Route6BattleText2: ; 8dc87 (23:5c87) text "Excuse me! This" line "is a private" - next "conversation!" + cont "conversation!" done _Route6EndBattleText2: ; 8dcb3 (23:5cb3) @@ -121744,7 +121744,7 @@ _Route6EndBattleText3: ; 8dce9 (23:5ce9) _Route6AfterBattleText3: ; 8dcfd (23:5cfd) text "I like bugs, so" line "I'm going back to" - next "VIRIDIAN FOREST." + cont "VIRIDIAN FOREST." done _Route6BattleText4: ; 8dd30 (23:5d30) @@ -121760,7 +121760,7 @@ _Route6EndBattleText4: ; 8dd4e (23:5d4e) _Route6AfterBattleText4: ; 8dd61 (23:5d61) text "I should carry" line "more #MON with" - next "me for safety." + cont "me for safety." done _Route6BattleText5: ; 8dd8f (23:5d8f) @@ -121776,13 +121776,13 @@ _Route6EndBattleText5: ; 8dda8 (23:5da8) _Route6AfterBattleText5: ; 8ddba (23:5dba) text "I want to get" line "stronger! What's" - next "your secret?" + cont "your secret?" done _Route6BattleText6: ; 8dde6 (23:5de6) text "I've never seen" line "you around!" - next "Are you good?" + cont "Are you good?" done _Route6EndBattleText6: ; 8de10 (23:5e10) @@ -121793,25 +121793,25 @@ _Route6EndBattleText6: ; 8de10 (23:5e10) _Route6AfterBattleText6: ; 8de23 (23:5e23) text "Are my #MON" line "weak? Or, am I" - next "just bad?" + cont "just bad?" done _Route6Text7: ; 8de49 (23:5e49) text "UNDERGROUND PATH" line "CERULEAN CITY -" - next "VERMILION CITY" + cont "VERMILION CITY" done _Route7Text1: ; 8de7a (23:5e7a) text "UNDERGROUND PATH" line "CELADON CITY -" - next "LAVENDER TOWN" + cont "LAVENDER TOWN" done _Route8BattleText1: ; 8dea9 (23:5ea9) text "You look good at" line "#MON, but" - next "how's your chem?" + cont "how's your chem?" done _Route8EndBattleText1: ; 8ded5 (23:5ed5) @@ -121852,7 +121852,7 @@ _Route8EndBattleText3: ; 8df7e (23:5f7e) _Route8AfterBattleText3: ; 8df90 (23:5f90) text "Go with GRIMER" line "first...and..." - next "...and...then..." + cont "...and...then..." done _Route8BattleText4: ; 8dfc0 (23:5fc0) @@ -121867,8 +121867,8 @@ _Route8EndBattleText4: ; 8dfe4 (23:5fe4) _Route8AfterBattleText4: ; 8dff0 (23:5ff0) text "When #MON grow" line "up they get ugly!" - next "They shouldn't" - next "evolve!" + cont "They shouldn't" + cont "evolve!" done _Route8BattleText5: ; 8e028 (23:6028) @@ -121884,7 +121884,7 @@ _Route8EndBattleText5: ; 8e049 (23:6049) _Route8AfterBattleText5: ; 8e060 (23:6060) text "We're stuck here" line "because of the" - next "gates at SAFFRON." + cont "gates at SAFFRON." done _Route8BattleText6: ; 8e092 (23:6092) @@ -121899,13 +121899,13 @@ _Route8EndBattleText6: ; 8e0b8 (23:60b8) _Route8AfterBattleText6: ; 8e0bf (23:60bf) text "I think PIDGEY" line "and RATTATA" - next "are cute too!" + cont "are cute too!" done _Route8BattleText7: ; 8e0e9 (23:60e9) text "We must look" line "silly standing" - next "here like this!" + cont "here like this!" done _Route8EndBattleText7: ; 8e116 (23:6116) @@ -121916,8 +121916,8 @@ _Route8EndBattleText7: ; 8e116 (23:6116) _Route8AfterBattleText7: ; 8e12a (23:612a) text "SAFFRON's gate" line "keeper won't let" - next "us through." - next "He's so mean!" + cont "us through." + cont "He's so mean!" done _Route8BattleText8: ; 8e162 (23:6162) @@ -121933,40 +121933,40 @@ _Route8EndBattleText8: ; 8e181 (23:6181) _Route8AfterBattleText8: ; 8e198 (23:6198) text "Gambling and" line "#MON are like" - next "eating peanuts!" - next "Just can't stop!" + cont "eating peanuts!" + cont "Just can't stop!" done _Route8BattleText9: ; 8e1d4 (23:61d4) text "What's a cute," line "round and fluffy" - next "#MON?" + cont "#MON?" done _Route8EndBattleText9: ; 8e1fa (23:61fa) text "Stop!" - page "Don't be so mean" + para "Don't be so mean" line "to my CLEFAIRY!" prompt _Route8AfterBattleText9: ; 8e221 (23:6221) text "I heard that" line "CLEFAIRY evolves" - next "when it's exposed" - next "to a MOON STONE." + cont "when it's exposed" + cont "to a MOON STONE." done _Route8Text10: ; 8e262 (23:6262) text "UNDERGROUND PATH" line "CELADON CITY -" - next "LAVENDER TOWN" + cont "LAVENDER TOWN" done _Route9BattleText1: ; 8e291 (23:6291) text "You have #MON" line "with you!" - next "You're mine!" + cont "You're mine!" done _Route9EndBattleText1: ; 8e2b6 (23:62b6) @@ -121977,13 +121977,13 @@ _Route9EndBattleText1: ; 8e2b6 (23:62b6) _Route9AfterBattleText1: ; 8e2c8 (23:62c8) text "You need light to" line "get through that" - next "dark tunnel ahead." + cont "dark tunnel ahead." done _Route9BattleText2: ; 8e2ff (23:62ff) text "Who's that walking" line "with those good" - next "looking #MON?" + cont "looking #MON?" done _Route9EndBattleText2: ; 8e330 (23:6330) @@ -121998,7 +121998,7 @@ _Route9AfterBattleText2: ; 8e343 (23:6343) _Route9BattleText3: ; 8e352 (23:6352) text "I'm taking ROCK" line "TUNNEL to go to" - next "LAVENDER..." + cont "LAVENDER..." done _Route9EndBattleText3: ; 8e37e (23:637e) @@ -122024,33 +122024,33 @@ _Route9EndBattleText4: ; 8e3cf (23:63cf) _Route9AfterBattleText4: ; 8e3e4 (23:63e4) text "You're obviously" line "talented! Good" - next "luck to you!" + cont "luck to you!" done _Route9BattleText5: ; 8e411 (23:6411) text "Bwahaha!" line "Great! I was" - next "bored, eh!" + cont "bored, eh!" done _Route9EndBattleText5: ; 8e433 (23:6433) text "Keep it" line "coming, eh!" - page "Oh wait. I'm out" + para "Oh wait. I'm out" line "of #MON!" prompt _Route9AfterBattleText5: ; 8e461 (23:6461) text "You sure had guts" line "standing up to me" - next "there, eh?" + cont "there, eh?" done _Route9BattleText6: ; 8e491 (23:6491) text "Hahaha!" line "Aren't you a" - next "little toughie!" + cont "little toughie!" done _Route9EndBattleText6: ; 8e4b6 (23:64b6) @@ -122066,21 +122066,21 @@ _Route9AfterBattleText6: ; 8e4c3 (23:64c3) _Route9BattleText7: ; 8e4e2 (23:64e2) text "I got up early" line "every day to" - next "raise my #MON" - next "from cocoons!" + cont "raise my #MON" + cont "from cocoons!" done _Route9EndBattleText7: ; 8e51b (23:651b) text "WHAT?" - page "What a total" + para "What a total" line "waste of time!" prompt _Route9AfterBattleText7: ; 8e53e (23:653e) text "I have to collect" line "more than bugs to" - next "get stronger..." + cont "get stronger..." done _Route9BattleText8: ; 8e573 (23:6573) @@ -122096,7 +122096,7 @@ _Route9EndBattleText8: ; 8e58d (23:658d) _Route9AfterBattleText8: ; 8e5aa (23:65aa) text "Hahahaha!" line "Us hearty guys" - next "always laugh!" + cont "always laugh!" done _Route9BattleText9: ; 8e5d2 (23:65d2) @@ -122112,20 +122112,20 @@ _Route9EndBattleText9: ; 8e5ea (23:65ea) _Route9AfterBattleText9: ; 8e5f6 (23:65f6) text "If you don't like" line "bug #MON, you" - next "bug me!" + cont "bug me!" done _Route9Text11: ; 8e61e (23:661e) text "ROUTE 9" line "CERULEAN CITY-" - next "ROCK TUNNEL" + cont "ROCK TUNNEL" done _Route10BattleText1: ; 8e642 (23:6642) text "Wow, are you a" line "#MANIAC too?" - next "Want to see my" - next "collection?" + cont "Want to see my" + cont "collection?" done _Route10EndBattleText1: ; 8e67a (23:667a) @@ -122145,14 +122145,14 @@ _Route10BattleText2: ; 8e6b0 (23:66b0) _Route10EndBattleText2: ; 8e6c1 (23:66c1) text "Ha-haha!" line "Not laughing!" - next "Ha-hay fever!" - next "Haha-ha-choo!" + cont "Ha-hay fever!" + cont "Haha-ha-choo!" prompt _Route10AfterBattleText2: ; 8e6f5 (23:66f5) text "Haha-ha-choo!" line "Ha-choo!" - next "Snort! Snivel!" + cont "Snort! Snivel!" done _Route10BattleText3: ; 8e71c (23:671c) @@ -122173,8 +122173,8 @@ _Route10AfterBattleText3: ; 8e74b (23:674b) _Route10BattleText4: ; 8e76c (23:676c) text "I've been to a" line "#MON GYM a few" - next "times. But, I" - next "lost each time." + cont "times. But, I" + cont "lost each time." done _Route10EndBattleText4: ; 8e7a8 (23:67a8) @@ -122185,7 +122185,7 @@ _Route10EndBattleText4: ; 8e7a8 (23:67a8) _Route10AfterBattleText4: ; 8e7bd (23:67bd) text "I noticed some" line "#MANIACs" - next "prowling around." + cont "prowling around." done _Route10BattleText5: ; 8e7e7 (23:67e7) @@ -122206,7 +122206,7 @@ _Route10AfterBattleText5: ; 8e823 (23:6823) _Route10BattleText6: ; 8e844 (23:6844) text "I'm feeling a bit" line "faint from this" - next "tough hike." + cont "tough hike." done _Route10EndBattleText6: ; 8e872 (23:6872) @@ -122217,9 +122217,9 @@ _Route10EndBattleText6: ; 8e872 (23:6872) _Route10AfterBattleText6: ; 8e884 (23:6884) text "The #MON here" line "are so chunky!" - next "There should be a" - next "pink one with a" - next "floral pattern!" + cont "There should be a" + cont "pink one with a" + cont "floral pattern!" done _Route10Text9: ; 8e8d4 (23:68d4) @@ -122243,7 +122243,7 @@ _Route11EndBattleText1: ; 8e902 (23:6902) _Route11AfterBattleText1: ; 8e91b (23:691b) text "#MON is life!" line "And to live is to" - next "gamble!" + cont "gamble!" done _Route11BattleText2: ; 8e944 (23:6944) @@ -122259,7 +122259,7 @@ _Route11EndBattleText2: ; 8e965 (23:6965) _Route11AfterBattleText2: ; 8e976 (23:6976) text "You can't be a" line "coward in the" - next "world of #MON!" + cont "world of #MON!" done _Route11BattleText3: ; 8e9a2 (23:69a2) @@ -122280,7 +122280,7 @@ _Route11AfterBattleText3: ; 8e9d3 (23:69d3) _Route11BattleText4: ; 8e9f6 (23:69f6) text "Careful!" line "I'm laying down" - next "some cables!" + cont "some cables!" done _Route11EndBattleText4: ; 8ea1c (23:6a1c) @@ -122296,7 +122296,7 @@ _Route11AfterBattleText4: ; 8ea30 (23:6a30) _Route11BattleText5: ; 8ea51 (23:6a51) text "I just became a" line "trainer! But, I" - next "think I can win!" + cont "think I can win!" done _Route11EndBattleText5: ; 8ea83 (23:6a83) @@ -122347,16 +122347,16 @@ _Route11BattleText8: ; 8eb57 (23:6b57) _Route11EndBattleText8: ; 8eb71 (23:6b71) text "Darn!" line "I need to make my" - next "#MON stronger!" + cont "#MON stronger!" prompt _Route11AfterBattleText8: ; 8eb99 (23:6b99) text "There's a fat" line "#MON that" - next "comes down from" - next "the mountains." + cont "comes down from" + cont "the mountains." - page "It's strong if" + para "It's strong if" line "you can get it." done @@ -122404,15 +122404,15 @@ _Route12Text1: ; 9009e (24:409e) _UnnamedText_596eb: ; 900bf (24:40bf) text "SNORLAX woke up!" - page "It attacked in a" + para "It attacked in a" line "grumpy rage!" done _UnnamedText_596f0: ; 900ef (24:40ef) text "SNORLAX calmed" line "down! With a big" - next "yawn, it returned" - next "to the mountains!" + cont "yawn, it returned" + cont "to the mountains!" done _Route12BattleText1: ; 90134 (24:4134) @@ -122433,7 +122433,7 @@ _Route12AfterBattleText1: ; 90167 (24:4167) _Route12BattleText2: ; 90183 (24:4183) text "Be patient!" line "Fishing is a" - next "waiting game!" + cont "waiting game!" done _Route12EndBattleText2: ; 901ab (24:41ab) @@ -122444,7 +122444,7 @@ _Route12EndBattleText2: ; 901ab (24:41ab) _Route12AfterBattleText2: ; 901bf (24:41bf) text "With a better ROD," line "I could catch" - next "better #MON!" + cont "better #MON!" done _Route12BattleText3: ; 901ee (24:41ee) @@ -122459,7 +122459,7 @@ _Route12EndBattleText3: ; 9020c (24:420c) _Route12AfterBattleText3: ; 90212 (24:4212) text "I could have made" line "my #MON evolve" - next "with MOON STONE!" + cont "with MOON STONE!" done _Route12BattleText4: ; 90245 (24:4245) @@ -122474,8 +122474,8 @@ _Route12EndBattleText4: ; 90263 (24:4263) _Route12AfterBattleText4: ; 9026f (24:426f) text "Water conducts" line "electricity, so" - next "you should zap" - next "sea #MON!" + cont "you should zap" + cont "sea #MON!" done _Route12BattleText5: ; 902a8 (24:42a8) @@ -122491,7 +122491,7 @@ _Route12EndBattleText5: ; 902c8 (24:42c8) _Route12AfterBattleText5: ; 902d3 (24:42d3) text "You beat me at" line "#MON, but I'm" - next "good at fishing!" + cont "good at fishing!" done _Route12BattleText6: ; 90301 (24:4301) @@ -122507,13 +122507,13 @@ _Route12EndBattleText6: ; 90318 (24:4318) _Route12AfterBattleText6: ; 90329 (24:4329) text "It's all right." line "Losing doesn't" - next "bug me any more." + cont "bug me any more." done _Route12BattleText7: ; 90358 (24:4358) text "You never know" line "what you could" - next "catch!" + cont "catch!" done _Route12EndBattleText7: ; 9037e (24:437e) @@ -122524,7 +122524,7 @@ _Route12EndBattleText7: ; 9037e (24:437e) _Route12AfterBattleText7: ; 90388 (24:4388) text "I catch MAGIKARP" line "all the time, but" - next "they're so weak!" + cont "they're so weak!" done _Route12Text11: ; 903bc (24:43bc) @@ -122549,7 +122549,7 @@ _Route13EndBattleText2: ; 9040a (24:440a) _Route13AfterBattleText2: ; 9041f (24:441f) text "My #MON look" line "happy even though" - next "they lost." + cont "they lost." done _Route13BattleText3: ; 9044a (24:444a) @@ -122565,7 +122565,7 @@ _Route13EndBattleText3: ; 90466 (24:4466) _Route13AfterBattleText3: ; 90474 (24:4474) text "I want to become" line "a good trainer." - next "I'll train hard." + cont "I'll train hard." done _Route13BattleText4: ; 904a6 (24:44a6) @@ -122581,13 +122581,13 @@ _Route13EndBattleText4: ; 904c6 (24:44c6) _Route13AfterBattleText4: ; 904d3 (24:44d3) text "You got those" line "BADGEs from GYM" - next "LEADERs. I know!" + cont "LEADERs. I know!" done _Route13BattleText5: ; 90503 (24:4503) text "My cute #MON" line "wish to make your" - next "acquaintance." + cont "acquaintance." done _Route13EndBattleText5: ; 90531 (24:4531) @@ -122598,7 +122598,7 @@ _Route13EndBattleText5: ; 90531 (24:4531) _Route13AfterBattleText5: ; 90548 (24:4548) text "You have to make" line "#MON fight to" - next "toughen them up!" + cont "toughen them up!" done _Route13BattleText6: ; 90579 (24:4579) @@ -122614,7 +122614,7 @@ _Route13EndBattleText6: ; 90599 (24:4599) _Route13AfterBattleText6: ; 905aa (24:45aa) text "CARBOS boosted" line "the SPEED of my" - next "#MON." + cont "#MON." done _Route13BattleText7: ; 905d0 (24:45d0) @@ -122645,7 +122645,7 @@ _Route13EndBattleText8: ; 90637 (24:4637) _Route13AfterBattleText8: ; 9064e (24:464e) text "I wonder which is" line "stronger, male or" - next "female #MON?" + cont "female #MON?" done _Route13BattleText9: ; 90680 (24:4680) @@ -122661,8 +122661,8 @@ _Route13EndBattleText9: ; 9069e (24:469e) _Route13AfterBattleText9: ; 906b1 (24:46b1) text "I don't know" line "anything about" - next "#MON. I just" - next "like cool ones!" + cont "#MON. I just" + cont "like cool ones!" done _Route13BattleText10: ; 906ea (24:46ea) @@ -122692,34 +122692,34 @@ _Route13EndBattleText11: ; 90741 (24:4741) _Route13AfterBattleText11: ; 90750 (24:4750) text "I wish I could" line "fly like PIDGEY" - next "and PIDGEOTTO..." + cont "and PIDGEOTTO..." done _Route13Text11: ; 90781 (24:4781) text "TRAINER TIPS" - page "Look to the left" + para "Look to the left" line "of that post!" done _Route13Text12: ; 907ae (24:47ae) text "TRAINER TIPS" - page "Use SELECT to" + para "Use SELECT to" line "switch items in" - next "the ITEM window!" + cont "the ITEM window!" done _Route13Text13: ; 907eb (24:47eb) text "ROUTE 13" line "North to SILENCE" - next "BRIDGE" + cont "BRIDGE" done _Route14BattleText1: ; 9080d (24:480d) text "You need to use" line "TMs to teach good" - next "moves to #MON!" + cont "moves to #MON!" done _Route14EndBattleText1: ; 9083f (24:483f) @@ -122730,14 +122730,14 @@ _Route14EndBattleText1: ; 9083f (24:483f) _Route14AfterBattleText1: ; 90851 (24:4851) text "You have some HMs" line "right? #MON" - next "can't ever forget" - next "those moves." + cont "can't ever forget" + cont "those moves." done _Route14BattleText2: ; 9088e (24:488e) text "My bird #MON" line "should be ready" - next "for battle." + cont "for battle." done _Route14EndBattleText2: ; 908b8 (24:48b8) @@ -122753,8 +122753,8 @@ _Route14AfterBattleText2: ; 908c8 (24:48c8) _Route14BattleText3: ; 908ea (24:48ea) text "TMs are on sale" line "in CELADON!" - next "But, only a few" - next "people have HMs!" + cont "But, only a few" + cont "people have HMs!" done _Route14EndBattleText3: ; 90928 (24:4928) @@ -122765,14 +122765,14 @@ _Route14EndBattleText3: ; 90928 (24:4928) _Route14AfterBattleText3: ; 90936 (24:4936) text "Teach #MON" line "moves of the same" - next "element type for" - next "more power." + cont "element type for" + cont "more power." done _Route14BattleText4: ; 90971 (24:4971) text "Have you taught" line "your bird #MON" - next "how to FLY?" + cont "how to FLY?" done _Route14EndBattleText4: ; 9099d (24:499d) @@ -122788,7 +122788,7 @@ _Route14AfterBattleText4: ; 909b3 (24:49b3) _Route14BattleText5: ; 909d0 (24:49d0) text "Have you heard of" line "the legendary" - next "#MON?" + cont "#MON?" done _Route14EndBattleText5: ; 909f7 (24:49f7) @@ -122799,7 +122799,7 @@ _Route14EndBattleText5: ; 909f7 (24:49f7) _Route14AfterBattleText5: ; 90a0a (24:4a0a) text "The 3 legendary" line "#MON are all" - next "birds of prey." + cont "birds of prey." done _Route14BattleText6: ; 90a37 (24:4a37) @@ -122815,13 +122815,13 @@ _Route14EndBattleText6: ; 90a59 (24:4a59) _Route14AfterBattleText6: ; 90a65 (24:4a65) text "Winning, losing," line "it doesn't matter" - next "in the long run!" + cont "in the long run!" done _Route14BattleText7: ; 90a99 (24:4a99) text "C'mon, c'mon." line "Let's go, let's" - next "go, let's go!" + cont "go, let's go!" done _Route14EndBattleText7: ; 90ac1 (24:4ac1) @@ -122852,7 +122852,7 @@ _Route14AfterBattleText8: ; 90b2e (24:4b2e) _Route14BattleText9: ; 90b4c (24:4b4c) text "We ride out here" line "because there's" - next "more room!" + cont "more room!" done _Route14EndBattleText9: ; 90b78 (24:4b78) @@ -122862,9 +122862,9 @@ _Route14EndBattleText9: ; 90b78 (24:4b78) _Route14AfterBattleText9: ; 90b83 (24:4b83) text "It's cool you" line "made your #MON" - next "so strong!" + cont "so strong!" - page "Might is right!" + para "Might is right!" line "And you know it!" done @@ -122881,19 +122881,19 @@ _Route14EndBattleText10: ; 90be7 (24:4be7) _Route14AfterBattleText10: ; 90bf4 (24:4bf4) text "You know who'd" line "win, you and me" - next "one on one!" + cont "one on one!" done _Route14Text11: ; 90c1f (24:4c1f) text "ROUTE 14" line "West to FUCHSIA" - next "CITY" + cont "CITY" done _Route15BattleText1: ; 90c3e (24:4c3e) text "Let me try out the" line "#MON I just" - next "got in a trade!" + cont "got in a trade!" done _Route15EndBattleText1: ; 90c6e (24:4c6e) @@ -122904,17 +122904,17 @@ _Route15EndBattleText1: ; 90c6e (24:4c6e) _Route15AfterBattleText1: ; 90c80 (24:4c80) text "You can't change" line "the nickname of" - next "any #MON you" - next "get in a trade." + cont "any #MON you" + cont "get in a trade." - page "Only the Original" + para "Only the Original" line "Trainer can." done _Route15BattleText2: ; 90cdd (24:4cdd) text "You look gentle," line "so I think I can" - next "beat you!" + cont "beat you!" done _Route15EndBattleText2: ; 90d0a (24:4d0a) @@ -122925,13 +122925,13 @@ _Route15EndBattleText2: ; 90d0a (24:4d0a) _Route15AfterBattleText2: ; 90d16 (24:4d16) text "I'm afraid of" line "BIKERs, they look" - next "so ugly and mean!" + cont "so ugly and mean!" done _Route15BattleText3: ; 90d48 (24:4d48) text "When I whistle, I" line "can summon bird" - next "#MON!" + cont "#MON!" done _Route15EndBattleText3: ; 90d71 (24:4d71) @@ -122947,7 +122947,7 @@ _Route15AfterBattleText3: ; 90d84 (24:4d84) _Route15BattleText4: ; 90da7 (24:4da7) text "Hmm? My birds are" line "shivering! You're" - next "good, aren't you?" + cont "good, aren't you?" done _Route15EndBattleText4: ; 90ddc (24:4ddc) @@ -122958,8 +122958,8 @@ _Route15EndBattleText4: ; 90ddc (24:4ddc) _Route15AfterBattleText4: ; 90df0 (24:4df0) text "Did you know moves" line "like EARTHQUAKE" - next "don't have any" - next "effect on birds?" + cont "don't have any" + cont "effect on birds?" done _Route15BattleText5: ; 90e33 (24:4e33) @@ -122980,7 +122980,7 @@ _Route15AfterBattleText5: ; 90e67 (24:4e67) _Route15BattleText6: ; 90e86 (24:4e86) text "I raise #MON" line "because I live" - next "alone!" + cont "alone!" done _Route15EndBattleText6: ; 90eaa (24:4eaa) @@ -122991,7 +122991,7 @@ _Route15EndBattleText6: ; 90eaa (24:4eaa) _Route15AfterBattleText6: ; 90ec1 (24:4ec1) text "I just like going" line "home to be with" - next "my #MON!" + cont "my #MON!" done _Route15BattleText7: ; 90eed (24:4eed) @@ -123007,14 +123007,14 @@ _Route15EndBattleText7: ; 90f0f (24:4f0f) _Route15AfterBattleText7: ; 90f19 (24:4f19) text "You only live" line "once, so I live" - next "as an outlaw!" - next "TEAM ROCKET RULES!" + cont "as an outlaw!" + cont "TEAM ROCKET RULES!" done _Route15BattleText8: ; 90f59 (24:4f59) text "Fork over all your" line "cash when you" - next "lose to me, kid!" + cont "lose to me, kid!" done _Route15EndBattleText8: ; 90f8c (24:4f8c) @@ -123059,7 +123059,7 @@ _Route15AfterBattleText10: ; 9103f (24:503f) _Route15Text12: ; 91062 (24:5062) text "ROUTE 15" line "West to FUCHSIA" - next "CITY" + cont "CITY" done _Route16BattleText1: ; 91081 (24:5081) @@ -123074,7 +123074,7 @@ _Route16EndBattleText1: ; 91094 (24:5094) _Route16AfterBattleText1: ; 910aa (24:50aa) text "We like just" line "hanging here," - next "what's it to you?" + cont "what's it to you?" done _Route16BattleText2: ; 910d7 (24:50d7) @@ -123119,8 +123119,8 @@ _Route16EndBattleText4: ; 9118d (24:518d) _Route16AfterBattleText4: ; 91196 (24:5196) text "You can also get" line "to FUCHSIA from" - next "VERMILION using a" - next "coastal road." + cont "VERMILION using a" + cont "coastal road." done _Route16BattleText5: ; 911d8 (24:51d8) @@ -123136,7 +123136,7 @@ _Route16EndBattleText5: ; 911f5 (24:51f5) _Route16AfterBattleText5: ; 91205 (24:5205) text "I like my #MON" line "ferocious! They" - next "tear up enemies!" + cont "tear up enemies!" done _Route16BattleText6: ; 91236 (24:5236) @@ -123151,7 +123151,7 @@ _Route16EndBattleText6: ; 91245 (24:5245) _Route16AfterBattleText6: ; 91258 (24:5258) text "I like harassing" line "people with my" - next "vicious #MON!" + cont "vicious #MON!" done _Route16Text7: ; 91287 (24:5287) @@ -123162,14 +123162,14 @@ _Route16Text7: ; 91287 (24:5287) _UnnamedText_59ab3: ; 912a8 (24:52a8) text "SNORLAX woke up!" - page "It attacked in a" + para "It attacked in a" line "grumpy rage!" done _UnnamedText_59ab8: ; 912d8 (24:52d8) text "With a big yawn," line "SNORLAX returned" - next "to the mountains!" + cont "to the mountains!" done _Route16Text8: ; 9130d (24:530d) @@ -123180,7 +123180,7 @@ _Route16Text8: ; 9130d (24:530d) _Route16Text9: ; 9132c (24:532c) text "ROUTE 16" line "CELADON CITY -" - next "FUCHSIA CITY" + cont "FUCHSIA CITY" done _Route17BattleText1: ; 91352 (24:5352) @@ -123196,7 +123196,7 @@ _Route17EndBattleText1: ; 91375 (24:5375) _Route17AfterBattleText1: ; 91382 (24:5382) text "Good stuff is" line "lying around on" - next "CYCLING ROAD!" + cont "CYCLING ROAD!" done _Route17BattleText2: ; 913af (24:53af) @@ -123211,7 +123211,7 @@ _Route17EndBattleText2: ; 913c9 (24:53c9) _Route17AfterBattleText2: ; 913d0 (24:53d0) text "I could belly-" line "bump you outta" - next "here!" + cont "here!" done _Route17BattleText3: ; 913f5 (24:53f5) @@ -123256,7 +123256,7 @@ _Route17EndBattleText5: ; 9149a (24:549a) _Route17AfterBattleText5: ; 914a9 (24:54a9) text "I got my VOLTORB" line "at the abandoned" - next "POWER PLANT." + cont "POWER PLANT." done _Route17BattleText6: ; 914d9 (24:54d9) @@ -123272,7 +123272,7 @@ _Route17EndBattleText6: ; 914f4 (24:54f4) _Route17AfterBattleText6: ; 914ff (24:54ff) text "Maybe some #MON" line "need element" - next "STONEs to evolve." + cont "STONEs to evolve." done _Route17BattleText7: ; 9152f (24:552f) @@ -123335,43 +123335,43 @@ _Route17AfterBattleText10: ; 9162e (24:562e) _Route17Text11: ; 91649 (24:5649) text "It's a notice!" - page "Watch out for" + para "Watch out for" line "discarded items!" done _Route17Text12: ; 91677 (24:5677) text "TRAINER TIPS" - page "All #MON are" + para "All #MON are" line "unique." - page "Even #MON of" + para "Even #MON of" line "the same type and" - next "level grow at" - next "different rates." + cont "level grow at" + cont "different rates." done _Route17Text13: ; 916d8 (24:56d8) text "TRAINER TIPS" - page "Press the A or B" + para "Press the A or B" line "Button to stay in" - next "place while on a" - next "slope." + cont "place while on a" + cont "slope." done _Route17Text14: ; 91721 (24:5721) text "ROUTE 17" line "CELADON CITY -" - next "FUCHSIA CITY" + cont "FUCHSIA CITY" done _Route17Text15: ; 91747 (24:5747) text "It's a notice!" - page "Don't throw the" + para "Don't throw the" line "game, throw #" - next "BALLs instead!" + cont "BALLs instead!" done _Route17Text16: ; 91782 (24:5782) @@ -123382,7 +123382,7 @@ _Route17Text16: ; 91782 (24:5782) _Route18BattleText1: ; 917a1 (24:57a1) text "I always check" line "every grassy area" - next "for new #MON." + cont "for new #MON." done _Route18EndBattleText1: ; 917d1 (24:57d1) @@ -123397,7 +123397,7 @@ _Route18AfterBattleText1: ; 917d7 (24:57d7) _Route18BattleText2: ; 917ed (24:57ed) text "Kurukkoo!" line "How do you like" - next "my bird call?" + cont "my bird call?" done _Route18EndBattleText2: ; 91816 (24:5816) @@ -123408,7 +123408,7 @@ _Route18EndBattleText2: ; 91816 (24:5816) _Route18AfterBattleText2: ; 91829 (24:5829) text "I also collect sea" line "#MON on" - next "weekends!" + cont "weekends!" done _Route18BattleText3: ; 9184f (24:584f) @@ -123423,19 +123423,19 @@ _Route18EndBattleText3: ; 91872 (24:5872) _Route18AfterBattleText3: ; 91879 (24:5879) text "This is my fave" line "#MON hunting" - next "area!" + cont "area!" done _Route18Text4: ; 9189d (24:589d) text "ROUTE 18" line "CELADON CITY -" - next "FUCHSIA CITY" + cont "FUCHSIA CITY" done _Route18Text5: ; 918c3 (24:58c3) text "CYCLING ROAD" line "No pedestrians" - next "permitted!" + cont "permitted!" done _Route19BattleText1: ; 918eb (24:58eb) @@ -123500,7 +123500,7 @@ _Route19AfterBattleText4: ; 919fe (24:59fe) _Route19BattleText5: ; 91a1a (24:5a1a) text "I tried diving" line "for #MON, but" - next "it was a no go!" + cont "it was a no go!" done _Route19EndBattleText5: ; 91a48 (24:5a48) @@ -123530,7 +123530,7 @@ _Route19AfterBattleText6: ; 91a9e (24:5a9e) _Route19BattleText7: ; 91ac0 (24:5ac0) text "Oh, I just love" line "your ride! Can I" - next "have it if I win?" + cont "have it if I win?" done _Route19EndBattleText7: ; 91af4 (24:5af4) @@ -123541,7 +123541,7 @@ _Route19EndBattleText7: ; 91af4 (24:5af4) _Route19AfterBattleText7: ; 91b01 (24:5b01) text "It's still a long" line "way to go to" - next "SEAFOAM ISLANDS." + cont "SEAFOAM ISLANDS." done _Route19BattleText8: ; 91b31 (24:5b31) @@ -123556,7 +123556,7 @@ _Route19EndBattleText8: ; 91b53 (24:5b53) _Route19AfterBattleText8: ; 91b5d (24:5b5d) text "My boy friend" line "wanted to swim to" - next "SEAFOAM ISLANDS." + cont "SEAFOAM ISLANDS." done _Route19BattleText9: ; 91b8f (24:5b8f) @@ -123587,13 +123587,13 @@ _Route19EndBattleText10: ; 91bf9 (24:5bf9) _Route19AfterBattleText10: ; 91c0a (24:5c0a) text "LAPRAS is so big," line "it must keep you" - next "dry on water." + cont "dry on water." done _Route19Text11: ; 91c3c (24:5c3c) text "SEA ROUTE 19" line "FUCHSIA CITY -" - next "SEAFOAM ISLANDS" + cont "SEAFOAM ISLANDS" done _Route20BattleText1: ; 91c69 (24:5c69) @@ -123622,7 +123622,7 @@ _Route20EndBattleText2: ; 91cc9 (24:5cc9) _Route20AfterBattleText2: ; 91cd3 (24:5cd3) text "There's a huge" line "cavern underneath" - next "this island." + cont "this island." done _Route20BattleText3: ; 91d01 (24:5d01) @@ -123666,13 +123666,13 @@ _Route20EndBattleText5: ; 91dac (24:5dac) _Route20AfterBattleText5: ; 91db4 (24:5db4) text "I should've been" line "buffing up my" - next "#MON, not me!" + cont "#MON, not me!" done _Route20BattleText6: ; 91de1 (24:5de1) text "Why are you" line "riding a #MON?" - next "Can't you swim?" + cont "Can't you swim?" done _Route20EndBattleText6: ; 91e0c (24:5e0c) @@ -123713,7 +123713,7 @@ _Route20EndBattleText8: ; 91e9f (24:5e9f) _Route20AfterBattleText8: ; 91eb6 (24:5eb6) text "Will my pearls" line "grow bigger" - next "inside CLOYSTER?" + cont "inside CLOYSTER?" done _Route20BattleText9: ; 91ee3 (24:5ee3) @@ -123729,14 +123729,14 @@ _Route20EndBattleText9: ; 91f06 (24:5f06) _Route20AfterBattleText9: ; 91f1b (24:5f1b) text "#MON have" line "taken over an" - next "abandoned mansion" - next "on CINNABAR!" + cont "abandoned mansion" + cont "on CINNABAR!" done _Route20BattleText10: ; 91f53 (24:5f53) text "CINNABAR, in the" line "west, has a LAB" - next "for #MON." + cont "for #MON." done _Route20EndBattleText10: ; 91f7f (24:5f7f) @@ -123756,7 +123756,7 @@ _Route20Text11: ; 91fa7 (24:5fa7) _Route21BattleText1: ; 91fb8 (24:5fb8) text "You want to know" line "if the fish are" - next "biting?" + cont "biting?" done _Route21EndBattleText1: ; 91fe2 (24:5fe2) @@ -123810,7 +123810,7 @@ _Route21EndBattleText4: ; 920bf (24:60bf) _Route21AfterBattleText4: ; 920cc (24:60cc) text "I look like what?" line "A studded inner" - next "tube? Get lost!" + cont "tube? Get lost!" done _Route21BattleText5: ; 920ff (24:60ff) @@ -123841,8 +123841,8 @@ _Route21EndBattleText6: ; 9216e (24:616e) _Route21AfterBattleText6: ; 92186 (24:6186) text "I'm beat!" line "But, I still have" - next "the bike race and" - next "marathon left!" + cont "the bike race and" + cont "marathon left!" done _Route21BattleText7: ; 921c3 (24:61c3) @@ -123873,7 +123873,7 @@ _Route21EndBattleText8: ; 9222b (24:622b) _Route21AfterBattleText8: ; 92244 (24:6244) text "I was just angry" line "that I couldn't" - next "catch anything." + cont "catch anything." done _Route21BattleText9: ; 92275 (24:6275) @@ -123895,99 +123895,99 @@ _UnnamedText_511ad: ; 922cd (24:62cd) text $53, ": Hey!" line $52, "!" - page "You're going to" + para "You're going to" line "#MON LEAGUE?" - page "Forget it! You" + para "Forget it! You" line "probably don't" - next "have any BADGEs!" + cont "have any BADGEs!" - page "The guard won't" + para "The guard won't" line "let you through!" - page "By the way, did" + para "By the way, did" line "your #MON" - next "get any stronger?" + cont "get any stronger?" done _UnnamedText_511b2: ; 9236f (24:636f) text "I heard #MON" line "LEAGUE has many" - next "tough trainers!" + cont "tough trainers!" - page "I have to figure" + para "I have to figure" line "out how to get" - next "past them!" + cont "past them!" - page "You should quit" + para "You should quit" line "dawdling and get" - next "a move on!" + cont "a move on!" done _UnnamedText_511b7: ; 923f4 (24:63f4) text "Awww!" line "You just lucked" - next "out!" + cont "out!" prompt _UnnamedText_511bc: ; 92410 (24:6410) text $53, ": What?" line "Why do I have 2" - next "#MON?" + cont "#MON?" - page "You should catch" - next "some more too!" + para "You should catch" + cont "some more too!" prompt _UnnamedText_511c1: ; 92450 (24:6450) text $53, ": What?" line $52, "! What a" - next "surprise to see" - next "you here!" + cont "surprise to see" + cont "you here!" - page "So you're going to" + para "So you're going to" line "#MON LEAGUE?" - page "You collected all" + para "You collected all" line "the BADGEs too?" - next "That's cool!" + cont "That's cool!" - page "Then I'll whip you" + para "Then I'll whip you" line $52, " as a" - next "warm up for" - next "#MON LEAGUE!" + cont "warm up for" + cont "#MON LEAGUE!" - page "Come on!" + para "Come on!" done _UnnamedText_511c6: ; 92506 (24:6506) text "That loosened me" line "up! I'm ready for" - next "#MON LEAGUE!" + cont "#MON LEAGUE!" - page $52, ", you need" + para $52, ", you need" line "more practice!" - page "But hey, you know" + para "But hey, you know" line "that! I'm out of" - next "here. Smell ya!" + cont "here. Smell ya!" done _UnnamedText_511cb: ; 92583 (24:6583) text "What!?" - page "I was just" + para "I was just" line "careless!" prompt _UnnamedText_511d0: ; 925a0 (24:65a0) text $53, ": Hahaha!" line $52, "! That's" - next "your best? You're" - next "nowhere near as" - next "good as me, pal!" + cont "your best? You're" + cont "nowhere near as" + cont "good as me, pal!" - page "Go train some" + para "Go train some" line "more! You loser!" prompt @@ -123999,34 +123999,34 @@ _Route22Text3: ; 92606 (24:6606) _VictoryRoadGuardText1: ; 9261e (24:661e) text "You can pass here" line "only if you have" - next "the @" + cont "the @" TX_RAM $cd6d text "!" - page "You don't have the" + para "You don't have the" line "@" TX_RAM $cd6d text " yet!" - page "You have to have" + para "You have to have" line "it to get to" - next "#MON LEAGUE!@@" + cont "#MON LEAGUE!@@" _VictoryRoadGuardText2: ; 92696 (24:6696) text "You can pass here" line "only if you have" - next "the @" + cont "the @" TX_RAM $cd6d text "!" - page "Oh! That is the" + para "Oh! That is the" line "@" TX_RAM $cd6d text "!@@" _UnnamedText_513a3: ; 926dd (24:66dd) db $0 - page "OK then! Please," + para "OK then! Please," line "go right ahead!" done @@ -124038,11 +124038,11 @@ _Route23Text8: ; 92700 (24:6700) _UnnamedText_51510: ; 92721 (24:6721) text "Congratulations!" line "You beat our 5" - next "contest trainers!@@" + cont "contest trainers!@@" _UnnamedText_51515: ; 92755 (24:6755) db $0 - page "You just earned a" + para "You just earned a" line "fabulous prize!" prompt @@ -124060,27 +124060,27 @@ _UnnamedText_51521: ; 9278f (24:678f) _UnnamedText_51526: ; 927a8 (24:67a8) text "By the way, would" line "you like to join" - next "TEAM ROCKET?" + cont "TEAM ROCKET?" - page "We're a group" + para "We're a group" line "dedicated to evil" - next "using #MON!" + cont "using #MON!" - page "Want to join?" + para "Want to join?" - page "Are you sure?" + para "Are you sure?" - page "Come on, join us!" + para "Come on, join us!" - page "I'm telling you" + para "I'm telling you" line "to join!" - page "OK, you need" + para "OK, you need" line "convincing!" - page "I'll make you an" + para "I'll make you an" line "offer you can't" - next "refuse!" + cont "refuse!" done _UnnamedText_5152b: ; 9288a (24:688a) @@ -124091,8 +124091,8 @@ _UnnamedText_5152b: ; 9288a (24:688a) _UnnamedText_51530: ; 928a0 (24:68a0) text "With your ability," line "you could become" - next "a top leader in" - next "TEAM ROCKET!" + cont "a top leader in" + cont "TEAM ROCKET!" done _Route24BattleText1: ; 928e2 (24:68e2) @@ -124110,7 +124110,7 @@ _Route24EndBattleText1: ; 94000 (25:4000) _Route24AfterBattleText1: ; 94010 (25:4010) text "I hid because the" line "people on the" - next "bridge scared me!" + cont "bridge scared me!" done _Route24BattleText2: ; 94043 (25:4043) @@ -124176,10 +124176,10 @@ _Route24AfterBattleText5: ; 94163 (25:4163) _Route24BattleText6: ; 94186 (25:4186) text "This is NUGGET" line "BRIDGE! Beat us 5" - next "trainers and win" - next "a fabulous prize!" + cont "trainers and win" + cont "a fabulous prize!" - page "Think you got" + para "Think you got" line "what it takes?" done @@ -124196,7 +124196,7 @@ _Route24AfterBattleText6: ; 941fb (25:41fb) _Route25BattleText1: ; 9421e (25:421e) text "Local trainers" line "come here to" - next "practice!" + cont "practice!" done _Route25EndBattleText1: ; 94245 (25:4245) @@ -124207,15 +124207,15 @@ _Route25EndBattleText1: ; 94245 (25:4245) _Route25AfterBattleText1: ; 94254 (25:4254) text "All #MON have" line "weaknesses. It's" - next "best to raise" - next "different kinds." + cont "best to raise" + cont "different kinds." done _Route25BattleText2: ; 94292 (25:4292) text "Dad took me to a" line "great party on" - next "S.S.ANNE at" - next "VERMILION CITY!" + cont "S.S.ANNE at" + cont "VERMILION CITY!" done _Route25EndBattleText2: ; 942cf (25:42cf) @@ -124226,13 +124226,13 @@ _Route25EndBattleText2: ; 942cf (25:42cf) _Route25AfterBattleText2: ; 942dc (25:42dc) text "On S.S.ANNE, I" line "saw trainers from" - next "around the world." + cont "around the world." done _Route25BattleText3: ; 94310 (25:4310) text "I'm a cool guy." line "I've got a girl" - next "friend!" + cont "friend!" done _Route25EndBattleText3: ; 94337 (25:4337) @@ -124273,14 +124273,14 @@ _Route25EndBattleText5: ; 943dd (25:43dd) _Route25AfterBattleText5: ; 943f2 (25:43f2) text "If your #MON" line "gets confused or" - next "falls asleep," - next "switch it!" + cont "falls asleep," + cont "switch it!" done _Route25BattleText6: ; 9442a (25:442a) text "My friend has a" line "cute #MON." - next "I'm so jealous!" + cont "I'm so jealous!" done _Route25EndBattleText6: ; 94455 (25:4455) @@ -124291,13 +124291,13 @@ _Route25EndBattleText6: ; 94455 (25:4455) _Route25AfterBattleText6: ; 94469 (25:4469) text "You came from MT." line "MOON? May I have" - next "a CLEFAIRY?" + cont "a CLEFAIRY?" done _Route25BattleText7: ; 94499 (25:4499) text "I just got down" line "from MT.MOON," - next "but I'm ready!" + cont "but I'm ready!" done _Route25EndBattleText7: ; 944c6 (25:44c6) @@ -124308,13 +124308,13 @@ _Route25EndBattleText7: ; 944c6 (25:44c6) _Route25AfterBattleText7: ; 944d8 (25:44d8) text "Drat!" line "A ZUBAT bit me" - next "back in there." + cont "back in there." done _Route25BattleText8: ; 944fd (25:44fd) text "I'm off to see a" line "#MON collector" - next "at the cape!" + cont "at the cape!" done _Route25EndBattleText8: ; 9452a (25:452a) @@ -124325,13 +124325,13 @@ _Route25EndBattleText8: ; 9452a (25:452a) _Route25AfterBattleText8: ; 94537 (25:4537) text "The collector has" line "many rare kinds" - next "of #MON." + cont "of #MON." done _Route25BattleText9: ; 94563 (25:4563) text "You're going to" line "see BILL? First," - next "let's fight!" + cont "let's fight!" done _Route25EndBattleText9: ; 94590 (25:4590) @@ -124342,7 +124342,7 @@ _Route25EndBattleText9: ; 94590 (25:4590) _Route25AfterBattleText9: ; 945a2 (25:45a2) text "The trail below" line "is a shortcut to" - next "CERULEAN CITY." + cont "CERULEAN CITY." done _Route25Text11: ; 945d3 (25:45d3) @@ -124368,15 +124368,15 @@ _GameSavedText: ; 94630 (25:4630) _OlderFileWillBeErasedText: ; 94643 (25:4643) text "The older file" line "will be erased to" - next "save. Okay?" + cont "save. Okay?" done _UnnamedText_73909: ; 94671 (25:4671) text "When you change a" line "#MON BOX, data" - next "will be saved." + cont "will be saved." - page "Is that okay?" + para "Is that okay?" done _UnnamedText_739d4: ; 946b0 (25:46b0) @@ -124526,7 +124526,7 @@ _UnnamedText_3f9a1: ; 94878 (25:4878) _UnnamedText_3fa77: ; 9488c (25:488c) text $5a line "learned" - next "@" + cont "@" TX_RAM $cd6d text "!" prompt @@ -124536,7 +124536,7 @@ _UnnamedText_3fb09: ; 9489e (25:489e) line "@" TX_RAM $cd6d text " was" - next "disabled!" + cont "disabled!" prompt _UnnamedText_3fb3e: ; 948b6 (25:48b6) @@ -124564,7 +124564,7 @@ _UnnamedText_3fb69: ; 948fb (25:48fb) _UnnamedText_3fb74: ; 9490d (25:490d) text $59, "'s" line "paralyzed! It may" - next "not attack!" + cont "not attack!" prompt _UnnamedText_17e1d: ; 9492f (25:492f) @@ -124625,7 +124625,7 @@ _UnnamedText_3baa2: ; 94a20 (25:4a20) _UnnamedText_3baa7: ; 94a35 (25:4a35) text $5a line "fell asleep and" - next "became healthy!" + cont "became healthy!" done _UnnamedText_3baac: ; 94a58 (25:4a58) @@ -124636,7 +124636,7 @@ _UnnamedText_3baac: ; 94a58 (25:4a58) _UnnamedText_3bb92: ; 94a6c (25:4a6c) text $5a line "transformed into" - next "@" + cont "@" TX_RAM $cd6d text "!" prompt @@ -124644,7 +124644,7 @@ _UnnamedText_3bb92: ; 94a6c (25:4a6c) _UnnamedText_3bbd7: ; 94a87 (25:4a87) text $5a, "'s" line "protected against" - next "special attacks!" + cont "special attacks!" prompt _UnnamedText_3bbdc: ; 94aae (25:4aae) @@ -124681,22 +124681,22 @@ INCLUDE "text/mapBluesHouse.asm" _OaksLabGaryText1: ; 94d5b (25:4d5b) text $53, ": Yo" line $52, "! Gramps" - next "isn't around!" + cont "isn't around!" done _OaksLabText40: ; 94d79 (25:4d79) text $53, ": Heh, I" line "don't need to be" - next "greedy like you!" + cont "greedy like you!" - page "Go ahead and" + para "Go ahead and" line "choose, ", $52, "!" done _OaksLabText41: ; 94dbd (25:4dbd) text $53, ": My" line "#MON looks a" - next "lot stronger." + cont "lot stronger." done _OaksLabText39: ; 94ddf (25:4ddf) @@ -124708,19 +124708,19 @@ _OaksLabText39: ; 94ddf (25:4ddf) _OaksLabCharmanderText: ; 94e06 (25:4e06) text "So! You want the" line "fire #MON," - next "CHARMANDER?" + cont "CHARMANDER?" done _OaksLabSquirtleText: ; 94e2f (25:4e2f) text "So! You want the" line "water #MON," - next "SQUIRTLE?" + cont "SQUIRTLE?" done _OaksLabBulbasaurText: ; 94e57 (25:4e57) text "So! You want the" line "plant #MON," - next "BULBASAUR?" + cont "BULBASAUR?" done _OaksLabMonEnergeticText: ; 94e80 (25:4e80) @@ -124742,109 +124742,109 @@ _OaksLabLastMonText: ; 94eb6 (25:4eb6) _UnnamedText_1d2f0: ; 94ed2 (25:4ed2) text "OAK: Now, ", $52, "," line "which #MON do" - next "you want?" + cont "you want?" done _UnnamedText_1d2f5: ; 94ef8 (25:4ef8) text "OAK: If a wild" line "#MON appears," - next "your #MON can" - next "fight against it!" + cont "your #MON can" + cont "fight against it!" done _UnnamedText_1d2fa: ; 94f36 (25:4f36) text "OAK: ", $52, "," line "raise your young" - next "#MON by making" - next "it fight!" + cont "#MON by making" + cont "it fight!" done _OaksLabDeliverParcelText1: ; 94f69 (25:4f69) text "OAK: Oh, ", $52, "!" - page "How is my old" + para "How is my old" line "#MON?" - page "Well, it seems to" + para "Well, it seems to" line "like you a lot." - page "You must be" + para "You must be" line "talented as a" - next "#MON trainer!" + cont "#MON trainer!" - page "What? You have" + para "What? You have" line "something for me?" - page $52, " delivered" + para $52, " delivered" line "OAK's PARCEL.@@" _OaksLabDeliverParcelText2: ; 9500f (25:500f) text $51 db "Ah! This is the" line "custom # BALL" - next "I ordered!" - next "Thank you!" + cont "I ordered!" + cont "Thank you!" done _OaksLabAroundWorldText: ; 95045 (25:5045) text "#MON around the" line "world wait for" - next "you, ", $52, "!" + cont "you, ", $52, "!" done _OaksLabGivePokeballsText1: ; 9506d (25:506d) text "OAK: You can't get" line "detailed data on" - next "#MON by just" - next "seeing them." + cont "#MON by just" + cont "seeing them." - page "You must catch" + para "You must catch" line "them! Use these" - next "to capture wild" - next "#MON." + cont "to capture wild" + cont "#MON." - page $52, " got 5" + para $52, " got 5" line "# BALLs!@@" _OaksLabGivePokeballsText2: ; 950f2 (25:50f2) text $51 db "When a wild" line "#MON appears," - next "it's fair game." + cont "it's fair game." - page "Just throw a #" + para "Just throw a #" line "BALL at it and try" line "to catch it!" - page "This won't always" + para "This won't always" line "work, though." - page "A healthy #MON" + para "A healthy #MON" line "could escape. You" - next "have to be lucky!" + cont "have to be lucky!" done _OaksLabPleaseVisitText: ; 9519e (25:519e) text "OAK: Come see me" line "sometimes." - page "I want to know how" + para "I want to know how" line "your #DEX is" - next "coming along." + cont "coming along." done _UnnamedText_1d31d: ; 951e9 (25:51e9) text "OAK: Good to see " line "you! How is your " - next "#DEX coming? " - next "Here, let me take" - next "a look!" + cont "#DEX coming? " + cont "Here, let me take" + cont "a look!" prompt _UnnamedText_1d32c: ; 95236 (25:5236) text "It's encyclopedia-" line "like, but the" - next "pages are blank!" + cont "pages are blank!" done _OaksLabText8: ; 95268 (25:5268) @@ -124854,57 +124854,57 @@ _OaksLabText8: ; 95268 (25:5268) _UnnamedText_1d340: ; 9526b (25:526b) text "PROF.OAK is the" line "authority on" - next "#MON!" + cont "#MON!" - page "Many #MON" + para "Many #MON" line "trainers hold him" - next "in high regard!" + cont "in high regard!" done _OaksLabRivalWaitingText: ; 952bb (25:52bb) text $53, ": Gramps!" line "I'm fed up with" - next "waiting!" + cont "waiting!" done _OaksLabChooseMonText: ; 952df (25:52df) text "OAK: ", $53, "?" line "Let me think..." - page "Oh, that's right," + para "Oh, that's right," line "I told you to" - next "come! Just wait!" + cont "come! Just wait!" - page "Here, ", $52, "!" + para "Here, ", $52, "!" - page "There are 3" + para "There are 3" line "#MON here!" - page "Haha!" + para "Haha!" - page "They are inside" + para "They are inside" line "the # BALLs." - page "When I was young," + para "When I was young," line "I was a serious" - next "#MON trainer!" + cont "#MON trainer!" - page "In my old age, I" + para "In my old age, I" line "have only 3 left," - next "but you can have" - next "one! Choose!" + cont "but you can have" + cont "one! Choose!" done _OaksLabRivalInterjectionText: ; 953dc (25:53dc) text $53, ": Hey!" line "Gramps! What" - next "about me?" + cont "about me?" done _OaksLabBePatientText: ; 953fc (25:53fc) text "OAK: Be patient!" line $53, ", you can" - next "have one too!" + cont "have one too!" done _OaksLabLeavingText: ; 95427 (25:5427) @@ -124926,18 +124926,18 @@ _OaksLabRivalReceivedMonText: ; 95461 (25:5461) _OaksLabRivalChallengeText: ; 95477 (25:5477) text $53, ": Wait" line $52, "!" - next "Let's check out" - next "our #MON!" + cont "Let's check out" + cont "our #MON!" - page "Come on, I'll take" + para "Come on, I'll take" line "you on!" done _UnnamedText_1d3be: ; 954b6 (25:54b6) text "WHAT?" line "Unbelievable!" - next "I picked the" - next "wrong #MON!" + cont "I picked the" + cont "wrong #MON!" prompt _UnnamedText_1d3c3: ; 954e4 (25:54e4) @@ -124948,10 +124948,10 @@ _UnnamedText_1d3c3: ; 954e4 (25:54e4) _OaksLabRivalToughenUpText: ; 95502 (25:5502) text $53, ": Okay!" line "I'll make my" - next "#MON fight to" - next "toughen it up!" + cont "#MON fight to" + cont "toughen it up!" - page $52, "! Gramps!" + para $52, "! Gramps!" line "Smell you later!" done @@ -124967,70 +124967,70 @@ _OaksLabText22: ; 9555d (25:555d) _OaksLabText23: ; 9557b (25:557b) text "OAK: Oh right! I" line "have a request" - next "of you two." + cont "of you two." done _OaksLabText24: ; 955a8 (25:55a8) text "On the desk there" line "is my invention," - next "#DEX!" + cont "#DEX!" - page "It automatically" + para "It automatically" line "records data on" - next "#MON you've" - next "seen or caught!" + cont "#MON you've" + cont "seen or caught!" - page "It's a hi-tech" + para "It's a hi-tech" line "encyclopedia!" done _OaksLabText25: ; 9562a (25:562a) text "OAK: ", $52, " and" line $53, "! Take" - next "these with you!" + cont "these with you!" - page $52, " got" + para $52, " got" line "#DEX from OAK!@@" _OaksLabText26: ; 95664 (25:5664) text "To make a complete" line "guide on all the" - next "#MON in the" - next "world..." + cont "#MON in the" + cont "world..." - page "That was my dream!" + para "That was my dream!" - page "But, I'm too old!" + para "But, I'm too old!" line "I can't do it!" - page "So, I want you two" + para "So, I want you two" line "to fulfill my" - next "dream for me!" + cont "dream for me!" - page "Get moving, you" + para "Get moving, you" line "two!" - page "This is a great" + para "This is a great" line "undertaking in" - next "#MON history!" + cont "#MON history!" done _OaksLabText27: ; 95741 (25:5741) text $53, ": Alright" line "Gramps! Leave it" - next "all to me!" + cont "all to me!" - page $52, ", I hate to" + para $52, ", I hate to" line "say it, but I" - next "don't need you!" + cont "don't need you!" - page "I know! I'll" + para "I know! I'll" line "borrow a TOWN MAP" - next "from my sis!" + cont "from my sis!" - page "I'll tell her not" + para "I'll tell her not" line "to lend you one," - next $52, "! Hahaha!" + cont $52, "! Hahaha!" done _UnnamedText_1d405: ; 957eb (25:57eb) @@ -125050,50 +125050,50 @@ UnnamedText_95824: ; 95824 (25:5824) TX_NUM $ffdc, 1, 3 text " #MON owned" - page "PROF.OAK's" + para "PROF.OAK's" line "Rating:" prompt _UnnamedText_44201: ; 95858 (25:5858) text "You still have" line "lots to do." - next "Look for #MON" - next "in grassy areas!" + cont "Look for #MON" + cont "in grassy areas!" done _UnnamedText_44206: ; 95893 (25:5893) text "You're on the" line "right track! " - next "Get a FLASH HM" - next "from my AIDE!" + cont "Get a FLASH HM" + cont "from my AIDE!" done _UnnamedText_4420b: ; 958cc (25:58cc) text "You still need" line "more #MON!" - next "Try to catch" - next "other species!" + cont "Try to catch" + cont "other species!" done _UnnamedText_44210: ; 95903 (25:5903) text "Good, you're" line "trying hard!" - next "Get an ITEMFINDER" - next "from my AIDE!" + cont "Get an ITEMFINDER" + cont "from my AIDE!" done _UnnamedText_44215: ; 9593d (25:593d) text "Looking good!" line "Go find my AIDE" - next "when you get 50!" + cont "when you get 50!" done _UnnamedText_4421a: ; 9596d (25:596d) text "You finally got at" line "least 50 species!" - next "Be sure to get" - next "EXP.ALL from my" - next "AIDE!" + cont "Be sure to get" + cont "EXP.ALL from my" + cont "AIDE!" done _UnnamedText_4421f: ; 959b8 (25:59b8) @@ -125104,57 +125104,57 @@ _UnnamedText_4421f: ; 959b8 (25:59b8) _UnnamedText_44224: ; 959d9 (25:59d9) text "Very good!" line "Go fish for some" - next "marine #MON!" + cont "marine #MON!" done _UnnamedText_44229: ; 95a03 (25:5a03) text "Wonderful!" line "Do you like to" - next "collect things?" + cont "collect things?" done _UnnamedText_4422e: ; 95a2e (25:5a2e) text "I'm impressed!" line "It must have been" - next "difficult to do!" + cont "difficult to do!" done _UnnamedText_44233: ; 95a60 (25:5a60) text "You finally got at" line "least 100 species!" - next "I can't believe" - next "how good you are!" + cont "I can't believe" + cont "how good you are!" done _UnnamedText_44238: ; 95aa8 (25:5aa8) text "You even have the" line "evolved forms of" - next "#MON! Super!" + cont "#MON! Super!" done _UnnamedText_4423d: ; 95ad9 (25:5ad9) text "Excellent! Trade" line "with friends to" - next "get some more!" + cont "get some more!" done _UnnamedText_44242: ; 95b0a (25:5b0a) text "Outstanding!" line "You've become a" - next "real pro at this!" + cont "real pro at this!" done _UnnamedText_44247: ; 95b39 (25:5b39) text "I have nothing" line "left to say!" - next "You're the" - next "authority now!" + cont "You're the" + cont "authority now!" done _UnnamedText_4424c: ; 95b6f (25:5b6f) text "Your #DEX is" line "entirely complete!" - next "Congratulations!" + cont "Congratulations!" done _ViridianPokeCenterText2: ; 95ba1 (25:5ba1) @@ -125162,16 +125162,16 @@ _ViridianPokeCenterText1: ; 95ba1 (25:5ba1) text "You can use that" line "PC in the corner." - page "The receptionist" + para "The receptionist" line "told me. So kind!" done _ViridianPokeCenterText3: ; 95be8 (25:5be8) text "There's a #MON" line "CENTER in every" - next "town ahead." + cont "town ahead." - page "They don't charge" + para "They don't charge" line "any money either!" done @@ -125189,11 +125189,11 @@ ViridianMartParcelQuestText: ; 95c79 (25:5c79) text "You know PROF." line "OAK, right?" - page "His order came in." + para "His order came in." line "Will you take it" - next "to him?" + cont "to him?" - page $52, " got" + para $52, " got" line "OAK's PARCEL!@@" _ViridianMartText2: ; 95cd5 (25:5cd5) @@ -125209,25 +125209,25 @@ _ViridianMartText3: ; 95cf6 (25:5cf6) _SchoolText1: ; 95d15 (25:5d15) text "Whew! I'm trying" line "to memorize all" - next "my notes." + cont "my notes." done _SchoolText2: ; 95d40 (25:5d40) text "Okay!" - page "Be sure to read" + para "Be sure to read" line "the blackboard" - next "carefully!" + cont "carefully!" done _ViridianHouseText1: ; 95d71 (25:5d71) text "Coming up with" line "nicknames is fun," - next "but hard." + cont "but hard." - page "Simple names are" + para "Simple names are" line "the easiest to" - next "remember." + cont "remember." done _ViridianHouseText2: ; 95dc7 (25:5dc7) @@ -125248,61 +125248,61 @@ _UnnamedText_74ace: ; 95e09 (25:5e09) text "Fwahahaha! This is" line "my hideout!" - page "I planned to" + para "I planned to" line "resurrect TEAM" - next "ROCKET here!" + cont "ROCKET here!" - page "But, you have" + para "But, you have" line "caught me again!" - next "So be it! This" - next "time, I'm not" - next "holding back!" + cont "So be it! This" + cont "time, I'm not" + cont "holding back!" - page "Once more, you" + para "Once more, you" line "shall face" - next "GIOVANNI, the" - next "greatest trainer!" + cont "GIOVANNI, the" + cont "greatest trainer!" done _UnnamedText_74ad3: ; 95ed5 (25:5ed5) text "Ha!" line "That was a truly" - next "intense fight!" - next "You have won!" - next "As proof, here is" - next "the EARTHBADGE!@@" + cont "intense fight!" + cont "You have won!" + cont "As proof, here is" + cont "the EARTHBADGE!@@" _UnnamedText_74ad9: ; 95f2b (25:5f2b) text "Having lost, I" line "cannot face my" - next "underlings!" - next "TEAM ROCKET is" - next "finished forever!" + cont "underlings!" + cont "TEAM ROCKET is" + cont "finished forever!" - page "I will dedicate my" + para "I will dedicate my" line "life to the study" - next "of #MON!" + cont "of #MON!" - page "Let us meet again" + para "Let us meet again" line "some day!" - next "Farewell!@@" + cont "Farewell!@@" _ViridianGymText12: ; 95fcc (25:5fcc) text "The EARTHBADGE" line "makes #MON of" - next "any level obey!" + cont "any level obey!" - page "It is evidence of" + para "It is evidence of" line "your mastery as a" - next "#MON trainer!" + cont "#MON trainer!" - page "With it, you can" + para "With it, you can" line "enter the #MON" - next "LEAGUE!" + cont "LEAGUE!" - page "It is my gift for" + para "It is my gift for" line "your #MON" - next "LEAGUE challenge!" + cont "LEAGUE challenge!" done _ReceivedTM27Text: ; 96082 (25:6082) @@ -125313,12 +125313,12 @@ _TM27ExplanationText: ; 96095 (25:6095) text $51 db "TM27 is FISSURE!" line "It will take out" - next "#MON with just" - next "one hit!" + cont "#MON with just" + cont "one hit!" - page "I made it when I" + para "I made it when I" line "ran the GYM here," - next "too long ago..." + cont "too long ago..." done _TM27NoRoomText: ; 96104 (25:6104) @@ -125329,7 +125329,7 @@ _TM27NoRoomText: ; 96104 (25:6104) _ViridianGymBattleText1: ; 96125 (25:6125) text "Heh! You must be" line "running out of" - next "steam by now!" + cont "steam by now!" done _ViridianGymEndBattleText1: ; 96154 (25:6154) @@ -125340,13 +125340,13 @@ _ViridianGymEndBattleText1: ; 96154 (25:6154) _ViridianGymAfterBattleText1: ; 96167 (25:6167) text "You need power to" line "keep up with our" - next "GYM LEADER!" + cont "GYM LEADER!" done _ViridianGymBattleText2: ; 96197 (25:6197) text "Rrrroar! I'm" line "working myself" - next "into a rage!" + cont "into a rage!" done _ViridianGymEndBattleText2: ; 961c0 (25:61c0) @@ -125361,7 +125361,7 @@ _ViridianGymAfterBattleText2: ; 961c8 (25:61c8) _ViridianGymBattleText3: ; 961de (25:61de) text "#MON and I, we" line "make wonderful" - next "music together!" + cont "music together!" done _ViridianGymEndBattleText3: ; 9620d (25:620d) @@ -125372,13 +125372,13 @@ _ViridianGymEndBattleText3: ; 9620d (25:620d) _ViridianGymAfterBattleText3: ; 9622a (25:622a) text "Do you know the" line "identity of our" - next "GYM LEADER?" + cont "GYM LEADER?" done _ViridianGymBattleText4: ; 96257 (25:6257) text "Karate is the" line "ultimate form of" - next "martial arts!" + cont "martial arts!" done _ViridianGymEndBattleText4: ; 96285 (25:6285) @@ -125388,7 +125388,7 @@ _ViridianGymEndBattleText4: ; 96285 (25:6285) _ViridianGymAfterBattleText4: ; 9628d (25:628d) text "If my #MON" line "were as good at" - next "Karate as I..." + cont "Karate as I..." done _ViridianGymBattleText5: ; 962b8 (25:62b8) @@ -125409,7 +125409,7 @@ _ViridianGymAfterBattleText5: ; 962ed (25:62ed) _ViridianGymBattleText6: ; 96308 (25:6308) text "I'm the KARATE" line "KING! Your fate" - next "rests with me!" + cont "rests with me!" done _ViridianGymEndBattleText6: ; 96336 (25:6336) @@ -125419,13 +125419,13 @@ _ViridianGymEndBattleText6: ; 96336 (25:6336) _ViridianGymAfterBattleText6: ; 9633d (25:633d) text "#MON LEAGUE?" line "You? Don't get" - next "cocky!" + cont "cocky!" done _ViridianGymBattleText7: ; 96360 (25:6360) text "Your #MON will" line "cower at the" - next "crack of my whip!" + cont "crack of my whip!" done _ViridianGymEndBattleText7: ; 9638f (25:638f) @@ -125441,8 +125441,8 @@ _ViridianGymAfterBattleText7: ; 963a1 (25:63a1) _ViridianGymBattleText8: ; 963bd (25:63bd) text "VIRIDIAN GYM was" line "closed for a long" - next "time, but now our" - next "LEADER is back!" + cont "time, but now our" + cont "LEADER is back!" done _ViridianGymEndBattleText8: ; 96403 (25:6403) @@ -125453,32 +125453,32 @@ _ViridianGymEndBattleText8: ; 96403 (25:6403) _ViridianGymAfterBattleText8: ; 96412 (25:6412) text "You can go onto" line "#MON LEAGUE" - next "only by defeating" - next "our GYM LEADER!" + cont "only by defeating" + cont "our GYM LEADER!" done _UnnamedText_74bd4: ; 96451 (25:6451) text "Yo! Champ in" line "making!" - page "Even I don't know" + para "Even I don't know" line "VIRIDIAN LEADER's" - next "identity!" + cont "identity!" - page "This will be the" + para "This will be the" line "toughest of all" - next "the GYM LEADERs!" + cont "the GYM LEADERs!" - page "I heard that the" + para "I heard that the" line "trainers here" - next "like ground-type" - next "#MON!" + cont "like ground-type" + cont "#MON!" done _UnnamedText_74bd9: ; 964fb (25:64fb) text "Blow me away!" line "GIOVANNI was the" - next "GYM LEADER here?" + cont "GYM LEADER here?" done _UnnamedText_5c21a: ; 9652c (25:652c) @@ -125489,7 +125489,7 @@ _UnnamedText_5c21f: ; 96539 (25:6539) text "It's ¥50 for a" line "child's ticket." - page "Would you like to" + para "Would you like to" line "come in?" done @@ -125507,17 +125507,17 @@ _UnnamedText_5c22e: ; 965a7 (25:65a7) text "You can't sneak" line "in the back way!" - page "Oh, whatever!" + para "Oh, whatever!" line "Do you know what" - next "AMBER is?" + cont "AMBER is?" done _UnnamedText_5c233: ; 965f1 (25:65f1) text "There's a lab" line "somewhere trying" - next "to resurrect" - next "ancient #MON" - next "from AMBER." + cont "to resurrect" + cont "ancient #MON" + cont "from AMBER." done _UnnamedText_5c238: ; 96636 (25:6636) @@ -125538,29 +125538,29 @@ _UnnamedText_5c242: ; 96675 (25:6675) _UnnamedText_5c251: ; 96693 (25:6693) text "That is one" line "magnificent" - next "fossil!" + cont "fossil!" done _UnnamedText_5c28e: ; 966b4 (25:66b4) text "Ssh! I think that" line "this chunk of" - next "AMBER contains" - next "#MON DNA!" + cont "AMBER contains" + cont "#MON DNA!" - page "It would be great" + para "It would be great" line "if #MON could" - next "be resurrected" - next "from it!" + cont "be resurrected" + cont "from it!" - page "But, my colleagues" + para "But, my colleagues" line "just ignore me!" - page "So I have a favor" + para "So I have a favor" line "to ask!" - page "Take this to a" + para "Take this to a" line "#MON LAB and" - next "get it examined!" + cont "get it examined!" prompt _ReceivedOldAmberText: ; 96790 (25:6790) @@ -125580,8 +125580,8 @@ _UnnamedText_5c29e: ; 967c9 (25:67c9) _UnnamedText_5c2ad: ; 967e8 (25:67e8) text "We are proud of 2" line "fossils of very" - next "rare, prehistoric" - next "#MON!" + cont "rare, prehistoric" + cont "#MON!" done _UnnamedText_5c2bc: ; 96823 (25:6823) @@ -125592,17 +125592,17 @@ _UnnamedText_5c2bc: ; 96823 (25:6823) _MuseumF2Text1: ; 96841 (25:6841) text "MOON STONE?" - page "What's so special" + para "What's so special" line "about it?" done _MuseumF2Text2: ; 96869 (25:6869) text "July 20, 1969!" - page "The 1st lunar" + para "The 1st lunar" line "landing!" - page "I bought a color" + para "I bought a color" line "TV to watch it!" done @@ -125615,7 +125615,7 @@ _MuseumF2Text4: ; 968cf (25:68cf) text "I want a PIKACHU!" line "It's so cute!" - page "I asked my Daddy" + para "I asked my Daddy" line "to catch me one!" done @@ -125632,26 +125632,26 @@ _MuseumF2Text6: ; 96933 (25:6933) _MuseumF2Text7: ; 9694b (25:694b) text "Meteorite that" line "fell on MT.MOON." - next "(MOON STONE?)" + cont "(MOON STONE?)" done _UnnamedText_5c49e: ; 9697a (25:697a) text "I'm BROCK!" line "I'm PEWTER's GYM" - next "LEADER!" + cont "LEADER!" - page "I believe in rock" + para "I believe in rock" line "hard defense and" - next "determination!" + cont "determination!" - page "That's why my" + para "That's why my" line "#MON are all" - next "the rock-type!" + cont "the rock-type!" - page "Do you still want" + para "Do you still want" line "to challenge me?" - next "Fine then! Show" - next "me your best!" + cont "Fine then! Show" + cont "me your best!" done SECTION "bank26",ROMX,BANK[$26] @@ -125659,15 +125659,15 @@ SECTION "bank26",ROMX,BANK[$26] _UnnamedText_5c4a3: ; 98000 (26:4000) text "There are all" line "kinds of trainers" - next "in the world!" + cont "in the world!" - page "You appear to be" + para "You appear to be" line "very gifted as a" - next "#MON trainer!" + cont "#MON trainer!" - page "Go to the GYM in" + para "Go to the GYM in" line "CERULEAN and test" - next "your abilities!" + cont "your abilities!" done _TM34PreReceiveText: ; 98092 (26:4092) @@ -125683,23 +125683,23 @@ _TM34ExplanationText: ; 980c0 (26:40c0) text $51 db "A TM contains a" line "technique that" - next "can be taught to" - next "#MON!" + cont "can be taught to" + cont "#MON!" - page "A TM is good only" + para "A TM is good only" line "once! So when you" - next "use one to teach" - next "a new technique," - next "pick the #MON" - next "carefully!" + cont "use one to teach" + cont "a new technique," + cont "pick the #MON" + cont "carefully!" - page "TM34 contains" + para "TM34 contains" line "BIDE!" - page "Your #MON will" + para "Your #MON will" line "absorb damage in" - next "battle then pay" - next "it back double!" + cont "battle then pay" + cont "it back double!" done _TM34NoRoomText: ; 981ab (26:41ab) @@ -125711,62 +125711,62 @@ _UnnamedText_5c4bc: ; 981c9 (26:41c9) text "I took" line "you for granted." - page "As proof of your" + para "As proof of your" line "victory, here's" - next "the BOULDERBADGE!" + cont "the BOULDERBADGE!" - page $52, " received" + para $52, " received" line "the BOULDERBADGE!@@" _UnnamedText_5c4c1: ; 98232 (26:4232) text $51 db "That's an official" line "#MON LEAGUE" - next "BADGE!" + cont "BADGE!" - page "Its bearer's" + para "Its bearer's" line "#MON become" - next "more powerful!" + cont "more powerful!" - page "The technique" + para "The technique" line "FLASH can now be" - next "used any time!" + cont "used any time!" prompt _PewterGymBattleText1: ; 982ae (26:42ae) text "Stop right there," line "kid!" - page "You're still light" + para "You're still light" line "years from facing" - next "BROCK!" + cont "BROCK!" done _PewterGymEndBattleText1: ; 982f1 (26:42f1) text "Darn!" - page "Light years isn't" + para "Light years isn't" line "time! It measures" - next "distance!" + cont "distance!" prompt _PewterGymAfterBattleText1: ; 98325 (26:4325) text "You're pretty hot," line "but not as hot" - next "as BROCK!" + cont "as BROCK!" done _UnnamedText_5c515: ; 98351 (26:4351) text "Hiya! I can tell" line "you have what it" - next "takes to become a" - next "#MON champ!" + cont "takes to become a" + cont "#MON champ!" - page "I'm no trainer," + para "I'm no trainer," line "but I can tell" - next "you how to win!" + cont "you how to win!" - page "Let me take you" + para "Let me take you" line "to the top!" done @@ -125778,25 +125778,25 @@ _UnnamedText_5c51a: ; 983dc (26:43dc) _UnnamedText_5c51f: ; 983fc (26:43fc) text "The 1st #MON" line "out in a match is" - next "at the top of the" - next "#MON LIST!" + cont "at the top of the" + cont "#MON LIST!" - page "By changing the" + para "By changing the" line "order of #MON," - next "matches could be" - next "made easier!" + cont "matches could be" + cont "made easier!" done _UnnamedText_5c524: ; 98476 (26:4476) text "It's a free" line "service! Let's" - next "get happening!" + cont "get happening!" prompt _UnnamedText_5c529: ; 9849f (26:449f) text "Just as I thought!" line "You're #MON" - next "champ material!" + cont "champ material!" done _PewterHouse1Text1: ; 984ce (26:44ce) @@ -125809,67 +125809,67 @@ _PewterHouse1Text2: ; 984e1 (26:44e1) _PewterHouse1Text3: ; 984ef (26:44ef) text "Our #MON's an" line "outsider, so it's" - next "hard to handle." + cont "hard to handle." - page "An outsider is a" + para "An outsider is a" line "#MON that you" - next "get in a trade." + cont "get in a trade." - page "It grows fast, but" + para "It grows fast, but" line "it may ignore an" - next "unskilled trainer" - next "in battle!" + cont "unskilled trainer" + cont "in battle!" - page "If only we had" + para "If only we had" line "some BADGEs..." done _UnnamedText_74cc6: ; 985ac (26:45ac) text "A shady, old man" line "got me to buy" - next "this really weird" - next "fish #MON!" + cont "this really weird" + cont "fish #MON!" - page "It's totally weak" + para "It's totally weak" line "and it cost ¥500!" done _UnnamedText_74cd5: ; 9860c (26:460c) text "Good things can" line "happen if you" - next "raise #MON" - next "diligently, even" - next "the weak ones!" + cont "raise #MON" + cont "diligently, even" + cont "the weak ones!" done _PewterHouse2Text1: ; 98656 (26:4656) text "#MON learn new" line "techniques as" - next "they grow!" + cont "they grow!" - page "But, some moves" + para "But, some moves" line "must be taught by" - next "the trainer!" + cont "the trainer!" done _PewterHouse2Text2: ; 986ae (26:46ae) text "#MON become" line "easier to catch" - next "when they are" - next "hurt or asleep!" + cont "when they are" + cont "hurt or asleep!" - page "But, it's not a" + para "But, it's not a" line "sure thing!" done _PewterPokecenterText1: ; 98704 (26:4704) text "What!?" - page "TEAM ROCKET is" + para "TEAM ROCKET is" line "at MT.MOON? Huh?" - next "I'm on the phone!" + cont "I'm on the phone!" - page "Scram!" + para "Scram!" done _PewterPokecenterText5: ; 98744 (26:4744) @@ -125881,15 +125881,15 @@ _UnnamedText_1d6ab: ; 9875c (26:475c) text "Those miserable" line "ROCKETs!" - page "Look what they" + para "Look what they" line "did here!" - page "They stole a TM" + para "They stole a TM" line "for teaching" - next "#MON how to" - next "DIG holes!" + cont "#MON how to" + cont "DIG holes!" - page "That cost me a" + para "That cost me a" line "bundle, it did!" done @@ -125897,16 +125897,16 @@ _UnnamedText_1d6b0: ; 987e2 (26:47e2) text "I figure what's" line "lost is lost!" - page "I decided to teach" + para "I decided to teach" line "DIGLETT how to" - next "DIG without a TM!" + cont "DIG without a TM!" done _CeruleanHouseTrashedText2: ; 98834 (26:4834) text "TEAM ROCKET must" line "be trying to DIG" - next "their way into no" - next "good!" + cont "their way into no" + cont "good!" done _CeruleanHouseTrashedText3: ; 9886f (26:486f) @@ -125918,81 +125918,81 @@ _CeruleanHouseText1: ; 9888c (26:488c) text "My husband likes" line "trading #MON." - page "If you are a" + para "If you are a" line "collector, would" - next "you please trade" - next "with him?" + cont "you please trade" + cont "with him?" done _CeruleanPokecenterText1: ; 988e5 (26:48e5) text "That BILL!" - page "I heard that" + para "I heard that" line "he'll do whatever" - next "it takes to get" - next "rare #MON!" + cont "it takes to get" + cont "rare #MON!" done _CeruleanPokecenterText3: ; 9892a (26:492a) text "Have you heard" line "about BILL?" - page "Everyone calls" + para "Everyone calls" line "him a #MANIAC!" - page "I think people" + para "I think people" line "are just jealous" - next "of BILL, though." + cont "of BILL, though." - page "Who wouldn't want" + para "Who wouldn't want" line "to boast about" - next "their #MON?" + cont "their #MON?" done _UnnamedText_5c7be: ; 989c1 (26:49c1) text "Hi, you're a new" line "face!" - page "Trainers who want" + para "Trainers who want" line "to turn pro have" - next "to have a policy" - next "about #MON!" + cont "to have a policy" + cont "about #MON!" - page "What is your" + para "What is your" line "approach when you" - next "catch #MON?" + cont "catch #MON?" - page "My policy is an" + para "My policy is an" line "all-out offensive" - next "with water-type" - next "#MON!" + cont "with water-type" + cont "#MON!" done _UnnamedText_5c7c3: ; 98a7b (26:4a7b) text "TM11 teaches" line "BUBBLEBEAM!" - page "Use it on an" + para "Use it on an" line "aquatic #MON!" done _UnnamedText_5c7c8: ; 98ab0 (26:4ab0) text "The CASCADEBADGE" line "makes all #MON" - next "up to L30 obey!" + cont "up to L30 obey!" - page "That includes" + para "That includes" line "even outsiders!" - page "There's more, you" + para "There's more, you" line "can now use CUT" - next "any time!" + cont "any time!" - page "You can CUT down" + para "You can CUT down" line "small bushes to" - next "open new paths!" + cont "open new paths!" - page "You can also have" + para "You can also have" line "my favorite TM!" done @@ -126009,17 +126009,17 @@ _UnnamedText_5c7d8: ; 98bb0 (26:4bb0) text "Wow!" line "You're too much!" - page "All right!" + para "All right!" - page "You can have the" + para "You can have the" line "CASCADEBADGE to" - next "show you beat me!@@" + cont "show you beat me!@@" _CeruleanGymBattleText1: ; 98c05 (26:4c05) text "I'm more than good" line "enough for you!" - page "MISTY can wait!" + para "MISTY can wait!" done _CeruleanGymEndBattleText1: ; 98c38 (26:4c38) @@ -126030,14 +126030,14 @@ _CeruleanGymEndBattleText1: ; 98c38 (26:4c38) _CeruleanGymAfterBattleText1: ; 98c4d (26:4c4d) text "You have to face" line "other trainers to" - next "find out how good" - next "you really are." + cont "find out how good" + cont "you really are." done _CeruleanGymBattleText2: ; 98c93 (26:4c93) text "Splash!" - page "I'm first up!" + para "I'm first up!" line "Let's do it!" done @@ -126050,7 +126050,7 @@ _CeruleanGymAfterBattleText2: ; 98cc4 (26:4cc4) text "MISTY is going to" line "keep improving!" - page "She won't lose to" + para "She won't lose to" line "someone like you!" done @@ -126058,17 +126058,17 @@ _UnnamedText_5c82a: ; 98d0a (26:4d0a) text "Yo! Champ in" line "making!" - page "Here's my advice!" + para "Here's my advice!" - page "The LEADER, MISTY," + para "The LEADER, MISTY," line "is a pro who uses" - next "water #MON!" + cont "water #MON!" - page "You can drain all" + para "You can drain all" line "their water with" - next "plant #MON!" + cont "plant #MON!" - page "Or, zap them with" + para "Or, zap them with" line "electricity!" done @@ -126076,16 +126076,16 @@ _UnnamedText_5c82f: ; 98db0 (26:4db0) text "You beat MISTY!" line "What'd I tell ya?" - page "You and me kid," + para "You and me kid," line "we make a pretty" - next "darn good team!" + cont "darn good team!" done _UnnamedText_1d810: ; 98e03 (26:4e03) text "Hi! Welcome to" line "our BIKE SHOP." - page "Have we got just" + para "Have we got just" line "the BIKE for you!" prompt @@ -126102,15 +126102,15 @@ _UnnamedText_1d81a: ; 98e67 (26:4e67) _UnnamedText_1d81f: ; 98e83 (26:4e83) text "Oh, that's..." - page "A BIKE VOUCHER!" + para "A BIKE VOUCHER!" - page "OK! Here you go!" + para "OK! Here you go!" prompt _UnnamedText_1d824: ; 98eb2 (26:4eb2) text $52, " exchanged" line "the BIKE VOUCHER" - next "for a BICYCLE.@@" + cont "for a BICYCLE.@@" _UnnamedText_1d82a: ; 98ee0 (26:4ee0) text "Come back again" @@ -126121,9 +126121,9 @@ _UnnamedText_1d82f: ; 98efc (26:4efc) text "How do you like" line "your new BICYCLE?" - page "You can take it" + para "You can take it" line "on CYCLING ROAD" - next "and in caves!" + cont "and in caves!" done _UnnamedText_1d834: ; 98f4d (26:4f4d) @@ -126134,17 +126134,17 @@ _UnnamedText_1d834: ; 98f4d (26:4f4d) _UnnamedText_1d843: ; 98f6d (26:4f6d) text "A plain city BIKE" line "is good enough" - next "for me!" + cont "for me!" - page "You can't put a" + para "You can't put a" line "shopping basket" - next "on an MTB!" + cont "on an MTB!" done _UnnamedText_1d85c: ; 98fc1 (26:4fc1) text "These BIKEs are" line "cool, but they're" - next "way expensive!" + cont "way expensive!" done _UnnamedText_1d861: ; 98ff2 (26:4ff2) @@ -126155,41 +126155,41 @@ _UnnamedText_1d861: ; 98ff2 (26:4ff2) _CeruleanMartText2: ; 99012 (26:5012) text "Use REPEL to keep" line "bugs and weak" - next "#MON away." + cont "#MON away." - page "Put your strongest" + para "Put your strongest" line "#MON at the" - next "top of the list" - next "for best results!" + cont "top of the list" + cont "for best results!" done _CeruleanMartText3: ; 9907f (26:507f) text "Have you seen any" line "RARE CANDY?" - page "It's supposed to" + para "It's supposed to" line "make #MON go" - next "up one level!" + cont "up one level!" done _UnnamedText_74e77: ; 990c9 (26:50c9) text "#MON BADGEs" line "are owned only by" - next "skilled trainers." + cont "skilled trainers." - page "I see you have" + para "I see you have" line "at least one." - page "Those BADGEs have" + para "Those BADGEs have" line "amazing secrets!" prompt _UnnamedText_74e7c: ; 9913a (26:513a) text "Now then..." - page "Which of the 8" + para "Which of the 8" line "BADGEs should I" - next "describe?" + cont "describe?" done _UnnamedText_74e81: ; 99170 (26:5170) @@ -126200,69 +126200,69 @@ _UnnamedText_74e81: ; 99170 (26:5170) _UnnamedText_74e96: ; 99192 (26:5192) text "The ATTACK of all" line "#MON increases" - next "a little bit." + cont "a little bit." - page "It also lets you" + para "It also lets you" line "use FLASH any" - next "time you desire." + cont "time you desire." prompt _UnnamedText_74e9b: ; 991f2 (26:51f2) text "#MON up to L30" line "will obey you." - page "Any higher, they" + para "Any higher, they" line "become unruly!" - page "It also lets you" + para "It also lets you" line "use CUT outside" - next "of battle." + cont "of battle." prompt _UnnamedText_74ea0: ; 9925d (26:525d) text "The SPEED of all" line "#MON increases" - next "a little bit." + cont "a little bit." - page "It also lets you" + para "It also lets you" line "use FLY outside" - next "of battle." + cont "of battle." prompt _UnnamedText_74ea5: ; 992b8 (26:52b8) text "#MON up to L50" line "will obey you." - page "Any higher, they" + para "Any higher, they" line "become unruly!" - page "It also lets you" + para "It also lets you" line "use STRENGTH out-" - next "side of battle." + cont "side of battle." prompt _UnnamedText_74eaa: ; 9932a (26:532a) text "The DEFENSE of all" line "#MON increases" - next "a little bit." + cont "a little bit." - page "It also lets you" + para "It also lets you" line "use SURF outside" - next "of battle." + cont "of battle." prompt _UnnamedText_74eaf: ; 99388 (26:5388) text "#MON up to L70" line "will obey you." - page "Any higher, they" + para "Any higher, they" line "become unruly!" prompt _UnnamedText_74eb4: ; 993c7 (26:53c7) text "Your #MON's" line "SPECIAL abilities" - next "increase a bit." + cont "increase a bit." prompt _UnnamedText_74eb9: ; 993f5 (26:53f5) @@ -126275,34 +126275,34 @@ _LavenderPokecenterText2: ; 9940e (26:540e) _LavenderPokecenterText1: ; 9940e (26:540e) text "TEAM ROCKET will" line "do anything for" - next "the sake of gold!" + cont "the sake of gold!" done _LavenderPokecenterText3: ; 99442 (26:5442) text "I saw CUBONE's" line "mother die trying" - next "to escape from" - next "TEAM ROCKET!" + cont "to escape from" + cont "TEAM ROCKET!" done _PokemonTower1Text1: ; 9947f (26:547f) text "#MON TOWER was" line "erected in the" - next "memory of #MON" - next "that had died." + cont "memory of #MON" + cont "that had died." done _PokemonTower1Text2: ; 994bc (26:54bc) text "Did you come to" line "pay respects?" - next "Bless you!" + cont "Bless you!" done _PokemonTower1Text3: ; 994e6 (26:54e6) text "I came to pray" line "for my CLEFAIRY." - page "Sniff! I can't" + para "Sniff! I can't" line "stop crying..." done @@ -126314,65 +126314,65 @@ _PokemonTower1Text4: ; 99524 (26:5524) _PokemonTower1Text5: ; 99546 (26:5546) text "I am a CHANNELER!" line "There are spirits" - next "up to mischief!" + cont "up to mischief!" done _UnnamedText_6062d: ; 9957b (26:557b) text $53, ": Hey," line $52, "! What" - next "brings you here?" - next "Your #MON" - next "don't look dead!" + cont "brings you here?" + cont "Your #MON" + cont "don't look dead!" - page "I can at least" + para "I can at least" line "make them faint!" - next "Let's go, pal!" + cont "Let's go, pal!" done _UnnamedText_60632: ; 995e5 (26:55e5) text "What?" line "You stinker!" - page "I took it easy on" + para "I took it easy on" line "you too!" prompt _UnnamedText_60637: ; 99614 (26:5614) text $53, ": Well," line "look at all your" - next "wimpy #MON!" + cont "wimpy #MON!" - page "Toughen them up a" + para "Toughen them up a" line "bit more!" prompt _UnnamedText_6063c: ; 99657 (26:5657) text "How's your #DEX" line "coming, pal?" - next "I just caught a" - next "CUBONE!" + cont "I just caught a" + cont "CUBONE!" - page "I can't find the" + para "I can't find the" line "grown-up MAROWAK" - next "yet!" + cont "yet!" - page "I doubt there are" + para "I doubt there are" line "any left! Well, I" - next "better get going!" - next "I've got a lot to" - next "accomplish, pal!" + cont "better get going!" + cont "I've got a lot to" + cont "accomplish, pal!" - page "Smell ya later!" + para "Smell ya later!" done _PokemonTower2Text2: ; 9971a (26:571a) text "Even we could not" line "identify the" - next "wayward GHOSTs!" + cont "wayward GHOSTs!" - page "A SILPH SCOPE" + para "A SILPH SCOPE" line "might be able to" - next "unmask them." + cont "unmask them." done _PokemonTower3BattleText1: ; 99776 (26:5776) @@ -126388,7 +126388,7 @@ _PokemonTower3EndBattleText1: ; 99794 (26:5794) _PokemonTower3AfterBattleText1: ; 997a4 (26:57a4) text "The GHOSTs can be" line "identified by the" - next "SILPH SCOPE." + cont "SILPH SCOPE." done _PokemonTower3BattleText2: ; 997d6 (26:57d6) @@ -126448,7 +126448,7 @@ _PokemonTower4EndBattleText2: ; 998cc (26:58cc) _PokemonTower4AfterBattleText2: ; 998d3 (26:58d3) text "We can't crack" line "the identity of" - next "the GHOSTs." + cont "the GHOSTs." done _PokemonTower4BattleText3: ; 998fe (26:58fe) @@ -126464,15 +126464,15 @@ _PokemonTower4EndBattleText3: ; 99916 (26:5916) _PokemonTower4AfterBattleText3: ; 99927 (26:5927) text "May the departed" line "souls of #MON" - next "rest in peace..." + cont "rest in peace..." done _PokemonTower5Text1: ; 99958 (26:5958) text "Come, child! I" line "sealed this space" - next "with white magic!" + cont "with white magic!" - page "You can rest here!" + para "You can rest here!" done _PokemonTower5BattleText1: ; 9999f (26:599f) @@ -126528,28 +126528,28 @@ _PokemonTower5EndBattleText4: ; 99a57 (26:5a57) _PokemonTower5AfterBattleText4: ; 99a5e (26:5a5e) text "I fell to evil" line "spirits despite" - next "my training!" + cont "my training!" done _UnnamedText_60a43: ; 99a8b (26:5a8b) text "Entered purified," line "protected zone!" - page $52, "'s #MON" + para $52, "'s #MON" line "are fully healed!" done _UnnamedText_60c1f: ; 99ac8 (26:5ac8) text "The GHOST was the" line "restless soul of" - next "CUBONE's mother!" + cont "CUBONE's mother!" done _UnnamedText_60c24: ; 99afc (26:5afc) text "The mother's soul" line "was calmed." - page "It departed to" + para "It departed to" line "the afterlife!" done @@ -126579,7 +126579,7 @@ _PokemonTower6EndBattleText2: ; 99b82 (26:5b82) _PokemonTower6AfterBattleText2: ; 99b99 (26:5b99) text "Hair didn't fall" line "out! It was an" - next "evil spirit!" + cont "evil spirit!" done _PokemonTower6BattleText3: ; 99bc6 (26:5bc6) @@ -126605,26 +126605,26 @@ _UnnamedText_60ec4: ; 99c1a (26:5c1a) text "MR.FUJI: Heh? You" line "came to save me?" - page "Thank you. But, I" + para "Thank you. But, I" line "came here of my" - next "own free will." + cont "own free will." - page "I came to calm" + para "I came to calm" line "the soul of" - next "CUBONE's mother." + cont "CUBONE's mother." - page "I think MAROWAK's" + para "I think MAROWAK's" line "spirit has gone" - next "to the afterlife." + cont "to the afterlife." - page "I must thank you" + para "I must thank you" line "for your kind" - next "concern!" + cont "concern!" - page "Follow me to my" + para "Follow me to my" line "home, #MON" - next "HOUSE at the foot" - next "of this tower." + cont "HOUSE at the foot" + cont "of this tower." done _PokemonTower7BattleText1: ; 99d31 (26:5d31) @@ -126644,10 +126644,10 @@ _PokemonTower7AfterBattleText1: ; 99d62 (26:5d62) _PokemonTower7BattleText2: ; 99d80 (26:5d80) text "This old guy came" line "and complained" - next "about us harming" - next "useless #MON!" + cont "about us harming" + cont "useless #MON!" - page "We're talking it" + para "We're talking it" line "over as adults!" done @@ -126659,9 +126659,9 @@ _PokemonTower7EndBattleText2: ; 99de1 (26:5de1) _PokemonTower7AfterBattleText2: ; 99df3 (26:5df3) text "#MON are only" line "good for making" - next "money!" + cont "money!" - page "Stay out of our" + para "Stay out of our" line "business!" done @@ -126683,30 +126683,30 @@ _PokemonTower7AfterBattleText3: ; 99e6a (26:5e6a) _UnnamedText_1d8d1: ; 99e8d (26:5e8d) text "That's odd, MR.FUJI" line "isn't here." - next "Where'd he go?" + cont "Where'd he go?" done _UnnamedText_1d8d6: ; 99eba (26:5eba) text "MR.FUJI had been" line "praying alone for" - next "CUBONE's mother." + cont "CUBONE's mother." done _UnnamedText_1d8f4: ; 99eee (26:5eee) text "This is really" line "MR.FUJI's house." - page "He's really kind!" + para "He's really kind!" - page "He looks after" + para "He looks after" line "abandoned and" - next "orphaned #MON!" + cont "orphaned #MON!" done _UnnamedText_1d8f9: ; 99f4b (26:5f4b) text "It's so warm!" line "#MON are so" - next "nice to hug!" + cont "nice to hug!" done _LavenderHouse1Text3: ; 99f72 (26:5f72) @@ -126718,12 +126718,12 @@ _LavenderHouse1Text4: ; 99f85 (26:5f85) _UnnamedText_1d94c: ; 99f97 (26:5f97) text "MR.FUJI: ", $52, "." - page "Your #DEX quest" + para "Your #DEX quest" line "may fail without" - next "love for your" - next "#MON." + cont "love for your" + cont "#MON." - page "I think this may" + para "I think this may" line "help your quest." prompt @@ -126737,10 +126737,10 @@ _FluteExplanationText: ; 9a011 (26:6011) text $51 db "Upon hearing #" line "FLUTE, sleeping" - next "#MON will" - next "spring awake." + cont "#MON will" + cont "spring awake." - page "It works on all" + para "It works on all" line "sleeping #MON." done @@ -126757,44 +126757,44 @@ _MrFujiAfterFluteText: ; 9a087 (26:6087) _LavenderHouse1Text6: ; 9a0aa (26:60aa) text "#MON Monthly" line "Grand Prize" - next "Drawing!" + cont "Drawing!" - page "The application" + para "The application" line "form is..." - page "Gone! It's been" + para "Gone! It's been" line "clipped out!" done _LavenderMartText2: ; 9a104 (26:6104) text "I'm searching for" line "items that raise" - next "the abilities of" - next "#MON during a" - next "single battle." + cont "the abilities of" + cont "#MON during a" + cont "single battle." - page "X ATTACK, X" + para "X ATTACK, X" line "DEFEND, X SPEED" - next "and X SPECIAL are" - next "what I'm after." + cont "and X SPECIAL are" + cont "what I'm after." - page "Do you know where" + para "Do you know where" line "I can get them?" done _UnnamedText_5c953: ; 9a1b4 (26:61b4) text "You know REVIVE?" line "It revives any" - next "fainted #MON!" + cont "fainted #MON!" done _UnnamedText_5c958: ; 9a1e3 (26:61e3) text "I found a NUGGET" line "in the mountains." - page "I thought it was" + para "I thought it was" line "useless, but it" - next "sold for ¥5000!" + cont "sold for ¥5000!" done _LavenderHouse2Text1: ; 9a238 (26:6238) @@ -126804,32 +126804,32 @@ _UnnamedText_1d9dc: ; 9a24c (26:624c) text "I hate those" line "horrible ROCKETs!" - page "That poor CUBONE's" + para "That poor CUBONE's" line "mother..." - page "It was killed" + para "It was killed" line "trying to escape" - next "from TEAM ROCKET!" + cont "from TEAM ROCKET!" done _UnnamedText_1d9e1: ; 9a2b9 (26:62b9) text "The GHOST of" line "#MON TOWER is" - next "gone!" + cont "gone!" - page "Someone must have" + para "Someone must have" line "soothed its" - next "restless soul!" + cont "restless soul!" done _UnnamedText_1dab3: ; 9a308 (26:6308) text "Hello, hello!" line "I am the official" - next "NAME RATER!" + cont "NAME RATER!" - page "Want me to rate" + para "Want me to rate" line "the nicknames of" - next "your #MON?" + cont "your #MON?" done _UnnamedText_1dab8: ; 9a361 (26:6361) @@ -126841,13 +126841,13 @@ _UnnamedText_1dabd: ; 9a37f (26:637f) TX_RAM $cd6d text ", is it?" line "That is a decent" - next "nickname!" + cont "nickname!" - page "But, would you" + para "But, would you" line "like me to give" - next "it a nicer name?" + cont "it a nicer name?" - page "How about it?" + para "How about it?" done _UnnamedText_1dac2: ; 9a3e5 (26:63e5) @@ -126858,11 +126858,11 @@ _UnnamedText_1dac2: ; 9a3e5 (26:63e5) _UnnamedText_1dac7: ; 9a404 (26:6404) text "OK! This #MON" line "has been renamed" - next "@" + cont "@" TX_RAM $cee9 text "!" - page "That's a better" + para "That's a better" line "name than before!" done @@ -126875,9 +126875,9 @@ _UnnamedText_1dad1: ; 9a46b (26:646b) TX_RAM $cd6d text ", is it?" line "That is a truly" - next "impeccable name!" + cont "impeccable name!" - page "Take good care of" + para "Take good care of" line "@" TX_RAM $cd6d text "!" @@ -126887,47 +126887,47 @@ _VermilionPokecenterText2: ; 9a4b2 (26:64b2) _VermilionPokecenterText1: ; 9a4b2 (26:64b2) text "Even if they are" line "the same level," - next "#MON can have" - next "very different" - next "abilities." + cont "#MON can have" + cont "very different" + cont "abilities." - page "A #MON raised" + para "A #MON raised" line "by a trainer is" - next "stronger than one" - next "in the wild." + cont "stronger than one" + cont "in the wild." done _VermilionPokecenterText3: ; 9a539 (26:6539) text "My #MON was" line "poisoned! It" - next "fainted while we" - next "were walking!" + cont "fainted while we" + cont "were walking!" done _UnnamedText_59bb7: ; 9a572 (26:6572) text "Won't you admire" line "my PIKACHU's" - next "adorable tail?" + cont "adorable tail?" done _UnnamedText_59bbc: ; 9a59e (26:659e) text "Humph! My PIKACHU" line "is twice as cute" - next "as that one!" + cont "as that one!" done _UnnamedText_59be4: ; 9a5cf (26:65cf) text "I just love my" line "SEEL!" - page "It squeals when I" + para "It squeals when I" line "hug it!" done _UnnamedText_59be9: ; 9a5ff (26:65ff) text "Oh dear!" - page "My SEEL is far" + para "My SEEL is far" line "more attractive!" done @@ -126944,48 +126944,48 @@ _UnnamedText_59c65: ; 9a64f (26:664f) text "I chair the" line "#MON Fan Club!" - page "I have collected" + para "I have collected" line "over 100 #MON!" - page "I'm very fussy" + para "I'm very fussy" line "when it comes to" - next "#MON!" + cont "#MON!" - page "So..." + para "So..." - page "Did you come" + para "Did you come" line "visit to hear" - next "about my #MON?" + cont "about my #MON?" done _UnnamedText_59c6a: ; 9a6e0 (26:66e0) text "Good!" line "Then listen up!" - page "My favorite" + para "My favorite" line "RAPIDASH..." - page "It...cute..." + para "It...cute..." line "lovely...smart..." - next "plus...amazing..." - next "you think so?..." - next "oh yes...it..." - next "stunning..." - next "kindly..." - next "love it!" + cont "plus...amazing..." + cont "you think so?..." + cont "oh yes...it..." + cont "stunning..." + cont "kindly..." + cont "love it!" - page "Hug it...when..." - next "sleeping...warm" - next "and cuddly..." - next "spectacular..." - next "ravishing..." - next "...Oops! Look at" - next "the time! I kept" - next "you too long!" + para "Hug it...when..." + cont "sleeping...warm" + cont "and cuddly..." + cont "spectacular..." + cont "ravishing..." + cont "...Oops! Look at" + cont "the time! I kept" + cont "you too long!" - page "Thanks for hearing" + para "Thanks for hearing" line "me out! I want" - next "you to have this!" + cont "you to have this!" prompt _ReceivedBikeVoucherText: ; 9a82e (26:682e) @@ -126999,31 +126999,31 @@ _UnnamedText_59c74: ; 9a844 (26:6844) db "Exchange that for" line "a BICYCLE!" - page "Don't worry, my" + para "Don't worry, my" line "FEAROW will FLY" - next "me anywhere!" + cont "me anywhere!" - page "So, I don't need a" + para "So, I don't need a" line "BICYCLE!" - page "I hope you like" + para "I hope you like" line "cycling!" done _UnnamedText_59c79: ; 9a8c3 (26:68c3) text "Oh. Come back" line "when you want to" - next "hear my story!" + cont "hear my story!" done _UnnamedText_59c7e: ; 9a8f2 (26:68f2) text "Hello, ", $52, "!" - page "Did you come see" + para "Did you come see" line "me about my" - next "#MON again?" + cont "#MON again?" - page "No? Too bad!" + para "No? Too bad!" done _UnnamedText_59c83: ; 9a933 (26:6933) @@ -127034,13 +127034,13 @@ _UnnamedText_59c83: ; 9a933 (26:6933) _FanClubText6: ; 9a948 (26:6948) text "Our Chairman is" line "very vocal about" - next "#MON." + cont "#MON." done _FanClubText7: ; 9a970 (26:6970) text "Let's all listen" line "politely to other" - next "trainers!" + cont "trainers!" done _FanClubText8: ; 9a99d (26:699d) @@ -127051,46 +127051,46 @@ _FanClubText8: ; 9a99d (26:699d) _VermilionMartText2: ; 9a9c1 (26:69c1) text "There are evil" line "people who will" - next "use #MON for" - next "criminal acts." + cont "use #MON for" + cont "criminal acts." - page "TEAM ROCKET" + para "TEAM ROCKET" line "traffics in rare" - next "#MON." + cont "#MON." - page "They also abandon" + para "They also abandon" line "#MON that they" - next "consider not to" - next "be popular or" - next "useful." + cont "consider not to" + cont "be popular or" + cont "useful." done _VermilionMartText3: ; 9aa67 (26:6a67) text "I think #MON" line "can be good or" - next "evil. It depends" - next "on the trainer." + cont "evil. It depends" + cont "on the trainer." done _UnnamedText_5cb6d: ; 9aaa5 (26:6aa5) text "Hey, kid! What do" line "you think you're" - next "doing here?" + cont "doing here?" - page "You won't live" + para "You won't live" line "long in combat!" - next "That's for sure!" + cont "That's for sure!" - page "I tell you kid," + para "I tell you kid," line "electric #MON" - next "saved me during" - next "the war!" + cont "saved me during" + cont "the war!" - page "They zapped my" + para "They zapped my" line "enemies into" - next "paralysis!" + cont "paralysis!" - page "The same as I'll" + para "The same as I'll" line "do to you!" done @@ -127100,24 +127100,24 @@ _UnnamedText_5cb72: ; 9c000 (27:4000) text "A little word of" line "advice, kid!" - page "Electricity is" + para "Electricity is" line "sure powerful!" - page "But, it's useless" + para "But, it's useless" line "against ground-" - next "type #MON!" + cont "type #MON!" done _UnnamedText_5cb77: ; 9c069 (27:4069) text "The THUNDERBADGE" line "cranks up your" - next "#MON's SPEED!" + cont "#MON's SPEED!" - page "It also lets your" + para "It also lets your" line "#MON FLY any" - next "time, kid!" + cont "time, kid!" - page "You're special," + para "You're special," line "kid! Take this!" done @@ -127132,7 +127132,7 @@ _TM24ExplanationText: ; 9c0f5 (27:40f5) db "TM24 contains" line "THUNDERBOLT!" - page "Teach it to an" + para "Teach it to an" line "electric #MON!" done @@ -127144,17 +127144,17 @@ _TM24NoRoomText: ; 9c130 (27:4130) _ReceivedThunderbadgeText: ; 9c151 (27:4151) text "Whoa!" - page "You're the real" + para "You're the real" line "deal, kid!" - page "Fine then, take" + para "Fine then, take" line "the THUNDERBADGE!" prompt _VermilionGymBattleText1: ; 9c194 (27:4194) text "When I was in the" line "Army, LT.SURGE" - next "was my strict CO!" + cont "was my strict CO!" done _VermilionGymEndBattleText1: ; 9c1c8 (27:41c8) @@ -127166,14 +127166,14 @@ _VermilionGymAfterBattleText1: ; 9c1e0 (27:41e0) text "The door won't" line "open?" - page "LT.SURGE always" + para "LT.SURGE always" line "was cautious!" done _VermilionGymBattleText2: ; 9c213 (27:4213) text "I'm a lightweight," line "but I'm good with" - next "electricity!" + cont "electricity!" done _VermilionGymEndBattleText2: ; 9c244 (27:4244) @@ -127183,9 +127183,9 @@ _VermilionGymEndBattleText2: ; 9c244 (27:4244) _VermilionGymAfterBattleText2: ; 9c24c (27:424c) text "OK, I'll talk!" - page "LT.SURGE said he" + para "LT.SURGE said he" line "hid door switches" - next "inside something!" + cont "inside something!" done _VermilionGymBattleText3: ; 9c290 (27:4290) @@ -127201,38 +127201,38 @@ _VermilionGymEndBattleText3: ; 9c2ac (27:42ac) _VermilionGymAfterBattleText3: ; 9c2c0 (27:42c0) text "LT.SURGE set up" line "double locks!" - next "Here's a hint!" + cont "Here's a hint!" - page "When you open the" + para "When you open the" line "1st lock, the 2nd" - next "lock is right" - next "next to it!" + cont "lock is right" + cont "next to it!" done _UnnamedText_5cbf4: ; 9c32b (27:432b) text "Yo! Champ in" line "making!" - page "LT.SURGE has a" + para "LT.SURGE has a" line "nickname. People" - next "refer to him as" - next "the Lightning" - next "American!" + cont "refer to him as" + cont "the Lightning" + cont "American!" - page "He's an expert on" + para "He's an expert on" line "electric #MON!" - page "Birds and water" + para "Birds and water" line "#MON are at" - next "risk! Beware of" - next "paralysis too!" + cont "risk! Beware of" + cont "paralysis too!" - page "LT.SURGE is very" + para "LT.SURGE is very" line "cautious!" - page "You'll have to" + para "You'll have to" line "break a code to" - next "get to him!" + cont "get to him!" done _UnnamedText_5cbf9: ; 9c429 (27:4429) @@ -127243,8 +127243,8 @@ _UnnamedText_5cbf9: ; 9c429 (27:4429) _VermilionHouse1Text1: ; 9c449 (27:4449) text "I'm getting my" line "PIDGEY to fly a" - next "letter to SAFFRON" - next "in the north!" + cont "letter to SAFFRON" + cont "in the north!" done _VermilionHouse1Text2: ; 9c488 (27:4488) @@ -127254,11 +127254,11 @@ _VermilionHouse1Text3: ; 9c49c (27:449c) text "Dear PIPPI, I hope" line "to see you soon." - page "I heard SAFFRON" + para "I heard SAFFRON" line "has problems with" - next "TEAM ROCKET." + cont "TEAM ROCKET." - page "VERMILION appears" + para "VERMILION appears" line "to be safe." done @@ -127269,10 +127269,10 @@ _UnnamedText_560b1: ; 9c510 (27:4510) text "I'm the FISHING" line "GURU!" - page "I simply Looove" + para "I simply Looove" line "fishing!" - page "Do you like to" + para "Do you like to" line "fish?" done @@ -127280,10 +127280,10 @@ _UnnamedText_560b6: ; 9c554 (27:4554) text "Grand! I like" line "your style!" - page "Take this and" + para "Take this and" line "fish, young one!" - page $52, " received" + para $52, " received" line "an @" TX_RAM $cf4b text "!@@" @@ -127293,10 +127293,10 @@ _UnnamedText_560bb: ; 9c5a4 (27:45a4) db "Fishing is a way" line "of life!" - page "From the seas to" + para "From the seas to" line "rivers, go out" - next "and land the big" - next "one, young one!" + cont "and land the big" + cont "one, young one!" done _UnnamedText_560c0: ; 9c601 (27:4601) @@ -127308,41 +127308,41 @@ _UnnamedText_560c5: ; 9c622 (27:4622) text "Hello there," line $52, "!" - page "How are the fish" + para "How are the fish" line "biting?" done _UnnamedText_560ca: ; 9c64c (27:464c) text "Oh no!" - page "You have no room" + para "You have no room" line "for my gift!" done _CeladonMart1Text1: ; 9c672 (27:4672) text "Hello! Welcome to" line "CELADON DEPT." - next "STORE." + cont "STORE." - page "The board on the" + para "The board on the" line "right describes" - next "the store layout." + cont "the store layout." done _CeladonMart1Text2: ; 9c6cd (27:46cd) text "1F: SERVICE" line " COUNTER" - page "2F: TRAINER'S" + para "2F: TRAINER'S" line " MARKET" - page "3F: TV GAME SHOP" + para "3F: TV GAME SHOP" - page "4F: WISEMAN GIFTS" + para "4F: WISEMAN GIFTS" - page "5F: DRUG STORE" + para "5F: DRUG STORE" - page "ROOFTOP SQUARE:" + para "ROOFTOP SQUARE:" line "VENDING MACHINES" done @@ -127354,23 +127354,23 @@ _CeladonMart1Text3: ; 9c752 (27:4752) _CeladonMart2Text3: ; 9c76b (27:476b) text "SUPER REPEL keeps" line "weak #MON at" - next "bay..." + cont "bay..." - page "Hmm, it's a more" + para "Hmm, it's a more" line "powerful REPEL!" done _CeladonMart2Text4: ; 9c7b2 (27:47b2) text "For long outings," line "you should buy" - next "REVIVE." + cont "REVIVE." done _CeladonMart2Text5: ; 9c7dc (27:47dc) text "Top Grade Items" line "for Trainers!" - page "2F: TRAINER'S" + para "2F: TRAINER'S" line " MARKET" done @@ -127378,9 +127378,9 @@ _TM18PreReceiveText: ; 9c814 (27:4814) text "Oh, hi! I finally" line "finished #MON!" - page "Not done yet?" + para "Not done yet?" line "This might be" - next "useful!" + cont "useful!" prompt _ReceivedTM18Text: ; 9c85a (27:485a) @@ -127392,8 +127392,8 @@ _ReceivedTM18Text: ; 9c85a (27:485a) _TM18ExplanationText: ; 9c86e (27:486e) text "TM18 is COUNTER!" line "Not like the one" - next "I'm leaning on," - next "mind you!" + cont "I'm leaning on," + cont "mind you!" done _TM18NoRoomText: ; 9c8aa (27:48aa) @@ -127404,40 +127404,40 @@ _TM18NoRoomText: ; 9c8aa (27:48aa) _CeladonMart3Text2: ; 9c8c7 (27:48c7) text "Captured #MON" line "are registered" - next "with an ID No." - next "and OT, the name" - next "of the Original" - next "Trainer that" - next "caught it!" + cont "with an ID No." + cont "and OT, the name" + cont "of the Original" + cont "Trainer that" + cont "caught it!" done _CeladonMart3Text3: ; 9c92d (27:492d) text "All right!" - page "My buddy's going" + para "My buddy's going" line "to trade me his" - next "KANGASKHAN for my" - next "GRAVELER!" + cont "KANGASKHAN for my" + cont "GRAVELER!" done _CeladonMart3Text4: ; 9c975 (27:4975) text "Come on GRAVELER!" - page "I love GRAVELER!" + para "I love GRAVELER!" line "I collect them!" - page "Huh?" + para "Huh?" - page "GRAVELER turned" + para "GRAVELER turned" line "into a different" - next "#MON!" + cont "#MON!" done _CeladonMart3Text5: ; 9c9d5 (27:49d5) text "You can identify" line "#MON you got" - next "in trades by" - next "their ID Numbers!" + cont "in trades by" + cont "their ID Numbers!" done _CeladonMart3Text6: ; 9ca13 (27:4a13) @@ -127476,28 +127476,28 @@ _CeladonMart3Text15: ; 9cab6 (27:4ab6) _CeladonMart4Text2: ; 9cad4 (27:4ad4) text "I'm getting a" line "# DOLL for my" - next "girl friend!" + cont "girl friend!" done _CeladonMart4Text3: ; 9cafd (27:4afd) text "I heard something" line "useful." - page "You can run from" + para "You can run from" line "wild #MON by" - next "distracting them" - next "with a # DOLL!" + cont "distracting them" + cont "with a # DOLL!" done _CeladonMart4Text4: ; 9cb56 (27:4b56) text "Express yourself" line "with gifts!" - page "4F: WISEMAN GIFTS" + para "4F: WISEMAN GIFTS" - page "Evolution Special!" + para "Evolution Special!" line "Element STONEs on" - next "sale now!" + cont "sale now!" done _UnnamedText_484ee: ; 9cbb5 (27:4bb5) @@ -127508,11 +127508,11 @@ _UnnamedText_484ee: ; 9cbb5 (27:4bb5) _UnnamedText_484f3: ; 9cbcc (27:4bcc) text "Yay!" - page "FRESH WATER!" + para "FRESH WATER!" - page "Thank you!" + para "Thank you!" - page "You can have this" + para "You can have this" line "from me!@@" _UnnamedText_484f9: ; 9cc06 (27:4c06) @@ -127528,17 +127528,17 @@ _UnnamedText_484fe: ; 9cc1a (27:4c1a) text " contains" line "ICE BEAM!" - page "It can freeze the" + para "It can freeze the" line "target sometimes!@@" _UnnamedText_48504: ; 9cc5a (27:4c5a) text "Yay!" - page "SODA POP!" + para "SODA POP!" - page "Thank you!" + para "Thank you!" - page "You can have this" + para "You can have this" line "from me!@@" _UnnamedText_4850a: ; 9cc91 (27:4c91) @@ -127554,17 +127554,17 @@ _UnnamedText_4850f: ; 9cca5 (27:4ca5) text " contains" line "ROCK SLIDE!" - page "It can spook the" + para "It can spook the" line "target sometimes!@@" _UnnamedText_48515: ; 9cce6 (27:4ce6) text "Yay!" - page "LEMONADE!" + para "LEMONADE!" - page "Thank you!" + para "Thank you!" - page "You can have this" + para "You can have this" line "from me!@@" _ReceivedTM49Text: ; 9cd1d (27:4d1d) @@ -127583,30 +127583,30 @@ _UnnamedText_48526: ; 9cd4d (27:4d4d) _UnnamedText_4852c: ; 9cd6d (27:4d6d) text "No thank you!" line "I'm not thirsty" - next "after all!@@" + cont "after all!@@" _CeladonMartRoofText1: ; 9cd97 (27:4d97) text "My sister is a" line "trainer, believe" - next "it or not." + cont "it or not." - page "But, she's so" + para "But, she's so" line "immature, she" - next "drives me nuts!" + cont "drives me nuts!" done _UnnamedText_48598: ; 9cdee (27:4dee) text "I'm thirsty!" line "I want something" - next "to drink!" + cont "to drink!" done _CeladonMartRoofText4: ; 9ce16 (27:4e16) text "I'm thirsty!" line "I want something" - next "to drink!" + cont "to drink!" - page "Give her a drink?" + para "Give her a drink?" done _CeladonMartRoofText6: ; 9ce50 (27:4e50) @@ -127646,7 +127646,7 @@ _CeladonMansion1Text2: ; 9cefe (27:4efe) text "My dear #MON" line "keep me company." - page "MEOWTH even brings" + para "MEOWTH even brings" line "money home!" done @@ -127676,58 +127676,58 @@ _ProgrammerText: ; 9cfa4 (27:4fa4) _GraphicArtistText: ; 9cfbc (27:4fbc) text "I'm the graphic" line "artist!" - next "I drew you!" + cont "I drew you!" done _WriterText: ; 9cfe0 (27:4fe0) text "I wrote the story!" line "Isn't ERIKA cute?" - page "I like MISTY a" + para "I like MISTY a" line "lot too!" - page "Oh, and SABRINA," + para "Oh, and SABRINA," line "I like her!" done _GameDesignerText: ; 9d03a (27:503a) text "Is that right?" - page "I'm the game" + para "I'm the game" line "designer!" - page "Filling up your" + para "Filling up your" line "#DEX is tough," - next "but don't quit!" + cont "but don't quit!" - page "When you finish," + para "When you finish," line "come tell me!" done _CompletedDexText: ; 9d0ad (27:50ad) text "Wow! Excellent!" line "You completed" - next "your #DEX!" - next "Congratulations!" - next "...@@" + cont "your #DEX!" + cont "Congratulations!" + cont "...@@" _CeladonMansion3Text5: ; 9d0ed (27:50ed) text "It's the game" line "program! Messing" - next "with it could bug" - next "out the game!" + cont "with it could bug" + cont "out the game!" done _CeladonMansion3Text6: ; 9d12c (27:512c) text "Someone's playing" line "a game instead of" - next "working!" + cont "working!" done _CeladonMansion3Text7: ; 9d159 (27:5159) text "It's the script!" line "Better not look" - next "at the ending!" + cont "at the ending!" done _CeladonMansion3Text8: ; 9d189 (27:5189) @@ -127742,51 +127742,51 @@ _CeladonMansion4Text1: ; 9d1a6 (27:51a6) _CeladonMansion5Text1: ; 9d1ba (27:51ba) text "I know everything" line "about the world" - next "of #MON in" - next "your GAME BOY!" + cont "of #MON in" + cont "your GAME BOY!" - page "Get together with" + para "Get together with" line "your friends and" - next "trade #MON!" + cont "trade #MON!" done _CeladonPokecenterText2: ; 9d226 (27:5226) text "# FLUTE awakens" line "#MON with a" - next "sound that only" - next "they can hear!" + cont "sound that only" + cont "they can hear!" done _CeladonPokecenterText3: ; 9d262 (27:5262) text "I rode uphill on" line "CYCLING ROAD from" - next "FUCHSIA!" + cont "FUCHSIA!" done _UnnamedText_48a5e: ; 9d28f (27:528f) text "Hello. Lovely" line "weather isn't it?" - next "It's so pleasant." + cont "It's so pleasant." - page "...Oh dear..." + para "...Oh dear..." line "I must have dozed" - next "off. Welcome." + cont "off. Welcome." - page "My name is ERIKA." + para "My name is ERIKA." line "I am the LEADER" - next "of CELADON GYM." + cont "of CELADON GYM." - page "I teach the art of" + para "I teach the art of" line "flower arranging." - next "My #MON are of" - next "the grass-type." + cont "My #MON are of" + cont "the grass-type." - page "Oh, I'm sorry, I" + para "Oh, I'm sorry, I" line "had no idea that" - next "you wished to" - next "challenge me." + cont "you wished to" + cont "challenge me." - page "Very well, but I" + para "Very well, but I" line "shall not lose." done @@ -127794,35 +127794,35 @@ _UnnamedText_48a63: ; 9d3c2 (27:53c2) text "Oh!" line "I concede defeat." - page "You are remarkably" + para "You are remarkably" line "strong." - page "I must confer you" + para "I must confer you" line "the RAINBOWBADGE." prompt _UnnamedText_48a68: ; 9d418 (27:5418) text "You are cataloging" line "#MON? I must" - next "say I'm impressed." + cont "say I'm impressed." - page "I would never" + para "I would never" line "collect #MON" - next "if they were" - next "unattractive." + cont "if they were" + cont "unattractive." done _UnnamedText_48a6d: ; 9d481 (27:5481) text "The RAINBOWBADGE" line "will make #MON" - next "up to L50 obey." + cont "up to L50 obey." - page "It also allows" + para "It also allows" line "#MON to use" - next "STRENGTH in and" - next "out of battle." + cont "STRENGTH in and" + cont "out of battle." - page "Please also take" + para "Please also take" line "this with you." done @@ -127837,10 +127837,10 @@ _TM21ExplanationText: ; 9d520 (27:5520) db "TM21 contains" line "MEGA DRAIN." - page "Half the damage" + para "Half the damage" line "it inflicts is" - next "drained to heal" - next "your #MON!" + cont "drained to heal" + cont "your #MON!" done _TM21NoRoomText: ; 9d576 (27:5576) @@ -127851,7 +127851,7 @@ _TM21NoRoomText: ; 9d576 (27:5576) _CeladonGymBattleText2: ; 9d596 (27:5596) text "Hey!" - page "You are not" + para "You are not" line "allowed in here!" done @@ -127863,7 +127863,7 @@ _CeladonGymEndBattleText2: ; 9d5b9 (27:55b9) _CeladonGymAfterBattleText2: ; 9d5cb (27:55cb) text "Bleaah!" line "I hope ERIKA" - next "wipes you out!" + cont "wipes you out!" done _CeladonGymBattleText3: ; 9d5f0 (27:55f0) @@ -127879,11 +127879,11 @@ _CeladonGymEndBattleText3: ; 9d606 (27:5606) _CeladonGymAfterBattleText3: ; 9d612 (27:5612) text "Grass-type #MON" line "are tough against" - next "the water-type!" + cont "the water-type!" - page "They also have an" + para "They also have an" line "edge on rock and" - next "ground #MON!" + cont "ground #MON!" done _CeladonGymBattleText4: ; 9d675 (27:5675) @@ -127899,14 +127899,14 @@ _CeladonGymEndBattleText4: ; 9d691 (27:5691) _CeladonGymAfterBattleText4: ; 9d69f (27:569f) text "Oh, you weren't" line "peeping? We get a" - next "lot of gawkers!" + cont "lot of gawkers!" done _CeladonGymBattleText5: ; 9d6d1 (27:56d1) text "Look at my grass" line "#MON!" - page "They're so easy" + para "They're so easy" line "to raise!" done @@ -127917,17 +127917,17 @@ _CeladonGymEndBattleText5: ; 9d702 (27:5702) _CeladonGymAfterBattleText5: ; 9d707 (27:5707) text "We only use grass-" line "type #MON at" - next "our GYM!" + cont "our GYM!" - page "We also use them" + para "We also use them" line "for making flower" - next "arrangements!" + cont "arrangements!" done _CeladonGymBattleText6: ; 9d762 (27:5762) text "Don't bring any" line "bugs or fire" - next "#MON in here!" + cont "#MON in here!" done _CeladonGymEndBattleText6: ; 9d78d (27:578d) @@ -127938,14 +127938,14 @@ _CeladonGymEndBattleText6: ; 9d78d (27:578d) _CeladonGymAfterBattleText6: ; 9d797 (27:5797) text "Our LEADER, ERIKA," line "might be quiet," - next "but she's also" - next "very skilled!" + cont "but she's also" + cont "very skilled!" done _CeladonGymBattleText7: ; 9d7d7 (27:57d7) text "Pleased to meet" line "you. My hobby is" - next "#MON training." + cont "#MON training." done _CeladonGymEndBattleText7: ; 9d808 (27:5808) @@ -127956,17 +127956,17 @@ _CeladonGymEndBattleText7: ; 9d808 (27:5808) _CeladonGymAfterBattleText7: ; 9d817 (27:5817) text "I have a blind" line "date coming up." - next "I have to learn" - next "to be polite." + cont "I have to learn" + cont "to be polite." done _CeladonGymBattleText8: ; 9d855 (27:5855) text "Welcome to" line "CELADON GYM!" - page "You better not" + para "You better not" line "underestimate" - next "girl power!" + cont "girl power!" done _CeladonGymEndBattleText8: ; 9d897 (27:5897) @@ -127978,29 +127978,29 @@ _CeladonGymAfterBattleText8: ; 9d8a4 (27:58a4) text "I didn't bring my" line "best #MON!" - page "Wait 'til next" + para "Wait 'til next" line "time!" done _CeladonGameCornerText1: ; 9d8d5 (27:58d5) text "Welcome!" - page "You can exchange" + para "You can exchange" line "your coins for" - next "fabulous prizes" - next "next door." + cont "fabulous prizes" + cont "next door." done _UnnamedText_48d22: ; 9d91a (27:591a) text "Welcome to ROCKET" line "GAME CORNER!" - page "Do you need some" + para "Do you need some" line "game coins?" - page "It's ¥1000 for 50" + para "It's ¥1000 for 50" line "coins. Would you" - next "like some?" + cont "like some?" done _UnnamedText_48d27: ; 9d984 (27:5984) @@ -128031,15 +128031,15 @@ _UnnamedText_48d3b: ; 9da00 (27:5a00) _CeladonGameCornerText3: ; 9da1c (27:5a1c) text "Keep this quiet." - page "It's rumored that" + para "It's rumored that" line "this place is run" - next "by TEAM ROCKET." + cont "by TEAM ROCKET." done _CeladonGameCornerText4: ; 9da61 (27:5a61) text "I think these" line "machines have" - next "different odds." + cont "different odds." done _UnnamedText_48d9c: ; 9da8e (27:5a8e) @@ -128069,34 +128069,34 @@ _CeladonGameCornerText6: ; 9daf4 (27:5af4) _UnnamedText_48dca: ; 9db11 (27:5b11) text "Hey!" - page "You have better" + para "You have better" line "things to do," - next "champ in making!" + cont "champ in making!" - page "CELADON GYM's" + para "CELADON GYM's" line "LEADER is ERIKA!" - next "She uses grass-" - next "type #MON!" + cont "She uses grass-" + cont "type #MON!" - page "She might appear" + para "She might appear" line "docile, but don't" - next "be fooled!" + cont "be fooled!" done _UnnamedText_48dcf: ; 9dbac (27:5bac) text "They offer rare" line "#MON that can" - next "be exchanged for" - next "your coins." + cont "be exchanged for" + cont "your coins." - page "But, I just can't" + para "But, I just can't" line "seem to win!" done _CeladonGameCornerText8: ; 9dc06 (27:5c06) text "Games are scary!" line "It's so easy to" - next "get hooked!" + cont "get hooked!" done _UnnamedText_48e26: ; 9dc33 (27:5c33) @@ -128116,14 +128116,14 @@ _UnnamedText_48e31: ; 9dc66 (27:5c66) _UnnamedText_48e36: ; 9dc7f (27:5c7f) text "Darn! I need more" line "coins for the" - next "#MON I want!" + cont "#MON I want!" done _UnnamedText_48e88: ; 9dcad (27:5cad) text "Hey, what? You're" line "throwing me off!" - next "Here are some" - next "coins, shoo!" + cont "Here are some" + cont "coins, shoo!" prompt _UnnamedText_48e8d: ; 9dceb (27:5ceb) @@ -128138,13 +128138,13 @@ _UnnamedText_48e93: ; 9dd02 (27:5d02) _UnnamedText_48e98: ; 9dd1d (27:5d1d) text "The trick is to" line "watch the reels" - next "closely!" + cont "closely!" done _UnnamedText_48ece: ; 9dd47 (27:5d47) text "I'm guarding this" line "poster!" - next "Go away, or else!" + cont "Go away, or else!" done _UnnamedText_48ed3: ; 9dd73 (27:5d73) @@ -128154,15 +128154,15 @@ _UnnamedText_48ed3: ; 9dd73 (27:5d73) _UnnamedText_48ed8: ; 9dd7a (27:5d7a) text "Our hideout might" line "be discovered! I" - next "better tell BOSS!" + cont "better tell BOSS!" done _UnnamedText_48f09: ; 9ddb0 (27:5db0) text "Hey!" - page "A switch behind" + para "A switch behind" line "the poster!?" - next "Let's push it!@@" + cont "Let's push it!@@" _UnnamedText_48f19: ; 9dde2 (27:5de2) text "Oops! Forgot the" @@ -128172,25 +128172,25 @@ _UnnamedText_48f19: ; 9dde2 (27:5de2) _CeladonMart5Text1: ; 9ddff (27:5dff) text "#MON ability" line "enhancers can be" - next "bought only here." + cont "bought only here." - page "Use CALCIUM to" + para "Use CALCIUM to" line "increase SPECIAL" - next "abilities." + cont "abilities." - page "Use CARBOS to" + para "Use CARBOS to" line "increase SPEED." done _CeladonMart5Text2: ; 9de79 (27:5e79) text "I'm here for" line "#MON ability" - next "enhancers." + cont "enhancers." - page "PROTEIN increases" + para "PROTEIN increases" line "ATTACK power." - page "IRON increases" + para "IRON increases" line "DEFENSE!" done @@ -128202,7 +128202,7 @@ _CeladonPrizeRoomText1: ; 9dee6 (27:5ee6) text "I sure do fancy" line "that PORYGON!" - page "But, it's hard to" + para "But, it's hard to" line "win at slots!" done @@ -128214,44 +128214,44 @@ _CeladonPrizeRoomText2: ; 9df24 (27:5f24) _CeladonDinerText1: ; 9df3f (27:5f3f) text "Hi!" - page "We're taking a" + para "We're taking a" line "break now." done _CeladonDinerText2: ; 9df5d (27:5f5d) text "My #MON are" line "weak, so I often" - next "have to go to the" - next "DRUG STORE." + cont "have to go to the" + cont "DRUG STORE." done _CeladonDinerText3: ; 9df99 (27:5f99) text "Psst! There's a" line "basement under" - next "the GAME CORNER." + cont "the GAME CORNER." done _CeladonDinerText4: ; 9dfc9 (27:5fc9) text "Munch..." - page "The man at that" + para "The man at that" line "table lost it all" - next "at the slots." + cont "at the slots." done _UnnamedText_491a7: ; 9e003 (27:6003) text "Go ahead! Laugh!" - page "I'm flat out" + para "I'm flat out" line "busted!" - page "No more slots for" + para "No more slots for" line "me! I'm going" - next "straight!" + cont "straight!" - page "Here! I won't be" + para "Here! I won't be" line "needing this any-" - next "more!" + cont "more!" prompt _ReceivedCoinCaseText: ; 9e07a (27:607a) @@ -128268,46 +128268,46 @@ _CoinCaseNoRoomText: ; 9e090 (27:6090) _UnnamedText_491b7: ; 9e0a5 (27:60a5) text "I always thought" line "I was going to" - next "win it back..." + cont "win it back..." done _CeladonHouseText1: ; 9e0d5 (27:60d5) text "Hehehe! The slots" line "just reel in the" - next "dough, big time!" + cont "dough, big time!" done _CeladonHouseText2: ; 9e10a (27:610a) text "CHIEF!" - page "We just shipped" + para "We just shipped" line "2000 #MON as" - next "slot prizes!" + cont "slot prizes!" done _CeladonHouseText3: ; 9e13c (27:613c) text "Don't touch the" line "poster at the" - next "GAME CORNER!" + cont "GAME CORNER!" - page "There's no secret" + para "There's no secret" line "switch behind it!" done _CeladonHotelText1: ; 9e18a (27:618a) text "#MON? No, this" line "is a hotel for" - next "people." + cont "people." - page "We're full up." + para "We're full up." done _CeladonHotelText2: ; 9e1bf (27:61bf) text "I'm on vacation" line "with my brother" - next "and boy friend." + cont "and boy friend." - page "CELADON is such a" + para "CELADON is such a" line "pretty city!" done @@ -128320,23 +128320,23 @@ _FuchsiaMartText2: ; 9e22e (27:622e) text "Do you have a" line "SAFARI ZONE flag?" - page "What about cards" + para "What about cards" line "or calendars?" done _FuchsiaMartText3: ; 9e26e (27:626e) text "Did you try X" line "SPEED? It speeds" - next "up a #MON in" - next "battle!" + cont "up a #MON in" + cont "battle!" done _FuchsiaHouse1Text1: ; 9e2a3 (27:62a3) text "SAFARI ZONE's" line "WARDEN is old," - next "but still active!" + cont "but still active!" - page "All his teeth are" + para "All his teeth are" line "false, though." done @@ -128344,49 +128344,49 @@ _FuchsiaHouse1Text2: ; 9e2f3 (27:62f3) text "Hmm? You've met" line "BILL?" - page "He's my grandson!" + para "He's my grandson!" - page "He always liked" + para "He always liked" line "collecting things" - next "even as a child!" + cont "even as a child!" done _FuchsiaHouse1Text3: ; 9e34d (27:634d) text "BILL files his" line "own #MON data" - next "on his PC!" + cont "on his PC!" - page "Did he show you?" + para "Did he show you?" done _FuchsiaPokecenterText1: ; 9e387 (27:6387) text "You can't win" line "with just one" - next "strong #MON." + cont "strong #MON." - page "It's tough, but" + para "It's tough, but" line "you have to raise" - next "them evenly." + cont "them evenly." done _FuchsiaPokecenterText3: ; 9e3de (27:63de) text "There's a narrow" line "trail west of" - next "VIRIDIAN CITY." + cont "VIRIDIAN CITY." - page "It goes to #MON" + para "It goes to #MON" line "LEAGUE HQ." - next "The HQ governs" - next "all trainers." + cont "The HQ governs" + cont "all trainers." done _WardenGibberishText1: ; 9e444 (27:6444) text "WARDEN: Hif fuff" line "hefifoo!" - page "Ha lof ha feef ee" + para "Ha lof ha feef ee" line "hafahi ho. Heff" - next "hee fwee!" + cont "hee fwee!" done _WardenGibberishText2: ; 9e48b (27:648b) @@ -128402,7 +128402,7 @@ _WardenGibberishText3: ; 9e4b0 (27:64b0) _WardenTeethText1: ; 9e4d2 (27:64d2) text $52, " gave the" line "GOLD TEETH to the" - next "WARDEN!@@" + cont "WARDEN!@@" _WardenTeethText2: ; 9e4f9 (27:64f9) text $51 @@ -128413,14 +128413,14 @@ _WardenTeethText2: ; 9e4f9 (27:64f9) _WardenThankYouText: ; 9e51b (27:651b) text "WARDEN: Thanks," line "kid! No one could" - next "understand a word" - next "that I said." + cont "understand a word" + cont "that I said." - page "I couldn't work" + para "I couldn't work" line "that way." - next "Let me give you" - next "something for" - next "your trouble." + cont "Let me give you" + cont "something for" + cont "your trouble." prompt _ReceivedHM04Text: ; 9e5a2 (27:65a2) @@ -128433,19 +128433,19 @@ _HM04ExplanationText: ; 9e5b6 (27:65b6) text "WARDEN: HM04" line "teaches STRENGTH!" - page "It lets #MON" + para "It lets #MON" line "move boulders" - next "when you're out-" - next "side of battle." + cont "when you're out-" + cont "side of battle." - page "Oh yes, did you" + para "Oh yes, did you" line "find SECRET HOUSE" - next "in SAFARI ZONE?" + cont "in SAFARI ZONE?" - page "If you do, you" + para "If you do, you" line "win an HM!" - page "I hear it's the" + para "I hear it's the" line "rare SURF HM." done @@ -128472,29 +128472,29 @@ _SafariZoneEntranceText1: ; 9e6c7 (27:66c7) UnnamedText_9e6e4: ; 9e6e4 (27:66e4) text "For just ¥500," line "you can catch all" - next "the #MON you" - next "want in the park!" + cont "the #MON you" + cont "want in the park!" - page "Would you like to" + para "Would you like to" line "join the hunt?@@" UnnamedText_9e747: ; 9e747 (27:6747) text "That'll be ¥500" line "please!" - page "We only use a" + para "We only use a" line "special # BALL" - next "here." + cont "here." - page $52, " received" + para $52, " received" line "30 SAFARI BALLs!@@" _UnnamedText_75360: ; 9e79f (27:679f) db $0 - page "We'll call you on" + para "We'll call you on" line "the PA when you" - next "run out of time" - next "or SAFARI BALLs!" + cont "run out of time" + cont "or SAFARI BALLs!" done _UnnamedText_75365: ; 9e7e3 (27:67e3) @@ -128513,7 +128513,7 @@ UnnamedText_9e814: ; 9e814 (27:6814) _UnnamedText_753bb: ; 9e825 (27:6825) text "Please return any" line "SAFARI BALLs you" - next "have left." + cont "have left." done _UnnamedText_753c0: ; 9e854 (27:6854) @@ -128523,7 +128523,7 @@ _UnnamedText_753c0: ; 9e854 (27:6854) _UnnamedText_753c5: ; 9e860 (27:6860) text "Did you get a" line "good haul?" - next "Come again!" + cont "Come again!" done _UnnamedText_753e6: ; 9e886 (27:6886) @@ -128535,22 +128535,22 @@ _UnnamedText_753eb: ; 9e8a7 (27:68a7) text "SAFARI ZONE has 4" line "zones in it." - page "Each zone has" + para "Each zone has" line "different kinds" - next "of #MON. Use" - next "SAFARI BALLs to" - next "catch them!" + cont "of #MON. Use" + cont "SAFARI BALLs to" + cont "catch them!" - page "When you run out" + para "When you run out" line "of time or SAFARI" - next "BALLs, it's game" - next "over for you!" + cont "BALLs, it's game" + cont "over for you!" - page "Before you go," + para "Before you go," line "open an unused" - next "#MON BOX so" - next "there's room for" - next "new #MON!" + cont "#MON BOX so" + cont "there's room for" + cont "new #MON!" done _UnnamedText_753f0: ; 9e993 (27:6993) @@ -128561,27 +128561,27 @@ _UnnamedText_753f0: ; 9e993 (27:6993) _UnnamedText_75581: ; 9e9b1 (27:69b1) text "KOGA: Fwahahaha!" - page "A mere child like" + para "A mere child like" line "you dares to" - next "challenge me?" + cont "challenge me?" - page "Very well, I" + para "Very well, I" line "shall show you" - next "true terror as a" - next "ninja master!" + cont "true terror as a" + cont "ninja master!" - page "You shall feel" + para "You shall feel" line "the despair of" - next "poison and sleep" - next "techniques!" + cont "poison and sleep" + cont "techniques!" done _UnnamedText_75586: ; 9ea66 (27:6a66) text "Humph!" line "You have proven" - next "your worth!" + cont "your worth!" - page "Here! Take the" + para "Here! Take the" line "SOULBADGE!" prompt @@ -128590,26 +128590,26 @@ SECTION "bank28",ROMX,BANK[$28] _UnnamedText_7558b: ; a0000 (28:4000) text "When afflicted by" line "TOXIC, #MON" - next "suffer more and" - next "more as battle" - next "progresses!" + cont "suffer more and" + cont "more as battle" + cont "progresses!" - page "It will surely" + para "It will surely" line "terrorize foes!" done _UnnamedText_75590: ; a0069 (28:4069) text "Now that you have" line "the SOULBADGE," - next "the DEFENSE of" - next "your #MON" - next "increases!" + cont "the DEFENSE of" + cont "your #MON" + cont "increases!" - page "It also lets you" + para "It also lets you" line "SURF outside of" - next "battle!" + cont "battle!" - page "Ah! Take this" + para "Ah! Take this" line "too!" done @@ -128624,9 +128624,9 @@ _TM06ExplanationText: ; a00ff (28:40ff) db "TM06 contains" line "TOXIC!" - page "It is a secret" + para "It is a secret" line "technique over" - next "400 years old!" + cont "400 years old!" done _TM06NoRoomText: ; a0143 (28:4143) @@ -128637,13 +128637,13 @@ _TM06NoRoomText: ; a0143 (28:4143) _FuchsiaGymBattleText1: ; a0160 (28:4160) text "Strength isn't" line "the key for" - next "#MON!" + cont "#MON!" - page "It's strategy!" + para "It's strategy!" - page "I'll show you how" + para "I'll show you how" line "strategy can beat" - next "brute strength!" + cont "brute strength!" done _FuchsiaGymEndBattleText1: ; a01c2 (28:41c2) @@ -128654,13 +128654,13 @@ _FuchsiaGymEndBattleText1: ; a01c2 (28:41c2) _FuchsiaGymAfterBattleText1: ; a01d8 (28:41d8) text "So, you mix brawn" line "with brains?" - next "Good strategy!" + cont "Good strategy!" done _FuchsiaGymBattleText2: ; a0207 (28:4207) text "I wanted to become" line "a ninja, so I" - next "joined this GYM!" + cont "joined this GYM!" done _FuchsiaGymEndBattleText2: ; a023a (28:423a) @@ -128671,14 +128671,14 @@ _FuchsiaGymEndBattleText2: ; a023a (28:423a) _FuchsiaGymAfterBattleText2: ; a0248 (28:4248) text "I will keep on" line "training under" - next "KOGA, my ninja" - next "master!" + cont "KOGA, my ninja" + cont "master!" done _FuchsiaGymBattleText3: ; a027e (28:427e) text "Let's see you" line "beat my special" - next "techniques!" + cont "techniques!" done _FuchsiaGymEndBattleText3: ; a02a8 (28:42a8) @@ -128689,16 +128689,16 @@ _FuchsiaGymEndBattleText3: ; a02a8 (28:42a8) _FuchsiaGymAfterBattleText3: ; a02bc (28:42bc) text "I like poison and" line "sleep techniques," - next "as they linger" - next "after battle!" + cont "as they linger" + cont "after battle!" done _FuchsiaGymBattleText4: ; a02fe (28:42fe) text "Stop right there!" - page "Our invisible" + para "Our invisible" line "walls have you" - next "frustrated?" + cont "frustrated?" done _FuchsiaGymEndBattleText4: ; a033a (28:433a) @@ -128710,19 +128710,19 @@ _FuchsiaGymAfterBattleText4: ; a034d (28:434d) text "You impressed me!" line "Here's a hint!" - page "Look very closely" + para "Look very closely" line "for gaps in the" - next "invisible walls!" + cont "invisible walls!" done _FuchsiaGymBattleText5: ; a03a1 (28:43a1) text "I also study the" line "way of the ninja" - next "with master KOGA!" + cont "with master KOGA!" - page "Ninja have a long" + para "Ninja have a long" line "history of using" - next "animals!" + cont "animals!" done _FuchsiaGymEndBattleText5: ; a0402 (28:4402) @@ -128737,9 +128737,9 @@ _FuchsiaGymAfterBattleText5: ; a0409 (28:4409) _FuchsiaGymBattleText6: ; a0426 (28:4426) text "Master KOGA comes" line "from a long line" - next "of ninjas!" + cont "of ninjas!" - page "What did you" + para "What did you" line "descend from?" done @@ -128751,72 +128751,72 @@ _FuchsiaGymEndBattleText6: ; a0470 (28:4470) _FuchsiaGymAfterBattleText6: ; a0483 (28:4483) text "Where there is" line "light, there is" - next "shadow!" + cont "shadow!" - page "Light and shadow!" + para "Light and shadow!" line "Which do you" - next "choose?" + cont "choose?" done _UnnamedText_7564e: ; a04d2 (28:44d2) text "Yo! Champ in" line "making!" - page "FUCHSIA GYM is" + para "FUCHSIA GYM is" line "riddled with" - next "invisible walls!" + cont "invisible walls!" - page "KOGA might appear" + para "KOGA might appear" line "close, but he's" - next "blocked off!" + cont "blocked off!" - page "You have to find" + para "You have to find" line "gaps in the walls" - next "to reach him!" + cont "to reach him!" done _UnnamedText_75653: ; a0574 (28:4574) text "It's amazing how" line "ninja can terrify" - next "even now!" + cont "even now!" done _FuchsiaMeetingRoomText1: ; a05a1 (28:45a1) text "We nicknamed the" line "WARDEN SLOWPOKE." - page "He and SLOWPOKE" + para "He and SLOWPOKE" line "both look vacant!" done _FuchsiaMeetingRoomText2: ; a05e6 (28:45e6) text "SLOWPOKE is very" line "knowledgeable" - next "about #MON!" + cont "about #MON!" - page "He even has some" + para "He even has some" line "fossils of rare," - next "extinct #MON!" + cont "extinct #MON!" done _FuchsiaMeetingRoomText3: ; a0642 (28:4642) text "SLOWPOKE came in," line "but I couldn't" - next "understand him." + cont "understand him." - page "I think he's got" + para "I think he's got" line "a speech problem!" done _UnnamedText_561bd: ; a0695 (28:4695) text "I'm the FISHING" line "GURU's older" - next "brother!" + cont "brother!" - page "I simply Looove" + para "I simply Looove" line "fishing!" - page "Do you like to" + para "Do you like to" line "fish?" done @@ -128824,10 +128824,10 @@ _UnnamedText_561c2: ; a06e8 (28:46e8) text "Grand! I like" line "your style!" - page "Take this and" + para "Take this and" line "fish, young one!" - page $52, " received" + para $52, " received" line "a @" TX_RAM $cf4b text "!@@" @@ -128841,21 +128841,21 @@ _UnnamedText_56217: ; a0758 (28:4758) text "Hello there," line $52, "!" - page "How are the fish" + para "How are the fish" line "biting?" done _UnnamedText_5621c: ; a0782 (28:4782) text "Oh no!" - page "You have no room" + para "You have no room" line "for my gift!" done _Mansion1BattleText2: ; a07a8 (28:47a8) text "Who are you? There" line "shouldn't be" - next "anyone here." + cont "anyone here." done _Mansion1EndBattleText2: ; a07d5 (28:47d5) @@ -128865,13 +128865,13 @@ _Mansion1EndBattleText2: ; a07d5 (28:47d5) _Mansion1AfterBattleText2: ; a07dc (28:47dc) text "A key? I don't" line "know what you're" - next "talking about." + cont "talking about." done _UnnamedText_44395: ; a080a (28:480a) text "A secret switch!" - page "Press it?" + para "Press it?" done _UnnamedText_4439a: ; a0826 (28:4826) @@ -128885,15 +128885,15 @@ _UnnamedText_4439f: ; a0834 (28:4834) _UnnamedText_75914: ; a0844 (28:4844) text "Hah!" - page "I am BLAINE! I" + para "I am BLAINE! I" line "am the LEADER of" - next "CINNABAR GYM!" + cont "CINNABAR GYM!" - page "My fiery #MON" + para "My fiery #MON" line "will incinerate" - next "all challengers!" + cont "all challengers!" - page "Hah! You better" + para "Hah! You better" line "have BURN HEAL!" done @@ -128901,27 +128901,27 @@ UnnamedText_a08c7: ; a08c7 (28:48c7) text "I have" line "burnt out!" - page "You have earned" + para "You have earned" line "the VOLCANOBADGE!@@" _UnnamedText_75920: ; a08fd (28:48fd) text "FIRE BLAST is the" line "ultimate fire" - next "technique!" + cont "technique!" - page "Don't waste it on" + para "Don't waste it on" line "water #MON!" done _UnnamedText_75925: ; a0946 (28:4946) text "Hah!" - page "The VOLCANOBADGE" + para "The VOLCANOBADGE" line "heightens the" - next "SPECIAL abilities" - next "of your #MON!" + cont "SPECIAL abilities" + cont "of your #MON!" - page "Here, you can" + para "Here, you can" line "have this too!" done @@ -128936,12 +128936,12 @@ _TM38ExplanationText: ; a09bc (28:49bc) db "TM38 contains" line "FIRE BLAST!" - page "Teach it to fire-" + para "Teach it to fire-" line "type #MON!" - page "CHARMELEON or" + para "CHARMELEON or" line "PONYTA would be" - next "good bets!" + cont "good bets!" done _TM38NoRoomText: ; a0a1e (28:4a1e) @@ -128952,7 +128952,7 @@ _TM38NoRoomText: ; a0a1e (28:4a1e) _UnnamedText_7595f: ; a0a36 (28:4a36) text "Do you know how" line "hot #MON fire" - next "breath can get?" + cont "breath can get?" done _UnnamedText_75964: ; a0a65 (28:4a65) @@ -128963,16 +128963,16 @@ _UnnamedText_75964: ; a0a65 (28:4a65) _UnnamedText_75969: ; a0a7a (28:4a7a) text "Fire, or to be" line "more precise," - next "combustion..." + cont "combustion..." - page "Blah, blah, blah," + para "Blah, blah, blah," line "blah..." done _UnnamedText_75994: ; a0ac0 (28:4ac0) text "I was a thief, but" line "I became straight" - next "as a trainer!" + cont "as a trainer!" done _UnnamedText_75999: ; a0af4 (28:4af4) @@ -128983,13 +128983,13 @@ _UnnamedText_75999: ; a0af4 (28:4af4) _UnnamedText_7599e: ; a0b02 (28:4b02) text "I can't help" line "stealing other" - next "people's #MON!" + cont "people's #MON!" done _UnnamedText_759c9: ; a0b2c (28:4b2c) text "You can't win!" line "I have studied" - next "#MON totally!" + cont "#MON totally!" done _UnnamedText_759ce: ; a0b58 (28:4b58) @@ -129000,7 +129000,7 @@ _UnnamedText_759ce: ; a0b58 (28:4b58) _UnnamedText_759d3: ; a0b6b (28:4b6b) text "My theories are" line "too complicated" - next "for you!" + cont "for you!" done _UnnamedText_759fe: ; a0b95 (28:4b95) @@ -129016,7 +129016,7 @@ _UnnamedText_75a03: ; a0bb3 (28:4bb3) _UnnamedText_75a08: ; a0bc7 (28:4bc7) text "I wish there was" line "a thief #MON!" - next "I'd use that!" + cont "I'd use that!" done _UnnamedText_75a33: ; a0bf4 (28:4bf4) @@ -129031,18 +129031,18 @@ _UnnamedText_75a38: ; a0c19 (28:4c19) _UnnamedText_75a3d: ; a0c1e (28:4c1e) text "BLAINE was lost" line "in the mountains" - next "when a fiery bird" - next "#MON appeared." + cont "when a fiery bird" + cont "#MON appeared." - page "Its light enabled" + para "Its light enabled" line "BLAINE to find" - next "his way down!" + cont "his way down!" done _UnnamedText_75a68: ; a0c90 (28:4c90) text "I've been to many" line "GYMs, but this is" - next "my favorite!" + cont "my favorite!" done _UnnamedText_75a6d: ; a0cc1 (28:4cc1) @@ -129053,7 +129053,7 @@ _UnnamedText_75a6d: ; a0cc1 (28:4cc1) _UnnamedText_75a72: ; a0cd2 (28:4cd2) text "Us fire #MON" line "fans like PONYTA" - next "and NINETALES!" + cont "and NINETALES!" done _UnnamedText_75a9d: ; a0d00 (28:4d00) @@ -129069,21 +129069,21 @@ _UnnamedText_75aa2: ; a0d1b (28:4d1b) _UnnamedText_75aa7: ; a0d2d (28:4d2d) text "Water beats fire!" line "But, fire melts" - next "ice #MON!" + cont "ice #MON!" done _UnnamedText_75ac2: ; a0d5a (28:4d5a) text "Yo! Champ in" line "making!" - page "The hot-headed" + para "The hot-headed" line "BLAINE is a fire" - next "#MON pro!" + cont "#MON pro!" - page "Douse his spirits" + para "Douse his spirits" line "with water!" - page "You better take" + para "You better take" line "some BURN HEALs!" done @@ -129096,15 +129096,15 @@ _Lab1Text1: ; a0df7 (28:4df7) text "We study #MON" line "extensively here." - page "People often bring" + para "People often bring" line "us rare #MON" - next "for examination." + cont "for examination." done _Lab1Text2: ; a0e49 (28:4e49) text "A photo of the" line "LAB's founder," - next "DR.FUJI!" + cont "DR.FUJI!" done _Lab1Text3: ; a0e70 (28:4e70) @@ -129125,18 +129125,18 @@ _Lab1Text5: ; a0e9e (28:4e9e) _Lab2Text1: ; a0eb5 (28:4eb5) text "I found this very" line "strange fossil in" - next "MT.MOON!" + cont "MT.MOON!" - page "I think it's a" + para "I think it's a" line "rare, prehistoric" - next "#MON!" + cont "#MON!" done _TM35PreReceiveText: ; a0f09 (28:4f09) text "Tch-tch-tch!" line "I made a cool TM!" - page "It can cause all" + para "It can cause all" line "kinds of fun!" prompt @@ -129149,12 +129149,12 @@ _ReceivedTM35Text: ; a0f48 (28:4f48) _TM35ExplanationText: ; a0f5d (28:4f5d) text "Tch-tch-tch!" line "That's the sound" - next "of a METRONOME!" + cont "of a METRONOME!" - page "It tweaks your" + para "It tweaks your" line "#MON's brain" - next "into using moves" - next "it doesn't know!" + cont "into using moves" + cont "it doesn't know!" done _TM35NoRoomText: ; a0fc7 (28:4fc7) @@ -129165,31 +129165,31 @@ _TM35NoRoomText: ; a0fc7 (28:4fc7) _Lab3Text2: ; a0fe3 (28:4fe3) text "EEVEE can evolve" line "into 1 of 3 kinds" - next "of #MON." + cont "of #MON." done _Lab3Text3: ; a1010 (28:5010) text "There's an e-mail" line "message!" - page "..." + para "..." - page "The 3 legendary" + para "The 3 legendary" line "bird #MON are" - next "ARTICUNO, ZAPDOS" - next "and MOLTRES." + cont "ARTICUNO, ZAPDOS" + cont "and MOLTRES." - page "Their whereabouts" + para "Their whereabouts" line "are unknown." - page "We plan to explore" + para "We plan to explore" line "the cavern close" - next "to CERULEAN." + cont "to CERULEAN." - page "From: #MON" + para "From: #MON" line "RESEARCH TEAM" - page "..." + para "..." done _Lab3Text5: ; a10d8 (28:50d8) @@ -129199,13 +129199,13 @@ _Lab3Text5: ; a10d8 (28:50d8) _UnnamedText_75dc6: ; a10e8 (28:50e8) text "Hiya!" - page "I am important" + para "I am important" line "doctor!" - page "I study here rare" + para "I study here rare" line "#MON fossils!" - page "You! Have you a" + para "You! Have you a" line "fossil for me?" prompt @@ -129217,17 +129217,17 @@ _UnnamedText_75dd0: ; a1156 (28:5156) text "I take a little" line "time!" - page "You go for walk a" + para "You go for walk a" line "little while!" done _UnnamedText_75dd5: ; a118d (28:518d) text "Where were you?" - page "Your fossil is" + para "Your fossil is" line "back to life!" - page "It was @" + para "It was @" TX_RAM $cf4b db $0 line "like I think!" @@ -129239,24 +129239,24 @@ _UnnamedText_610ae: ; a11d6 (28:51d6) TX_RAM $cd6d text "!" - page "It is fossil of" + para "It is fossil of" line "@" TX_RAM $cf4b text ", a" - next "#MON that is" - next "already extinct!" + cont "#MON that is" + cont "already extinct!" - page "My Resurrection" + para "My Resurrection" line "Machine will make" - next "that #MON live" - next "again!" + cont "that #MON live" + cont "again!" done _UnnamedText_610b3: ; a1259 (28:5259) text "So! You hurry and" line "give me that!" - page $52, " handed" + para $52, " handed" line "over @" TX_RAM $cd6d text "!" @@ -129266,7 +129266,7 @@ _UnnamedText_610b8: ; a128f (28:528f) text "I take a little" line "time!" - page "You go for walk a" + para "You go for walk a" line "little while!" done @@ -129280,28 +129280,28 @@ _CinnabarPokecenterText1: ; a12de (28:52de) text "You can cancel" line "evolution." - page "When a #MON is" + para "When a #MON is" line "evolving, you can" - next "stop it and leave" - next "it the way it is." + cont "stop it and leave" + cont "it the way it is." done _CinnabarPokecenterText3: ; a133e (28:533e) text "Do you have any" line "friends?" - page "#MON you get" + para "#MON you get" line "in trades grow" - next "very quickly." + cont "very quickly." - page "I think it's" + para "I think it's" line "worth a try!" done _CinnabarMartText2: ; a139b (28:539b) text "Don't they have X" line "ATTACK? It's good" - next "for battles!" + cont "for battles!" done _CinnabarMartText3: ; a13cb (28:53cb) @@ -129313,43 +129313,43 @@ _IndigoPlateauLobbyText1: ; a13f0 (28:53f0) text "Yo! Champ in" line "making!" - page "At #MON LEAGUE," + para "At #MON LEAGUE," line "you have to face" - next "the ELITE FOUR in" - next "succession." + cont "the ELITE FOUR in" + cont "succession." - page "If you lose, you" + para "If you lose, you" line "have to start all" - next "over again! This" - next "is it! Go for it!" + cont "over again! This" + cont "is it! Go for it!" done _IndigoPlateauLobbyText3: ; a148b (28:548b) text "From here on, you" line "face the ELITE" - next "FOUR one by one!" + cont "FOUR one by one!" - page "If you win, a" + para "If you win, a" line "door opens to the" - next "next trainer!" - next "Good luck!" + cont "next trainer!" + cont "Good luck!" done _CopycatsHouseF1Text1: ; a14f7 (28:54f7) text "My daughter is so" line "self-centered." - next "She only has a" - next "few friends." + cont "She only has a" + cont "few friends." done _CopycatsHouseF1Text2: ; a1535 (28:5535) text "My daughter likes" line "to mimic people." - page "Her mimicry has" + para "Her mimicry has" line "earned her the" - next "nickname COPYCAT" - next "around here!" + cont "nickname COPYCAT" + cont "around here!" done _CopycatsHouseF1Text3: ; a1596 (28:5596) @@ -129360,16 +129360,16 @@ _UnnamedText_5ccd4: ; a15ad (28:55ad) text $52, ": Hi! Do" line "you like #MON?" - page $52, ": Uh no, I" + para $52, ": Uh no, I" line "just asked you." - page $52, ": Huh?" + para $52, ": Huh?" line "You're strange!" - page "COPYCAT: Hmm?" + para "COPYCAT: Hmm?" line "Quit mimicking?" - page "But, that's my" + para "But, that's my" line "favorite hobby!" prompt @@ -129377,10 +129377,10 @@ _TM31PreReceiveText: ; a1636 (28:5636) text "Oh wow!" line "A # DOLL!" - page "For me?" + para "For me?" line "Thank you!" - page "You can have" + para "You can have" line "this, then!" prompt @@ -129395,20 +129395,20 @@ _TM31ExplanationText1: ; a1689 (28:5689) db "TM31 contains my" line "favorite, MIMIC!" - page "Use it on a good" + para "Use it on a good" line "#MON!@@" _TM31ExplanationText2: ; a16c5 (28:56c5) text $52, ": Hi!" line "Thanks for TM31!" - page $52, ": Pardon?" + para $52, ": Pardon?" - page $52, ": Is it" + para $52, ": Is it" line "that fun to mimic" - next "my every move?" + cont "my every move?" - page "COPYCAT: You bet!" + para "COPYCAT: You bet!" line "It's a scream!" done @@ -129419,34 +129419,34 @@ _TM31NoRoomText: ; a1733 (28:5733) _CopycatsHouseF2Text2: ; a1749 (28:5749) text "DODUO: Giiih!" - page "MIRROR MIRROR ON" + para "MIRROR MIRROR ON" line "THE WALL, WHO IS" - next "THE FAIREST ONE" - next "OF ALL?" + cont "THE FAIREST ONE" + cont "OF ALL?" done _CopycatsHouseF2Text3: ; a1792 (28:5792) text "This is a rare" line "#MON! Huh?" - next "It's only a doll!" + cont "It's only a doll!" done _CopycatsHouseF2Text6: ; a17be (28:57be) text "A game with MARIO" line "wearing a bucket" - next "on his head!" + cont "on his head!" done _UnnamedText_5cd17: ; a17ef (28:57ef) text "..." - page "My Secrets!" + para "My Secrets!" - page "Skill: Mimicry!" + para "Skill: Mimicry!" line "Hobby: Collecting" - next "dolls!" - next "Favorite #MON:" - next "CLEFAIRY!" + cont "dolls!" + cont "Favorite #MON:" + cont "CLEFAIRY!" done _UnnamedText_5cd1c: ; a1842 (28:5842) @@ -129456,15 +129456,15 @@ _UnnamedText_5cd1c: ; a1842 (28:5842) _UnnamedText_5ce8e: ; a1852 (28:5852) text "Grunt!" - page "I am the KARATE" + para "I am the KARATE" line "MASTER! I am the" - next "LEADER here!" + cont "LEADER here!" - page "You wish to" + para "You wish to" line "challenge us?" - next "Expect no mercy!" + cont "Expect no mercy!" - page "Fwaaa!" + para "Fwaaa!" done _UnnamedText_5ce93: ; a18ba (28:58ba) @@ -129476,23 +129476,23 @@ _UnnamedText_5ce98: ; a18cf (28:58cf) text "Indeed, I have" line "lost!" - page "But, I beseech" + para "But, I beseech" line "you, do not take" - next "our emblem as" - next "your trophy!" + cont "our emblem as" + cont "your trophy!" - page "In return, I will" + para "In return, I will" line "give you a prized" - next "fighting #MON!" + cont "fighting #MON!" - page "Choose whichever" + para "Choose whichever" line "one you like!" done _UnnamedText_5ce9d: ; a1972 (28:5972) text "Ho!" - page "Stay and train at" + para "Stay and train at" line "Karate with us!" done @@ -129510,7 +129510,7 @@ _FightingDojoAfterBattleText1: ; a19c3 (28:59c3) text "You wait 'til you" line "see our Master!" - page "I'm a small fry" + para "I'm a small fry" line "compared to him!" done @@ -129533,7 +129533,7 @@ _FightingDojoBattleText3: ; a1a51 (28:5a51) text "Nothing tough" line "frightens me!" - page "I break boulders" + para "I break boulders" line "for training!" done @@ -129545,15 +129545,15 @@ _FightingDojoEndBattleText3: ; a1a8d (28:5a8d) _FightingDojoAfterBattleText3: ; a1aa4 (28:5aa4) text "The only thing" line "that frightens us" - next "is psychic power!" + cont "is psychic power!" done _FightingDojoBattleText4: ; a1ad8 (28:5ad8) text "Hoohah!" - page "You're trespassing" + para "You're trespassing" line "in our FIGHTING" - next "DOJO!" + cont "DOJO!" done _FightingDojoEndBattleText4: ; a1b09 (28:5b09) @@ -129564,19 +129564,19 @@ _FightingDojoEndBattleText4: ; a1b09 (28:5b09) _FightingDojoAfterBattleText4: ; a1b1a (28:5b1a) text "The prime fighters" line "across the land" - next "train here." + cont "train here." done _WantHitmonleeText: ; a1b4a (28:5b4a) text "You want the" line "hard kicking" - next "HITMONLEE?" + cont "HITMONLEE?" done _WantHitmonchanText: ; a1b70 (28:5b70) text "You want the" line "piston punching" - next "HITMONCHAN?" + cont "HITMONCHAN?" done _OtherHitmonText: ; a1b9a (28:5b9a) @@ -129588,55 +129588,55 @@ _UnnamedText_5d162: ; a1bb4 (28:5bb4) text "I had a vision of" line "your arrival!" - page "I have had psychic" + para "I have had psychic" line "powers since I" - next "was a child." + cont "was a child." - page "I first learned" + para "I first learned" line "to bend spoons" - next "with my mind." + cont "with my mind." - page "I dislike fight-" + para "I dislike fight-" line "ing, but if you" - next "wish, I will show" - next "you my powers!" + cont "wish, I will show" + cont "you my powers!" done _UnnamedText_5d167: ; a1c73 (28:5c73) text "I'm" line "shocked!" - next "But, a loss is a" - next "loss." + cont "But, a loss is a" + cont "loss." - page "I admit I didn't" + para "I admit I didn't" line "work hard enough" - next "to win!" + cont "to win!" - page "You earned the" + para "You earned the" line "MARSHBADGE!@@" _UnnamedText_5d16e: ; a1cdc (28:5cdc) text "Everyone has" line "psychic power!" - next "People just don't" - next "realize it!" + cont "People just don't" + cont "realize it!" done _UnnamedText_5d173: ; a1d16 (28:5d16) text "The MARSHBADGE" line "makes #MON up" - next "to L70 obey you!" + cont "to L70 obey you!" - page "Stronger #MON" + para "Stronger #MON" line "will become wild," - next "ignoring your" - next "orders in battle!" + cont "ignoring your" + cont "orders in battle!" - page "Just don't raise" + para "Just don't raise" line "your #MON too" - next "much!" + cont "much!" - page "Wait, please take" + para "Wait, please take" line "this TM with you!" done @@ -129648,8 +129648,8 @@ _TM46ExplanationText: ; a1de0 (28:5de0) text $51 db "TM46 is PSYWAVE!" line "It uses powerful" - next "psychic waves to" - next "inflict damage!" + cont "psychic waves to" + cont "inflict damage!" done _TM46NoRoomText: ; a1e25 (28:5e25) @@ -129661,32 +129661,32 @@ _UnnamedText_5d1e6: ; a1e48 (28:5e48) text "Yo! Champ in" line "making!" - page "SABRINA's #MON" + para "SABRINA's #MON" line "use psychic power" - next "instead of force!" + cont "instead of force!" - page "Fighting #MON" + para "Fighting #MON" line "are weak against" - next "psychic #MON!" + cont "psychic #MON!" - page "They get creamed" + para "They get creamed" line "before they can" - next "even aim a punch!" + cont "even aim a punch!" done _UnnamedText_5d1eb: ; a1ef0 (28:5ef0) text "Psychic power," line "huh?" - page "If I had that," + para "If I had that," line "I'd make a bundle" - next "at the slots!" + cont "at the slots!" done _SaffronGymBattleText1: ; a1f33 (28:5f33) text "SABRINA is younger" line "than I, but I" - next "respect her!" + cont "respect her!" done _SaffronGymEndBattleText1: ; a1f62 (28:5f62) @@ -129697,12 +129697,12 @@ _SaffronGymEndBattleText1: ; a1f62 (28:5f62) _SaffronGymAfterBattleText1: ; a1f74 (28:5f74) text "In a battle of" line "equals, the one" - next "with the stronger" - next "will wins!" + cont "with the stronger" + cont "will wins!" - page "If you wish" + para "If you wish" line "to beat SABRINA," - next "focus on winning!" + cont "focus on winning!" done _SaffronGymBattleText2: ; a1fe0 (28:5fe0) @@ -129718,15 +129718,15 @@ _SaffronGymEndBattleText2: ; a2002 (28:6002) _SaffronGymAfterBattleText2: ; a2019 (28:6019) text "Psychic #MON" line "fear only ghosts" - next "and bugs!" + cont "and bugs!" done _SaffronGymBattleText3: ; a2042 (28:6042) text "#MON take on" line "the appearance of" - next "their trainers." + cont "their trainers." - page "Your #MON must" + para "Your #MON must" line "be tough, then!" done @@ -129738,13 +129738,13 @@ _SaffronGymEndBattleText3: ; a2091 (28:6091) _SaffronGymAfterBattleText3: ; a209d (28:609d) text "I must teach" line "better techniques" - next "to my #MON!" + cont "to my #MON!" done _SaffronGymBattleText4: ; a20c9 (28:60c9) text "You know that" line "power alone isn't" - next "enough!" + cont "enough!" done _SaffronGymEndBattleText4: ; a20f1 (28:60f1) @@ -129755,13 +129755,13 @@ _SaffronGymEndBattleText4: ; a20f1 (28:60f1) _SaffronGymAfterBattleText4: ; a2107 (28:6107) text "SABRINA just wiped" line "out the KARATE" - next "MASTER next door!" + cont "MASTER next door!" done _SaffronGymBattleText5: ; a213c (28:613c) text "You and I, our" line "#MON shall" - next "fight!" + cont "fight!" done _SaffronGymEndBattleText5: ; a215e (28:615e) @@ -129772,15 +129772,15 @@ _SaffronGymEndBattleText5: ; a215e (28:615e) _SaffronGymAfterBattleText5: ; a2171 (28:6171) text "I knew that this" line "was going to take" - next "place." + cont "place." done _SaffronGymBattleText6: ; a219c (28:619c) text "SABRINA is young," line "but she's also" - next "our LEADER!" + cont "our LEADER!" - page "You won't reach" + para "You won't reach" line "her easily!" done @@ -129792,23 +129792,23 @@ _SaffronGymEndBattleText6: ; a21e4 (28:61e4) _SaffronGymAfterBattleText6: ; a21fe (28:61fe) text "There used to be" line "2 #MON GYMs in" - next "SAFFRON." + cont "SAFFRON." - page "The FIGHTING DOJO" + para "The FIGHTING DOJO" line "next door lost" - next "its GYM status" - next "when we went and" - next "creamed them!" + cont "its GYM status" + cont "when we went and" + cont "creamed them!" done _SaffronGymBattleText7: ; a2277 (28:6277) text "SAFFRON #MON" line "GYM is famous for" - next "its psychics!" + cont "its psychics!" - page "You want to see" + para "You want to see" line "SABRINA!" - next "I can tell!" + cont "I can tell!" done _SaffronGymEndBattleText7: ; a22ca (28:62ca) @@ -129818,15 +129818,15 @@ _SaffronGymEndBattleText7: ; a22ca (28:62ca) _SaffronGymAfterBattleText7: ; a22d3 (28:62d3) text "That's right! I" line "used telepathy to" - next "read your mind!" + cont "read your mind!" done _SaffronHouse1Text1: ; a2305 (28:6305) text "Thank you for" line "writing. I hope" - next "to see you soon!" + cont "to see you soon!" - page "Hey! Don't look" + para "Hey! Don't look" line "at my letter!" done @@ -129836,58 +129836,58 @@ _SaffronHouse1Text2: ; a2352 (28:6352) _SaffronHouse1Text3: ; a2366 (28:6366) text "The COPYCAT is" line "cute! I'm getting" - next "her a # DOLL!" + cont "her a # DOLL!" done _SaffronHouse1Text4: ; a2395 (28:6395) text "I was given a PP" line "UP as a gift." - page "It's used for" + para "It's used for" line "increasing the PP" - next "of techniques!" + cont "of techniques!" done _SaffronMartText2: ; a23e3 (28:63e3) text "MAX REPEL lasts" line "longer than SUPER" - next "REPEL for keeping" - next "weaker #MON" - next "away!" + cont "REPEL for keeping" + cont "weaker #MON" + cont "away!" done _SaffronMartText3: ; a242a (28:642a) text "REVIVE is costly," line "but it revives" - next "fainted #MON!" + cont "fainted #MON!" done _SilphCo1Text1: ; a245a (28:645a) text "Welcome!" - page "The PRESIDENT is" + para "The PRESIDENT is" line "in the boardroom" - next "on 11F!" + cont "on 11F!" done _SaffronPokecenterText1: ; a248e (28:648e) text "#MON growth" line "rates differ from" - next "specie to specie." + cont "specie to specie." done _SaffronPokecenterText3: ; a24bf (28:64bf) text "SILPH CO. is very" line "famous. That's" - next "why it attracted" - next "TEAM ROCKET!" + cont "why it attracted" + cont "TEAM ROCKET!" done _TM29PreReceiveText: ; a24fe (28:64fe) text "...Wait! Don't" line "say a word!" - page "You wanted this!" + para "You wanted this!" prompt _ReceivedTM29Text: ; a252a (28:652a) @@ -129899,9 +129899,9 @@ _ReceivedTM29Text: ; a252a (28:652a) _TM29ExplanationText: ; a253e (28:653e) text "TM29 is PSYCHIC!" - page "It can lower the" + para "It can lower the" line "target's SPECIAL" - next "abilities." + cont "abilities." done _TM29NoRoomText: ; a257c (28:657c) @@ -129923,7 +129923,7 @@ _PlayerBlackedOutText: ; a25c5 (28:65c5) text $52, " is out of" line "useable #MON!" - page $52, " blacked" + para $52, " blacked" line "out!" prompt @@ -129940,7 +129940,7 @@ _PokemartTellBuyPrice: ; a2619 (28:6619) TX_RAM $cf4b text "?" line "That will be" - next "¥@" + cont "¥@" db $2, $9f, $ff, $c3 text ". OK?" done @@ -130016,7 +130016,7 @@ _UnnamedText_6fbe: ; a278a (28:678a) TX_RAM $d036 db $0 line "did not learn" - next "@" + cont "@" TX_RAM $cf4b text "!" prompt @@ -130025,19 +130025,19 @@ _UnnamedText_6fc3: ; a27a4 (28:67a4) TX_RAM $d036 text " is" line "trying to learn" - next "@" + cont "@" TX_RAM $cf4b text "!" - page "But, @" + para "But, @" TX_RAM $d036 db $0 line "can't learn more" - next "than 4 moves!" + cont "than 4 moves!" - page "Delete an older" + para "Delete an older" line "move to make room" - next "for @" + cont "for @" TX_RAM $cf4b text "?" done @@ -130050,14 +130050,14 @@ _UnnamedText_6fd7: ; a2827 (28:6827) _UnnamedText_6fdc: ; a2830 (28:6830) db $0 - page "@" + para "@" TX_RAM $d036 text " forgot" line "@" TX_RAM $cd6d text "!" - page "And..." + para "And..." prompt _UnnamedText_6fe1: ; a284d (28:684d) @@ -130069,9 +130069,9 @@ _PokemonCenterWelcomeText: ; a286d (28:686d) text "Welcome to our" line "#MON CENTER!" - page "We heal your" + para "We heal your" line "#MON back to" - next "perfect health!" + cont "perfect health!" prompt _ShallWeHealYourPokemonText: ; a28b4 (28:68b4) @@ -130087,7 +130087,7 @@ _NeedYourPokemonText: ; a28ce (28:68ce) _PokemonFightingFitText: ; a28e8 (28:68e8) text "Thank you!" line "Your #MON are" - next "fighting fit!" + cont "fighting fit!" prompt _PokemonCenterFarewellText: ; a2910 (28:6910) @@ -130098,8 +130098,8 @@ _PokemonCenterFarewellText: ; a2910 (28:6910) _CableClubNPCText7: ; a292b (28:692b) text "This area is" line "reserved for 2" - next "friends who are" - next "linked by cable." + cont "friends who are" + cont "linked by cable." done _CableClubNPCText1: ; a2969 (28:6969) @@ -130110,9 +130110,9 @@ _CableClubNPCText1: ; a2969 (28:6969) _CableClubNPCText2: ; a2985 (28:6985) text "Please apply here." - page "Before opening" + para "Before opening" line "the link, we have" - next "to save the game." + cont "to save the game." done _CableClubNPCText3: ; a29cc (28:69cc) @@ -130121,11 +130121,11 @@ _CableClubNPCText3: ; a29cc (28:69cc) _CableClubNPCText4: ; a29db (28:69db) text "The link has been" line "closed because of" - next "inactivity." + cont "inactivity." - page "Please contact" + para "Please contact" line "your friend and" - next "come again!" + cont "come again!" done SECTION "bank29",ROMX,BANK[$29] @@ -130137,7 +130137,7 @@ _CableClubNPCText5: ; a4000 (29:4000) _CableClubNPCText6: ; a4014 (29:4014) text "We're making" line "preparations." - next "Please wait." + cont "Please wait." done _UsedStrengthText: ; a403c (29:403c) @@ -130212,11 +130212,11 @@ _UnnamedText_4fe39: ; a4180 (29:4180) _UnnamedText_4fe3f: ; a418f (29:418f) text "There's no more" line "room for #MON!" - next "@" + cont "@" TX_RAM $de06 text " was" - next "sent to #MON" - next "BOX @" + cont "sent to #MON" + cont "BOX @" TX_RAM $cf4b text " on PC!" done @@ -130225,11 +130225,11 @@ _UnnamedText_4fe44: ; a41d6 (29:41d6) text "There's no more" line "room for #MON!" - page "The #MON BOX" + para "The #MON BOX" line "is full and can't" - next "accept any more!" + cont "accept any more!" - page "Change the BOX at" + para "Change the BOX at" line "a #MON CENTER!" done @@ -130238,19 +130238,19 @@ INCLUDE "text/mapPalletTown.asm" _ViridianCityText1: ; a43cc (29:43cc) text "Those # BALLs" line "at your waist!" - next "You have #MON!" + cont "You have #MON!" - page "It's great that" + para "It's great that" line "you can carry and" - next "use #MON any" - next "time, anywhere!" + cont "use #MON any" + cont "time, anywhere!" done _UnnamedText_19122: ; a4437 (29:4437) text "This #MON GYM" line "is always closed." - page "I wonder who the" + para "I wonder who the" line "LEADER is?" done @@ -130262,8 +130262,8 @@ _UnnamedText_19127: ; a4474 (29:4474) _UnnamedText_1914d: ; a4494 (29:4494) text "You want to know" line "about the 2 kinds" - next "of caterpillar" - next "#MON?" + cont "of caterpillar" + cont "#MON?" done _UnnamedText_19152: ; a44cd (29:44cd) @@ -130273,50 +130273,50 @@ _UnnamedText_19152: ; a44cd (29:44cd) _UnnamedText_19157: ; a44db (29:44db) text "CATERPIE has no" line "poison, but" - next "WEEDLE does." + cont "WEEDLE does." - page "Watch out for its" + para "Watch out for its" line "POISON STING!" done _UnnamedText_19175: ; a4525 (29:4525) text "Oh Grandpa! Don't" line "be so mean!" - next "He hasn't had his" - next "coffee yet." + cont "He hasn't had his" + cont "coffee yet." done _UnnamedText_1917a: ; a4560 (29:4560) text "When I go shop in" line "PEWTER CITY, I" - next "have to take the" - next "winding trail in" - next "VIRIDIAN FOREST." + cont "have to take the" + cont "winding trail in" + cont "VIRIDIAN FOREST." done _UnnamedText_19191: ; a45b5 (29:45b5) text "You can't go" line "through here!" - page "This is private" + para "This is private" line "property!" done _UnnamedText_191ca: ; a45ea (29:45ea) text "Yawn!" line "I must have dozed" - next "off in the sun." + cont "off in the sun." - page "I had this dream" + para "I had this dream" line "about a DROWZEE" - next "eating my dream." - next "What's this?" - next "Where did this TM" - next "come from?" + cont "eating my dream." + cont "What's this?" + cont "Where did this TM" + cont "come from?" - page "This is spooky!" + para "This is spooky!" line "Here, you can" - next "have this TM." + cont "have this TM." prompt _ReceivedTM42Text: ; a469a (29:469a) @@ -130326,7 +130326,7 @@ _ReceivedTM42Text: ; a469a (29:469a) _TM42Explanation: ; a46ad (29:46ad) text "TM42 contains" line "DREAM EATER..." - next "...Snore..." + cont "...Snore..." done _TM42NoRoomText: ; a46d7 (29:46d7) @@ -130337,12 +130337,12 @@ _TM42NoRoomText: ; a46d7 (29:46d7) _UnnamedText_1920a: ; a46f9 (29:46f9) text "Ahh, I've had my" line "coffee now and I" - next "feel great!" + cont "feel great!" - page "Sure you can go" + para "Sure you can go" line "through!" - page "Are you in a" + para "Are you in a" line "hurry?" done @@ -130350,16 +130350,16 @@ _UnnamedText_1920f: ; a4754 (29:4754) text "I see you're using" line "a #DEX." - page "When you catch a" + para "When you catch a" line "#MON, #DEX" - next "is automatically" - next "updated." + cont "is automatically" + cont "updated." - page "What? Don't you" + para "What? Don't you" line "know how to catch" - next "#MON?" + cont "#MON?" - page "I'll show you" + para "I'll show you" line "how to then." done @@ -130371,39 +130371,39 @@ _UnnamedText_19214: ; a47e6 (29:47e6) _UnnamedText_19219: ; a4807 (29:4807) text "First, you need" line "to weaken the" - next "target #MON." + cont "target #MON." done _ViridianCityText8: ; a4833 (29:4833) text "VIRIDIAN CITY " line "The Eternally" - next "Green Paradise" + cont "Green Paradise" done _ViridianCityText9: ; a4860 (29:4860) text "TRAINER TIPS" - page "Catch #MON" + para "Catch #MON" line "and expand your" - next "collection!" + cont "collection!" - page "The more you have," + para "The more you have," line "the easier it is" - next "to fight!" + cont "to fight!" done _ViridianCityText10: ; a48c3 (29:48c3) text "TRAINER TIPS" - page "The battle moves" + para "The battle moves" line "of #MON are" - next "limited by their" - next "POWER POINTs, PP." + cont "limited by their" + cont "POWER POINTs, PP." - page "To replenish PP," + para "To replenish PP," line "rest your tired" - next "#MON at a" - next "#MON CENTER!" + cont "#MON at a" + cont "#MON CENTER!" done _ViridianCityText13: ; a4949 (29:4949) @@ -130419,23 +130419,23 @@ _ViridianCityText14: ; a4961 (29:4961) _PewterCityText1: ; a497f (29:497f) text "It's rumored that" line "CLEFAIRYs came" - next "from the moon!" + cont "from the moon!" - page "They appeared " + para "They appeared " line "after MOON STONE" - next "fell on MT.MOON." + cont "fell on MT.MOON." done _PewterCityText2: ; a49e0 (29:49e0) text "There aren't many" line "serious #MON" - next "trainers here!" + cont "trainers here!" - page "They're all like" + para "They're all like" line "BUG CATCHERs," - next "but PEWTER GYM's" - next "BROCK is totally" - next "into it!" + cont "but PEWTER GYM's" + cont "BROCK is totally" + cont "into it!" done _UnnamedText_193f1: ; a4a56 (29:4a56) @@ -130446,27 +130446,27 @@ _UnnamedText_193f1: ; a4a56 (29:4a56) _UnnamedText_193f6: ; a4a75 (29:4a75) text "Weren't those" line "fossils from MT." - next "MOON amazing?" + cont "MOON amazing?" done _UnnamedText_193fb: ; a4aa2 (29:4aa2) text "Really?" line "You absolutely" - next "have to go!" + cont "have to go!" done _PewterCityText13: ; a4ac6 (29:4ac6) text "It's right here!" line "You have to pay" - next "to get in, but" - next "it's worth it!" - next "See you around!" + cont "to get in, but" + cont "it's worth it!" + cont "See you around!" done _UnnamedText_19427: ; a4b14 (29:4b14) text "Psssst!" line "Do you know what" - next "I'm doing?" + cont "I'm doing?" done _UnnamedText_1942c: ; a4b38 (29:4b38) @@ -130477,41 +130477,41 @@ _UnnamedText_1942c: ; a4b38 (29:4b38) _UnnamedText_19431: ; a4b55 (29:4b55) text "I'm spraying REPEL" line "to keep #MON" - next "out of my garden!" + cont "out of my garden!" done _UnnamedText_1945d: ; a4b87 (29:4b87) text "You're a trainer" line "right? BROCK's" - next "looking for new" - next "challengers!" - next "Follow me!" + cont "looking for new" + cont "challengers!" + cont "Follow me!" done _UnnamedText_19462: ; a4bce (29:4bce) text "If you have the" line "right stuff, go" - next "take on BROCK!" + cont "take on BROCK!" done _PewterCityText6: ; a4bfe (29:4bfe) text "TRAINER TIPS" - page "Any #MON that" + para "Any #MON that" line "takes part in" - next "battle, however" - next "short, earns EXP!" + cont "battle, however" + cont "short, earns EXP!" done _PewterCityText7: ; a4c4a (29:4c4a) text "NOTICE!" - page "Thieves have been" + para "Thieves have been" line "stealing #MON" - next "fossils at MT." - next "MOON! Please call" - next "PEWTER POLICE" - next "with any info!" + cont "fossils at MT." + cont "MOON! Please call" + cont "PEWTER POLICE" + cont "with any info!" done _PewterCityText10: ; a4cb1 (29:4cb1) @@ -130522,86 +130522,86 @@ _PewterCityText10: ; a4cb1 (29:4cb1) _PewterCityText11: ; a4ccb (29:4ccb) text "PEWTER CITY" line "#MON GYM" - next "LEADER: BROCK" + cont "LEADER: BROCK" - page "The Rock Solid" + para "The Rock Solid" line "#MON Trainer!" done _PewterCityText12: ; a4d0c (29:4d0c) text "PEWTER CITY" line "A Stone Gray" - next "City" + cont "City" done _UnnamedText_19668: ; a4d2b (29:4d2b) text $53, ": Yo!" line $52, "!" - page "You're still" + para "You're still" line "struggling along" - next "back here?" + cont "back here?" - page "I'm doing great!" + para "I'm doing great!" line "I caught a bunch" - next "of strong and" - next "smart #MON!" + cont "of strong and" + cont "smart #MON!" - page "Here, let me see" + para "Here, let me see" line "what you caught," - next $52, "!" + cont $52, "!" done _UnnamedText_1966d: ; a4dbe (29:4dbe) text "Hey!" line "Take it easy!" - next "You won already!" + cont "You won already!" prompt _UnnamedText_19672: ; a4de3 (29:4de3) text "Heh!" line "You're no match" - next "for my genius!" + cont "for my genius!" prompt _UnnamedText_19677: ; a4e07 (29:4e07) text $53, ": Hey," line "guess what?" - page "I went to BILL's" + para "I went to BILL's" line "and got him to" - next "show me his rare" - next "#MON!" + cont "show me his rare" + cont "#MON!" - page "That added a lot" + para "That added a lot" line "of pages to my" - next "#DEX!" + cont "#DEX!" - page "After all, BILL's" + para "After all, BILL's" line "world famous as a" - next "#MANIAC!" + cont "#MANIAC!" - page "He invented the" + para "He invented the" line "#MON Storage" - next "System on PC!" + cont "System on PC!" - page "Since you're using" + para "Since you're using" line "his system, go" - next "thank him!" + cont "thank him!" - page "Well, I better" + para "Well, I better" line "get rolling!" - next "Smell ya later!" + cont "Smell ya later!" done _UnnamedText_196d9: ; a4f27 (29:4f27) text "Hey! Stay out!" line "It's not your" - next "yard! Huh? Me?" + cont "yard! Huh? Me?" - page "I'm an innocent" + para "I'm an innocent" line "bystander! Don't" - next "you believe me?" + cont "you believe me?" done _ReceivedTM28Text: ; a4f82 (29:4f82) @@ -130617,14 +130617,14 @@ _TM28NoRoomText: ; a4fb3 (29:4fb3) text "Make room for" line "this!" - page "I can't run until" + para "I can't run until" line "I give it to you!" done _UnnamedText_196ee: ; a4feb (29:4feb) text "Stop!" line "I give up! I'll" - next "leave quietly!" + cont "leave quietly!" prompt _UnnamedText_196f3: ; a5010 (29:5010) @@ -130635,64 +130635,64 @@ _UnnamedText_196f3: ; a5010 (29:5010) _CeruleanCityText3: ; a5030 (29:5030) text "You're a trainer" line "too? Collecting," - next "fighting, it's a" - next "tough life." + cont "fighting, it's a" + cont "tough life." done _CeruleanCityText4: ; a506e (29:506e) text "That bush in" line "front of the shop" - next "is in the way." + cont "is in the way." - page "There might be a" + para "There might be a" line "way around." done _CeruleanCityText5: ; a50ba (29:50ba) text "You're making an" line "encyclopedia on" - next "#MON? That" - next "sounds amusing." + cont "#MON? That" + cont "sounds amusing." done _CeruleanCityText6: ; a50f6 (29:50f6) text "The people here" line "were robbed." - page "It's obvious that" + para "It's obvious that" line "TEAM ROCKET is" - next "behind this most" - next "heinous crime!" + cont "behind this most" + cont "heinous crime!" - page "Even our POLICE" + para "Even our POLICE" line "force has trouble" - next "with the ROCKETs!" + cont "with the ROCKETs!" done _UnnamedText_19730: ; a5188 (29:5188) text "OK! SLOWBRO!" line "Use SONICBOOM!" - next "Come on, SLOWBRO" - next "pay attention!" + cont "Come on, SLOWBRO" + cont "pay attention!" done _UnnamedText_19735: ; a51c5 (29:51c5) text "SLOWBRO punch!" line "No! You blew it" - next "again!" + cont "again!" done _UnnamedText_1973a: ; a51ec (29:51ec) text "SLOWBRO, WITHDRAW!" line "No! That's wrong!" - page "It's so hard to" + para "It's so hard to" line "control #MON!" - page "Your #MON's" + para "Your #MON's" line "obedience depends" - next "on your abilities" - next "as a trainer!" + cont "on your abilities" + cont "as a trainer!" done _UnnamedText_1976f: ; a526b (29:526b) @@ -130719,51 +130719,51 @@ _CeruleanCityText9: ; a52d6 (29:52d6) text "I want a bright" line "red BICYCLE!" - page "I'll keep it at" + para "I'll keep it at" line "home, so it won't" - next "get dirty!" + cont "get dirty!" done _CeruleanCityText10: ; a531f (29:531f) text "This is CERULEAN" line "CAVE! Horribly" - next "strong #MON" - next "live in there!" + cont "strong #MON" + cont "live in there!" - page "The #MON LEAGUE" + para "The #MON LEAGUE" line "champion is the" - next "only person who" - next "is allowed in!" + cont "only person who" + cont "is allowed in!" done _CeruleanCityText12: ; a539a (29:539a) text "CERULEAN CITY" line "A Mysterious," - next "Blue Aura" - next "Surrounds It" + cont "Blue Aura" + cont "Surrounds It" done _CeruleanCityText13: ; a53ce (29:53ce) text "TRAINER TIPS" - page "Pressing B Button" + para "Pressing B Button" line "during evolution" - next "cancels the whole" - next "process." + cont "cancels the whole" + cont "process." done _CeruleanCityText16: ; a541a (29:541a) text "Grass and caves" line "handled easily!" - next "BIKE SHOP" + cont "BIKE SHOP" done _CeruleanCityText17: ; a5445 (29:5445) text "CERULEAN CITY" line "#MON GYM" - next "LEADER: MISTY" + cont "LEADER: MISTY" - page "The Tomboyish" + para "The Tomboyish" line "Mermaid!" done @@ -130781,44 +130781,44 @@ _UnnamedText_44146: ; a54c0 (29:54c0) text "Hahaha, I guess" line "not." - page "That white hand" + para "That white hand" line "on your shoulder," - next "it's not real." + cont "it's not real." done _LavenderTownText2: ; a5506 (29:5506) text "This town is known" line "as the grave site" - next "of #MON." + cont "of #MON." - page "Memorial services" + para "Memorial services" line "are held in" - next "#MON TOWER." + cont "#MON TOWER." done _LavenderTownText3: ; a555f (29:555f) text "GHOSTs appeared" line "in #MON TOWER." - page "I think they're" + para "I think they're" line "the spirits of" - next "#MON that the" - next "ROCKETs killed." + cont "#MON that the" + cont "ROCKETs killed." done _LavenderTownText4: ; a55bb (29:55bb) text "LAVENDER TOWN" line "The Noble Purple" - next "Town" + cont "Town" done _LavenderTownText5: ; a55e0 (29:55e0) text "New SILPH SCOPE!" - page "Make the Invisible" + para "Make the Invisible" line "Plain to See!" - page "SILPH CO." + para "SILPH CO." done _LavenderTownText8: ; a561d (29:561d) @@ -130829,29 +130829,29 @@ _LavenderTownText8: ; a561d (29:561d) _LavenderTownText9: ; a563c (29:563c) text "May the Souls of" line "#MON Rest Easy" - next "#MON TOWER" + cont "#MON TOWER" done _VermilionCityText1: ; a5668 (29:5668) text "We're careful" line "about pollution!" - page "We've heard GRIMER" + para "We've heard GRIMER" line "multiplies in" - next "toxic sludge!" + cont "toxic sludge!" done _UnnamedText_198a7: ; a56b5 (29:56b5) text "Did you see S.S." line "ANNE moored in" - next "the harbor?" + cont "the harbor?" done _UnnamedText_198ac: ; a56e2 (29:56e2) text "So, S.S.ANNE has" line "departed!" - page "She'll be back in" + para "She'll be back in" line "about a year." done @@ -130864,7 +130864,7 @@ _SSAnneWelcomeText9: ; a5734 (29:5734) text "Welcome to S.S." line "ANNE!" - page "Excuse me, do you" + para "Excuse me, do you" line "have a ticket?" prompt @@ -130872,18 +130872,18 @@ _SSAnneFlashedTicketText: ; a576c (29:576c) text $52, " flashed" line "the S.S.TICKET!" - page "Great! Welcome to" + para "Great! Welcome to" line "S.S.ANNE!" done _SSAnneNoTicketText: ; a57a3 (29:57a3) text $52, " doesn't" line "have the needed" - next "S.S.TICKET." + cont "S.S.TICKET." - page "Sorry!" + para "Sorry!" - page "You need a ticket" + para "You need a ticket" line "to get aboard." done @@ -130894,9 +130894,9 @@ _SSAnneNotHereText: ; a57f1 (29:57f1) _VermilionCityText4: ; a5805 (29:5805) text "I'm putting up a" line "building on this" - next "plot of land." + cont "plot of land." - page "My #MON is" + para "My #MON is" line "tamping the land." done @@ -130908,50 +130908,50 @@ _VermilionCityText14: ; a586b (29:586b) text $51 db "A MACHOP is" line "stomping the land" - next "flat." + cont "flat." done _VermilionCityText6: ; a5891 (29:5891) text "S.S.ANNE is a" line "famous luxury" - next "cruise ship." + cont "cruise ship." - page "We visit VERMILION" + para "We visit VERMILION" line "once a year." done _VermilionCityText7: ; a58db (29:58db) text "VERMILION CITY" line "The Port of" - next "Exquisite Sunsets" + cont "Exquisite Sunsets" done _VermilionCityText8: ; a5909 (29:5909) text "NOTICE!" - page "ROUTE 12 may be" + para "ROUTE 12 may be" line "blocked off by a" - next "sleeping #MON." + cont "sleeping #MON." - page "Detour through" + para "Detour through" line "ROCK TUNNEL to" - next "LAVENDER TOWN." + cont "LAVENDER TOWN." - page "VERMILION POLICE" + para "VERMILION POLICE" done _VermilionCityText11: ; a5980 (29:5980) text "#MON FAN CLUB" line "All #MON fans" - next "welcome!" + cont "welcome!" done _VermilionCityText12: ; a59a6 (29:59a6) text "VERMILION CITY" line "#MON GYM" - next "LEADER: LT.SURGE" + cont "LEADER: LT.SURGE" - page "The Lightning " + para "The Lightning " line "American!" done @@ -130963,40 +130963,40 @@ _CeladonCityText1: ; a59fb (29:59fb) text "I got my KOFFING" line "in CINNABAR!" - page "It's nice, but it" + para "It's nice, but it" line "breathes poison" - next "when it's angry!" + cont "when it's angry!" done _CeladonCityText2: ; a5a4b (29:5a4b) text "Heheh! This GYM" line "is great! It's" - next "full of women!" + cont "full of women!" done _CeladonCityText3: ; a5a79 (29:5a79) text "The GAME CORNER" line "is bad for our" - next "city's image!" + cont "city's image!" done _CeladonCityText4: ; a5aa6 (29:5aa6) text "Moan! I blew it" line "all at the slots!" - page "I knew I should" + para "I knew I should" line "have cashed in my" - next "coins for prizes!" + cont "coins for prizes!" done _TM41PreText: ; a5afd (29:5afd) text "Hello, there!" - page "I've seen you," + para "I've seen you," line "but I never had a" - next "chance to talk!" + cont "chance to talk!" - page "Here's a gift for" + para "Here's a gift for" line "dropping by!" prompt @@ -131010,10 +131010,10 @@ _TM41ExplanationText: ; a5b6e (29:5b6e) text "TM41 teaches" line "SOFTBOILED!" - page "Only one #MON" + para "Only one #MON" line "can use it!" - page "That #MON is" + para "That #MON is" line "CHANSEY!" done @@ -131026,9 +131026,9 @@ _CeladonCityText6: ; a5bd9 (29:5bd9) text "This is my trusted" line "pal, POLIWRATH!" - page "It evolved from" + para "It evolved from" line "POLIWHIRL when I" - next "used WATER STONE!" + cont "used WATER STONE!" done _CeladonCityText7: ; a5c30 (29:5c30) @@ -131048,31 +131048,31 @@ _CeladonCityText9: ; a5c63 (29:5c63) _CeladonCityText10: ; a5c82 (29:5c82) text "TRAINER TIPS" - page "X ACCURACY boosts" + para "X ACCURACY boosts" line "the accuracy of" - next "techniques!" + cont "techniques!" - page "DIRE HIT jacks up" + para "DIRE HIT jacks up" line "the likelihood of" - next "critical hits!" + cont "critical hits!" - page "Get your items at" + para "Get your items at" line "CELADON DEPT." - next "STORE!" + cont "STORE!" done _CeladonCityText11: ; a5d18 (29:5d18) text "CELADON CITY" line "The City of" - next "Rainbow Dreams" + cont "Rainbow Dreams" done _CeladonCityText13: ; a5d41 (29:5d41) text "CELADON CITY" line "#MON GYM" - next "LEADER: ERIKA" + cont "LEADER: ERIKA" - page "The Nature Loving" + para "The Nature Loving" line "Princess!" done @@ -131083,62 +131083,62 @@ _CeladonCityText14: ; a5d82 (29:5d82) _CeladonCityText15: ; a5d93 (29:5d93) text "Find what you" line "need at CELADON" - next "DEPT. STORE!" + cont "DEPT. STORE!" done _CeladonCityText16: ; a5dbf (29:5dbf) text "TRAINER TIPS" - page "GUARD SPEC." + para "GUARD SPEC." line "protects #MON" - next "against SPECIAL" - next "attacks such as" - next "fire and water!" + cont "against SPECIAL" + cont "attacks such as" + cont "fire and water!" - page "Get your items at" + para "Get your items at" line "CELADON DEPT." - next "STORE!" + cont "STORE!" done _CeladonCityText17: ; a5e3e (29:5e3e) text "Coins exchanged" line "for prizes!" - next "PRIZE EXCHANGE" + cont "PRIZE EXCHANGE" done _CeladonCityText18: ; a5e6a (29:5e6a) text "ROCKET GAME CORNER" line "The playground" - next "for grown-ups!" + cont "for grown-ups!" done _FuchsiaCityText1: ; a5e9c (29:5e9c) text "Did you try the" line "SAFARI GAME? Some" - next "#MON can only" - next "be caught there." + cont "#MON can only" + cont "be caught there." done _FuchsiaCityText2: ; a5ede (29:5ede) text "SAFARI ZONE has a" line "zoo in front of" - next "the entrance." + cont "the entrance." - page "Out back is the" + para "Out back is the" line "SAFARI GAME for" - next "catching #MON." + cont "catching #MON." done _FuchsiaCityText3: ; a5f3e (29:5f3e) text "ERIK: Where's" line "SARA? I said I'd" - next "meet her here." + cont "meet her here." done _FuchsiaCityText4: ; a5f6b (29:5f6b) text "That item ball in" line "there is really a" - next "#MON." + cont "#MON." done _FuchsiaCityText5: ; a5f96 (29:5f96) @@ -131148,7 +131148,7 @@ _FuchsiaCityText5: ; a5f96 (29:5f96) _FuchsiaCityText11: ; a5f99 (29:5f99) text "FUCHSIA CITY" line "Behold! It's" - next "Passion Pink!" + cont "Passion Pink!" done _FuchsiaCityText13: ; a5fc1 (29:5fc1) @@ -131169,63 +131169,63 @@ _FuchsiaCityText17: ; a5ff6 (29:5ff6) _FuchsiaCityText18: ; a6011 (29:6011) text "FUCHSIA CITY" line "#MON GYM" - next "LEADER: KOGA" + cont "LEADER: KOGA" - page "The Poisonous" + para "The Poisonous" line "Ninja Master" done _FuchsiaCityChanseyText: ; a6050 (29:6050) text "Name: CHANSEY" - page "Catching one is" + para "Catching one is" line "all up to chance." prompt _FuchsiaCityVoltorbText: ; a6081 (29:6081) text "Name: VOLTORB" - page "The very image of" + para "The very image of" line "a # BALL." prompt _FuchsiaCityKangaskhanText: ; a60ac (29:60ac) text "Name: KANGASKHAN" - page "A maternal #MON" + para "A maternal #MON" line "that raises its" - next "young in a pouch" - next "on its belly." + cont "young in a pouch" + cont "on its belly." prompt _FuchsiaCitySlowpokeText: ; a60fd (29:60fd) text "Name: SLOWPOKE" - page "Friendly and very" + para "Friendly and very" line "slow moving." prompt _FuchsiaCityLaprasText: ; a612c (29:612c) text "Name: LAPRAS" - page "A.K.A. the king" + para "A.K.A. the king" line "of the seas." prompt _FuchsiaCityOmanyteText: ; a6157 (29:6157) text "Name: OMANYTE" - page "A #MON that" + para "A #MON that" line "was resurrected" - next "from a fossil." + cont "from a fossil." prompt _FuchsiaCityKabutoText: ; a6191 (29:6191) text "Name: KABUTO" - page "A #MON that" + para "A #MON that" line "was resurrected" - next "from a fossil." + cont "from a fossil." prompt _UnnamedText_19b2a: ; a61ca (29:61ca) @@ -131240,21 +131240,21 @@ _CinnabarIslandText8: ; a61cf (29:61cf) _CinnabarIslandText1: ; a61e6 (29:61e6) text "CINNABAR GYM's" line "BLAINE is an odd" - next "man who has lived" - next "here for decades." + cont "man who has lived" + cont "here for decades." done _CinnabarIslandText2: ; a622a (29:622a) text "Scientists conduct" line "experiments in" - next "the burned out" - next "building." + cont "the burned out" + cont "building." done _CinnabarIslandText3: ; a6266 (29:6266) text "CINNABAR ISLAND" line "The Fiery Town of" - next "Burning Desire" + cont "Burning Desire" done _CinnabarIslandText6: ; a6298 (29:6298) @@ -131264,9 +131264,9 @@ _CinnabarIslandText6: ; a6298 (29:6298) _CinnabarIslandText7: ; a62a2 (29:62a2) text "CINNABAR ISLAND" line "#MON GYM" - next "LEADER: BLAINE" + cont "LEADER: BLAINE" - page "The Hot-Headed" + para "The Hot-Headed" line "Quiz Master!" done @@ -131303,37 +131303,37 @@ _SaffronCityText6: ; a637e (29:637e) _SaffronCityText7: ; a639e (29:639e) text "With SILPH under" line "control, we can" - next "exploit #MON" - next "around the world!" + cont "exploit #MON" + cont "around the world!" done _SaffronCityText8: ; a63df (29:63df) text "You beat TEAM" line "ROCKET all alone?" - next "That's amazing!" + cont "That's amazing!" done _SaffronCityText9: ; a640f (29:640f) text "Yeah! TEAM ROCKET" line "is gone!" - next "It's safe to go" - next "out again!" + cont "It's safe to go" + cont "out again!" done _SaffronCityText10: ; a6445 (29:6445) text "People should be" line "flocking back to" - next "SAFFRON now." + cont "SAFFRON now." done _SaffronCityText11: ; a6475 (29:6475) text "I flew here on my" line "PIDGEOT when I" - next "read about SILPH." + cont "read about SILPH." - page "It's already over?" + para "It's already over?" line "I missed the" - next "media action." + cont "media action." done _SaffronCityText12: ; a64d6 (29:64d6) @@ -131342,14 +131342,14 @@ _SaffronCityText12: ; a64d6 (29:64d6) _SaffronCityText13: ; a64eb (29:64eb) text "I saw ROCKET" line "BOSS escaping" - next "SILPH's building." + cont "SILPH's building." done _SaffronCityText14: ; a6518 (29:6518) text "I'm a security" line "guard." - page "Suspicious kids I" + para "Suspicious kids I" line "don't allow in!" done @@ -131357,14 +131357,14 @@ _SaffronCityText15: ; a654f (29:654f) text "..." line "Snore..." - page "Hah! He's taking" + para "Hah! He's taking" line "a snooze!" done _SaffronCityText16: ; a6577 (29:6577) text "SAFFRON CITY" line "Shining, Golden" - next "Land of Commerce" + cont "Land of Commerce" done _SaffronCityText17: ; a65a6 (29:65a6) @@ -131374,34 +131374,34 @@ _SaffronCityText17: ; a65a6 (29:65a6) _SaffronCityText18: ; a65b5 (29:65b5) text "SAFFRON CITY" line "#MON GYM" - next "LEADER: SABRINA" + cont "LEADER: SABRINA" - page "The Master of" + para "The Master of" line "Psychic #MON!" done _SaffronCityText20: ; a65f8 (29:65f8) text "TRAINER TIPS" - page "FULL HEAL cures" + para "FULL HEAL cures" line "all ailments like" - next "sleep and burns." + cont "sleep and burns." - page "It costs a bit" + para "It costs a bit" line "more, but it's" - next "more convenient." + cont "more convenient." done _SaffronCityText21: ; a6667 (29:6667) text "TRAINER TIPS" - page "New GREAT BALL" + para "New GREAT BALL" line "offers improved" - next "capture rates." + cont "capture rates." - page "Try it on those" + para "Try it on those" line "hard-to-catch" - next "#MON." + cont "#MON." done _SaffronCityText22: ; a66c7 (29:66c7) @@ -131418,7 +131418,7 @@ _SaffronCityText25: ; a66f5 (29:66f5) text "SILPH's latest" line "product!" - page "Release to be" + para "Release to be" line "determined..." done @@ -131426,7 +131426,7 @@ _ItemUseBallText00: ; a6729 (29:6729) text "It dodged the" line "thrown BALL!" - page "This #MON" + para "This #MON" line "can't be caught!" prompt @@ -131454,14 +131454,14 @@ _ItemUseBallText05: ; a67cf (29:67cf) text "All right!",$4F,"@",1 dw W_ENEMYMONNAME text " was" - next "caught!@@" + cont "caught!@@" _ItemUseBallText07: ; a67ee (29:67ee) db 1 dw $DE06 text " was" line "transferred to" - next "BILL's PC!" + cont "BILL's PC!" prompt _ItemUseBallText08: ; a6810 (29:6810) @@ -131469,7 +131469,7 @@ _ItemUseBallText08: ; a6810 (29:6810) dw $DE06 text " was" line "transferred to" - next "someone's PC!" + cont "someone's PC!" prompt _ItemUseBallText06: ; a6835 (29:6835) @@ -131517,7 +131517,7 @@ _PlayedFluteNoEffectText: ; a68dd (29:68dd) text "Played the #" line "FLUTE." - page "Now, that's a" + para "Now, that's a" line "catchy tune!" prompt @@ -131540,7 +131540,7 @@ _CoinCaseNumCoinsText: ; a6940 (29:6940) _ItemfinderFoundItemText: ; a694f (29:694f) text "Yes! ITEMFINDER" line "indicates there's" - next "an item nearby." + cont "an item nearby." prompt _ItemfinderFoundNothingText: ; a6981 (29:6981) @@ -131588,7 +131588,7 @@ _TeachMachineMoveText: ; a6a42 (29:6a42) TX_RAM $cf4b text "!" - page "Teach @" + para "Teach @" TX_RAM $cf4b db $0 line "to a #MON?" @@ -131598,11 +131598,11 @@ _MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) TX_RAM $cd6d text " is not" line "compatible with" - next "@" + cont "@" TX_RAM $cf4b text "." - page "It can't learn" + para "It can't learn" line "@" TX_RAM $cf4b text "." @@ -131611,7 +131611,7 @@ _MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) _ItemUseNotTimeText: ; a6aa6 (29:6aa6) text "OAK: ", $52, "!" line "This isn't the" - next "time to use that! " + cont "time to use that! " prompt _ItemUseNotYoursToUseText: ; a6ad0 (29:6ad0) @@ -131647,7 +131647,7 @@ _NoSurfingHereText: ; a6b4e (29:6b4e) _BoxFullCannotThrowBallText: ; a6b69 (29:6b69) text "The #MON BOX" line "is full! Can't" - next "use that item!" + cont "use that item!" prompt SECTION "bank2A",ROMX,BANK[$2A] @@ -131716,7 +131716,7 @@ _UnnamedText_71d8d: ; a80bc (2a:40bc) line "@" TX_RAM $cd13 text " for" - next "@" + cont "@" TX_RAM $cd1e text "!@@" @@ -131726,7 +131726,7 @@ _UnnamedText_71d94: ; a80d8 (2a:40d8) TX_RAM $cd13 text "! Wanna" - page "trade one for" + para "trade one for" line "@" TX_RAM $cd1e text "? " @@ -131745,7 +131745,7 @@ UnnamedText_a812f: ; a812f (2a:412f) TX_RAM $cd13 text "!" - page "If you get one," + para "If you get one," line "come back here!" done @@ -131764,7 +131764,7 @@ _UnnamedText_71dad: ; a817c (2a:417c) text "Hello there! Do" line "you want to trade" - page "your @" + para "your @" TX_RAM $cd13 db $0 line "for @" @@ -131783,7 +131783,7 @@ _UnnamedText_71db7: ; a81d3 (2a:41d3) TX_RAM $cd13 text "." - page "Think of me when" + para "Think of me when" line "you get one." done @@ -131797,7 +131797,7 @@ _UnnamedText_71dc1: ; a8212 (2a:4212) text " you" line "traded to me" - page "went and evolved!" + para "went and evolved!" done _UnnamedText_71dc6: ; a8240 (2a:4240) @@ -131806,7 +131806,7 @@ _UnnamedText_71dc6: ; a8240 (2a:4240) TX_RAM $cd13 text "?" - page "Want to trade it" + para "Want to trade it" line "for @" TX_RAM $cd1e text "?" @@ -131822,7 +131822,7 @@ _UnnamedText_71dd0: ; a8284 (2a:4284) TX_RAM $cd13 text "." - page "If you get one," + para "If you get one," line "trade it with me!" done @@ -131836,7 +131836,7 @@ _UnnamedText_71dda: ; a82c9 (2a:42c9) TX_RAM $cd1e text "?" - page "My @" + para "My @" TX_RAM $cd13 text " is" line "doing great!" diff --git a/text/mapBluesHouse.asm b/text/mapBluesHouse.asm index 0d94460b..33fd732f 100644 --- a/text/mapBluesHouse.asm +++ b/text/mapBluesHouse.asm @@ -1,14 +1,14 @@ _DaisyInitialText: text "Hi ",$52,"!" line $53," is out at" - next "Grandpa's lab." + cont "Grandpa's lab." done _DaisyOfferMapText: text "Grandpa asked you" line "to run an errand?" - next "Here, this will" - next "help you!" + cont "Here, this will" + cont "help you!" prompt _GotMapText: @@ -25,14 +25,14 @@ _DaisyBagFullText: _DaisyUseMapText: text "Use the TOWN MAP" line "to find out where" - next "you are." + cont "you are." done _BluesHouseText2: text "#MON are living" line "things! If they" - next "get tired, give" - next "them a rest!" + cont "get tired, give" + cont "them a rest!" done _BluesHouseText3: diff --git a/text/mapPalletTown.asm b/text/mapPalletTown.asm index 06f4e379..421959d6 100644 --- a/text/mapPalletTown.asm +++ b/text/mapPalletTown.asm @@ -5,14 +5,14 @@ _OakAppearsText: _OakWalksUpText: text "OAK: It's unsafe!" line "Wild #MON live" - next "in tall grass!" + cont "in tall grass!" - page "You need your own" + para "You need your own" line "#MON for your" - next "protection." - next "I know!" + cont "protection." + cont "I know!" - page "Here, come with" + para "Here, come with" line "me!" done @@ -20,19 +20,19 @@ _PalletTownText2: text "I'm raising" line "#MON too!" - page "When they get" + para "When they get" line "strong, they can" - next "protect me!" + cont "protect me!" done _PalletTownText3: text "Technology is" line "incredible!" - page "You can now store" + para "You can now store" line "and recall items" - next "and #MON as" - next "data via PC!" + cont "and #MON as" + cont "data via PC!" done _PalletTownText4: @@ -43,7 +43,7 @@ _PalletTownText4: _PalletTownText5: text "PALLET TOWN" line "Shades of your" - next "journey await!" + cont "journey await!" done _PalletTownText6: diff --git a/text/mapRedsHouse1F.asm b/text/mapRedsHouse1F.asm index 77bec0db..4154558e 100644 --- a/text/mapRedsHouse1F.asm +++ b/text/mapRedsHouse1F.asm @@ -1,35 +1,35 @@ _MomWakeUpText: text "MOM: Right." line "All boys leave" - next "home some day." - next "It said so on TV." + cont "home some day." + cont "It said so on TV." - page "PROF.OAK, next" + para "PROF.OAK, next" line "door, is looking" - next "for you." + cont "for you." done _MomHealText1: text "MOM: ",$52,"!" line "You should take a" - next "quick rest." + cont "quick rest." prompt _MomHealText2: text "MOM: Oh good!" line "You and your" - next "#MON are" - next "looking great!" - next "Take care now!" + cont "#MON are" + cont "looking great!" + cont "Take care now!" done _StandByMeText: text "There's a movie" line "on TV. Four boys" - next "are walking on" - next "railroad tracks." + cont "are walking on" + cont "railroad tracks." - page "I better go too." + para "I better go too." done _TVWrongSideText: diff --git a/text/oakspeech.asm b/text/oakspeech.asm index 8494e61a..a5851730 100644 --- a/text/oakspeech.asm +++ b/text/oakspeech.asm @@ -1,28 +1,28 @@ _OakSpeechText1: text "Hello there!" line "Welcome to the" - next "world of #MON!" + cont "world of #MON!" - page "My name is OAK!" + para "My name is OAK!" line "People call me" - next "the #MON PROF!" + cont "the #MON PROF!" prompt _OakSpeechText2A: text "This world is" line "inhabited by" - next "creatures called" - next "#MON!@@" + cont "creatures called" + cont "#MON!@@" _OakSpeechText2B: text $51,"For some people," line "#MON are" - next "pets. Others use" - next "them for fights." + cont "pets. Others use" + cont "them for fights." - page "Myself..." + para "Myself..." - page "I study #MON" + para "I study #MON" line "as a profession." prompt @@ -34,23 +34,23 @@ _IntroducePlayerText: _IntroduceRivalText: text "This is my grand-" line "son. He's been" - next "your rival since" - next "you were a baby." + cont "your rival since" + cont "you were a baby." - page "...Erm, what is" + para "...Erm, what is" line "his name again?" prompt _OakSpeechText3: text $52,"!" - page "Your very own" + para "Your very own" line "#MON legend is" - next "about to unfold!" + cont "about to unfold!" - page "A world of dreams" + para "A world of dreams" line "and adventures" - next "with #MON" - next "awaits! Let's go!" + cont "with #MON" + cont "awaits! Let's go!" done From 7a69bfaa92d6e35267b2fbe998f199003e1b55b9 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 00:56:48 -0500 Subject: [PATCH 17/41] text macros in pokedex entries --- text/pokedex.asm | 2115 ++++++++++++++++++++++++++-------------------- 1 file changed, 1209 insertions(+), 906 deletions(-) diff --git a/text/pokedex.asm b/text/pokedex.asm index 7be03fbe..1a46f6b0 100644 --- a/text/pokedex.asm +++ b/text/pokedex.asm @@ -1,1207 +1,1510 @@ _RhydonDexEntry: - db 0,"Protected by an",$4E - db "armor-like hide,",$4E - db "it is capable of",$49 - db "living in molten",$4E - db "lava of 3,600",$4E - db "degrees",$5F,"@" + text "Protected by an" + next "armor-like hide," + next "it is capable of" + + page "living in molten" + next "lava of 3,600" + next "degrees" + dex _KangaskhanDexEntry: - db 0,"The infant rarely",$4E - db "ventures out of",$4E - db "its mother's",$49 - db "protective pouch",$4E - db "until it is 3",$4E - db "years old",$5F,"@" + text "The infant rarely" + next "ventures out of" + next "its mother's" + + page "protective pouch" + next "until it is 3" + next "years old" + dex _NidoranMDexEntry: - db 0,"Stiffens its ears",$4E - db "to sense danger.",$4E - db "The larger its",$49 - db "horns, the more",$4E - db "powerful its",$4E - db "secreted venom",$5F,"@" + text "Stiffens its ears" + next "to sense danger." + next "The larger its" + + page "horns, the more" + next "powerful its" + next "secreted venom" + dex _ClefairyDexEntry: - db 0,"Its magical and",$4E - db "cute appeal has",$4E - db "many admirers.",$49 - db "It is rare and",$4E - db "found only in",$4E - db "certain areas",$5F,"@" + text "Its magical and" + next "cute appeal has" + next "many admirers." + + page "It is rare and" + next "found only in" + next "certain areas" + dex _SpearowDexEntry: - db 0,"Eats bugs in",$4E - db "grassy areas. It",$4E - db "has to flap its",$49 - db "short wings at",$4E - db "high speed to",$4E - db "stay airborne",$5F,"@" + text "Eats bugs in" + next "grassy areas. It" + next "has to flap its" + + page "short wings at" + next "high speed to" + next "stay airborne" + dex _VoltorbDexEntry: - db 0,"Usually found in",$4E - db "power plants.",$4E - db "Easily mistaken",$49 - db "for a # BALL,",$4E - db "they have zapped",$4E - db "many people",$5F,"@" + text "Usually found in" + next "power plants." + next "Easily mistaken" + + page "for a # BALL," + next "they have zapped" + next "many people" + dex _NidokingDexEntry: - db 0,"It uses its",$4E - db "powerful tail in",$4E - db "battle to smash,",$49 - db "constrict, then",$4E - db "break the prey's",$4E - db "bones",$5F,"@" + text "It uses its" + next "powerful tail in" + next "battle to smash," + + page "constrict, then" + next "break the prey's" + next "bones" + dex _SlowbroDexEntry: - db 0,"The SHELLDER that",$4E - db "is latched onto",$4E - db "SLOWPOKE's tail",$49 - db "is said to feed",$4E - db "on the host's left",$4E - db "over scraps",$5F,"@" + text "The SHELLDER that" + next "is latched onto" + next "SLOWPOKE's tail" + + page "is said to feed" + next "on the host's left" + next "over scraps" + dex _IvysaurDexEntry: - db 0,"When the bulb on",$4E - db "its back grows",$4E - db "large, it appears",$49 - db "to lose the",$4E - db "ability to stand",$4E - db "on its hind legs",$5F,"@" + text "When the bulb on" + next "its back grows" + next "large, it appears" + + page "to lose the" + next "ability to stand" + next "on its hind legs" + dex _ExeggutorDexEntry: - db 0,"Legend has it that",$4E - db "on rare occasions,",$4E - db "one of its heads",$49 - db "will drop off and",$4E - db "continue on as an",$4E - db "EXEGGCUTE",$5F,"@" + text "Legend has it that" + next "on rare occasions," + next "one of its heads" + + page "will drop off and" + next "continue on as an" + next "EXEGGCUTE" + dex _LickitungDexEntry: - db 0,"Its tongue can be",$4E - db "extended like a",$4E - db "chameleon's. It",$49 - db "leaves a tingling",$4E - db "sensation when it",$4E - db "licks enemies",$5F,"@" + text "Its tongue can be" + next "extended like a" + next "chameleon's. It" + + page "leaves a tingling" + next "sensation when it" + next "licks enemies" + dex _ExeggcuteDexEntry: - db 0,"Often mistaken",$4E - db "for eggs.",$4E - db "When disturbed,",$49 - db "they quickly",$4E - db "gather and attack",$4E - db "in swarms",$5F,"@" + text "Often mistaken" + next "for eggs." + next "When disturbed," + + page "they quickly" + next "gather and attack" + next "in swarms" + dex _GrimerDexEntry: - db 0,"Appears in filthy",$4E - db "areas. Thrives by",$4E - db "sucking up",$49 - db "polluted sludge",$4E - db "that is pumped",$4E - db "out of factories",$5F,"@" + text "Appears in filthy" + next "areas. Thrives by" + next "sucking up" + + page "polluted sludge" + next "that is pumped" + next "out of factories" + dex _GengarDexEntry: - db 0,"Under a full moon,",$4E - db "this #MON",$4E - db "likes to mimic",$49 - db "the shadows of",$4E - db "people and laugh",$4E - db "at their fright",$5F,"@" + text "Under a full moon," + next "this #MON" + next "likes to mimic" + + page "the shadows of" + next "people and laugh" + next "at their fright" + dex _NidoranFDexEntry: - db 0,"Although small,",$4E - db "its venomous",$4E - db "barbs render this",$49 - db "#MON dangerous.",$4E - db "The female has",$4E - db "smaller horns",$5F,"@" + text "Although small," + next "its venomous" + next "barbs render this" + + page "#MON dangerous." + next "The female has" + next "smaller horns" + dex _NidoqueenDexEntry: - db 0,"Its hard scales",$4E - db "provide strong",$4E - db "protection. It",$49 - db "uses its hefty",$4E - db "bulk to execute",$4E - db "powerful moves",$5F,"@" + text "Its hard scales" + next "provide strong" + next "protection. It" + + page "uses its hefty" + next "bulk to execute" + next "powerful moves" + dex _CuboneDexEntry: - db 0,"Because it never",$4E - db "removes its skull",$4E - db "helmet, no one",$49 - db "has ever seen",$4E - db "this #MON's",$4E - db "real face",$5F,"@" + text "Because it never" + next "removes its skull" + next "helmet, no one" + + page "has ever seen" + next "this #MON's" + next "real face" + dex _RhyhornDexEntry: - db 0,"Its massive bones",$4E - db "are 1000 times",$4E - db "harder than human",$49 - db "bones. It can",$4E - db "easily knock a",$4E - db "trailer flying",$5F,"@" + text "Its massive bones" + next "are 1000 times" + next "harder than human" + + page "bones. It can" + next "easily knock a" + next "trailer flying" + dex _LaprasDexEntry: - db 0,"A #MON that",$4E - db "has been over-",$4E - db "hunted almost to",$49 - db "extinction. It",$4E - db "can ferry people",$4E - db "across the water",$5F,"@" + text "A #MON that" + next "has been over-" + next "hunted almost to" + + page "extinction. It" + next "can ferry people" + next "across the water" + dex _ArcanineDexEntry: - db 0,"A #MON that",$4E - db "has been admired",$4E - db "since the past",$49 - db "for its beauty.",$4E - db "It runs agilely",$4E - db "as if on wings",$5F,"@" + text "A #MON that" + next "has been admired" + next "since the past" + + page "for its beauty." + next "It runs agilely" + next "as if on wings" + dex _MewDexEntry: - db 0,"So rare that it",$4E - db "is still said to",$4E - db "be a mirage by",$49 - db "many experts. Only",$4E - db "a few people have",$4E - db "seen it worldwide",$5F,"@" + text "So rare that it" + next "is still said to" + next "be a mirage by" + + page "many experts. Only" + next "a few people have" + next "seen it worldwide" + dex _GyaradosDexEntry: - db 0,"Rarely seen in",$4E - db "the wild. Huge",$4E - db "and vicious, it",$49 - db "is capable of",$4E - db "destroying entire",$4E - db "cities in a rage",$5F,"@" + text "Rarely seen in" + next "the wild. Huge" + next "and vicious, it" + + page "is capable of" + next "destroying entire" + next "cities in a rage" + dex _ShellderDexEntry: - db 0,"Its hard shell",$4E - db "repels any kind",$4E - db "of attack.",$49 - db "It is vulnerable",$4E - db "only when its",$4E - db "shell is open",$5F,"@" + text "Its hard shell" + next "repels any kind" + next "of attack." + + page "It is vulnerable" + next "only when its" + next "shell is open" + dex _TentacoolDexEntry: - db 0,"Drifts in shallow",$4E - db "seas. Anglers who",$4E - db "hook them by",$49 - db "accident are",$4E - db "often punished by",$4E - db "its stinging acid",$5F,"@" + text "Drifts in shallow" + next "seas. Anglers who" + next "hook them by" + + page "accident are" + next "often punished by" + next "its stinging acid" + dex _GastlyDexEntry: - db 0,"Almost invisible,",$4E - db "this gaseous",$4E - db "#MON cloaks",$49 - db "the target and",$4E - db "puts it to sleep",$4E - db "without notice",$5F,"@" + text "Almost invisible," + next "this gaseous" + next "#MON cloaks" + + page "the target and" + next "puts it to sleep" + next "without notice" + dex _ScytherDexEntry: - db 0,"With ninja-like",$4E - db "agility and speed,",$4E - db "it can create the",$49 - db "illusion that",$4E - db "there is more",$4E - db "than one",$5F,"@" + text "With ninja-like" + next "agility and speed," + next "it can create the" + + page "illusion that" + next "there is more" + next "than one" + dex _StaryuDexEntry: - db 0,"An enigmatic",$4E - db "#MON that can",$4E - db "effortlessly",$49 - db "regenerate any",$4E - db "appendage it",$4E - db "loses in battle",$5F,"@" + text "An enigmatic" + next "#MON that can" + next "effortlessly" + + page "regenerate any" + next "appendage it" + next "loses in battle" + dex _BlastoiseDexEntry: - db 0,"A brutal #MON",$4E - db "with pressurized",$4E - db "water jets on its",$49 - db "shell. They are",$4E - db "used for high",$4E - db "speed tackles",$5F,"@" + text "A brutal #MON" + next "with pressurized" + next "water jets on its" + + page "shell. They are" + next "used for high" + next "speed tackles" + dex _PinsirDexEntry: - db 0,"If it fails to",$4E - db "crush the victim",$4E - db "in its pincers,",$49 - db "it will swing it",$4E - db "around and toss",$4E - db "it hard",$5F,"@" + text "If it fails to" + next "crush the victim" + next "in its pincers," + + page "it will swing it" + next "around and toss" + next "it hard" + dex _TangelaDexEntry: - db 0,"The whole body is",$4E - db "swathed with wide",$4E - db "vines that are",$49 - db "similar to sea-",$4E - db "weed. Its vines",$4E - db "shake as it walks",$5F,"@" + text "The whole body is" + next "swathed with wide" + next "vines that are" + + page "similar to sea-" + next "weed. Its vines" + next "shake as it walks" + dex _GrowlitheDexEntry: - db 0,"Very protective",$4E - db "of its territory.",$4E - db "It will bark and",$49 - db "bite to repel",$4E - db "intruders from",$4E - db "its space",$5F,"@" + text "Very protective" + next "of its territory." + next "It will bark and" + + page "bite to repel" + next "intruders from" + next "its space" + dex _OnixDexEntry: - db 0,"As it grows, the",$4E - db "stone portions of",$4E - db "its body harden",$49 - db "to become similar",$4E - db "to a diamond, but",$4E - db "colored black",$5F,"@" + text "As it grows, the" + next "stone portions of" + next "its body harden" + + page "to become similar" + next "to a diamond, but" + next "colored black" + dex _FearowDexEntry: - db 0,"With its huge and",$4E - db "magnificent wings,",$4E - db "it can keep aloft",$49 - db "without ever",$4E - db "having to land",$4E - db "for rest",$5F,"@" + text "With its huge and" + next "magnificent wings," + next "it can keep aloft" + + page "without ever" + next "having to land" + next "for rest" + dex _PidgeyDexEntry: - db 0,"A common sight in",$4E - db "forests and woods.",$4E - db "It flaps its",$49 - db "wings at ground",$4E - db "level to kick up",$4E - db "blinding sand",$5F,"@" + text "A common sight in" + next "forests and woods." + next "It flaps its" + + page "wings at ground" + next "level to kick up" + next "blinding sand" + dex _SlowpokeDexEntry: - db 0,"Incredibly slow",$4E - db "and dopey. It",$4E - db "takes 5 seconds",$49 - db "for it to feel",$4E - db "pain when under",$4E - db "attack",$5F,"@" + text "Incredibly slow" + next "and dopey. It" + next "takes 5 seconds" + + page "for it to feel" + next "pain when under" + next "attack" + dex _KadabraDexEntry: - db 0,"It emits special",$4E - db "alpha waves from",$4E - db "its body that",$49 - db "induce headaches",$4E - db "just by being",$4E - db "close by",$5F,"@" + text "It emits special" + next "alpha waves from" + next "its body that" + + page "induce headaches" + next "just by being" + next "close by" + dex _GravelerDexEntry: - db 0,"Rolls down slopes",$4E - db "to move. It rolls",$4E - db "over any obstacle",$49 - db "without slowing",$4E - db "or changing its",$4E - db "direction",$5F,"@" + text "Rolls down slopes" + next "to move. It rolls" + next "over any obstacle" + + page "without slowing" + next "or changing its" + next "direction" + dex _ChanseyDexEntry: - db 0,"A rare and elusive",$4E - db "#MON that is",$4E - db "said to bring",$49 - db "happiness to those",$4E - db "who manage to get",$4E - db "it",$5F,"@" + text "A rare and elusive" + next "#MON that is" + next "said to bring" + + page "happiness to those" + next "who manage to get" + next "it" + dex _MachokeDexEntry: - db 0,"Its muscular body",$4E - db "is so powerful, it",$4E - db "must wear a power",$49 - db "save belt to be",$4E - db "able to regulate",$4E - db "its motions",$5F,"@" + text "Its muscular body" + next "is so powerful, it" + next "must wear a power" + + page "save belt to be" + next "able to regulate" + next "its motions" + dex _MrMimeDexEntry: - db 0,"If interrupted",$4E - db "while it is",$4E - db "miming, it will",$49 - db "slap around the",$4E - db "offender with its",$4E - db "broad hands",$5F,"@" + text "If interrupted" + next "while it is" + next "miming, it will" + + page "slap around the" + next "offender with its" + next "broad hands" + dex _HitmonleeDexEntry: - db 0,"When in a hurry,",$4E - db "its legs lengthen",$4E - db "progressively.",$49 - db "It runs smoothly",$4E - db "with extra long,",$4E - db "loping strides",$5F,"@" + text "When in a hurry," + next "its legs lengthen" + next "progressively." + + page "It runs smoothly" + next "with extra long," + next "loping strides" + dex _HitmonchanDexEntry: - db 0,"While apparently",$4E - db "doing nothing, it",$4E - db "fires punches in",$49 - db "lightning fast",$4E - db "volleys that are",$4E - db "impossible to see",$5F,"@" + text "While apparently" + next "doing nothing, it" + next "fires punches in" + + page "lightning fast" + next "volleys that are" + next "impossible to see" + dex _ArbokDexEntry: - db 0,"It is rumored that",$4E - db "the ferocious",$4E - db "warning markings",$49 - db "on its belly",$4E - db "differ from area",$4E - db "to area",$5F,"@" + text "It is rumored that" + next "the ferocious" + next "warning markings" + + page "on its belly" + next "differ from area" + next "to area" + dex _ParasectDexEntry: - db 0,"A host-parasite",$4E - db "pair in which the",$4E - db "parasite mushroom",$49 - db "has taken over the",$4E - db "host bug. Prefers",$4E - db "damp places",$5F,"@" + text "A host-parasite" + next "pair in which the" + next "parasite mushroom" + + page "has taken over the" + next "host bug. Prefers" + next "damp places" + dex _PsyduckDexEntry: - db 0,"While lulling its",$4E - db "enemies with its",$4E - db "vacant look, this",$49 - db "wily #MON will",$4E - db "use psychokinetic",$4E - db "powers",$5F,"@" + text "While lulling its" + next "enemies with its" + next "vacant look, this" + + page "wily #MON will" + next "use psychokinetic" + next "powers" + dex _DrowzeeDexEntry: - db 0,"Puts enemies to",$4E - db "sleep then eats",$4E - db "their dreams.",$49 - db "Occasionally gets",$4E - db "sick from eating",$4E - db "bad dreams",$5F,"@" + text "Puts enemies to" + next "sleep then eats" + next "their dreams." + + page "Occasionally gets" + next "sick from eating" + next "bad dreams" + dex _GolemDexEntry: - db 0,"Its boulder-like",$4E - db "body is extremely",$4E - db "hard. It can",$49 - db "easily withstand",$4E - db "dynamite blasts",$4E - db "without damage",$5F,"@" + text "Its boulder-like" + next "body is extremely" + next "hard. It can" + + page "easily withstand" + next "dynamite blasts" + next "without damage" + dex _MagmarDexEntry: - db 0,"Its body always",$4E - db "burns with an",$4E - db "orange glow that",$49 - db "enables it to",$4E - db "hide perfectly",$4E - db "among flames",$5F,"@" + text "Its body always" + next "burns with an" + next "orange glow that" + + page "enables it to" + next "hide perfectly" + next "among flames" + dex _ElectabuzzDexEntry: - db 0,"Normally found",$4E - db "near power plants,",$4E - db "they can wander",$49 - db "away and cause",$4E - db "major blackouts",$4E - db "in cities",$5F,"@" + text "Normally found" + next "near power plants," + next "they can wander" + + page "away and cause" + next "major blackouts" + next "in cities" + dex _MagnetonDexEntry: - db 0,"Formed by several",$4E - db "MAGNEMITEs linked",$4E - db "together. They",$49 - db "frequently appear",$4E - db "when sunspots",$4E - db "flare up",$5F,"@" + text "Formed by several" + next "MAGNEMITEs linked" + next "together. They" + + page "frequently appear" + next "when sunspots" + next "flare up" + dex _KoffingDexEntry: - db 0,"Because it stores",$4E - db "several kinds of",$4E - db "toxic gases in",$49 - db "its body, it is",$4E - db "prone to exploding",$4E - db "without warning",$5F,"@" + text "Because it stores" + next "several kinds of" + next "toxic gases in" + + page "its body, it is" + next "prone to exploding" + next "without warning" + dex _MankeyDexEntry: - db 0,"Extremely quick to",$4E - db "anger. It could",$4E - db "be docile one",$49 - db "moment then",$4E - db "thrashing away",$4E - db "the next instant",$5F,"@" + text "Extremely quick to" + next "anger. It could" + next "be docile one" + + page "moment then" + next "thrashing away" + next "the next instant" + dex _SeelDexEntry: - db 0,"The protruding",$4E - db "horn on its head",$4E - db "is very hard.",$49 - db "It is used for",$4E - db "bashing through",$4E - db "thick ice",$5F,"@" + text "The protruding" + next "horn on its head" + next "is very hard." + + page "It is used for" + next "bashing through" + next "thick ice" + dex _DiglettDexEntry: - db 0,"Lives about one",$4E - db "yard underground",$4E - db "where it feeds on",$49 - db "plant roots. It",$4E - db "sometimes appears",$4E - db "above ground",$5F,"@" + text "Lives about one" + next "yard underground" + next "where it feeds on" + + page "plant roots. It" + next "sometimes appears" + next "above ground" + dex _TaurosDexEntry: - db 0,"When it targets",$4E - db "an enemy, it",$4E - db "charges furiously",$49 - db "while whipping its",$4E - db "body with its",$4E - db "long tails",$5F,"@" + text "When it targets" + next "an enemy, it" + next "charges furiously" + + page "while whipping its" + next "body with its" + next "long tails" + dex _FarfetchdDexEntry: - db 0,"The sprig of",$4E - db "green onions it",$4E - db "holds is its",$49 - db "weapon. It is",$4E - db "used much like a",$4E - db "metal sword",$5F,"@" + text "The sprig of" + next "green onions it" + next "holds is its" + + page "weapon. It is" + next "used much like a" + next "metal sword" + dex _VenonatDexEntry: - db 0,"Lives in the",$4E - db "shadows of tall",$4E - db "trees where it",$49 - db "eats insects. It",$4E - db "is attracted by",$4E - db "light at night",$5F,"@" + text "Lives in the" + next "shadows of tall" + next "trees where it" + + page "eats insects. It" + next "is attracted by" + next "light at night" + dex _DragoniteDexEntry: - db 0,"An extremely",$4E - db "rarely seen",$4E - db "marine #MON.",$49 - db "Its intelligence",$4E - db "is said to match",$4E - db "that of humans",$5F,"@" + text "An extremely" + next "rarely seen" + next "marine #MON." + + page "Its intelligence" + next "is said to match" + next "that of humans" + dex _DoduoDexEntry: - db 0,"A bird that makes",$4E - db "up for its poor",$4E - db "flying with its",$49 - db "fast foot speed.",$4E - db "Leaves giant",$4E - db "footprints",$5F,"@" + text "A bird that makes" + next "up for its poor" + next "flying with its" + + page "fast foot speed." + next "Leaves giant" + next "footprints" + dex _PoliwagDexEntry: - db 0,"Its newly grown",$4E - db "legs prevent it",$4E - db "from running. It",$49 - db "appears to prefer",$4E - db "swimming than",$4E - db "trying to stand",$5F,"@" + text "Its newly grown" + next "legs prevent it" + next "from running. It" + + page "appears to prefer" + next "swimming than" + next "trying to stand" + dex _JynxDexEntry: - db 0,"It seductively",$4E - db "wiggles its hips",$4E - db "as it walks. It",$49 - db "can cause people",$4E - db "to dance in",$4E - db "unison with it",$5F,"@" + text "It seductively" + next "wiggles its hips" + next "as it walks. It" + + page "can cause people" + next "to dance in" + next "unison with it" + dex _MoltresDexEntry: - db 0,"Known as the",$4E - db "legendary bird of",$4E - db "fire. Every flap",$49 - db "of its wings",$4E - db "creates a dazzling",$4E - db "flash of flames",$5F,"@" + text "Known as the" + next "legendary bird of" + next "fire. Every flap" + + page "of its wings" + next "creates a dazzling" + next "flash of flames" + dex _ArticunoDexEntry: - db 0,"A legendary bird",$4E - db "#MON that is",$4E - db "said to appear to",$49 - db "doomed people who",$4E - db "are lost in icy",$4E - db "mountains",$5F,"@" + text "A legendary bird" + next "#MON that is" + next "said to appear to" + + page "doomed people who" + next "are lost in icy" + next "mountains" + dex _ZapdosDexEntry: - db 0,"A legendary bird",$4E - db "#MON that is",$4E - db "said to appear",$49 - db "from clouds while",$4E - db "dropping enormous",$4E - db "lightning bolts",$5F,"@" + text "A legendary bird" + next "#MON that is" + next "said to appear" + + page "from clouds while" + next "dropping enormous" + next "lightning bolts" + dex _DittoDexEntry: - db 0,"Capable of copying",$4E - db "an enemy's genetic",$4E - db "code to instantly",$49 - db "transform itself",$4E - db "into a duplicate",$4E - db "of the enemy",$5F,"@" + text "Capable of copying" + next "an enemy's genetic" + next "code to instantly" + + page "transform itself" + next "into a duplicate" + next "of the enemy" + dex _MeowthDexEntry: - db 0,"Adores circular",$4E - db "objects. Wanders",$4E - db "the streets on a",$49 - db "nightly basis to",$4E - db "look for dropped",$4E - db "loose change",$5F,"@" + text "Adores circular" + next "objects. Wanders" + next "the streets on a" + + page "nightly basis to" + next "look for dropped" + next "loose change" + dex _KrabbyDexEntry: - db 0,"Its pincers are",$4E - db "not only powerful",$4E - db "weapons, they are",$49 - db "used for balance",$4E - db "when walking",$4E - db "sideways",$5F,"@" + text "Its pincers are" + next "not only powerful" + next "weapons, they are" + + page "used for balance" + next "when walking" + next "sideways" + dex _VulpixDexEntry: - db 0,"At the time of",$4E - db "birth, it has",$4E - db "just one tail.",$49 - db "The tail splits",$4E - db "from its tip as",$4E - db "it grows older",$5F,"@" + text "At the time of" + next "birth, it has" + next "just one tail." + + page "The tail splits" + next "from its tip as" + next "it grows older" + dex _NinetalesDexEntry: - db 0,"Very smart and",$4E - db "very vengeful.",$4E - db "Grabbing one of",$49 - db "its many tails",$4E - db "could result in a",$4E - db "1000-year curse",$5F,"@" + text "Very smart and" + next "very vengeful." + next "Grabbing one of" + + page "its many tails" + next "could result in a" + next "1000-year curse" + dex _PikachuDexEntry: - db 0,"When several of",$4E - db "these #MON",$4E - db "gather, their",$49 - db "electricity could",$4E - db "build and cause",$4E - db "lightning storms",$5F,"@" + text "When several of" + next "these #MON" + next "gather, their" + + page "electricity could" + next "build and cause" + next "lightning storms" + dex _RaichuDexEntry: - db 0,"Its long tail",$4E - db "serves as a",$4E - db "ground to protect",$49 - db "itself from its",$4E - db "own high voltage",$4E - db "power",$5F,"@" + text "Its long tail" + next "serves as a" + next "ground to protect" + + page "itself from its" + next "own high voltage" + next "power" + dex _DratiniDexEntry: - db 0,"Long considered a",$4E - db "mythical #MON",$4E - db "until recently",$49 - db "when a small",$4E - db "colony was found",$4E - db "living underwater",$5F,"@" + text "Long considered a" + next "mythical #MON" + next "until recently" + + page "when a small" + next "colony was found" + next "living underwater" + dex _DragonairDexEntry: - db 0,"A mystical #MON",$4E - db "that exudes a",$4E - db "gentle aura.",$49 - db "Has the ability",$4E - db "to change climate",$4E - db "conditions",$5F,"@" + text "A mystical #MON" + next "that exudes a" + next "gentle aura." + + page "Has the ability" + next "to change climate" + next "conditions" + dex _KabutoDexEntry: - db 0,"A #MON that",$4E - db "was resurrected",$4E - db "from a fossil",$49 - db "found in what was",$4E - db "once the ocean",$4E - db "floor eons ago",$5F,"@" + text "A #MON that" + next "was resurrected" + next "from a fossil" + + page "found in what was" + next "once the ocean" + next "floor eons ago" + dex _KabutopsDexEntry: - db 0,"Its sleek shape is",$4E - db "perfect for swim-",$4E - db "ming. It slashes",$49 - db "prey with its",$4E - db "claws and drains",$4E - db "the body fluids",$5F,"@" + text "Its sleek shape is" + next "perfect for swim-" + next "ming. It slashes" + + page "prey with its" + next "claws and drains" + next "the body fluids" + dex _HorseaDexEntry: - db 0,"Known to shoot",$4E - db "down flying bugs",$4E - db "with precision",$49 - db "blasts of ink",$4E - db "from the surface",$4E - db "of the water",$5F,"@" + text "Known to shoot" + next "down flying bugs" + next "with precision" + + page "blasts of ink" + next "from the surface" + next "of the water" + dex _SeadraDexEntry: - db 0,"Capable of swim-",$4E - db "ming backwards by",$4E - db "rapidly flapping",$49 - db "its wing-like",$4E - db "pectoral fins and",$4E - db "stout tail",$5F,"@" + text "Capable of swim-" + next "ming backwards by" + next "rapidly flapping" + + page "its wing-like" + next "pectoral fins and" + next "stout tail" + dex _SandshrewDexEntry: - db 0,"Burrows deep",$4E - db "underground in",$4E - db "arid locations",$49 - db "far from water.",$4E - db "It only emerges",$4E - db "to hunt for food",$5F,"@" + text "Burrows deep" + next "underground in" + next "arid locations" + + page "far from water." + next "It only emerges" + next "to hunt for food" + dex _SandslashDexEntry: - db 0,"Curls up into a",$4E - db "spiny ball when",$4E - db "threatened. It",$49 - db "can roll while",$4E - db "curled up to",$4E - db "attack or escape",$5F,"@" + text "Curls up into a" + next "spiny ball when" + next "threatened. It" + + page "can roll while" + next "curled up to" + next "attack or escape" + dex _OmanyteDexEntry: - db 0,"Although long",$4E - db "extinct, in rare",$4E - db "cases, it can be",$49 - db "genetically",$4E - db "resurrected from",$4E - db "fossils",$5F,"@" + text "Although long" + next "extinct, in rare" + next "cases, it can be" + + page "genetically" + next "resurrected from" + next "fossils" + dex _OmastarDexEntry: - db 0,"A prehistoric",$4E - db "#MON that died",$4E - db "out when its",$49 - db "heavy shell made",$4E - db "it impossible to",$4E - db "catch prey",$5F,"@" + text "A prehistoric" + next "#MON that died" + next "out when its" + + page "heavy shell made" + next "it impossible to" + next "catch prey" + dex _JigglypuffDexEntry: - db 0,"When its huge eyes",$4E - db "light up, it sings",$4E - db "a mysteriously",$49 - db "soothing melody",$4E - db "that lulls its",$4E - db "enemies to sleep",$5F,"@" + text "When its huge eyes" + next "light up, it sings" + next "a mysteriously" + + page "soothing melody" + next "that lulls its" + next "enemies to sleep" + dex _WigglytuffDexEntry: - db 0,"The body is soft",$4E - db "and rubbery. When",$4E - db "angered, it will",$49 - db "suck in air and",$4E - db "inflate itself to",$4E - db "an enormous size",$5F,"@" + text "The body is soft" + next "and rubbery. When" + next "angered, it will" + + page "suck in air and" + next "inflate itself to" + next "an enormous size" + dex _EeveeDexEntry: - db 0,"Its genetic code",$4E - db "is irregular.",$4E - db "It may mutate if",$49 - db "it is exposed to",$4E - db "radiation from",$4E - db "element STONEs",$5F,"@" + text "Its genetic code" + next "is irregular." + next "It may mutate if" + + page "it is exposed to" + next "radiation from" + next "element STONEs" + dex _FlareonDexEntry: - db 0,"When storing",$4E - db "thermal energy in",$4E - db "its body, its",$49 - db "temperature could",$4E - db "soar to over 1600",$4E - db "degrees",$5F,"@" + text "When storing" + next "thermal energy in" + next "its body, its" + + page "temperature could" + next "soar to over 1600" + next "degrees" + dex _JolteonDexEntry: - db 0,"It accumulates",$4E - db "negative ions in",$4E - db "the atmosphere to",$49 - db "blast out 10000-",$4E - db "volt lightning",$4E - db "bolts",$5F,"@" + text "It accumulates" + next "negative ions in" + next "the atmosphere to" + + page "blast out 10000-" + next "volt lightning" + next "bolts" + dex _VaporeonDexEntry: - db 0,"Lives close to",$4E - db "water. Its long",$4E - db "tail is ridged",$49 - db "with a fin which",$4E - db "is often mistaken",$4E - db "for a mermaid's",$5F,"@" + text "Lives close to" + next "water. Its long" + next "tail is ridged" + + page "with a fin which" + next "is often mistaken" + next "for a mermaid's" + dex _MachopDexEntry: - db 0,"Loves to build",$4E - db "its muscles.",$4E - db "It trains in all",$49 - db "styles of martial",$4E - db "arts to become",$4E - db "even stronger",$5F,"@" + text "Loves to build" + next "its muscles." + next "It trains in all" + + page "styles of martial" + next "arts to become" + next "even stronger" + dex _ZubatDexEntry: - db 0,"Forms colonies in",$4E - db "perpetually dark",$4E - db "places. Uses",$49 - db "ultrasonic waves",$4E - db "to identify and",$4E - db "approach targets",$5F,"@" + text "Forms colonies in" + next "perpetually dark" + next "places. Uses" + + page "ultrasonic waves" + next "to identify and" + next "approach targets" + dex _EkansDexEntry: - db 0,"Moves silently",$4E - db "and stealthily.",$4E - db "Eats the eggs of",$49 - db "birds, such as",$4E - db "PIDGEY and",$4E - db "SPEAROW, whole",$5F,"@" + text "Moves silently" + next "and stealthily." + next "Eats the eggs of" + + page "birds, such as" + next "PIDGEY and" + next "SPEAROW, whole" + dex _ParasDexEntry: - db 0,"Burrows to suck",$4E - db "tree roots. The",$4E - db "mushrooms on its",$49 - db "back grow by draw-",$4E - db "ing nutrients from",$4E - db "the bug host",$5F,"@" + text "Burrows to suck" + next "tree roots. The" + next "mushrooms on its" + + page "back grow by draw-" + next "ing nutrients from" + next "the bug host" + dex _PoliwhirlDexEntry: - db 0,"Capable of living",$4E - db "in or out of",$4E - db "water. When out",$49 - db "of water, it",$4E - db "sweats to keep",$4E - db "its body slimy",$5F,"@" + text "Capable of living" + next "in or out of" + next "water. When out" + + page "of water, it" + next "sweats to keep" + next "its body slimy" + dex _PoliwrathDexEntry: - db 0,"An adept swimmer",$4E - db "at both the front",$4E - db "crawl and breast",$49 - db "stroke. Easily",$4E - db "overtakes the best",$4E - db "human swimmers",$5F,"@" + text "An adept swimmer" + next "at both the front" + next "crawl and breast" + + page "stroke. Easily" + next "overtakes the best" + next "human swimmers" + dex _WeedleDexEntry: - db 0,"Often found in",$4E - db "forests, eating",$4E - db "leaves.",$49 - db "It has a sharp",$4E - db "venomous stinger",$4E - db "on its head",$5F,"@" + text "Often found in" + next "forests, eating" + next "leaves." + + page "It has a sharp" + next "venomous stinger" + next "on its head" + dex _KakunaDexEntry: - db 0,"Almost incapable",$4E - db "of moving, this",$4E - db "#MON can only",$49 - db "harden its shell",$4E - db "to protect itself",$4E - db "from predators",$5F,"@" + text "Almost incapable" + next "of moving, this" + next "#MON can only" + + page "harden its shell" + next "to protect itself" + next "from predators" + dex _BeedrillDexEntry: - db 0,"Flies at high",$4E - db "speed and attacks",$4E - db "using its large",$49 - db "venomous stingers",$4E - db "on its forelegs",$4E - db "and tail",$5F,"@" + text "Flies at high" + next "speed and attacks" + next "using its large" + + page "venomous stingers" + next "on its forelegs" + next "and tail" + dex _DodrioDexEntry: - db 0,"Uses its three",$4E - db "brains to execute",$4E - db "complex plans.",$49 - db "While two heads",$4E - db "sleep, one head",$4E - db "stays awake",$5F,"@" + text "Uses its three" + next "brains to execute" + next "complex plans." + + page "While two heads" + next "sleep, one head" + next "stays awake" + dex _PrimeapeDexEntry: - db 0,"Always furious",$4E - db "and tenacious to",$4E - db "boot. It will not",$49 - db "abandon chasing",$4E - db "its quarry until",$4E - db "it is caught",$5F,"@" + text "Always furious" + next "and tenacious to" + next "boot. It will not" + + page "abandon chasing" + next "its quarry until" + next "it is caught" + dex _DugtrioDexEntry: - db 0,"A team of DIGLETT",$4E - db "triplets.",$4E - db "It triggers huge",$49 - db "earthquakes by",$4E - db "burrowing 60 miles",$4E - db "underground",$5F,"@" + text "A team of DIGLETT" + next "triplets." + next "It triggers huge" + + page "earthquakes by" + next "burrowing 60 miles" + next "underground" + dex _VenomothDexEntry: - db 0,"The dust-like",$4E - db "scales covering",$4E - db "its wings are",$49 - db "color coded to",$4E - db "indicate the kinds",$4E - db "of poison it has",$5F,"@" + text "The dust-like" + next "scales covering" + next "its wings are" + + page "color coded to" + next "indicate the kinds" + next "of poison it has" + dex _DewgongDexEntry: - db 0,"Stores thermal",$4E - db "energy in its",$4E - db "body. Swims at a",$49 - db "steady 8 knots",$4E - db "even in intensely",$4E - db "cold waters",$5F,"@" + text "Stores thermal" + next "energy in its" + next "body. Swims at a" + + page "steady 8 knots" + next "even in intensely" + next "cold waters" + dex _CaterpieDexEntry: - db 0,"Its short feet",$4E - db "are tipped with",$4E - db "suction pads that",$49 - db "enable it to",$4E - db "tirelessly climb",$4E - db "slopes and walls",$5F,"@" + text "Its short feet" + next "are tipped with" + next "suction pads that" + + page "enable it to" + next "tirelessly climb" + next "slopes and walls" + dex _MetapodDexEntry: - db 0,"This #MON is",$4E - db "vulnerable to",$4E - db "attack while its",$49 - db "shell is soft,",$4E - db "exposing its weak",$4E - db "and tender body",$5F,"@" + text "This #MON is" + next "vulnerable to" + next "attack while its" + + page "shell is soft," + next "exposing its weak" + next "and tender body" + dex _ButterfreeDexEntry: - db 0,"In battle, it",$4E - db "flaps its wings",$4E - db "at high speed to",$49 - db "release highly",$4E - db "toxic dust into",$4E - db "the air",$5F,"@" + text "In battle, it" + next "flaps its wings" + next "at high speed to" + + page "release highly" + next "toxic dust into" + next "the air" + dex _MachampDexEntry: - db 0,"Using its heavy",$4E - db "muscles, it throws",$4E - db "powerful punches",$49 - db "that can send the",$4E - db "victim clear over",$4E - db "the horizon",$5F,"@" + text "Using its heavy" + next "muscles, it throws" + next "powerful punches" + + page "that can send the" + next "victim clear over" + next "the horizon" + dex _GolduckDexEntry: - db 0,"Often seen swim-",$4E - db "ming elegantly by",$4E - db "lake shores. It",$49 - db "is often mistaken",$4E - db "for the Japanese",$4E - db "monster, Kappa",$5F,"@" + text "Often seen swim-" + next "ming elegantly by" + next "lake shores. It" + + page "is often mistaken" + next "for the Japanese" + next "monster, Kappa" + dex _HypnoDexEntry: - db 0,"When it locks eyes",$4E - db "with an enemy, it",$4E - db "will use a mix of",$49 - db "PSI moves such as",$4E - db "HYPNOSIS and",$4E - db "CONFUSION",$5F,"@" + text "When it locks eyes" + next "with an enemy, it" + next "will use a mix of" + + page "PSI moves such as" + next "HYPNOSIS and" + next "CONFUSION" + dex _GolbatDexEntry: - db 0,"Once it strikes,",$4E - db "it will not stop",$4E - db "draining energy",$49 - db "from the victim",$4E - db "even if it gets",$4E - db "too heavy to fly",$5F,"@" + text "Once it strikes," + next "it will not stop" + next "draining energy" + + page "from the victim" + next "even if it gets" + next "too heavy to fly" + dex _MewtwoDexEntry: - db 0,"It was created by",$4E - db "a scientist after",$4E - db "years of horrific",$49 - db "gene splicing and",$4E - db "DNA engineering",$4E - db "experiments",$5F,"@" + text "It was created by" + next "a scientist after" + next "years of horrific" + + page "gene splicing and" + next "DNA engineering" + next "experiments" + dex _SnorlaxDexEntry: - db 0,"Very lazy. Just",$4E - db "eats and sleeps.",$4E - db "As its rotund",$49 - db "bulk builds, it",$4E - db "becomes steadily",$4E - db "more slothful",$5F,"@" + text "Very lazy. Just" + next "eats and sleeps." + next "As its rotund" + + page "bulk builds, it" + next "becomes steadily" + next "more slothful" + dex _MagikarpDexEntry: - db 0,"In the distant",$4E - db "past, it was",$4E - db "somewhat stronger",$49 - db "than the horribly",$4E - db "weak descendants",$4E - db "that exist today",$5F,"@" + text "In the distant" + next "past, it was" + next "somewhat stronger" + + page "than the horribly" + next "weak descendants" + next "that exist today" + dex _MukDexEntry: - db 0,"Thickly covered",$4E - db "with a filthy,",$4E - db "vile sludge. It",$49 - db "is so toxic, even",$4E - db "its footprints",$4E - db "contain poison",$5F,"@" + text "Thickly covered" + next "with a filthy," + next "vile sludge. It" + + page "is so toxic, even" + next "its footprints" + next "contain poison" + dex _KinglerDexEntry: - db 0,"The large pincer",$4E - db "has 10000 hp of",$4E - db "crushing power.",$49 - db "However, its huge",$4E - db "size makes it",$4E - db "unwieldy to use",$5F,"@" + text "The large pincer" + next "has 10000 hp of" + next "crushing power." + + page "However, its huge" + next "size makes it" + next "unwieldy to use" + dex _CloysterDexEntry: - db 0,"When attacked, it",$4E - db "launches its",$4E - db "horns in quick",$49 - db "volleys. Its",$4E - db "innards have",$4E - db "never been seen",$5F,"@" + text "When attacked, it" + next "launches its" + next "horns in quick" + + page "volleys. Its" + next "innards have" + next "never been seen" + dex _ElectrodeDexEntry: - db 0,"It stores electric",$4E - db "energy under very",$4E - db "high pressure.",$49 - db "It often explodes",$4E - db "with little or no",$4E - db "provocation",$5F,"@" + text "It stores electric" + next "energy under very" + next "high pressure." + + page "It often explodes" + next "with little or no" + next "provocation" + dex _ClefableDexEntry: - db 0,"A timid fairy",$4E - db "#MON that is",$4E - db "rarely seen. It",$49 - db "will run and hide",$4E - db "the moment it",$4E - db "senses people",$5F,"@" + text "A timid fairy" + next "#MON that is" + next "rarely seen. It" + + page "will run and hide" + next "the moment it" + next "senses people" + dex _WeezingDexEntry: - db 0,"Where two kinds",$4E - db "of poison gases",$4E - db "meet, 2 KOFFINGs",$49 - db "can fuse into a",$4E - db "WEEZING over many",$4E - db "years",$5F,"@" + text "Where two kinds" + next "of poison gases" + next "meet, 2 KOFFINGs" + + page "can fuse into a" + next "WEEZING over many" + next "years" + dex _PersianDexEntry: - db 0,"Although its fur",$4E - db "has many admirers,",$4E - db "it is tough to",$49 - db "raise as a pet",$4E - db "because of its",$4E - db "fickle meanness",$5F,"@" + text "Although its fur" + next "has many admirers," + next "it is tough to" + + page "raise as a pet" + next "because of its" + next "fickle meanness" + dex _MarowakDexEntry: - db 0,"The bone it holds",$4E - db "is its key weapon.",$4E - db "It throws the",$49 - db "bone skillfully",$4E - db "like a boomerang",$4E - db "to KO targets",$5F,"@" + text "The bone it holds" + next "is its key weapon." + next "It throws the" + + page "bone skillfully" + next "like a boomerang" + next "to KO targets" + dex _HaunterDexEntry: - db 0,"Because of its",$4E - db "ability to slip",$4E - db "through block",$49 - db "walls, it is said",$4E - db "to be from an-",$4E - db "other dimension",$5F,"@" + text "Because of its" + next "ability to slip" + next "through block" + + page "walls, it is said" + next "to be from an-" + next "other dimension" + dex _AbraDexEntry: - db 0,"Using its ability",$4E - db "to read minds, it",$4E - db "will identify",$49 - db "impending danger",$4E - db "and TELEPORT to",$4E - db "safety",$5F,"@" + text "Using its ability" + next "to read minds, it" + next "will identify" + + page "impending danger" + next "and TELEPORT to" + next "safety" + dex _AlakazamDexEntry: - db 0,"Its brain can out-",$4E - db "perform a super-",$4E - db "computer.",$49 - db "Its intelligence",$4E - db "quotient is said",$4E - db "to be 5,000",$5F,"@" + text "Its brain can out-" + next "perform a super-" + next "computer." + + page "Its intelligence" + next "quotient is said" + next "to be 5,000" + dex _PidgeottoDexEntry: - db 0,"Very protective",$4E - db "of its sprawling",$4E - db "territorial area,",$49 - db "this #MON will",$4E - db "fiercely peck at",$4E - db "any intruder",$5F,"@" + text "Very protective" + next "of its sprawling" + next "territorial area," + + page "this #MON will" + next "fiercely peck at" + next "any intruder" + dex _PidgeotDexEntry: - db 0,"When hunting, it",$4E - db "skims the surface",$4E - db "of water at high",$49 - db "speed to pick off",$4E - db "unwary prey such",$4E - db "as MAGIKARP",$5F,"@" + text "When hunting, it" + next "skims the surface" + next "of water at high" + + page "speed to pick off" + next "unwary prey such" + next "as MAGIKARP" + dex _StarmieDexEntry: - db 0,"Its central core",$4E - db "glows with the",$4E - db "seven colors of",$49 - db "the rainbow. Some",$4E - db "people value the",$4E - db "core as a gem",$5F,"@" + text "Its central core" + next "glows with the" + next "seven colors of" + + page "the rainbow. Some" + next "people value the" + next "core as a gem" + dex _BulbasaurDexEntry: - db 0,"A strange seed was",$4E - db "planted on its",$4E - db "back at birth.",$49 - db "The plant sprouts",$4E - db "and grows with",$4E - db "this #MON",$5F,"@" + text "A strange seed was" + next "planted on its" + next "back at birth." + + page "The plant sprouts" + next "and grows with" + next "this #MON" + dex _VenusaurDexEntry: - db 0,"The plant blooms",$4E - db "when it is",$4E - db "absorbing solar",$49 - db "energy. It stays",$4E - db "on the move to",$4E - db "seek sunlight",$5F,"@" + text "The plant blooms" + next "when it is" + next "absorbing solar" + + page "energy. It stays" + next "on the move to" + next "seek sunlight" + dex _TentacruelDexEntry: - db 0,"The tentacles are",$4E - db "normally kept",$4E - db "short. On hunts,",$49 - db "they are extended",$4E - db "to ensnare and",$4E - db "immobilize prey",$5F,"@" + text "The tentacles are" + next "normally kept" + next "short. On hunts," + + page "they are extended" + next "to ensnare and" + next "immobilize prey" + dex _GoldeenDexEntry: - db 0,"Its tail fin",$4E - db "billows like an",$4E - db "elegant ballroom",$49 - db "dress, giving it",$4E - db "the nickname of",$4E - db "the Water Queen",$5F,"@" + text "Its tail fin" + next "billows like an" + next "elegant ballroom" + + page "dress, giving it" + next "the nickname of" + next "the Water Queen" + dex _SeakingDexEntry: - db 0,"In the autumn",$4E - db "spawning season,",$4E - db "they can be seen",$49 - db "swimming power-",$4E - db "fully up rivers",$4E - db "and creeks",$5F,"@" + text "In the autumn" + next "spawning season," + next "they can be seen" + + page "swimming power-" + next "fully up rivers" + next "and creeks" + dex _PonytaDexEntry: - db 0,"Its hooves are 10",$4E - db "times harder than",$4E - db "diamonds. It can",$49 - db "trample anything",$4E - db "completely flat",$4E - db "in little time",$5F,"@" + text "Its hooves are 10" + next "times harder than" + next "diamonds. It can" + + page "trample anything" + next "completely flat" + next "in little time" + dex _RapidashDexEntry: - db 0,"Very competitive,",$4E - db "this #MON will",$4E - db "chase anything",$49 - db "that moves fast",$4E - db "in the hopes of",$4E - db "racing it",$5F,"@" + text "Very competitive," + next "this #MON will" + next "chase anything" + + page "that moves fast" + next "in the hopes of" + next "racing it" + dex _RattataDexEntry: - db 0,"Bites anything",$4E - db "when it attacks.",$4E - db "Small and very",$49 - db "quick, it is a",$4E - db "common sight in",$4E - db "many places",$5F,"@" + text "Bites anything" + next "when it attacks." + next "Small and very" + + page "quick, it is a" + next "common sight in" + next "many places" + dex _RaticateDexEntry: - db 0,"It uses its whis-",$4E - db "kers to maintain",$4E - db "its balance.",$49 - db "It apparently",$4E - db "slows down if",$4E - db "they are cut off",$5F,"@" + text "It uses its whis-" + next "kers to maintain" + next "its balance." + + page "It apparently" + next "slows down if" + next "they are cut off" + dex _NidorinoDexEntry: - db 0,"An aggressive",$4E - db "#MON that is",$4E - db "quick to attack.",$49 - db "The horn on its",$4E - db "head secretes a",$4E - db "powerful venom",$5F,"@" + text "An aggressive" + next "#MON that is" + next "quick to attack." + + page "The horn on its" + next "head secretes a" + next "powerful venom" + dex _NidorinaDexEntry: - db 0,"The female's horn",$4E - db "develops slowly.",$4E - db "Prefers physical",$49 - db "attacks such as",$4E - db "clawing and",$4E - db "biting",$5F,"@" + text "The female's horn" + next "develops slowly." + next "Prefers physical" + + page "attacks such as" + next "clawing and" + next "biting" + dex _GeodudeDexEntry: - db 0,"Found in fields",$4E - db "and mountains.",$4E - db "Mistaking them",$49 - db "for boulders,",$4E - db "people often step",$4E - db "or trip on them",$5F,"@" + text "Found in fields" + next "and mountains." + next "Mistaking them" + + page "for boulders," + next "people often step" + next "or trip on them" + dex _PorygonDexEntry: - db 0,"A #MON that",$4E - db "consists entirely",$4E - db "of programming",$49 - db "code. Capable of",$4E - db "moving freely in",$4E - db "cyberspace",$5F,"@" + text "A #MON that" + next "consists entirely" + next "of programming" + + page "code. Capable of" + next "moving freely in" + next "cyberspace" + dex _AerodactylDexEntry: - db 0,"A ferocious, pre-",$4E - db "historic #MON",$4E - db "that goes for the",$49 - db "enemy's throat",$4E - db "with its serrated",$4E - db "saw-like fangs",$5F,"@" + text "A ferocious, pre-" + next "historic #MON" + next "that goes for the" + + page "enemy's throat" + next "with its serrated" + next "saw-like fangs" + dex _MagnemiteDexEntry: - db 0,"Uses anti-gravity",$4E - db "to stay suspended.",$4E - db "Appears without",$49 - db "warning and uses",$4E - db "THUNDER WAVE and",$4E - db "similar moves",$5F,"@" + text "Uses anti-gravity" + next "to stay suspended." + next "Appears without" + + page "warning and uses" + next "THUNDER WAVE and" + next "similar moves" + dex _CharmanderDexEntry: - db 0,"Obviously prefers",$4E - db "hot places. When",$4E - db "it rains, steam",$49 - db "is said to spout",$4E - db "from the tip of",$4E - db "its tail",$5F,"@" + text "Obviously prefers" + next "hot places. When" + next "it rains, steam" + + page "is said to spout" + next "from the tip of" + next "its tail" + dex _SquirtleDexEntry: - db 0,"After birth, its",$4E - db "back swells and",$4E - db "hardens into a",$49 - db "shell. Powerfully",$4E - db "sprays foam from",$4E - db "its mouth",$5F,"@" + text "After birth, its" + next "back swells and" + next "hardens into a" + + page "shell. Powerfully" + next "sprays foam from" + next "its mouth" + dex _CharmeleonDexEntry: - db 0,"When it swings",$4E - db "its burning tail,",$4E - db "it elevates the",$49 - db "temperature to",$4E - db "unbearably high",$4E - db "levels",$5F,"@" + text "When it swings" + next "its burning tail," + next "it elevates the" + + page "temperature to" + next "unbearably high" + next "levels" + dex _WartortleDexEntry: - db 0,"Often hides in",$4E - db "water to stalk",$4E - db "unwary prey. For",$49 - db "swimming fast, it",$4E - db "moves its ears to",$4E - db "maintain balance",$5F,"@" + text "Often hides in" + next "water to stalk" + next "unwary prey. For" + + page "swimming fast, it" + next "moves its ears to" + next "maintain balance" + dex _CharizardDexEntry: - db 0,"Spits fire that",$4E - db "is hot enough to",$4E - db "melt boulders.",$49 - db "Known to cause",$4E - db "forest fires",$4E - db "unintentionally",$5F,"@" + text "Spits fire that" + next "is hot enough to" + next "melt boulders." + + page "Known to cause" + next "forest fires" + next "unintentionally" + dex _OddishDexEntry: - db 0,"During the day,",$4E - db "it keeps its face",$4E - db "buried in the",$49 - db "ground. At night,",$4E - db "it wanders around",$4E - db "sowing its seeds",$5F,"@" + text "During the day," + next "it keeps its face" + next "buried in the" + + page "ground. At night," + next "it wanders around" + next "sowing its seeds" + dex _GloomDexEntry: - db 0,"The fluid that",$4E - db "oozes from its",$4E - db "mouth isn't drool.",$49 - db "It is a nectar",$4E - db "that is used to",$4E - db "attract prey",$5F,"@" + text "The fluid that" + next "oozes from its" + next "mouth isn't drool." + + page "It is a nectar" + next "that is used to" + next "attract prey" + dex _VileplumeDexEntry: - db 0,"The larger its",$4E - db "petals, the more",$4E - db "toxic pollen it",$49 - db "contains. Its big",$4E - db "head is heavy and",$4E - db "hard to hold up",$5F,"@" + text "The larger its" + next "petals, the more" + next "toxic pollen it" + + page "contains. Its big" + next "head is heavy and" + next "hard to hold up" + dex _BellsproutDexEntry: - db 0,"A carnivorous",$4E - db "#MON that traps",$4E - db "and eats bugs.",$49 - db "It uses its root",$4E - db "feet to soak up",$4E - db "needed moisture",$5F,"@" + text "A carnivorous" + next "#MON that traps" + next "and eats bugs." + + page "It uses its root" + next "feet to soak up" + next "needed moisture" + dex _WeepinbellDexEntry: - db 0,"It spits out",$4E - db "POISONPOWDER to",$4E - db "immobilize the",$49 - db "enemy and then",$4E - db "finishes it with",$4E - db "a spray of ACID",$5F,"@" + text "It spits out" + next "POISONPOWDER to" + next "immobilize the" + + page "enemy and then" + next "finishes it with" + next "a spray of ACID" + dex _VictreebelDexEntry: - db 0,"Said to live in",$4E - db "huge colonies",$4E - db "deep in jungles,",$49 - db "although no one",$4E - db "has ever returned",$4E - db "from there",$5F,"@" + text "Said to live in" + next "huge colonies" + next "deep in jungles," + + page "although no one" + next "has ever returned" + next "from there" + dex + From 53a4432e683a10d483270af589a8dc7382850e78 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 01:21:41 -0500 Subject: [PATCH 18/41] use 'next' macro in strings --- main.asm | 227 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 132 insertions(+), 95 deletions(-) diff --git a/main.asm b/main.asm index 8a9ef84a..34a623d2 100644 --- a/main.asm +++ b/main.asm @@ -11184,9 +11184,10 @@ Func_4541: ; 4541 (1:4541) jp PlaceString CopyrightTextString: ; 4556 (1:4556) - db $60,$61,$62,$61,$63,$61,$64,$7F,$65,$66,$67,$68,$69,$6A,$4E ; ©'95.'96.'98 Nintendo - db $60,$61,$62,$61,$63,$61,$64,$7F,$6B,$6C,$6D,$6E,$6F,$70,$71,$72,$4E ; ©'95.'96.'98 Creatures inc. - db $60,$61,$62,$61,$63,$61,$64,$7F,$73,$74,$75,$76,$77,$78,$79,$7A,$7B,"@" ; ©'95.'96.'98 GAME FREAK inc. + db $60,$61,$62,$61,$63,$61,$64,$7F,$65,$66,$67,$68,$69,$6A ; ©'95.'96.'98 Nintendo + next $60,$61,$62,$61,$63,$61,$64,$7F,$6B,$6C,$6D,$6E,$6F,$70,$71,$72 ; ©'95.'96.'98 Creatures inc. + next $60,$61,$62,$61,$63,$61,$64,$7F,$73,$74,$75,$76,$77,$78,$79,$7A,$7B ; ©'95.'96.'98 GAME FREAK inc. + db "@" TitleMons: ; 4588 (1:4588) ; mons on the title screen are randomly chosen from here @@ -13810,7 +13811,8 @@ TradeCompleted: db "Trade completed!@" TradeCanceled: - db "Too bad! The trade",$4E,"was canceled!@" + db "Too bad! The trade" + next "was canceled!@" PointerTable_5a5b: ; 5a5b (1:5a5b) dw Func_5530 @@ -14236,13 +14238,16 @@ Func_5d5f: ; 5d5f (1:5d5f) jp EnterMap ContinueText: ; 5d7e (1:5d7e) - db "CONTINUE",$4e + db "CONTINUE", $4e NewGameText: ; 5d87 (1:5d87) - db "NEW GAME",$4e,"OPTION@" + db "NEW GAME", $4e + db "OPTION@" TradeCenterText: ; 5d97 (1:5d97) - db "TRADE CENTER",$4e,"COLOSSEUM",$4e,"CANCEL@" + db "TRADE CENTER", $4e + db "COLOSSEUM", $4e + db "CANCEL@" Func_5db5: ; 5db5 (1:5db5) xor a @@ -14331,10 +14336,10 @@ Func_5e55: ; 5e55 (1:5e55) jp PrintNumber SaveScreenInfoText: ; 5e6a (1:5e6a) - db "PLAYER",$4e - db "BADGES ",$4e - db "#DEX ",$4e - db "TIME@" + db "PLAYER" + next "BADGES " + next "#DEX " + next "TIME@" DisplayOptionMenu: ; 5e8a (1:5e8a) FuncCoord 0,0 @@ -14496,16 +14501,16 @@ DisplayOptionMenu: ; 5e8a (1:5e8a) jp .eraseOldMenuCursor TextSpeedOptionText: ; 5fc0 (1:5fc0) - db "TEXT SPEED",$4E - db " FAST MEDIUM SLOW@" + db "TEXT SPEED" + next " FAST MEDIUM SLOW@" BattleAnimationOptionText: ; 5fde (1:5fde) - db "BATTLE ANIMATION",$4E - db " ON OFF@" + db "BATTLE ANIMATION" + next " ON OFF@" BattleStyleOptionText: ; 5ffd (1:5ffd) - db "BATTLE STYLE",$4E - db " SHIFT SET@" + db "BATTLE STYLE" + next " SHIFT SET@" OptionMenuCancelText: ; 6018 (1:6018) db "CANCEL@" @@ -15911,15 +15916,34 @@ Func_6a6c: ; 6a6c (1:6a6c) IF _RED DefaultNamesPlayer: ; 6aa8 (1:6aa8) - db "NEW NAME",$4E,"RED",$4E,"ASH",$4E,"JACK@" + db "NEW NAME" + next "RED" + next "ASH" + next "JACK" + db "@" + DefaultNamesRival: ; 6abe (1:6abe) - db "NEW NAME",$4E,"BLUE",$4E,"GARY",$4E,"JOHN@" + db "NEW NAME" + next "BLUE" + next "GARY" + next "JOHN" + db "@" ENDC + IF _BLUE DefaultNamesPlayer: ; 6aa8 (1:6aa8) - db "NEW NAME",$4E,"BLUE",$4E,"GARY",$4E,"JOHN@" + db "NEW NAME" + next "BLUE" + next "GARY" + next "JOHN" + db "@" + DefaultNamesRival: ; 6abe (1:6abe) - db "NEW NAME",$4E,"RED",$4E,"ASH",$4E,"JACK@" + db "NEW NAME" + next "RED" + next "ASH" + next "JACK" + db "@" ENDC Func_6ad6: ; 6ad6 (1:6ad6) @@ -17275,21 +17299,21 @@ TextBoxTextAndCoordTable: ; 73b0 (1:73b0) ; note that there is no terminator BuySellQuitText: ; 7413 (1:7413) - db "BUY",$4E - db "SELL",$4E - db "QUIT@@" + db "BUY" + next "SELL" + next "QUIT@@" UseTossText: ; 7422 (1:7422) - db "USE",$4E - db "TOSS@" + db "USE" + next "TOSS@" JapaneseSaveMessageText: ; 742b (1:742b) - db "きろく",$4E - db "メッセージ@" + db "きろく" + next "メッセージ@" JapaneseSpeedOptionsText: ; 7435 (1:7435) - db "はやい",$4E - db "おそい@" + db "はやい" + next "おそい@" MoneyText: ; 743d (1:743d) db "MONEY@" @@ -17298,30 +17322,30 @@ JapaneseMochimonoText: ; 7443 (1:7443) db "もちもの@" JapaneseMainMenuText: ; 7448 (1:7448) - db "つづきから",$4E - db "さいしょから@" + db "つづきから" + next "さいしょから@" BattleMenuText: ; 7455 (1:7455) - db "FIGHT ",$E1,$E2,$4E - db "ITEM RUN@" + db "FIGHT ",$E1,$E2 + next "ITEM RUN@" SafariZoneBattleMenuText: ; 7468 (1:7468) - db "BALL× BAIT",$4E - db "THROW ROCK RUN@" + db "BALL× BAIT" + next "THROW ROCK RUN@" SwitchStatsCancelText: ; 7489 (1:7489) - db "SWITCH",$4E - db "STATS",$4E - db "CANCEL@" + db "SWITCH" + next "STATS" + next "CANCEL@" JapaneseAhText: ; 749d (1:749d) db "アッ!@" JapanesePokedexMenu: ; 74a1 (1:74a1) - db "データをみる",$4E - db "なきごえ",$4E - db "ぶんぷをみる",$4E - db "キャンセル@" + db "データをみる" + next "なきごえ" + next "ぶんぷをみる" + next "キャンセル@" Func_74ba: ; 74ba (1:74ba) ld hl, $d730 @@ -17714,9 +17738,9 @@ FieldMoveNames: ; 778d (1:778d) db "SOFTBOILED@" PokemonMenuEntries: ; 77c2 (1:77c2) - db "STATS",$4E - db "SWITCH",$4E - db "CANCEL@" + db "STATS" + next "SWITCH" + next "CANCEL@" GetMonFieldMoves: ; 77d6 (1:77d6) ld a, [wWhichPokemon] ; $cf92 @@ -18139,10 +18163,10 @@ Func_7aa5: ; 7aa5 (1:7aa5) jp Func_7aa5 PlayersPCMenuEntries: ; 7af5 (1:7af5) - db "WITHDRAW ITEM",$4E - db "DEPOSIT ITEM",$4E - db "TOSS ITEM",$4E - db "LOG OFF@" + db "WITHDRAW ITEM" + next "DEPOSIT ITEM" + next "TOSS ITEM" + next "LOG OFF@" UnnamedText_7b22: ; 7b22 (1:7b22) TX_FAR _UnnamedText_7b22 @@ -30101,10 +30125,10 @@ PrintStat ret StatsText: ; 12b3a (4:6b3a) - db "ATTACK", $4e - db "DEFENSE", $4e - db "SPEED", $4e - db "SPECIAL@" + db "ATTACK" + next "DEFENSE" + next "SPEED" + next "SPECIAL@" StatusScreen2: ; 12b57 (4:6b57) ld a, [$ff00+$d7] @@ -31321,9 +31345,9 @@ TrainerInfo_FarCopyData: ; 1357f (4:757f) jp FarCopyData2 TrainerInfo_NameMoneyTimeText: ; 13584 (4:7584) - db "NAME/",$4E - db "MONEY/",$4E - db "TIME/@" + db "NAME/" + next "MONEY/" + next "TIME/@" ; $76 is a circle tile TrainerInfo_BadgesText: ; 13597 (4:7597) @@ -39634,8 +39658,8 @@ BikeShopText1: ; 1d745 (7:5745) jp TextScriptEnd BikeShopMenuText: ; 1d7f8 (7:57f8) - db "BICYCLE", $4e - db "CANCEL@" + db "BICYCLE" + next "CANCEL@" BikeShopMenuPrice: ; 1d807 (7:5807) db "¥1000000@" @@ -42321,7 +42345,11 @@ BillsHousePokemonListText1: ; 1ec7f (7:6c7f) db "@" BillsMonListText: ; 1ec84 (7:6c84) - db "EEVEE",$4e,"FLAREON",$4e,"JOLTEON",$4e,"VAPOREON",$4e,"CANCEL@" + db "EEVEE" + next "FLAREON" + next "JOLTEON" + next "VAPOREON" + next "CANCEL@" BillsHousePokemonListText2: ; 1ecaa (7:6caa) TX_FAR _BillsHousePokemonListText2 @@ -43833,9 +43861,9 @@ Func_37395: ; 37395 (d:7395) jp Func_37395 UnnamedText_3745e: ; 3745e (d:745e) - db "×3",$4e - db "×2",$4e - db "×1@" + db "×3" + next "×2" + next "×1@" UnnamedText_37467: ; 37467 (d:7467) TX_FAR _UnnamedText_37467 @@ -65202,10 +65230,10 @@ PokedexContentsText: ; 402a6 (10:42a6) db "CONTENTS@" PokedexMenuItemsText: ; 402af (10:42af) - db "DATA",$4E - db "CRY",$4E - db "AREA",$4E - db "QUIT@" + db "DATA" + next "CRY" + next "AREA" + next "QUIT@" ; tests if a pokemon's bit is set in the seen or owned pokemon bit fields ; INPUT: @@ -85894,7 +85922,11 @@ DiplomaEmptyText: db "@" DiplomaCongrats: - db "Congrats! This",$4e,"diploma certifies",$4e,"that you have",$4e,"completed your",$4e,"#DEX.@" + db "Congrats! This" + next "diploma certifies" + next "that you have" + next "completed your" + next "#DEX.@" DiplomaGameFreak: db "GAME FREAK@" @@ -93893,7 +93925,10 @@ LinkCableHelpText2: ; 5dca3 (17:5ca3) db "@" HowToLinkText: ; 5dca8 (17:5ca8) - db "HOW TO LINK",$4e,"COLOSSEUM",$4e,"TRADE CENTER",$4e,"STOP READING@" + db "HOW TO LINK" + next "COLOSSEUM" + next "TRADE CENTER" + next "STOP READING@" LinkCableInfoTexts: ; 5dcd8 (17:5cd8) dw LinkCableInfoText1 @@ -94003,14 +94038,14 @@ ViridianSchoolBlackboardText2: ; 5dda7 (17:5da7) db "@" StatusAilmentText1: ; 5ddac (17:5dac) - db " SLP",$4e - db " PSN",$4e - db " PAR@" + db " SLP" + next " PSN" + next " PAR@" StatusAilmentText2: ; 5ddbb (17:5dbb) - db " BRN",$4e - db " FRZ",$4e - db " QUIT@@" + db " BRN" + next " FRZ" + next " QUIT@@" ViridianBlackboardStatusPointers: ; 5ddcc (17:5ddc) dw ViridianBlackboardSleepText @@ -98558,7 +98593,9 @@ Func_702f0: ; 702f0 (1c:42f0) jp PlayCry HoFMonInfoText: ; 70329 (1c:4329) - db "LEVEL/",$4e,"TYPE1/",$4e,"TYPE2/@" + db "LEVEL/" + next "TYPE1/" + next "TYPE2/@" Func_7033e: ; 7033e (1c:433e) ld de, Unknown_72ede ; $6ede @@ -103542,18 +103579,18 @@ UnnamedText_739d4: ; 739d4 (1c:79d4) db "@" BoxNames: ; 739d9 (1c:79d9) - db "BOX 1",$4e - db "BOX 2",$4e - db "BOX 3",$4e - db "BOX 4",$4e - db "BOX 5",$4e - db "BOX 6",$4e - db "BOX 7",$4e - db "BOX 8",$4e - db "BOX 9",$4e - db "BOX10",$4e - db "BOX11",$4e - db "BOX12@" + db "BOX 1" + next "BOX 2" + next "BOX 3" + next "BOX 4" + next "BOX 5" + next "BOX 6" + next "BOX 7" + next "BOX 8" + next "BOX 9" + next "BOX10" + next "BOX11" + next "BOX12@" BoxNoText: ; 73a21 (1c:7a21) db "BOX No.@" @@ -105282,15 +105319,15 @@ VendingMachineText1: ; 74f99 (1d:4f99) db "@" DrinkText: ; 74f9e (1d:4f9e) - db "FRESH WATER",$4E - db "SODA POP",$4E - db "LEMONADE",$4E - db "CANCEL@" + db "FRESH WATER" + next "SODA POP" + next "LEMONADE" + next "CANCEL@" DrinkPriceText: ; 74fc3 (1d:4fc3) - db "¥200",$4E - db "¥300",$4E - db "¥350",$4E,"@" + db "¥200" + next "¥300" + next "¥350",$4E,"@" VendingMachineText4: ; 74fd3 (1d:4fd3) TX_FAR _VendingMachineText4 From 283e4c1ceeef80ea0c291bfb67d478341fe3a6ca Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 11:36:07 -0500 Subject: [PATCH 19/41] Don't use sudo in init.sh Besides being bad practice, permissions are handled differently cross-platform (cygwin). --- INSTALL.md | 2 +- init.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 80361b5c..e68c263f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -10,7 +10,7 @@ Set up the **pokered** repository: git clone git://github.com/iimarckus/pokered.git cd pokered - ./init.sh + sudo ./init.sh Now **pokered.gbc** can be built from source. diff --git a/init.sh b/init.sh index 671f61fd..2106f64a 100755 --- a/init.sh +++ b/init.sh @@ -4,14 +4,14 @@ git clone git://github.com/bentley/rgbds.git && \ cd rgbds && \ make && \ -sudo mkdir -p /usr/local/man/man{1,7} && \ -sudo make install && \ +mkdir -p /usr/local/man/man{1,7} && \ +make install && \ cd .. && \ rm -rf rgbds # set up the submodule (extras/) git submodule init && \ git submodule update && \ -sudo easy_install pip && \ -sudo pip install -r extras/requirements.txt +easy_install pip && \ +pip install -r extras/requirements.txt From c832fd85c5a516e955a76340ca632cc47d80c89e Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 11:19:17 -0500 Subject: [PATCH 20/41] bump pokemontools for merging the previous bump this brings pokemontools up to date, including some map editor fixes --- extras | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras b/extras index 89ca24a9..61b83803 160000 --- a/extras +++ b/extras @@ -1 +1 @@ -Subproject commit 89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 +Subproject commit 61b83803be9ccdcdcd95b7f8ea7accafab8d4d4d From b452726f9acc5a0923b80d43e74b1d372dfb393c Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 13:33:58 -0500 Subject: [PATCH 21/41] rename existing map text files and put them in text/maps/ --- main.asm | 6 +++--- text/{mapBluesHouse.asm => maps/blues_house.asm} | 0 text/{mapPalletTown.asm => maps/pallet_town.asm} | 0 text/{mapRedsHouse1F.asm => maps/reds_house_1f.asm} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename text/{mapBluesHouse.asm => maps/blues_house.asm} (100%) rename text/{mapPalletTown.asm => maps/pallet_town.asm} (100%) rename text/{mapRedsHouse1F.asm => maps/reds_house_1f.asm} (100%) diff --git a/main.asm b/main.asm index 21809838..b18f5884 100644 --- a/main.asm +++ b/main.asm @@ -124722,8 +124722,8 @@ _TradeCenterMText1: ; 94b04 (25:4b04) text "!" done -INCLUDE "text/mapRedsHouse1F.asm" -INCLUDE "text/mapBluesHouse.asm" +INCLUDE "text/maps/reds_house_1f.asm" +INCLUDE "text/maps/blues_house.asm" _OaksLabGaryText1: ; 94d5b (25:4d5b) text $53, ": Yo" @@ -130280,7 +130280,7 @@ _UnnamedText_4fe44: ; a41d6 (29:41d6) line "a #MON CENTER!" done -INCLUDE "text/mapPalletTown.asm" +INCLUDE "text/maps/pallet_town.asm" _ViridianCityText1: ; a43cc (29:43cc) text "Those # BALLs" diff --git a/text/mapBluesHouse.asm b/text/maps/blues_house.asm similarity index 100% rename from text/mapBluesHouse.asm rename to text/maps/blues_house.asm diff --git a/text/mapPalletTown.asm b/text/maps/pallet_town.asm similarity index 100% rename from text/mapPalletTown.asm rename to text/maps/pallet_town.asm diff --git a/text/mapRedsHouse1F.asm b/text/maps/reds_house_1f.asm similarity index 100% rename from text/mapRedsHouse1F.asm rename to text/maps/reds_house_1f.asm From cddc935127865becd680193b693b210f15be601d Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 13:56:25 -0500 Subject: [PATCH 22/41] stamp out even more text macros in main Conflicts: main.asm --- main.asm | 139 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 71 insertions(+), 68 deletions(-) diff --git a/main.asm b/main.asm index b18f5884..c97ced16 100644 --- a/main.asm +++ b/main.asm @@ -119747,11 +119747,12 @@ _LinkBattleLostText: ; 89772 (22:5772) _TrainerAboutToUseText: ; 89784 (22:5784) TX_RAM W_TRAINERNAME text " is" - line "about to use",$55,"@",1 - dw W_ENEMYMONNAME + line "about to use" + cont"@" + TX_RAM W_ENEMYMONNAME text "!" - para "Will ",$52 + para "Will ", $52 line "change #MON?" done @@ -120025,7 +120026,8 @@ _BuildingRageText: ; 89b80 (22:5b80) prompt _MirrorMoveFailedText: ; 89b96 (22:5b96) - text "The MIRROR MOVE", $4e, "failed!" + text "The MIRROR MOVE" + next "failed!" prompt _UnnamedText_3e887: ; 89baf (22:5baf) @@ -120069,8 +120071,8 @@ _UnnamedText_58e40: ; 89c33 (22:5c33) text "The hooked" line "@" TX_RAM W_ENEMYMONNAME - text $55 - db "attacked!" + db $0 + cont "attacked!" prompt _UnnamedText_58e45: ; 89c4f (22:5c4f) @@ -120678,8 +120680,8 @@ _UnnamedText_8aaa9: ; 8aaa9 (22:6aa9) cont "Gee, thanks!@@" _UnnamedText_1dff1: ; 8aaef (22:6aef) - text $51 - db "..." + db $0 + para "..." line "Glug glug..." cont "..." cont "Gulp..." @@ -121126,8 +121128,8 @@ _UnnamedText_564c5: ; 8ca00 (23:4a00) text "!@@" _UnnamedText_564ca: ; 8ca4f (23:4a4f) - text $51 - db "Fishing is a way" + db $0 + para "Fishing is a way" line "of life!" para "From the seas to" @@ -124747,10 +124749,10 @@ _OaksLabText41: ; 94dbd (25:4dbd) done _OaksLabText39: ; 94ddf (25:4ddf) - db $0 - db "Those are #", $4f - db "BALLs. They", $55 - db "contain #MON!", $57 + text "Those are #" + line "BALLs. They" + cont "contain #MON!" + done _OaksLabCharmanderText: ; 94e06 (25:4e06) text "So! You want the" @@ -124826,8 +124828,8 @@ _OaksLabDeliverParcelText1: ; 94f69 (25:4f69) line "OAK's PARCEL.@@" _OaksLabDeliverParcelText2: ; 9500f (25:500f) - text $51 - db "Ah! This is the" + db $0 + para "Ah! This is the" line "custom # BALL" cont "I ordered!" cont "Thank you!" @@ -124854,8 +124856,8 @@ _OaksLabGivePokeballsText1: ; 9506d (25:506d) line "# BALLs!@@" _OaksLabGivePokeballsText2: ; 950f2 (25:50f2) - text $51 - db "When a wild" + db $0 + para "When a wild" line "#MON appears," cont "it's fair game." @@ -125086,11 +125088,10 @@ _UnnamedText_1d405: ; 957eb (25:57eb) done _UnnamedText_441cc: ; 9580c (25:580c) - text "#DEX comp-", $4f - db "letion is:", $51 - db "@" + text "#DEX comp-" + line "letion is:" -UnnamedText_95824: ; 95824 (25:5824) + para "@" TX_NUM $ffdb, 1, 3 text " #MON seen" line "@" @@ -125357,8 +125358,8 @@ _ReceivedTM27Text: ; 96082 (25:6082) line "TM27!@@" _TM27ExplanationText: ; 96095 (25:6095) - text $51 - db "TM27 is FISSURE!" + db $0 + para "TM27 is FISSURE!" line "It will take out" cont "#MON with just" cont "one hit!" @@ -125727,8 +125728,8 @@ _ReceivedTM34Text: ; 980ad (26:40ad) line "TM34!@@" _TM34ExplanationText: ; 980c0 (26:40c0) - text $51 - db "A TM contains a" + db $0 + para "A TM contains a" line "technique that" cont "can be taught to" cont "#MON!" @@ -125766,8 +125767,8 @@ _UnnamedText_5c4bc: ; 981c9 (26:41c9) line "the BOULDERBADGE!@@" _UnnamedText_5c4c1: ; 98232 (26:4232) - text $51 - db "That's an official" + db $0 + para "That's an official" line "#MON LEAGUE" cont "BADGE!" @@ -126781,8 +126782,8 @@ _ReceivedFluteText: ; 99ffb (26:5ffb) text "!@@" _FluteExplanationText: ; 9a011 (26:6011) - text $51 - db "Upon hearing #" + db $0 + para "Upon hearing #" line "FLUTE, sleeping" cont "#MON will" cont "spring awake." @@ -127042,8 +127043,8 @@ _ReceivedBikeVoucherText: ; 9a82e (26:682e) text "!@@" _UnnamedText_59c74: ; 9a844 (26:6844) - text $51 - db "Exchange that for" + db $0 + para "Exchange that for" line "a BICYCLE!" para "Don't worry, my" @@ -127175,8 +127176,8 @@ _ReceivedTM24Text: ; 9c0e0 (27:40e0) text "!@@" _TM24ExplanationText: ; 9c0f5 (27:40f5) - text $51 - db "TM24 contains" + db $0 + para "TM24 contains" line "THUNDERBOLT!" para "Teach it to an" @@ -127336,8 +127337,8 @@ _UnnamedText_560b6: ; 9c554 (27:4554) text "!@@" _UnnamedText_560bb: ; 9c5a4 (27:45a4) - text $51 - db "Fishing is a way" + db $0 + para "Fishing is a way" line "of life!" para "From the seas to" @@ -127569,8 +127570,8 @@ _UnnamedText_484f9: ; 9cc06 (27:4c06) text "!@@" _UnnamedText_484fe: ; 9cc1a (27:4c1a) - text $51 - db "@" + db $0 + para "@" TX_RAM $cf4b text " contains" line "ICE BEAM!" @@ -127595,8 +127596,8 @@ _UnnamedText_4850a: ; 9cc91 (27:4c91) text "!@@" _UnnamedText_4850f: ; 9cca5 (27:4ca5) - text $51 - db "@" + db $0 + para "@" TX_RAM $cf4b text " contains" line "ROCK SLIDE!" @@ -127619,8 +127620,8 @@ _ReceivedTM49Text: ; 9cd1d (27:4d1d) line "TM49!@@" _UnnamedText_48520: ; 9cd30 (27:4d30) - text $51 - db "TM49 contains" + db $0 + para "TM49 contains" line "TRI ATTACK!@@" _UnnamedText_48526: ; 9cd4d (27:4d4d) @@ -127880,8 +127881,8 @@ _ReceivedTM21Text: ; 9d50c (27:550c) text "!@@" _TM21ExplanationText: ; 9d520 (27:5520) - text $51 - db "TM21 contains" + db $0 + para "TM21 contains" line "MEGA DRAIN." para "Half the damage" @@ -128452,8 +128453,8 @@ _WardenTeethText1: ; 9e4d2 (27:64d2) cont "WARDEN!@@" _WardenTeethText2: ; 9e4f9 (27:64f9) - text $51 - db "The WARDEN popped" + db $0 + para "The WARDEN popped" line "in his teeth!" prompt @@ -128667,8 +128668,8 @@ _ReceivedTM06Text: ; a00eb (28:40eb) text "!@@" _TM06ExplanationText: ; a00ff (28:40ff) - text $51 - db "TM06 contains" + db $0 + para "TM06 contains" line "TOXIC!" para "It is a secret" @@ -128979,8 +128980,8 @@ _ReceivedTM38Text: ; a09a8 (28:49a8) text "!@@" _TM38ExplanationText: ; a09bc (28:49bc) - text $51 - db "TM38 contains" + db $0 + para "TM38 contains" line "FIRE BLAST!" para "Teach it to fire-" @@ -129438,8 +129439,8 @@ _ReceivedTM31Text: ; a1675 (28:5675) text "!@@" _TM31ExplanationText1: ; a1689 (28:5689) - text $51 - db "TM31 contains my" + db $0 + para "TM31 contains my" line "favorite, MIMIC!" para "Use it on a good" @@ -129692,8 +129693,8 @@ ReceivedTM46Text: ; a1dcd (28:5dcd) line "TM46!@@" _TM46ExplanationText: ; a1de0 (28:5de0) - text $51 - db "TM46 is PSYWAVE!" + db $0 + para "TM46 is PSYWAVE!" line "It uses powerful" cont "psychic waves to" cont "inflict damage!" @@ -129957,7 +129958,8 @@ _TM29NoRoomText: ; a257c (28:657c) done _PokemartGreetingText: ; a259c (28:659c) - text "Hi there!", $4e, "May I help you?" + text "Hi there!" + next "May I help you?" done _PokemonFaintedText: ; a25b7 (28:65b7) @@ -130047,7 +130049,7 @@ UnnamedText_a273b: ; a273b (28:673b) _UnnamedText_6fb4: ; a2750 (28:6750) text "Which move should" - db $4e, "be forgotten?" + next "be forgotten?" done _UnnamedText_6fb9: ; a2771 (28:6771) @@ -130656,8 +130658,8 @@ _ReceivedTM28Text: ; a4f82 (29:4f82) line "TM28!@@" _ReceivedTM28Text2: ; a4f96 (29:4f96) - text $51 - db "I better get" + db $0 + para "I better get" line "moving! Bye!@@" _TM28NoRoomText: ; a4fb3 (29:4fb3) @@ -130952,8 +130954,8 @@ _VermilionCityText5: ; a5852 (29:5852) line "Gogogoh!@@" _VermilionCityText14: ; a586b (29:586b) - text $51 - db "A MACHOP is" + db $0 + para "A MACHOP is" line "stomping the land" cont "flat." done @@ -131498,22 +131500,21 @@ _ItemUseBallText04: ; a67b2 (29:67b2) prompt _ItemUseBallText05: ; a67cf (29:67cf) - text "All right!",$4F,"@",1 - dw W_ENEMYMONNAME + text "All right!" + line "@" + TX_RAM W_ENEMYMONNAME text " was" cont "caught!@@" _ItemUseBallText07: ; a67ee (29:67ee) - db 1 - dw W_BOXMON1NAME + TX_RAM W_BOXMON1NAME text " was" line "transferred to" cont "BILL's PC!" prompt _ItemUseBallText08: ; a6810 (29:6810) - db 1 - dw W_BOXMON1NAME + TX_RAM W_BOXMON1NAME text " was" line "transferred to" cont "someone's PC!" @@ -131521,7 +131522,8 @@ _ItemUseBallText08: ; a6810 (29:6810) _ItemUseBallText06: ; a6835 (29:6835) text "New #DEX data" - line "will be added for",$55,"@" + line "will be added for" + cont "@" TX_RAM W_ENEMYMONNAME text "!@@" @@ -131681,7 +131683,8 @@ _ThrowBallAtTrainerMonText2: ; a6b22 (29:6b22) prompt _NoCyclingAllowedHereText: ; a6b34 (29:6b34) - text "No cycling", $4e, "allowed here." + text "No cycling" + next "allowed here." prompt _NoSurfingHereText: ; a6b4e (29:6b4e) From b52bcd65975a21d0d101091259058f758b6ad8a0 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 14:45:07 -0500 Subject: [PATCH 23/41] split viridian and oaks lab text into text/maps/ --- main.asm | 963 +---------------------------------- text/maps/museum_1f.asm | 108 ++++ text/maps/museum_2f.asm | 46 ++ text/maps/oaks_lab.asm | 478 +++++++++++++++++ text/maps/school.asm | 14 + text/maps/viridian_gym.asm | 237 +++++++++ text/maps/viridian_house.asm | 24 + text/maps/viridian_mart.asm | 49 ++ 8 files changed, 963 insertions(+), 956 deletions(-) create mode 100644 text/maps/museum_1f.asm create mode 100644 text/maps/museum_2f.asm create mode 100644 text/maps/oaks_lab.asm create mode 100644 text/maps/school.asm create mode 100644 text/maps/viridian_gym.asm create mode 100644 text/maps/viridian_house.asm create mode 100644 text/maps/viridian_mart.asm diff --git a/main.asm b/main.asm index c97ced16..70a6ff8d 100644 --- a/main.asm +++ b/main.asm @@ -124726,962 +124726,13 @@ _TradeCenterMText1: ; 94b04 (25:4b04) INCLUDE "text/maps/reds_house_1f.asm" INCLUDE "text/maps/blues_house.asm" - -_OaksLabGaryText1: ; 94d5b (25:4d5b) - text $53, ": Yo" - line $52, "! Gramps" - cont "isn't around!" - done - -_OaksLabText40: ; 94d79 (25:4d79) - text $53, ": Heh, I" - line "don't need to be" - cont "greedy like you!" - - para "Go ahead and" - line "choose, ", $52, "!" - done - -_OaksLabText41: ; 94dbd (25:4dbd) - text $53, ": My" - line "#MON looks a" - cont "lot stronger." - done - -_OaksLabText39: ; 94ddf (25:4ddf) - text "Those are #" - line "BALLs. They" - cont "contain #MON!" - done - -_OaksLabCharmanderText: ; 94e06 (25:4e06) - text "So! You want the" - line "fire #MON," - cont "CHARMANDER?" - done - -_OaksLabSquirtleText: ; 94e2f (25:4e2f) - text "So! You want the" - line "water #MON," - cont "SQUIRTLE?" - done - -_OaksLabBulbasaurText: ; 94e57 (25:4e57) - text "So! You want the" - line "plant #MON," - cont "BULBASAUR?" - done - -_OaksLabMonEnergeticText: ; 94e80 (25:4e80) - text "This #MON is" - line "really energetic!" - prompt - -_OaksLabReceivedMonText: ; 94ea0 (25:4ea0) - text $52, " received" - line "a @" - TX_RAM $cd6d - text "!@@" - -_OaksLabLastMonText: ; 94eb6 (25:4eb6) - text "That's PROF.OAK's" - line "last #MON!" - done - -_UnnamedText_1d2f0: ; 94ed2 (25:4ed2) - text "OAK: Now, ", $52, "," - line "which #MON do" - cont "you want?" - done - -_UnnamedText_1d2f5: ; 94ef8 (25:4ef8) - text "OAK: If a wild" - line "#MON appears," - cont "your #MON can" - cont "fight against it!" - done - -_UnnamedText_1d2fa: ; 94f36 (25:4f36) - text "OAK: ", $52, "," - line "raise your young" - cont "#MON by making" - cont "it fight!" - done - -_OaksLabDeliverParcelText1: ; 94f69 (25:4f69) - text "OAK: Oh, ", $52, "!" - - para "How is my old" - line "#MON?" - - para "Well, it seems to" - line "like you a lot." - - para "You must be" - line "talented as a" - cont "#MON trainer!" - - para "What? You have" - line "something for me?" - - para $52, " delivered" - line "OAK's PARCEL.@@" - -_OaksLabDeliverParcelText2: ; 9500f (25:500f) - db $0 - para "Ah! This is the" - line "custom # BALL" - cont "I ordered!" - cont "Thank you!" - done - -_OaksLabAroundWorldText: ; 95045 (25:5045) - text "#MON around the" - line "world wait for" - cont "you, ", $52, "!" - done - -_OaksLabGivePokeballsText1: ; 9506d (25:506d) - text "OAK: You can't get" - line "detailed data on" - cont "#MON by just" - cont "seeing them." - - para "You must catch" - line "them! Use these" - cont "to capture wild" - cont "#MON." - - para $52, " got 5" - line "# BALLs!@@" - -_OaksLabGivePokeballsText2: ; 950f2 (25:50f2) - db $0 - para "When a wild" - line "#MON appears," - cont "it's fair game." - - para "Just throw a #" - line "BALL at it and try" - line "to catch it!" - - para "This won't always" - line "work, though." - - para "A healthy #MON" - line "could escape. You" - cont "have to be lucky!" - done - -_OaksLabPleaseVisitText: ; 9519e (25:519e) - text "OAK: Come see me" - line "sometimes." - - para "I want to know how" - line "your #DEX is" - cont "coming along." - done - -_UnnamedText_1d31d: ; 951e9 (25:51e9) - text "OAK: Good to see " - line "you! How is your " - cont "#DEX coming? " - cont "Here, let me take" - cont "a look!" - prompt - -_UnnamedText_1d32c: ; 95236 (25:5236) - text "It's encyclopedia-" - line "like, but the" - cont "pages are blank!" - done - -_OaksLabText8: ; 95268 (25:5268) - text "?" - done - -_UnnamedText_1d340: ; 9526b (25:526b) - text "PROF.OAK is the" - line "authority on" - cont "#MON!" - - para "Many #MON" - line "trainers hold him" - cont "in high regard!" - done - -_OaksLabRivalWaitingText: ; 952bb (25:52bb) - text $53, ": Gramps!" - line "I'm fed up with" - cont "waiting!" - done - -_OaksLabChooseMonText: ; 952df (25:52df) - text "OAK: ", $53, "?" - line "Let me think..." - - para "Oh, that's right," - line "I told you to" - cont "come! Just wait!" - - para "Here, ", $52, "!" - - para "There are 3" - line "#MON here!" - - para "Haha!" - - para "They are inside" - line "the # BALLs." - - para "When I was young," - line "I was a serious" - cont "#MON trainer!" - - para "In my old age, I" - line "have only 3 left," - cont "but you can have" - cont "one! Choose!" - done - -_OaksLabRivalInterjectionText: ; 953dc (25:53dc) - text $53, ": Hey!" - line "Gramps! What" - cont "about me?" - done - -_OaksLabBePatientText: ; 953fc (25:53fc) - text "OAK: Be patient!" - line $53, ", you can" - cont "have one too!" - done - -_OaksLabLeavingText: ; 95427 (25:5427) - text "OAK: Hey! Don't go" - line "away yet!" - done - -_OaksLabRivalPickingMonText: ; 95444 (25:5444) - text $53, ": I'll take" - line "this one, then!" - done - -_OaksLabRivalReceivedMonText: ; 95461 (25:5461) - text $53, " received" - line "a @" - TX_RAM $cd6d - text "!@@" - -_OaksLabRivalChallengeText: ; 95477 (25:5477) - text $53, ": Wait" - line $52, "!" - cont "Let's check out" - cont "our #MON!" - - para "Come on, I'll take" - line "you on!" - done - -_UnnamedText_1d3be: ; 954b6 (25:54b6) - text "WHAT?" - line "Unbelievable!" - cont "I picked the" - cont "wrong #MON!" - prompt - -_UnnamedText_1d3c3: ; 954e4 (25:54e4) - text $53, ": Yeah! Am" - line "I great or what?" - prompt - -_OaksLabRivalToughenUpText: ; 95502 (25:5502) - text $53, ": Okay!" - line "I'll make my" - cont "#MON fight to" - cont "toughen it up!" - - para $52, "! Gramps!" - line "Smell you later!" - done - -_OaksLabText21: ; 95551 (25:5551) - text $53, ": Gramps!" - done - -_OaksLabText22: ; 9555d (25:555d) - text $53, ": What did" - line "you call me for?" - done - -_OaksLabText23: ; 9557b (25:557b) - text "OAK: Oh right! I" - line "have a request" - cont "of you two." - done - -_OaksLabText24: ; 955a8 (25:55a8) - text "On the desk there" - line "is my invention," - cont "#DEX!" - - para "It automatically" - line "records data on" - cont "#MON you've" - cont "seen or caught!" - - para "It's a hi-tech" - line "encyclopedia!" - done - -_OaksLabText25: ; 9562a (25:562a) - text "OAK: ", $52, " and" - line $53, "! Take" - cont "these with you!" - - para $52, " got" - line "#DEX from OAK!@@" - -_OaksLabText26: ; 95664 (25:5664) - text "To make a complete" - line "guide on all the" - cont "#MON in the" - cont "world..." - - para "That was my dream!" - - para "But, I'm too old!" - line "I can't do it!" - - para "So, I want you two" - line "to fulfill my" - cont "dream for me!" - - para "Get moving, you" - line "two!" - - para "This is a great" - line "undertaking in" - cont "#MON history!" - done - -_OaksLabText27: ; 95741 (25:5741) - text $53, ": Alright" - line "Gramps! Leave it" - cont "all to me!" - - para $52, ", I hate to" - line "say it, but I" - cont "don't need you!" - - para "I know! I'll" - line "borrow a TOWN MAP" - cont "from my sis!" - - para "I'll tell her not" - line "to lend you one," - cont $52, "! Hahaha!" - done - -_UnnamedText_1d405: ; 957eb (25:57eb) - text "I study #MON as" - line "PROF.OAK's AIDE." - done - -_UnnamedText_441cc: ; 9580c (25:580c) - text "#DEX comp-" - line "letion is:" - - para "@" - TX_NUM $ffdb, 1, 3 - text " #MON seen" - line "@" - TX_NUM $ffdc, 1, 3 - text " #MON owned" - - para "PROF.OAK's" - line "Rating:" - prompt - -_UnnamedText_44201: ; 95858 (25:5858) - text "You still have" - line "lots to do." - cont "Look for #MON" - cont "in grassy areas!" - done - -_UnnamedText_44206: ; 95893 (25:5893) - text "You're on the" - line "right track! " - cont "Get a FLASH HM" - cont "from my AIDE!" - done - -_UnnamedText_4420b: ; 958cc (25:58cc) - text "You still need" - line "more #MON!" - cont "Try to catch" - cont "other species!" - done - -_UnnamedText_44210: ; 95903 (25:5903) - text "Good, you're" - line "trying hard!" - cont "Get an ITEMFINDER" - cont "from my AIDE!" - done - -_UnnamedText_44215: ; 9593d (25:593d) - text "Looking good!" - line "Go find my AIDE" - cont "when you get 50!" - done - -_UnnamedText_4421a: ; 9596d (25:596d) - text "You finally got at" - line "least 50 species!" - cont "Be sure to get" - cont "EXP.ALL from my" - cont "AIDE!" - done - -_UnnamedText_4421f: ; 959b8 (25:59b8) - text "Ho! This is geting" - line "even better!" - done - -_UnnamedText_44224: ; 959d9 (25:59d9) - text "Very good!" - line "Go fish for some" - cont "marine #MON!" - done - -_UnnamedText_44229: ; 95a03 (25:5a03) - text "Wonderful!" - line "Do you like to" - cont "collect things?" - done - -_UnnamedText_4422e: ; 95a2e (25:5a2e) - text "I'm impressed!" - line "It must have been" - cont "difficult to do!" - done - -_UnnamedText_44233: ; 95a60 (25:5a60) - text "You finally got at" - line "least 100 species!" - cont "I can't believe" - cont "how good you are!" - done - -_UnnamedText_44238: ; 95aa8 (25:5aa8) - text "You even have the" - line "evolved forms of" - cont "#MON! Super!" - done - -_UnnamedText_4423d: ; 95ad9 (25:5ad9) - text "Excellent! Trade" - line "with friends to" - cont "get some more!" - done - -_UnnamedText_44242: ; 95b0a (25:5b0a) - text "Outstanding!" - line "You've become a" - cont "real pro at this!" - done - -_UnnamedText_44247: ; 95b39 (25:5b39) - text "I have nothing" - line "left to say!" - cont "You're the" - cont "authority now!" - done - -_UnnamedText_4424c: ; 95b6f (25:5b6f) - text "Your #DEX is" - line "entirely complete!" - cont "Congratulations!" - done - -_ViridianPokeCenterText2: ; 95ba1 (25:5ba1) -_ViridianPokeCenterText1: ; 95ba1 (25:5ba1) - text "You can use that" - line "PC in the corner." - - para "The receptionist" - line "told me. So kind!" - done - -_ViridianPokeCenterText3: ; 95be8 (25:5be8) - text "There's a #MON" - line "CENTER in every" - cont "town ahead." - - para "They don't charge" - line "any money either!" - done - -_ViridianMartText1: ; 95c36 (25:5c36) - text "Okay! Say hi to" - line "PROF.OAK for me!" - done - -_ViridianMartText4: ; 95c58 (25:5c58) - text "Hey! You came from" - line "PALLET TOWN?" - done - -ViridianMartParcelQuestText: ; 95c79 (25:5c79) - text "You know PROF." - line "OAK, right?" - - para "His order came in." - line "Will you take it" - cont "to him?" - - para $52, " got" - line "OAK's PARCEL!@@" - -_ViridianMartText2: ; 95cd5 (25:5cd5) - text "This shop sells" - line "many ANTIDOTEs." - done - -_ViridianMartText3: ; 95cf6 (25:5cf6) - text "No! POTIONs are" - line "all sold out." - done - -_SchoolText1: ; 95d15 (25:5d15) - text "Whew! I'm trying" - line "to memorize all" - cont "my notes." - done - -_SchoolText2: ; 95d40 (25:5d40) - text "Okay!" - - para "Be sure to read" - line "the blackboard" - cont "carefully!" - done - -_ViridianHouseText1: ; 95d71 (25:5d71) - text "Coming up with" - line "nicknames is fun," - cont "but hard." - - para "Simple names are" - line "the easiest to" - cont "remember." - done - -_ViridianHouseText2: ; 95dc7 (25:5dc7) - text "My Daddy loves" - line "#MON too." - done - -_UnnamedText_1d5b1: ; 95de1 (25:5de1) - text "SPEARY: Tetweet!" - done - -_ViridianHouseText4: ; 95df3 (25:5df3) - text "SPEAROW" - line "Name: SPEARY" - done - -_UnnamedText_74ace: ; 95e09 (25:5e09) - text "Fwahahaha! This is" - line "my hideout!" - - para "I planned to" - line "resurrect TEAM" - cont "ROCKET here!" - - para "But, you have" - line "caught me again!" - cont "So be it! This" - cont "time, I'm not" - cont "holding back!" - - para "Once more, you" - line "shall face" - cont "GIOVANNI, the" - cont "greatest trainer!" - done - -_UnnamedText_74ad3: ; 95ed5 (25:5ed5) - text "Ha!" - line "That was a truly" - cont "intense fight!" - cont "You have won!" - cont "As proof, here is" - cont "the EARTHBADGE!@@" - -_UnnamedText_74ad9: ; 95f2b (25:5f2b) - text "Having lost, I" - line "cannot face my" - cont "underlings!" - cont "TEAM ROCKET is" - cont "finished forever!" - - para "I will dedicate my" - line "life to the study" - cont "of #MON!" - - para "Let us meet again" - line "some day!" - cont "Farewell!@@" - -_ViridianGymText12: ; 95fcc (25:5fcc) - text "The EARTHBADGE" - line "makes #MON of" - cont "any level obey!" - - para "It is evidence of" - line "your mastery as a" - cont "#MON trainer!" - - para "With it, you can" - line "enter the #MON" - cont "LEAGUE!" - - para "It is my gift for" - line "your #MON" - cont "LEAGUE challenge!" - done - -_ReceivedTM27Text: ; 96082 (25:6082) - text $52, " received" - line "TM27!@@" - -_TM27ExplanationText: ; 96095 (25:6095) - db $0 - para "TM27 is FISSURE!" - line "It will take out" - cont "#MON with just" - cont "one hit!" - - para "I made it when I" - line "ran the GYM here," - cont "too long ago..." - done - -_TM27NoRoomText: ; 96104 (25:6104) - text "You do not have" - line "space for this!" - done - -_ViridianGymBattleText1: ; 96125 (25:6125) - text "Heh! You must be" - line "running out of" - cont "steam by now!" - done - -_ViridianGymEndBattleText1: ; 96154 (25:6154) - text "I" - line "ran out of gas!" - prompt - -_ViridianGymAfterBattleText1: ; 96167 (25:6167) - text "You need power to" - line "keep up with our" - cont "GYM LEADER!" - done - -_ViridianGymBattleText2: ; 96197 (25:6197) - text "Rrrroar! I'm" - line "working myself" - cont "into a rage!" - done - -_ViridianGymEndBattleText2: ; 961c0 (25:61c0) - text "Wargh!" - prompt - -_ViridianGymAfterBattleText2: ; 961c8 (25:61c8) - text "I'm still not" - line "worthy!" - done - -_ViridianGymBattleText3: ; 961de (25:61de) - text "#MON and I, we" - line "make wonderful" - cont "music together!" - done - -_ViridianGymEndBattleText3: ; 9620d (25:620d) - text "You are in" - line "perfect harmony!" - prompt - -_ViridianGymAfterBattleText3: ; 9622a (25:622a) - text "Do you know the" - line "identity of our" - cont "GYM LEADER?" - done - -_ViridianGymBattleText4: ; 96257 (25:6257) - text "Karate is the" - line "ultimate form of" - cont "martial arts!" - done - -_ViridianGymEndBattleText4: ; 96285 (25:6285) - text "Atcho!" - prompt - -_ViridianGymAfterBattleText4: ; 9628d (25:628d) - text "If my #MON" - line "were as good at" - cont "Karate as I..." - done - -_ViridianGymBattleText5: ; 962b8 (25:62b8) - text "The truly talented" - line "win with style!" - done - -_ViridianGymEndBattleText5: ; 962dc (25:62dc) - text "I" - line "lost my grip!" - prompt - -_ViridianGymAfterBattleText5: ; 962ed (25:62ed) - text "The LEADER will" - line "scold me!" - done - -_ViridianGymBattleText6: ; 96308 (25:6308) - text "I'm the KARATE" - line "KING! Your fate" - cont "rests with me!" - done - -_ViridianGymEndBattleText6: ; 96336 (25:6336) - text "Ayah!" - prompt - -_ViridianGymAfterBattleText6: ; 9633d (25:633d) - text "#MON LEAGUE?" - line "You? Don't get" - cont "cocky!" - done - -_ViridianGymBattleText7: ; 96360 (25:6360) - text "Your #MON will" - line "cower at the" - cont "crack of my whip!" - done - -_ViridianGymEndBattleText7: ; 9638f (25:638f) - text "Yowch!" - line "Whiplash!" - prompt - -_ViridianGymAfterBattleText7: ; 963a1 (25:63a1) - text "Wait! I was just" - line "careless!" - done - -_ViridianGymBattleText8: ; 963bd (25:63bd) - text "VIRIDIAN GYM was" - line "closed for a long" - cont "time, but now our" - cont "LEADER is back!" - done - -_ViridianGymEndBattleText8: ; 96403 (25:6403) - text "I" - line "was beaten?" - prompt - -_ViridianGymAfterBattleText8: ; 96412 (25:6412) - text "You can go onto" - line "#MON LEAGUE" - cont "only by defeating" - cont "our GYM LEADER!" - done - -_UnnamedText_74bd4: ; 96451 (25:6451) - text "Yo! Champ in" - line "making!" - - para "Even I don't know" - line "VIRIDIAN LEADER's" - cont "identity!" - - para "This will be the" - line "toughest of all" - cont "the GYM LEADERs!" - - para "I heard that the" - line "trainers here" - cont "like ground-type" - cont "#MON!" - done - -_UnnamedText_74bd9: ; 964fb (25:64fb) - text "Blow me away!" - line "GIOVANNI was the" - cont "GYM LEADER here?" - done - -_UnnamedText_5c21a: ; 9652c (25:652c) - text "Come again!" - done - -_UnnamedText_5c21f: ; 96539 (25:6539) - text "It's ¥50 for a" - line "child's ticket." - - para "Would you like to" - line "come in?" - done - -_UnnamedText_5c224: ; 96572 (25:6572) - text "Right, ¥50!" - line "Thank you!" - done - -_UnnamedText_5c229: ; 9658a (25:658a) - text "You don't have" - line "enough money." - prompt - -_UnnamedText_5c22e: ; 965a7 (25:65a7) - text "You can't sneak" - line "in the back way!" - - para "Oh, whatever!" - line "Do you know what" - cont "AMBER is?" - done - -_UnnamedText_5c233: ; 965f1 (25:65f1) - text "There's a lab" - line "somewhere trying" - cont "to resurrect" - cont "ancient #MON" - cont "from AMBER." - done - -_UnnamedText_5c238: ; 96636 (25:6636) - text "AMBER is fossil-" - line "ized tree sap." - done - -_UnnamedText_5c23d: ; 96657 (25:6657) - text "Please go to the" - line "other side!" - done - -_UnnamedText_5c242: ; 96675 (25:6675) - text "Take plenty of" - line "time to look!" - done - -_UnnamedText_5c251: ; 96693 (25:6693) - text "That is one" - line "magnificent" - cont "fossil!" - done - -_UnnamedText_5c28e: ; 966b4 (25:66b4) - text "Ssh! I think that" - line "this chunk of" - cont "AMBER contains" - cont "#MON DNA!" - - para "It would be great" - line "if #MON could" - cont "be resurrected" - cont "from it!" - - para "But, my colleagues" - line "just ignore me!" - - para "So I have a favor" - line "to ask!" - - para "Take this to a" - line "#MON LAB and" - cont "get it examined!" - prompt - -_ReceivedOldAmberText: ; 96790 (25:6790) - text $52, " received" - line "OLD AMBER!@@" - -_UnnamedText_5c299: ; 967a8 (25:67a8) - text "Ssh! Get the OLD" - line "AMBER checked!" - done - -_UnnamedText_5c29e: ; 967c9 (25:67c9) - text "You don't have" - line "space for this!" - done - -_UnnamedText_5c2ad: ; 967e8 (25:67e8) - text "We are proud of 2" - line "fossils of very" - cont "rare, prehistoric" - cont "#MON!" - done - -_UnnamedText_5c2bc: ; 96823 (25:6823) - text "The AMBER is" - line "clear and gold!" - done - -_MuseumF2Text1: ; 96841 (25:6841) - text "MOON STONE?" - - para "What's so special" - line "about it?" - done - -_MuseumF2Text2: ; 96869 (25:6869) - text "July 20, 1969!" - - para "The 1st lunar" - line "landing!" - - para "I bought a color" - line "TV to watch it!" - done - -_MuseumF2Text3: ; 968b1 (25:68b1) - text "We have a space" - line "exhibit now." - done - -_MuseumF2Text4: ; 968cf (25:68cf) - text "I want a PIKACHU!" - line "It's so cute!" - - para "I asked my Daddy" - line "to catch me one!" - done - -_MuseumF2Text5: ; 96911 (25:6911) - text "Yeah, a PIKACHU" - line "soon, I promise!" - done - -_MuseumF2Text6: ; 96933 (25:6933) - text "SPACE SHUTTLE" - line "COLUMBIA" - done - -_MuseumF2Text7: ; 9694b (25:694b) - text "Meteorite that" - line "fell on MT.MOON." - cont "(MOON STONE?)" - done +INCLUDE "text/maps/oaks_lab.asm" +INCLUDE "text/maps/viridian_mart.asm" +INCLUDE "text/maps/school.asm" +INCLUDE "text/maps/viridian_house.asm" +INCLUDE "text/maps/viridian_gym.asm" +INCLUDE "text/maps/museum_1f.asm" +INCLUDE "text/maps/museum_2f.asm" _UnnamedText_5c49e: ; 9697a (25:697a) text "I'm BROCK!" diff --git a/text/maps/museum_1f.asm b/text/maps/museum_1f.asm new file mode 100644 index 00000000..6db66bcc --- /dev/null +++ b/text/maps/museum_1f.asm @@ -0,0 +1,108 @@ +_UnnamedText_5c21a: ; 9652c (25:652c) + text "Come again!" + done + +_UnnamedText_5c21f: ; 96539 (25:6539) + text "It's ¥50 for a" + line "child's ticket." + + para "Would you like to" + line "come in?" + done + +_UnnamedText_5c224: ; 96572 (25:6572) + text "Right, ¥50!" + line "Thank you!" + done + +_UnnamedText_5c229: ; 9658a (25:658a) + text "You don't have" + line "enough money." + prompt + +_UnnamedText_5c22e: ; 965a7 (25:65a7) + text "You can't sneak" + line "in the back way!" + + para "Oh, whatever!" + line "Do you know what" + cont "AMBER is?" + done + +_UnnamedText_5c233: ; 965f1 (25:65f1) + text "There's a lab" + line "somewhere trying" + cont "to resurrect" + cont "ancient #MON" + cont "from AMBER." + done + +_UnnamedText_5c238: ; 96636 (25:6636) + text "AMBER is fossil-" + line "ized tree sap." + done + +_UnnamedText_5c23d: ; 96657 (25:6657) + text "Please go to the" + line "other side!" + done + +_UnnamedText_5c242: ; 96675 (25:6675) + text "Take plenty of" + line "time to look!" + done + +_UnnamedText_5c251: ; 96693 (25:6693) + text "That is one" + line "magnificent" + cont "fossil!" + done + +_UnnamedText_5c28e: ; 966b4 (25:66b4) + text "Ssh! I think that" + line "this chunk of" + cont "AMBER contains" + cont "#MON DNA!" + + para "It would be great" + line "if #MON could" + cont "be resurrected" + cont "from it!" + + para "But, my colleagues" + line "just ignore me!" + + para "So I have a favor" + line "to ask!" + + para "Take this to a" + line "#MON LAB and" + cont "get it examined!" + prompt + +_ReceivedOldAmberText: ; 96790 (25:6790) + text $52, " received" + line "OLD AMBER!@@" + +_UnnamedText_5c299: ; 967a8 (25:67a8) + text "Ssh! Get the OLD" + line "AMBER checked!" + done + +_UnnamedText_5c29e: ; 967c9 (25:67c9) + text "You don't have" + line "space for this!" + done + +_UnnamedText_5c2ad: ; 967e8 (25:67e8) + text "We are proud of 2" + line "fossils of very" + cont "rare, prehistoric" + cont "#MON!" + done + +_UnnamedText_5c2bc: ; 96823 (25:6823) + text "The AMBER is" + line "clear and gold!" + done + diff --git a/text/maps/museum_2f.asm b/text/maps/museum_2f.asm new file mode 100644 index 00000000..e1183648 --- /dev/null +++ b/text/maps/museum_2f.asm @@ -0,0 +1,46 @@ +_MuseumF2Text1: ; 96841 (25:6841) + text "MOON STONE?" + + para "What's so special" + line "about it?" + done + +_MuseumF2Text2: ; 96869 (25:6869) + text "July 20, 1969!" + + para "The 1st lunar" + line "landing!" + + para "I bought a color" + line "TV to watch it!" + done + +_MuseumF2Text3: ; 968b1 (25:68b1) + text "We have a space" + line "exhibit now." + done + +_MuseumF2Text4: ; 968cf (25:68cf) + text "I want a PIKACHU!" + line "It's so cute!" + + para "I asked my Daddy" + line "to catch me one!" + done + +_MuseumF2Text5: ; 96911 (25:6911) + text "Yeah, a PIKACHU" + line "soon, I promise!" + done + +_MuseumF2Text6: ; 96933 (25:6933) + text "SPACE SHUTTLE" + line "COLUMBIA" + done + +_MuseumF2Text7: ; 9694b (25:694b) + text "Meteorite that" + line "fell on MT.MOON." + cont "(MOON STONE?)" + done + diff --git a/text/maps/oaks_lab.asm b/text/maps/oaks_lab.asm new file mode 100644 index 00000000..484b4981 --- /dev/null +++ b/text/maps/oaks_lab.asm @@ -0,0 +1,478 @@ +_OaksLabGaryText1: ; 94d5b (25:4d5b) + text $53, ": Yo" + line $52, "! Gramps" + cont "isn't around!" + done + +_OaksLabText40: ; 94d79 (25:4d79) + text $53, ": Heh, I" + line "don't need to be" + cont "greedy like you!" + + para "Go ahead and" + line "choose, ", $52, "!" + done + +_OaksLabText41: ; 94dbd (25:4dbd) + text $53, ": My" + line "#MON looks a" + cont "lot stronger." + done + +_OaksLabText39: ; 94ddf (25:4ddf) + text "Those are #" + line "BALLs. They" + cont "contain #MON!" + done + +_OaksLabCharmanderText: ; 94e06 (25:4e06) + text "So! You want the" + line "fire #MON," + cont "CHARMANDER?" + done + +_OaksLabSquirtleText: ; 94e2f (25:4e2f) + text "So! You want the" + line "water #MON," + cont "SQUIRTLE?" + done + +_OaksLabBulbasaurText: ; 94e57 (25:4e57) + text "So! You want the" + line "plant #MON," + cont "BULBASAUR?" + done + +_OaksLabMonEnergeticText: ; 94e80 (25:4e80) + text "This #MON is" + line "really energetic!" + prompt + +_OaksLabReceivedMonText: ; 94ea0 (25:4ea0) + text $52, " received" + line "a @" + TX_RAM $cd6d + text "!@@" + +_OaksLabLastMonText: ; 94eb6 (25:4eb6) + text "That's PROF.OAK's" + line "last #MON!" + done + +_UnnamedText_1d2f0: ; 94ed2 (25:4ed2) + text "OAK: Now, ", $52, "," + line "which #MON do" + cont "you want?" + done + +_UnnamedText_1d2f5: ; 94ef8 (25:4ef8) + text "OAK: If a wild" + line "#MON appears," + cont "your #MON can" + cont "fight against it!" + done + +_UnnamedText_1d2fa: ; 94f36 (25:4f36) + text "OAK: ", $52, "," + line "raise your young" + cont "#MON by making" + cont "it fight!" + done + +_OaksLabDeliverParcelText1: ; 94f69 (25:4f69) + text "OAK: Oh, ", $52, "!" + + para "How is my old" + line "#MON?" + + para "Well, it seems to" + line "like you a lot." + + para "You must be" + line "talented as a" + cont "#MON trainer!" + + para "What? You have" + line "something for me?" + + para $52, " delivered" + line "OAK's PARCEL.@@" + +_OaksLabDeliverParcelText2: ; 9500f (25:500f) + db $0 + para "Ah! This is the" + line "custom # BALL" + cont "I ordered!" + cont "Thank you!" + done + +_OaksLabAroundWorldText: ; 95045 (25:5045) + text "#MON around the" + line "world wait for" + cont "you, ", $52, "!" + done + +_OaksLabGivePokeballsText1: ; 9506d (25:506d) + text "OAK: You can't get" + line "detailed data on" + cont "#MON by just" + cont "seeing them." + + para "You must catch" + line "them! Use these" + cont "to capture wild" + cont "#MON." + + para $52, " got 5" + line "# BALLs!@@" + +_OaksLabGivePokeballsText2: ; 950f2 (25:50f2) + db $0 + para "When a wild" + line "#MON appears," + cont "it's fair game." + + para "Just throw a #" + line "BALL at it and try" + line "to catch it!" + + para "This won't always" + line "work, though." + + para "A healthy #MON" + line "could escape. You" + cont "have to be lucky!" + done + +_OaksLabPleaseVisitText: ; 9519e (25:519e) + text "OAK: Come see me" + line "sometimes." + + para "I want to know how" + line "your #DEX is" + cont "coming along." + done + +_UnnamedText_1d31d: ; 951e9 (25:51e9) + text "OAK: Good to see " + line "you! How is your " + cont "#DEX coming? " + cont "Here, let me take" + cont "a look!" + prompt + +_UnnamedText_1d32c: ; 95236 (25:5236) + text "It's encyclopedia-" + line "like, but the" + cont "pages are blank!" + done + +_OaksLabText8: ; 95268 (25:5268) + text "?" + done + +_UnnamedText_1d340: ; 9526b (25:526b) + text "PROF.OAK is the" + line "authority on" + cont "#MON!" + + para "Many #MON" + line "trainers hold him" + cont "in high regard!" + done + +_OaksLabRivalWaitingText: ; 952bb (25:52bb) + text $53, ": Gramps!" + line "I'm fed up with" + cont "waiting!" + done + +_OaksLabChooseMonText: ; 952df (25:52df) + text "OAK: ", $53, "?" + line "Let me think..." + + para "Oh, that's right," + line "I told you to" + cont "come! Just wait!" + + para "Here, ", $52, "!" + + para "There are 3" + line "#MON here!" + + para "Haha!" + + para "They are inside" + line "the # BALLs." + + para "When I was young," + line "I was a serious" + cont "#MON trainer!" + + para "In my old age, I" + line "have only 3 left," + cont "but you can have" + cont "one! Choose!" + done + +_OaksLabRivalInterjectionText: ; 953dc (25:53dc) + text $53, ": Hey!" + line "Gramps! What" + cont "about me?" + done + +_OaksLabBePatientText: ; 953fc (25:53fc) + text "OAK: Be patient!" + line $53, ", you can" + cont "have one too!" + done + +_OaksLabLeavingText: ; 95427 (25:5427) + text "OAK: Hey! Don't go" + line "away yet!" + done + +_OaksLabRivalPickingMonText: ; 95444 (25:5444) + text $53, ": I'll take" + line "this one, then!" + done + +_OaksLabRivalReceivedMonText: ; 95461 (25:5461) + text $53, " received" + line "a @" + TX_RAM $cd6d + text "!@@" + +_OaksLabRivalChallengeText: ; 95477 (25:5477) + text $53, ": Wait" + line $52, "!" + cont "Let's check out" + cont "our #MON!" + + para "Come on, I'll take" + line "you on!" + done + +_UnnamedText_1d3be: ; 954b6 (25:54b6) + text "WHAT?" + line "Unbelievable!" + cont "I picked the" + cont "wrong #MON!" + prompt + +_UnnamedText_1d3c3: ; 954e4 (25:54e4) + text $53, ": Yeah! Am" + line "I great or what?" + prompt + +_OaksLabRivalToughenUpText: ; 95502 (25:5502) + text $53, ": Okay!" + line "I'll make my" + cont "#MON fight to" + cont "toughen it up!" + + para $52, "! Gramps!" + line "Smell you later!" + done + +_OaksLabText21: ; 95551 (25:5551) + text $53, ": Gramps!" + done + +_OaksLabText22: ; 9555d (25:555d) + text $53, ": What did" + line "you call me for?" + done + +_OaksLabText23: ; 9557b (25:557b) + text "OAK: Oh right! I" + line "have a request" + cont "of you two." + done + +_OaksLabText24: ; 955a8 (25:55a8) + text "On the desk there" + line "is my invention," + cont "#DEX!" + + para "It automatically" + line "records data on" + cont "#MON you've" + cont "seen or caught!" + + para "It's a hi-tech" + line "encyclopedia!" + done + +_OaksLabText25: ; 9562a (25:562a) + text "OAK: ", $52, " and" + line $53, "! Take" + cont "these with you!" + + para $52, " got" + line "#DEX from OAK!@@" + +_OaksLabText26: ; 95664 (25:5664) + text "To make a complete" + line "guide on all the" + cont "#MON in the" + cont "world..." + + para "That was my dream!" + + para "But, I'm too old!" + line "I can't do it!" + + para "So, I want you two" + line "to fulfill my" + cont "dream for me!" + + para "Get moving, you" + line "two!" + + para "This is a great" + line "undertaking in" + cont "#MON history!" + done + +_OaksLabText27: ; 95741 (25:5741) + text $53, ": Alright" + line "Gramps! Leave it" + cont "all to me!" + + para $52, ", I hate to" + line "say it, but I" + cont "don't need you!" + + para "I know! I'll" + line "borrow a TOWN MAP" + cont "from my sis!" + + para "I'll tell her not" + line "to lend you one," + cont $52, "! Hahaha!" + done + +_UnnamedText_1d405: ; 957eb (25:57eb) + text "I study #MON as" + line "PROF.OAK's AIDE." + done + +_UnnamedText_441cc: ; 9580c (25:580c) + text "#DEX comp-" + line "letion is:" + + para "@" + TX_NUM $ffdb, 1, 3 + text " #MON seen" + line "@" + TX_NUM $ffdc, 1, 3 + text " #MON owned" + + para "PROF.OAK's" + line "Rating:" + prompt + +_UnnamedText_44201: ; 95858 (25:5858) + text "You still have" + line "lots to do." + cont "Look for #MON" + cont "in grassy areas!" + done + +_UnnamedText_44206: ; 95893 (25:5893) + text "You're on the" + line "right track! " + cont "Get a FLASH HM" + cont "from my AIDE!" + done + +_UnnamedText_4420b: ; 958cc (25:58cc) + text "You still need" + line "more #MON!" + cont "Try to catch" + cont "other species!" + done + +_UnnamedText_44210: ; 95903 (25:5903) + text "Good, you're" + line "trying hard!" + cont "Get an ITEMFINDER" + cont "from my AIDE!" + done + +_UnnamedText_44215: ; 9593d (25:593d) + text "Looking good!" + line "Go find my AIDE" + cont "when you get 50!" + done + +_UnnamedText_4421a: ; 9596d (25:596d) + text "You finally got at" + line "least 50 species!" + cont "Be sure to get" + cont "EXP.ALL from my" + cont "AIDE!" + done + +_UnnamedText_4421f: ; 959b8 (25:59b8) + text "Ho! This is geting" + line "even better!" + done + +_UnnamedText_44224: ; 959d9 (25:59d9) + text "Very good!" + line "Go fish for some" + cont "marine #MON!" + done + +_UnnamedText_44229: ; 95a03 (25:5a03) + text "Wonderful!" + line "Do you like to" + cont "collect things?" + done + +_UnnamedText_4422e: ; 95a2e (25:5a2e) + text "I'm impressed!" + line "It must have been" + cont "difficult to do!" + done + +_UnnamedText_44233: ; 95a60 (25:5a60) + text "You finally got at" + line "least 100 species!" + cont "I can't believe" + cont "how good you are!" + done + +_UnnamedText_44238: ; 95aa8 (25:5aa8) + text "You even have the" + line "evolved forms of" + cont "#MON! Super!" + done + +_UnnamedText_4423d: ; 95ad9 (25:5ad9) + text "Excellent! Trade" + line "with friends to" + cont "get some more!" + done + +_UnnamedText_44242: ; 95b0a (25:5b0a) + text "Outstanding!" + line "You've become a" + cont "real pro at this!" + done + +_UnnamedText_44247: ; 95b39 (25:5b39) + text "I have nothing" + line "left to say!" + cont "You're the" + cont "authority now!" + done + +_UnnamedText_4424c: ; 95b6f (25:5b6f) + text "Your #DEX is" + line "entirely complete!" + cont "Congratulations!" + done + diff --git a/text/maps/school.asm b/text/maps/school.asm new file mode 100644 index 00000000..b5f68b73 --- /dev/null +++ b/text/maps/school.asm @@ -0,0 +1,14 @@ +_SchoolText1: ; 95d15 (25:5d15) + text "Whew! I'm trying" + line "to memorize all" + cont "my notes." + done + +_SchoolText2: ; 95d40 (25:5d40) + text "Okay!" + + para "Be sure to read" + line "the blackboard" + cont "carefully!" + done + diff --git a/text/maps/viridian_gym.asm b/text/maps/viridian_gym.asm new file mode 100644 index 00000000..c0b8fc85 --- /dev/null +++ b/text/maps/viridian_gym.asm @@ -0,0 +1,237 @@ +_UnnamedText_74ace: ; 95e09 (25:5e09) + text "Fwahahaha! This is" + line "my hideout!" + + para "I planned to" + line "resurrect TEAM" + cont "ROCKET here!" + + para "But, you have" + line "caught me again!" + cont "So be it! This" + cont "time, I'm not" + cont "holding back!" + + para "Once more, you" + line "shall face" + cont "GIOVANNI, the" + cont "greatest trainer!" + done + +_UnnamedText_74ad3: ; 95ed5 (25:5ed5) + text "Ha!" + line "That was a truly" + cont "intense fight!" + cont "You have won!" + cont "As proof, here is" + cont "the EARTHBADGE!@@" + +_UnnamedText_74ad9: ; 95f2b (25:5f2b) + text "Having lost, I" + line "cannot face my" + cont "underlings!" + cont "TEAM ROCKET is" + cont "finished forever!" + + para "I will dedicate my" + line "life to the study" + cont "of #MON!" + + para "Let us meet again" + line "some day!" + cont "Farewell!@@" + +_ViridianGymText12: ; 95fcc (25:5fcc) + text "The EARTHBADGE" + line "makes #MON of" + cont "any level obey!" + + para "It is evidence of" + line "your mastery as a" + cont "#MON trainer!" + + para "With it, you can" + line "enter the #MON" + cont "LEAGUE!" + + para "It is my gift for" + line "your #MON" + cont "LEAGUE challenge!" + done + +_ReceivedTM27Text: ; 96082 (25:6082) + text $52, " received" + line "TM27!@@" + +_TM27ExplanationText: ; 96095 (25:6095) + db $0 + para "TM27 is FISSURE!" + line "It will take out" + cont "#MON with just" + cont "one hit!" + + para "I made it when I" + line "ran the GYM here," + cont "too long ago..." + done + +_TM27NoRoomText: ; 96104 (25:6104) + text "You do not have" + line "space for this!" + done + +_ViridianGymBattleText1: ; 96125 (25:6125) + text "Heh! You must be" + line "running out of" + cont "steam by now!" + done + +_ViridianGymEndBattleText1: ; 96154 (25:6154) + text "I" + line "ran out of gas!" + prompt + +_ViridianGymAfterBattleText1: ; 96167 (25:6167) + text "You need power to" + line "keep up with our" + cont "GYM LEADER!" + done + +_ViridianGymBattleText2: ; 96197 (25:6197) + text "Rrrroar! I'm" + line "working myself" + cont "into a rage!" + done + +_ViridianGymEndBattleText2: ; 961c0 (25:61c0) + text "Wargh!" + prompt + +_ViridianGymAfterBattleText2: ; 961c8 (25:61c8) + text "I'm still not" + line "worthy!" + done + +_ViridianGymBattleText3: ; 961de (25:61de) + text "#MON and I, we" + line "make wonderful" + cont "music together!" + done + +_ViridianGymEndBattleText3: ; 9620d (25:620d) + text "You are in" + line "perfect harmony!" + prompt + +_ViridianGymAfterBattleText3: ; 9622a (25:622a) + text "Do you know the" + line "identity of our" + cont "GYM LEADER?" + done + +_ViridianGymBattleText4: ; 96257 (25:6257) + text "Karate is the" + line "ultimate form of" + cont "martial arts!" + done + +_ViridianGymEndBattleText4: ; 96285 (25:6285) + text "Atcho!" + prompt + +_ViridianGymAfterBattleText4: ; 9628d (25:628d) + text "If my #MON" + line "were as good at" + cont "Karate as I..." + done + +_ViridianGymBattleText5: ; 962b8 (25:62b8) + text "The truly talented" + line "win with style!" + done + +_ViridianGymEndBattleText5: ; 962dc (25:62dc) + text "I" + line "lost my grip!" + prompt + +_ViridianGymAfterBattleText5: ; 962ed (25:62ed) + text "The LEADER will" + line "scold me!" + done + +_ViridianGymBattleText6: ; 96308 (25:6308) + text "I'm the KARATE" + line "KING! Your fate" + cont "rests with me!" + done + +_ViridianGymEndBattleText6: ; 96336 (25:6336) + text "Ayah!" + prompt + +_ViridianGymAfterBattleText6: ; 9633d (25:633d) + text "#MON LEAGUE?" + line "You? Don't get" + cont "cocky!" + done + +_ViridianGymBattleText7: ; 96360 (25:6360) + text "Your #MON will" + line "cower at the" + cont "crack of my whip!" + done + +_ViridianGymEndBattleText7: ; 9638f (25:638f) + text "Yowch!" + line "Whiplash!" + prompt + +_ViridianGymAfterBattleText7: ; 963a1 (25:63a1) + text "Wait! I was just" + line "careless!" + done + +_ViridianGymBattleText8: ; 963bd (25:63bd) + text "VIRIDIAN GYM was" + line "closed for a long" + cont "time, but now our" + cont "LEADER is back!" + done + +_ViridianGymEndBattleText8: ; 96403 (25:6403) + text "I" + line "was beaten?" + prompt + +_ViridianGymAfterBattleText8: ; 96412 (25:6412) + text "You can go onto" + line "#MON LEAGUE" + cont "only by defeating" + cont "our GYM LEADER!" + done + +_UnnamedText_74bd4: ; 96451 (25:6451) + text "Yo! Champ in" + line "making!" + + para "Even I don't know" + line "VIRIDIAN LEADER's" + cont "identity!" + + para "This will be the" + line "toughest of all" + cont "the GYM LEADERs!" + + para "I heard that the" + line "trainers here" + cont "like ground-type" + cont "#MON!" + done + +_UnnamedText_74bd9: ; 964fb (25:64fb) + text "Blow me away!" + line "GIOVANNI was the" + cont "GYM LEADER here?" + done + diff --git a/text/maps/viridian_house.asm b/text/maps/viridian_house.asm new file mode 100644 index 00000000..55994c4d --- /dev/null +++ b/text/maps/viridian_house.asm @@ -0,0 +1,24 @@ +_ViridianHouseText1: ; 95d71 (25:5d71) + text "Coming up with" + line "nicknames is fun," + cont "but hard." + + para "Simple names are" + line "the easiest to" + cont "remember." + done + +_ViridianHouseText2: ; 95dc7 (25:5dc7) + text "My Daddy loves" + line "#MON too." + done + +_UnnamedText_1d5b1: ; 95de1 (25:5de1) + text "SPEARY: Tetweet!" + done + +_ViridianHouseText4: ; 95df3 (25:5df3) + text "SPEAROW" + line "Name: SPEARY" + done + diff --git a/text/maps/viridian_mart.asm b/text/maps/viridian_mart.asm new file mode 100644 index 00000000..6463991a --- /dev/null +++ b/text/maps/viridian_mart.asm @@ -0,0 +1,49 @@ +_ViridianPokeCenterText2: ; 95ba1 (25:5ba1) +_ViridianPokeCenterText1: ; 95ba1 (25:5ba1) + text "You can use that" + line "PC in the corner." + + para "The receptionist" + line "told me. So kind!" + done + +_ViridianPokeCenterText3: ; 95be8 (25:5be8) + text "There's a #MON" + line "CENTER in every" + cont "town ahead." + + para "They don't charge" + line "any money either!" + done + +_ViridianMartText1: ; 95c36 (25:5c36) + text "Okay! Say hi to" + line "PROF.OAK for me!" + done + +_ViridianMartText4: ; 95c58 (25:5c58) + text "Hey! You came from" + line "PALLET TOWN?" + done + +ViridianMartParcelQuestText: ; 95c79 (25:5c79) + text "You know PROF." + line "OAK, right?" + + para "His order came in." + line "Will you take it" + cont "to him?" + + para $52, " got" + line "OAK's PARCEL!@@" + +_ViridianMartText2: ; 95cd5 (25:5cd5) + text "This shop sells" + line "many ANTIDOTEs." + done + +_ViridianMartText3: ; 95cf6 (25:5cf6) + text "No! POTIONs are" + line "all sold out." + done + From 31f074542bd5da787d95001fefd6cd944153fed3 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 16:18:39 -0500 Subject: [PATCH 24/41] split out a bunch of map text --- main.asm | 3125 +----------------------- text/maps/agatha.asm | 45 + text/maps/bruno.asm | 38 + text/maps/champion.asm | 147 ++ text/maps/hall_of_fame.asm | 29 + text/maps/lance.asm | 64 + text/maps/lorelei.asm | 43 + text/maps/mansion_2f.asm | 48 + text/maps/mansion_3f.asm | 38 + text/maps/mansion_b1f.asm | 40 + text/maps/mt_moon_1f.asm | 120 + text/maps/mt_moon_b1f.asm | 4 + text/maps/mt_moon_b2f.asm | 123 + text/maps/rock_tunnel_b2f_1.asm | 109 + text/maps/rock_tunnel_b2f_2.asm | 21 + text/maps/rocket_hideout_b1f.asm | 74 + text/maps/rocket_hideout_b2f.asm | 18 + text/maps/rocket_hideout_b3f.asm | 36 + text/maps/rocket_hideout_b4f.asm | 75 + text/maps/rocket_hideout_elevator.asm | 4 + text/maps/safari_zone_center.asm | 12 + text/maps/safari_zone_east.asm | 17 + text/maps/safari_zone_north.asm | 34 + text/maps/safari_zone_rest_house_1.asm | 12 + text/maps/safari_zone_rest_house_2.asm | 20 + text/maps/safari_zone_rest_house_3.asm | 19 + text/maps/safari_zone_rest_house_4.asm | 28 + text/maps/safari_zone_secret_house.asm | 45 + text/maps/safari_zone_west.asm | 32 + text/maps/seafoam_islands_1f.asm | 2 + text/maps/seafoam_islands_b1f.asm | 2 + text/maps/seafoam_islands_b2f.asm | 2 + text/maps/seafoam_islands_b3f.asm | 2 + text/maps/seafoam_islands_b4f.asm | 14 + text/maps/silph_co_10f.asm | 43 + text/maps/silph_co_11f.asm | 135 + text/maps/silph_co_1f.asm | 2 + text/maps/silph_co_2f.asm | 97 + text/maps/silph_co_3f.asm | 47 + text/maps/silph_co_4f.asm | 57 + text/maps/silph_co_5f_1.asm | 52 + text/maps/silph_co_5f_2.asm | 56 + text/maps/silph_co_6f.asm | 108 + text/maps/silph_co_7f.asm | 146 ++ text/maps/silph_co_8f.asm | 121 + text/maps/silph_co_9f.asm | 63 + text/maps/ss_anne_1.asm | 22 + text/maps/ss_anne_10.asm | 113 + text/maps/ss_anne_2.asm | 64 + text/maps/ss_anne_3.asm | 8 + text/maps/ss_anne_4.asm | 2 + text/maps/ss_anne_5.asm | 53 + text/maps/ss_anne_6.asm | 70 + text/maps/ss_anne_7.asm | 63 + text/maps/ss_anne_8.asm | 105 + text/maps/ss_anne_9.asm | 114 + text/maps/unknown_dungeon_1f.asm | 2 + text/maps/unknown_dungeon_2f.asm | 2 + text/maps/unknown_dungeon_b1f.asm | 3 + text/maps/victory_road_1f.asm | 32 + text/maps/victory_road_3f.asm | 64 + text/maps/viridian_forest.asm | 124 + 62 files changed, 3146 insertions(+), 3064 deletions(-) create mode 100644 text/maps/agatha.asm create mode 100644 text/maps/bruno.asm create mode 100644 text/maps/champion.asm create mode 100644 text/maps/hall_of_fame.asm create mode 100644 text/maps/lance.asm create mode 100644 text/maps/lorelei.asm create mode 100644 text/maps/mansion_2f.asm create mode 100644 text/maps/mansion_3f.asm create mode 100644 text/maps/mansion_b1f.asm create mode 100644 text/maps/mt_moon_1f.asm create mode 100644 text/maps/mt_moon_b1f.asm create mode 100644 text/maps/mt_moon_b2f.asm create mode 100644 text/maps/rock_tunnel_b2f_1.asm create mode 100644 text/maps/rock_tunnel_b2f_2.asm create mode 100644 text/maps/rocket_hideout_b1f.asm create mode 100644 text/maps/rocket_hideout_b2f.asm create mode 100644 text/maps/rocket_hideout_b3f.asm create mode 100644 text/maps/rocket_hideout_b4f.asm create mode 100644 text/maps/rocket_hideout_elevator.asm create mode 100644 text/maps/safari_zone_center.asm create mode 100644 text/maps/safari_zone_east.asm create mode 100644 text/maps/safari_zone_north.asm create mode 100644 text/maps/safari_zone_rest_house_1.asm create mode 100644 text/maps/safari_zone_rest_house_2.asm create mode 100644 text/maps/safari_zone_rest_house_3.asm create mode 100644 text/maps/safari_zone_rest_house_4.asm create mode 100644 text/maps/safari_zone_secret_house.asm create mode 100644 text/maps/safari_zone_west.asm create mode 100644 text/maps/seafoam_islands_1f.asm create mode 100644 text/maps/seafoam_islands_b1f.asm create mode 100644 text/maps/seafoam_islands_b2f.asm create mode 100644 text/maps/seafoam_islands_b3f.asm create mode 100644 text/maps/seafoam_islands_b4f.asm create mode 100644 text/maps/silph_co_10f.asm create mode 100644 text/maps/silph_co_11f.asm create mode 100644 text/maps/silph_co_1f.asm create mode 100644 text/maps/silph_co_2f.asm create mode 100644 text/maps/silph_co_3f.asm create mode 100644 text/maps/silph_co_4f.asm create mode 100644 text/maps/silph_co_5f_1.asm create mode 100644 text/maps/silph_co_5f_2.asm create mode 100644 text/maps/silph_co_6f.asm create mode 100644 text/maps/silph_co_7f.asm create mode 100644 text/maps/silph_co_8f.asm create mode 100644 text/maps/silph_co_9f.asm create mode 100644 text/maps/ss_anne_1.asm create mode 100644 text/maps/ss_anne_10.asm create mode 100644 text/maps/ss_anne_2.asm create mode 100644 text/maps/ss_anne_3.asm create mode 100644 text/maps/ss_anne_4.asm create mode 100644 text/maps/ss_anne_5.asm create mode 100644 text/maps/ss_anne_6.asm create mode 100644 text/maps/ss_anne_7.asm create mode 100644 text/maps/ss_anne_8.asm create mode 100644 text/maps/ss_anne_9.asm create mode 100644 text/maps/unknown_dungeon_1f.asm create mode 100644 text/maps/unknown_dungeon_2f.asm create mode 100644 text/maps/unknown_dungeon_b1f.asm create mode 100644 text/maps/victory_road_1f.asm create mode 100644 text/maps/victory_road_3f.asm create mode 100644 text/maps/viridian_forest.asm diff --git a/main.asm b/main.asm index 70a6ff8d..7f824053 100644 --- a/main.asm +++ b/main.asm @@ -115772,3078 +115772,75 @@ _UnnamedText_590ab: ; 802ec (20:42ec) text "." done -_ViridianForestText1: ; 8031d (20:431d) - text "I came here with" - line "some friends!" +INCLUDE "text/maps/viridian_forest.asm" +INCLUDE "text/maps/mt_moon_1f.asm" +INCLUDE "text/maps/mt_moon_b1f.asm" +INCLUDE "text/maps/mt_moon_b2f.asm" +INCLUDE "text/maps/ss_anne_1.asm" +INCLUDE "text/maps/ss_anne_2.asm" +INCLUDE "text/maps/ss_anne_3.asm" +INCLUDE "text/maps/ss_anne_4.asm" +INCLUDE "text/maps/ss_anne_5.asm" +INCLUDE "text/maps/ss_anne_6.asm" +INCLUDE "text/maps/ss_anne_7.asm" +INCLUDE "text/maps/ss_anne_8.asm" +INCLUDE "text/maps/ss_anne_9.asm" +INCLUDE "text/maps/ss_anne_10.asm" +INCLUDE "text/maps/victory_road_3f.asm" +INCLUDE "text/maps/rocket_hideout_b1f.asm" +INCLUDE "text/maps/rocket_hideout_b2f.asm" +INCLUDE "text/maps/rocket_hideout_b3f.asm" +INCLUDE "text/maps/rocket_hideout_b4f.asm" +INCLUDE "text/maps/rocket_hideout_elevator.asm" +INCLUDE "text/maps/silph_co_1f.asm" +INCLUDE "text/maps/silph_co_2f.asm" +INCLUDE "text/maps/silph_co_3f.asm" +INCLUDE "text/maps/silph_co_4f.asm" +INCLUDE "text/maps/silph_co_5f_1.asm" - para "They're out for" - line "#MON fights!" - done - -_ViridianForestBattleText1: ; 80359 (20:4359) - text "Hey! You have" - line "#MON! Come on!" - cont "Let's battle'em!" - done - -_ViridianForestEndBattleText1: ; 80387 (20:4387) - text "No!" - line "CATERPIE can't" - cont "cut it!" - prompt - -_ViridianFrstAfterBattleText1: ; 803a2 (20:43a2) - text "Ssh! You'll scare" - line "the bugs away!" - done - -_ViridianForestBattleText2: ; 803c3 (20:43c3) - text "Yo! You can't jam" - line "out if you're a" - cont "#MON trainer!" - done - -_ViridianForestEndBattleText2: ; 803f2 (20:43f2) - text "Huh?" - line "I ran out of" - cont "#MON!" - prompt - -_ViridianFrstAfterBattleText2: ; 8040b (20:440b) - text "Darn! I'm going" - line "to catch some" - cont "stronger ones!" - done - -_ViridianForestBattleText3: ; 80438 (20:4438) - text "Hey, wait up!" - line "What's the hurry?" - done - -_ViridianForestEndBattleText3: ; 80458 (20:4458) - text "I" - line "give! You're good" - cont "at this!" - prompt - -_ViridianFrstAfterBattleText3: ; 80475 (20:4475) - text "Sometimes, you" - line "can find stuff on" - cont "the ground!" - - para "I'm looking for" - line "the stuff I" - cont "dropped!" - done - -_ViridianForestText8: ; 804c7 (20:44c7) - text "I ran out of #" - line "BALLs to catch" - cont "#MON with!" - - para "You should carry" - line "extras!" - done - -_ViridianForestText9: ; 8050a (20:450a) - text "TRAINER TIPS" - - para "If you want to" - line "avoid battles," - cont "stay away from" - cont "grassy areas!" - done - -_ViridianForestText10: ; 80553 (20:4553) - text "For poison, use" - line "ANTIDOTE! Get it" - cont "at #MON MARTs!" - done - -_ViridianForestText11: ; 80584 (20:4584) - text "TRAINER TIPS" - - para "Contact PROF.OAK" - line "via PC to get" - cont "your #DEX" - cont "evaluated!" - done - -_ViridianForestText12: ; 805c6 (20:45c6) - text "TRAINER TIPS" - - para "No stealing of" - line "#MON from" - cont "other trainers!" - cont "Catch only wild" - cont "#MON!" - done - -_ViridianForestText13: ; 80613 (20:4613) - text "TRAINER TIPS" - - para "Weaken #MON" - line "before attempting" - cont "capture!" - - para "When healthy," - line "they may escape!" - done - -_ViridianForestText14: ; 80667 (20:4667) - text "LEAVING" - line "VIRIDIAN FOREST" - cont "PEWTER CITY AHEAD" - done - -_MtMoon1BattleText2: ; 80692 (20:4692) - text "WHOA! You shocked" - line "me! Oh, you're" - cont "just a kid!" - done - -_MtMoon1EndBattleText2: ; 806bf (20:46bf) - text "Wow!" - line "Shocked again!" - prompt - -_MtMoon1AfterBattleText2: ; 806d4 (20:46d4) - text "Kids like you" - line "shouldn't be" - cont "here!" - done - -_MtMoon1BattleText3: ; 806f5 (20:46f5) - text "Did you come to" - line "explore too?" - done - -_MtMoon1EndBattleText3: ; 80713 (20:4713) - text "Losing" - line "stinks!" - prompt - -_MtMoon1AfterBattleText3: ; 80723 (20:4723) - text "I came down here" - line "to show off to" - cont "girls." - done - -_MtMoon1BattleText4: ; 8074b (20:474b) - text "Wow! It's way" - line "bigger in here" - cont "than I thought!" - done - -_MtMoon1EndBattleText4: ; 80778 (20:4778) - text "Oh!" - line "I lost it!" - prompt - -_MtMoon1AfterBattleText4: ; 80788 (20:4788) - text "How do you get" - line "out of here?" - done - -_MtMoon1BattleText5: ; 807a5 (20:47a5) - text "What! Don't sneak" - line "up on me!" - done - -_MtMoon1EndBattleText5: ; 807c1 (20:47c1) - text "My" - line "#MON won't do!" - prompt - -_MtMoon1AfterBattleText5: ; 807d3 (20:47d3) - text "I have to find" - line "stronger #MON." - done - -_MtMoon1BattleText6: ; 807f2 (20:47f2) - text "What? I'm waiting" - line "for my friends to" - cont "find me here." - done - -_MtMoon1EndBattleText6: ; 80824 (20:4824) - text "I lost?" - prompt - -_MtMoon1AfterBattleText6: ; 8082d (20:482d) - text "I heard there are" - line "some very rare" - cont "fossils here." - done - -_MtMoon1BattleText7: ; 8085d (20:485d) - text "Suspicious men" - line "are in the cave." - cont "What about you?" - done - -_MtMoon1EndBattleText7: ; 8088e (20:488e) - text "You" - line "got me!" - prompt - -_MtMoon1AfterBattleText7: ; 8089b (20:489b) - text "I saw them! I'm" - line "sure they're from" - cont "TEAM ROCKET!" - done - -_MtMoon1BattleText8: ; 808c9 (20:48c9) - text "Go through this" - line "cave to get to" - cont "CERULEAN CITY!" - done - -_MtMoon1EndBattleText8: ; 808f8 (20:48f8) - text "I" - line "lost." - prompt - -_MtMoon1AfterBattleText8: ; 80901 (20:4901) - text "ZUBAT is tough!" - line "But, it can be" - cont "useful if you" - cont "catch one." - done - -_MtMoon1Text14: ; 8093a (20:493a) - text "Beware! ZUBAT is" - line "a blood sucker!" - done - -_UnnamedText_51a48: ; 8095c (20:495c) - db $0 - done - -_UnnamedText_49f24: ; 8095e (20:495e) - text "You want the" - line "DOME FOSSIL?" - done - -_UnnamedText_49f64: ; 80979 (20:4979) - text "You want the" - line "HELIX FOSSIL?" - done - -_UnnamedText_49f6f: ; 80995 (20:4995) - text $52, " got the" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_49f7f: ; 809a8 (20:49a8) - text "Look, you've got" - line "no room for this.@@" - -_UnnamedText_49f85: ; 809cc (20:49cc) - text "Hey, stop!" - - para "I found these" - line "fossils! They're" - cont "both mine!" - done - -_UnnamedText_49f8a: ; 80a01 (20:4a01) - text "OK!" - line "I'll share!" - prompt - -_UnnamedText_49f8f: ; 80a11 (20:4a11) - text "We'll each take" - line "one!" - cont "No being greedy!" - done - -_UnnamedText_49f94: ; 80a37 (20:4a37) - text "Far away, on" - line "CINNABAR ISLAND," - cont "there's a #MON" - cont "LAB." - - para "They do research" - line "on regenerating" - cont "fossils." - done - -_UnnamedText_49f99: ; 80a93 (20:4a93) - text "All right. Then" - line "this is mine!@@" - -_MtMoon3BattleText2: ; 80ab3 (20:4ab3) - text "TEAM ROCKET will" - line "find the fossils," - cont "revive and sell" - cont "them for cash!" - done - -_MtMoon3EndBattleText2: ; 80af6 (20:4af6) - text "Urgh!" - line "Now I'm mad!" - prompt - -_MtMoon3AfterBattleText2: ; 80b09 (20:4b09) - text "You made me mad!" - line "TEAM ROCKET will" - cont "blacklist you!" - done - -_MtMoon3BattleText3: ; 80b3b (20:4b3b) - text "We, TEAM ROCKET," - line "are #MON" - cont "gangsters!" - done - -_MtMoon3EndBattleText3: ; 80b61 (20:4b61) - text "I blew" - line "it!" - prompt - -_MtMoon3AfterBattleText3: ; 80b6d (20:4b6d) - text "Darn it all! My" - line "associates won't" - cont "stand for this!" - done - -_MtMoon3BattleText4: ; 80b9e (20:4b9e) - text "We're pulling a" - line "big job here!" - cont "Get lost, kid!" - done - -_MtMoon3EndBattleText4: ; 80bcb (20:4bcb) - text "So, you" - line "are good." - prompt - -_MtMoon3AfterBattleText4: ; 80bde (20:4bde) - text "If you find a" - line "fossil, give it" - cont "to me and scram!" - done - -_MtMoon3BattleText5: ; 80c0e (20:4c0e) - text "Little kids" - line "should leave" - cont "grown-ups alone!" - done - -_MtMoon3EndBattleText5: ; 80c39 (20:4c39) - text "I'm" - line "steamed!" - prompt - -_MtMoon3AfterBattleText5: ; 80c46 (20:4c46) - text "#MON lived" - line "here long before" - cont "people came." - done - -_SSAnne1Text1: ; 80c70 (20:4c70) - text "Bonjour!" - line "I am le waiter on" - cont "this ship!" - - para "I will be happy" - line "to serve you any-" - cont "thing you please!" - - para "Ah! Le strong" - line "silent type!" - done - -_SSAnne1Text2: ; 80ce6 (20:4ce6) - text "The passengers" - line "are restless!" - - para "You might be" - line "challenged by the" - cont "more bored ones!" - done - -_SSAnne2Text1: ; 80d34 (20:4d34) - text "This ship, she is" - line "a luxury liner" - cont "for trainers!" - - para "At every port, we" - line "hold parties with" - cont "invited trainers!" - done - -_SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) - text $53, ": Bonjour!" - line $52, "!" - - para "Imagine seeing" - line "you here!" - - para $52, ", were you" - line "really invited?" - - para "So how's your" - line "#DEX coming?" - - para "I already caught" - line "40 kinds, pal!" - - para "Different kinds" - line "are everywhere!" - - para "Crawl around in" - line "grassy areas!" - done - -_SSAnneRivalDefeatedText: ; 80e57 (20:4e57) - text "Humph!" - - para "At least you're" - line "raising your" - cont "#MON!" - prompt - -_SSAnneRivalWonText: ; 80e81 (20:4e81) - text $52, "! What are" - line "you, seasick?" - - para "You should shape" - line "up, pal!" - prompt - -_SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) - text $53, ": I heard" - line "there was a CUT" - cont "master on board." - - para "But, he was just a" - line "seasick, old man!" - - para "But, CUT itself is" - line "really useful!" - - para "You should go see" - line "him! Smell ya!" - done - -_SSAnne3Text1: ; 80f4b (20:4f4b) - text "Our CAPTAIN is a" - line "sword master!" - - para "He even teaches" - line "CUT to #MON!" - done - -_SSAnne5Text1: ; 80f88 (20:4f88) - text "The party's over." - line "The ship will be" - cont "departing soon." - done - -_SSAnne5Text2: ; 80fbb (20:4fbb) - text "Scrubbing decks" - line "is hard work!" - done - -_SSAnne5Text3: ; 80fda (20:4fda) - text "Urf. I feel ill." - - para "I stepped out to" - line "get some air." - done - -_SSAnneBattleText1: ; 8100b (20:500b) - text "Hey matey!" - - para "Let's do a little" - line "jig!" - done - -_SSAnneEndBattleText1: ; 8102d (20:502d) - text "You're" - line "impressive!" - prompt - -_SSAnneAfterBattleText1: ; 81040 (20:5040) - text "How many kinds of" - line "#MON do you" - cont "think there are?" - done - -_SSAnneBattleText2: ; 81070 (20:5070) - text "Ahoy there!" - line "Are you seasick?" - done - -_SSAnneEndBattleText2: ; 8108e (20:508e) - text "I was" - line "just careless!" - prompt - -_SSAnneAfterBattleText2: ; 810a4 (20:50a4) - text "My Pa said there" - line "are 100 kinds of" - cont "#MON. I think" - cont "there are more." - done - -_SSAnne6Text1: ; 810e5 (20:50e5) - text "You, mon petit!" - line "We're busy here!" - cont "Out of the way!" - done - -_SSAnne6Text2: ; 81116 (20:5116) - text "I saw an odd ball" - line "in the trash." - done - -_SSAnne6Text3: ; 81137 (20:5137) - text "I'm so busy I'm" - line "getting dizzy!" - done - -_SSAnne6Text4: ; 81155 (20:5155) - text "Hum-de-hum-de-" - line "ho..." - - para "I peel spuds" - line "every day!" - cont "Hum-hum..." - done - -_SSAnne6Text5: ; 8118e (20:518e) - text "Did you hear about" - line "SNORLAX?" - - para "All it does is" - line "eat and sleep!" - done - -_SSAnne6Text6: ; 811c9 (20:51c9) - text "Snivel...Sniff..." - - para "I only get to" - line "peel onions..." - cont "Snivel..." - done - -_UnnamedText_61807: ; 81203 (20:5203) - text "Er-hem! Indeed I" - line "am le CHEF!" - - para "Le main course is" - prompt - -_UnnamedText_6180c: ; 81233 (20:5233) - text "Salmon du Salad!" - - para "Les guests may" - line "gripe it's fish" - cont "again, however!" - done - -_UnnamedText_61811: ; 81273 (20:5273) - text "Eels au Barbecue!" - - para "Les guests will" - line "mutiny, I fear." - done - -_UnnamedText_61816: ; 812a6 (20:52a6) - text "Prime Beef Steak!" - - para "But, have I enough" - line "fillets du beef?" - done - -_SSAnne7RubText: ; 812dd (20:52dd) - text "CAPTAIN: Ooargh..." - line "I feel hideous..." - cont "Urrp! Seasick..." - - para $52, " rubbed" - line "the CAPTAIN's" - cont "back!" - - para "Rub-rub..." - line "Rub-rub...@@" - -_ReceivingHM01Text: ; 81347 (20:5347) - text "CAPTAIN: Whew!" - line "Thank you! I" - cont "feel much better!" - - para "You want to see" - line "my CUT technique?" - - para "I could show you" - line "if I wasn't ill..." - - para "I know! You can" - line "have this!" - - para "Teach it to your" - line "#MON and you" - cont "can see it CUT" - cont "any time!" - prompt - -_ReceivedHM01Text: ; 8140d (20:540d) - text $52, " got" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_61932: ; 8141c (20:541c) - text "CAPTAIN: Whew!" - - para "Now that I'm not" - line "sick any more, I" - cont "guess it's time." - done - -_HM01NoRoomText: ; 8145d (20:545d) - text "Oh no! You have" - line "no room for this!" - done - -_SSAnne7Text2: ; 81480 (20:5480) - text "Yuck! Shouldn't" - line "have looked!" - done - -_SSAnne7Text3: ; 8149d (20:549d) - text "How to Conquer" - line "Seasickness..." - cont "The CAPTAIN's" - cont "reading this!" - done - -_SSAnne8Text8: ; 814d7 (20:54d7) - text "WIGGLYTUFF: Puup" - line "pupuu!@@" - -_SSAnne8BattleText1: ; 814f1 (20:54f1) - text "I travel alone" - line "on my journeys!" - - para "My #MON are my" - line "only friends!" - done - -_SSAnne8EndBattleText1: ; 8152e (20:552e) - text "My, my" - line "friends..." - prompt - -_SSAnne8AfterBattleText1: ; 81541 (20:5541) - text "You should be" - line "nice to friends!" - done - -_SSAnne8BattleText2: ; 81561 (20:5561) - text "You pup! How dare" - line "you barge in!" - done - -_SSAnne8EndBattleText2: ; 81582 (20:5582) - text "Humph!" - line "You rude child!" - prompt - -_UnnamedText_61a24: ; 8159a (20:559a) - text "I wish to be left" - line "alone! Get out!" - done - -_SSAnne8BattleText3: ; 815bd (20:55bd) - text "I love #MON!" - line "Do you?" - done - -_SSAnne8EndBattleText3: ; 815d3 (20:55d3) - text "Wow! " - line "You're great!" - prompt - -_SSAnne8AfterBattleText3: ; 815e7 (20:55e7) - text "Let me be your" - line "friend, OK?" - - para "Then we can trade" - line "#MON!" - done - -_SSAnne8BattleText4: ; 8161b (20:561b) - text "I collected these" - line "#MON from all" - cont "around the world!" - done - -_SSAnne8EndBattleText4: ; 8164e (20:564e) - text "Oh no!" - line "I went around the" - cont "world for these!" - prompt - -_SSAnne8AfterBattleText4: ; 81679 (20:5679) - text "You hurt my poor" - line "worldly #MON!" - - para "I demand that you" - line "heal them at a" - cont "#MON CENTER!" - done - -_SSAnne8Text5: ; 816c7 (20:56c7) - text "Waiter, I would" - line "like a cherry pie" - cont "please!" - done - -_SSAnne8Text6: ; 816f2 (20:56f2) - text "A cruise is so" - line "elegant yet cozy!" - done - -_SSAnne8Text7: ; 81714 (20:5714) - text "I always travel" - line "with WIGGLYTUFF!" - done - -_SSAnne8Text9: ; 81736 (20:5736) - text "We are cruising" - line "around the world." - done - -_SSAnne8Text11: ; 81759 (20:5759) - text "Ssh! I'm a GLOBAL" - line "POLICE agent!" - - para "I'm on the trail" - line "of TEAM ROCKET!" - done - -_UnnamedText_61bf2: ; 81799 (20:5799) - text "In all my travels" - line "I've never seen" - cont "any #MON sleep" - cont "like this one!" - - para "It was something" - line "like this!" - prompt - -_UnnamedText_61c01: ; 817f5 (20:57f5) - text "Ah yes, I have" - line "seen some #MON" - cont "ferry people" - cont "across the water!" - done - -_UnnamedText_61c10: ; 81833 (20:5833) - text "#MON can CUT" - line "down small bushes." - done - -_UnnamedText_61c1f: ; 81854 (20:5854) - text "Have you gone to" - line "the SAFARI ZONE" - cont "in FUCHSIA CITY?" - - para "It had many rare" - line "kinds of #MON!!" - done - -_UnnamedText_61c2e: ; 818a8 (20:58a8) - text "Me and my Daddy" - line "think the SAFARI" - cont "ZONE is awesome!" - done - -_UnnamedText_61c3d: ; 818db (20:58db) - text "The CAPTAIN looked" - line "really sick and" - cont "pale!" - done - -_UnnamedText_61c4c: ; 81905 (20:5905) - text "I hear many people" - line "get seasick!" - done - -_SSAnne9BattleText1: ; 81926 (20:5926) - text "Competing against" - line "the young keeps" - cont "me youthful." - done - -_SSAnne9EndBattleText1: ; 81956 (20:5956) - text "Good" - line "fight! Ah, I feel" - cont "young again!" - prompt - -_SSAnne9AfterBattleText1: ; 8197b (20:597b) - text "15 years ago, I" - line "would have won!" - done - -_SSAnne9BattleText2: ; 8199c (20:599c) - text "Check out what I" - line "fished up!" - done - -_SSAnne9EndBattleText2: ; 819b9 (20:59b9) - text "I'm" - line "all out!" - prompt - -_SSAnne9AfterBattleText2: ; 819c6 (20:59c6) - text "Party?" - - para "The cruise ship's" - line "party should be" - cont "over by now." - done - -_SSAnne9BattleText3: ; 819fc (20:59fc) - text "Which do you like," - line "a strong or a" - cont "rare #MON?" - done - -_SSAnne9EndBattleText3: ; 81a29 (20:5a29) - text "I must" - line "salute you!" - prompt - -_SSAnne9AfterBattleText3: ; 81a3d (20:5a3d) - text "I prefer strong" - line "and rare #MON." - done - -_SSAnne9BattleText4: ; 81a5d (20:5a5d) - text "I never saw you" - line "at the party." - done - -_SSAnne9EndBattleText4: ; 81a7c (20:5a7c) - text "Take" - line "it easy!" - prompt - -_SSAnne9AfterBattleText4: ; 81a8b (20:5a8b) - text "Oh, I adore your" - line "strong #MON!" - done - -_SSAnne10Text8: ; 81aaa (20:5aaa) - text "MACHOKE: Gwoh!" - line "Goggoh!@@" - -_SSAnne10BattleText1: ; 81ac3 (20:5ac3) - text "You know what they" - line "say about sailors" - cont "and fighting!" - done - -_SSAnne10EndBattleText1: ; 81af7 (20:5af7) - text "Right!" - line "Good fight, mate!" - prompt - -_SSAnne10AfterBattleText1: ; 81b11 (20:5b11) - text "Haha! Want to be" - line "a sailor, mate?" - done - -_SSAnne10BattleText2: ; 81b33 (20:5b33) - text "My sailor's pride" - line "is at stake!" - done - -_SSAnne10EndBattleText2: ; 81b52 (20:5b52) - text "Your" - line "spirit sank me!" - prompt - -_SSAnne10AfterBattleText2: ; 81b68 (20:5b68) - text "Did you see the" - line "FISHING GURU in" - cont "VERMILION CITY?" - done - -_SSAnne10BattleText3: ; 81b99 (20:5b99) - text "Us sailors have" - line "#MON too!" - done - -_SSAnne10EndBattleText3: ; 81bb4 (20:5bb4) - text "OK, " - line "you're not bad." - prompt - -_SSAnne10AfterBattleText3: ; 81bc9 (20:5bc9) - text "We caught all our" - line "#MON while" - cont "out at sea!" - done - -_SSAnne10BattleText4: ; 81bf3 (20:5bf3) - text "I like feisty" - line "kids like you!@@" - -_SSAnne10EndBattleText4: ; 81c12 (20:5c12) - text "Argh!" - line "Lost it!" - prompt - -_SSAnne10AfterBattleText4: ; 81c22 (20:5c22) - text "Sea #MON live" - line "in deep water." - cont "You'll need a ROD!" - done - -_SSAnne10BattleText5: ; 81c52 (20:5c52) - text "Matey, you're" - line "walking the plank" - cont "if you lose!" - done - -_SSAnne10EndBattleText5: ; 81c7f (20:5c7f) - text "Argh!" - line "Beaten by a kid!" - prompt - -_SSAnne10AfterBattleText5: ; 81c97 (20:5c97) - text "Jellyfish some-" - line "times drift into" - cont "the ship." - done - -_SSAnne10BattleText6: ; 81cc3 (20:5cc3) - text "Hello stranger!" - line "Stop and chat!" - - para "All my #MON" - line "are from the sea!" - done - -_SSAnne10EndBattleText6: ; 81d01 (20:5d01) - text "Darn!" - line "I let that one" - cont "get away!" - prompt - -_SSAnne10AfterBattleText6: ; 81d21 (20:5d21) - text "I was going to" - line "make you my" - cont "assistant too!" - done - -_SSAnne10Text7: ; 81d4c (20:5d4c) - text "My buddy, MACHOKE," - line "is super strong!" - - para "He has enough" - line "STRENGTH to move" - cont "big rocks!" - done - -_VictoryRoad3BattleText2: ; 81d9b (20:5d9b) - text "I heard rumors of" - line "a child prodigy!" - done - -_VictoryRoad3EndBattleText2: ; 81dbf (20:5dbf) - text "The" - line "rumors were true!" - prompt - -_VictoryRoad3AfterBattleText2: ; 81dd6 (20:5dd6) - text "You beat GIOVANNI" - line "of TEAM ROCKET?" - done - -_VictoryRoad3BattleText3: ; 81df9 (20:5df9) - text "I'll show you just" - line "how good you are!" - done - -_VictoryRoad3EndBattleText3: ; 81e1e (20:5e1e) - text "I'm" - line "furious!" - prompt - -_VictoryRoad3AfterBattleText3: ; 81e2b (20:5e2b) - text "You showed me just" - line "how good I was!" - done - -_VictoryRoad3BattleText4: ; 81e4f (20:5e4f) - text "Only the chosen" - line "can pass here!" - done - -_VictoryRoad3EndBattleText4: ; 81e6f (20:5e6f) - text "I" - line "don't believe it!" - prompt - -_VictoryRoad3AfterBattleText4: ; 81e83 (20:5e83) - text "All trainers here" - line "are headed to the" - cont "#MON LEAGUE!" - cont "Be careful!" - done - -_VictoryRoad3BattleText5: ; 81ec1 (20:5ec1) - text "Trainers live to" - line "seek stronger" - cont "opponents!" - done - -_VictoryRoad3EndBattleText5: ; 81eec (20:5eec) - text "Oh!" - line "So strong!" - prompt - -_VictoryRoad3AfterBattleText5: ; 81efc (20:5efc) - text "By fighting tough" - line "battles, you get" - cont "stronger!" - done - -_RocketHideout1EndBattleText6: ; 81f2a (20:5f2a) - text "Why...?@@" - -_RocketHideout1BattleText2: ; 81f34 (20:5f34) - text "Who are you? How" - line "did you get here?" - done - -_RocketHideout1EndBattleText2: ; 81f58 (20:5f58) - text "Oww!" - line "Beaten!" - prompt - -_RocketHideout1AfterBattleTxt2: ; 81f66 (20:5f66) - text "Are you dissing" - line "TEAM ROCKET?" - done - -_RocketHideout1BattleText3: ; 81f84 (20:5f84) - text "You broke into" - line "our operation?" - done - -_RocketHideout1EndBattleText3: ; 81fa3 (20:5fa3) - text "Burnt!" - prompt - -_RocketHideout1AfterBattleTxt3: ; 81fab (20:5fab) - text "You're not going" - line "to get away with" - cont "this, brat!" - done - -_RocketHideout1BattleText4: ; 81fd9 (20:5fd9) - text "Intruder alert!" - done - -_RocketHideout1EndBattleText4: ; 81fea (20:5fea) - text "I" - line "can't do it!" - prompt - -_RocketHideout1AfterBattleTxt4: ; 81ff9 (20:5ff9) - text "SILPH SCOPE?" - line "I don't know" - cont "where it is!" - done - -_RocketHideout1BattleText5: ; 82020 (20:6020) - text "Why did you come" - line "here?" - done - -_RocketHideout1EndBattleText5: ; 82038 (20:6038) - text "This" - line "won't do!" - prompt - -_RocketHideout1AfterBattleTxt5: ; 82047 (20:6047) - text "OK, I'll talk!" - line "Take the elevator" - cont "to see my BOSS!" - done - -_RocketHideout1BattleText6: ; 82078 (20:6078) - text "Are you lost, you" - line "little rat?" - done - -_RocketHideout1AfterBattleTxt6: ; 82097 (20:6097) - text "Uh-oh, that fight" - line "opened the door!" - done - -_RocketHideout2BattleText2: ; 820bb (20:60bb) - text "BOSS said you can" - line "see GHOSTs with" - cont "the SILPH SCOPE!" - done - -_RocketHideout2EndBattleText2: ; 820ef (20:60ef) - text "I" - line "surrender!" - prompt - -_RocketHideout2AfterBattleTxt2: ; 820fd (20:60fd) - text "The TEAM ROCKET" - line "HQ has 4 basement" - cont "floors. Can you" - cont "reach the BOSS?" - done - -_RocketHideout3BattleText2: ; 82140 (20:6140) - text "Stop meddling in" - line "TEAM ROCKET's" - cont "affairs!" - done - -_RocketHideout3EndBattleText2: ; 82168 (20:6168) - text "Oof!" - line "Taken down!" - prompt - -_RocketHideout3AfterBattleTxt2: ; 8217a (20:617a) - text "SILPH SCOPE?" - line "The machine the" - cont "BOSS stole. It's" - cont "here somewhere." - done - -_RocketHideout3BattleTxt: ; 821b8 (20:61b8) - text "We got word from" - line "upstairs that you" - cont "were coming!" - done - -_RocketHideout3EndBattleText3: ; 821e9 (20:61e9) - text "What?" - line "I lost? No!" - prompt - -_RocketHide3AfterBattleText3: ; 821fc (20:61fc) - text "Go ahead and go!" - line "But, you need the" - cont "LIFT KEY to run" - cont "the elevator!" - done - -_UnnamedText_4557a: ; 8223e (20:623e) - text "So! I must say, I" - line "am impressed you" - cont "got here!" - done - -_UnnamedText_4557f: ; 8226c (20:626c) - text "WHAT!" - line "This cannot be!" - prompt - -_UnnamedText_45584: ; 82283 (20:6283) - text "I see that you" - line "raise #MON" - cont "with utmost care." - - para "A child like you" - line "would never" - cont "understand what I" - cont "hope to achieve." - - para "I shall step" - line "aside this time!" - - para "I hope we meet" - line "again..." - done - -_RocketHideout4BattleText2: ; 82326 (20:6326) - text "I know you! You" - line "ruined our plans" - cont "at MT.MOON!" - done - -_RocketHideout4EndBattleText2: ; 82354 (20:6354) - text "Burned" - line "again!" - prompt - -_RocketHide4AfterBattleText2: ; 82363 (20:6363) - text "Do you have" - line "something against" - cont "TEAM ROCKET?" - done - -_RocketHideout4BattleText3: ; 8238f (20:638f) - text "How can you not" - line "see the beauty of" - cont "our evil?" - done - -_RocketHideout4EndBattleText3: ; 823bc (20:63bc) - text "Ayaya!" - prompt - -_RocketHide4AfterBattleText3: ; 823c4 (20:63c4) - text "BOSS! I'm sorry I" - line "failed you!" - done - -_RocketHideout4BattleText4: ; 823e2 (20:63e2) - text "The elevator" - line "doesn't work? Who" - cont "has the LIFT KEY?" - done - -_RocketHideout4EndBattleText4: ; 82413 (20:6413) - text "No!" - prompt - -_UnnamedText_455ec: ; 82418 (20:6418) - text "Oh no! I dropped" - line "the LIFT KEY!" - done - -_UnnamedText_4578b: ; 82438 (20:6438) - text "It appears to" - line "need a key.@@" - -_UnnamedText_59ded: ; 82454 (20:6454) - text "Eeek!" - line "No! Stop! Help!" - - para "Oh, you're not" - line "with TEAM ROCKET." - cont "I thought..." - cont "I'm sorry. Here," - cont "please take this!" - prompt - -_ReceivedTM36Text: ; 824ba (20:64ba) - text $52, " got" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM36ExplanationText: ; 824c9 (20:64c9) - text "TM36 is" - line "SELFDESTRUCT!" - - para "It's powerful, but" - line "the #MON that" - cont "uses it faints!" - cont "Be careful." - done - -_TM36NoRoomText: ; 8251c (20:651c) - text "You don't have any" - line "room for this." - done - -_SilphCo2BattleText1: ; 8253e (20:653e) - text "Help! I'm a SILPH" - line "employee." - done - -_SilphCo2EndBattleText1: ; 8255a (20:655a) - text "How" - line "did you know I" - cont "was a ROCKET?" - prompt - -_SilphCo2AfterBattleText1: ; 8257c (20:657c) - text "I work for both" - line "SILPH and TEAM" - cont "ROCKET!" - done - -_SilphCo2BattleText2: ; 825a4 (20:65a4) - text "It's off limits" - line "here! Go home!" - done - -_SilphCo2EndBattleText2: ; 825c3 (20:65c3) - text "You're" - line "good." - prompt - -_SilphCo2AfterBattleText2: ; 825d0 (20:65d0) - text "Can you solve the" - line "maze in here?" - done - -_SilphCo2BattleText3: ; 825f1 (20:65f1) - text "No kids are" - line "allowed in here!" - done - -_SilphCo2EndBattleText3: ; 8260f (20:660f) - text "Tough!" - prompt - -_SilphCo2AfterBattleText3: ; 82617 (20:6617) - text "Diamond shaped" - line "tiles are" - cont "teleport blocks!" - - para "They're hi-tech" - line "transporters!" - done - -_SilphCo2BattleText4: ; 8265f (20:665f) - text "Hey kid! What are" - line "you doing here?" - done - -_SilphCo2EndBattleText4: ; 82682 (20:6682) - text "I goofed!" - prompt - -_SilphCo2AfterBattleText4: ; 8268d (20:668d) - text "SILPH CO. will" - line "be merged with" - cont "TEAM ROCKET!" - done - -_UnnamedText_59ff9: ; 826b9 (20:66b9) - text "I work for SILPH." - line "What should I do?" - done - -_UnnamedText_59ffe: ; 826de (20:66de) - text $52, "! You and" - line "your #MON" - cont "saved us!" - done - -_SilphCo3BattleText1: ; 826fe (20:66fe) - text "Quit messing with" - line "us, kid!" - done - -_SilphCo3EndBattleText1: ; 8271a (20:671a) - text "I give" - line "up!" - prompt - -_SilphCo3AfterBattleText1: ; 82726 (20:6726) - text "A hint? You can" - line "open doors with a" - cont "CARD KEY!" - done - -_SilphCo3BattleText2: ; 82753 (20:6753) - text "I support TEAM" - line "ROCKET more than" - cont "I support SILPH!" - done - -_SilphCo3EndBattleText2: ; 82785 (20:6785) - text "You" - line "really got me!" - prompt - -_SilphCo3AfterBattleText2: ; 82799 (20:6799) - text "Humph..." - - para "TEAM ROCKET said" - line "that if I helped" - cont "them, they'd let" - cont "me study #MON!" - done - -_UnnamedText_19de0: ; 827e4 (20:67e4) - text "Sssh! Can't you" - line "see I'm hiding?" - done - -_UnnamedText_19de5: ; 82803 (20:6803) - text "Huh? TEAM ROCKET" - line "is gone?" - done - -_SilphCo4BattleText2: ; 8281e (20:681e) - text "TEAM ROCKET has" - line "taken command of" - cont "SILPH CO.!" - done - -_SilphCo4EndBattleText2: ; 8284b (20:684b) - text "Arrgh!" - prompt - -_SilphCo4AfterBattleText2: ; 82853 (20:6853) - text "Fwahahaha!" - line "My BOSS has been" - cont "after this place!" - done - -_SilphCo4BattleText3: ; 82882 (20:6882) - text "My #MON are my" - line "loyal soldiers!" - done - -_SilphCo4EndBattleText3: ; 828a2 (20:68a2) - text "Darn!" - line "You weak #MON!" - prompt - -_SilphCo4AfterBattleText3: ; 828b8 (20:68b8) - text "The doors are" - line "electronically" - cont "locked! A CARD" - cont "KEY opens them!" - done - -_SilphCo4BattleText4: ; 828f5 (20:68f5) - text "Intruder spotted!" - done - -_SilphCo4EndBattleText4: ; 82908 (20:6908) - text "Who" - line "are you?" - prompt - -_SilphCo4AfterBattleText4: ; 82916 (20:6916) - text "I better tell the" - line "BOSS on 11F!" - done - -_UnnamedText_1a010: ; 82936 (20:6936) - text "TEAM ROCKET is" - line "in an uproar over" - cont "some intruder." - cont "That's you right?" - done - -_UnnamedText_1a015: ; 82978 (20:6978) - text "TEAM ROCKET took" - line "off! You're our" - cont "hero! Thank you!" - done - -_SilphCo5BattleText2: ; 829aa (20:69aa) - text "I heard a kid was" - line "wandering around." - done - -_SilphCo5EndBattleText2: ; 829cf (20:69cf) - text "Boom!" - prompt - -_SilphCo5AfterBattleText2: ; 829d6 (20:69d6) - text "It's not smart" - line "to pick a fight" - cont "with TEAM ROCKET!" - done - -_SilphCo5BattleText3: ; 82a07 (20:6a07) - text "We study #" - line "BALL technology" - cont "on this floor!" - done - -_SilphCo5EndBattleText3: ; 82a32 (20:6a32) - text "Dang!" - line "Blast it!" - prompt - -_SilphCo5AfterBattleText3: ; 82a43 (20:6a43) - text "We worked on the" - line "ultimate #" - cont "BALL which would" - cont "catch anything!" - done - -_SilphCo5BattleText4: ; 82a81 (20:6a81) - text "Whaaat? There" - line "shouldn't be any" - cont "children here?" - done SECTION "bank21",ROMX,BANK[$21] -_SilphCo5EndBattleText4: ; 84000 (21:4000) - text "Oh" - line "goodness!" - prompt +INCLUDE "text/maps/silph_co_5f_2.asm" +INCLUDE "text/maps/silph_co_6f.asm" +INCLUDE "text/maps/silph_co_7f.asm" +INCLUDE "text/maps/silph_co_8f.asm" +INCLUDE "text/maps/silph_co_9f.asm" +INCLUDE "text/maps/silph_co_10f.asm" +INCLUDE "text/maps/silph_co_11f.asm" +INCLUDE "text/maps/mansion_2f.asm" +INCLUDE "text/maps/mansion_3f.asm" +INCLUDE "text/maps/mansion_b1f.asm" +INCLUDE "text/maps/safari_zone_east.asm" +INCLUDE "text/maps/safari_zone_north.asm" +INCLUDE "text/maps/safari_zone_west.asm" +INCLUDE "text/maps/safari_zone_center.asm" +INCLUDE "text/maps/safari_zone_rest_house_1.asm" +INCLUDE "text/maps/safari_zone_secret_house.asm" +INCLUDE "text/maps/safari_zone_rest_house_2.asm" +INCLUDE "text/maps/safari_zone_rest_house_3.asm" +INCLUDE "text/maps/safari_zone_rest_house_4.asm" +INCLUDE "text/maps/unknown_dungeon_1f.asm" +INCLUDE "text/maps/unknown_dungeon_2f.asm" +INCLUDE "text/maps/unknown_dungeon_b1f.asm" +INCLUDE "text/maps/victory_road_1f.asm" +INCLUDE "text/maps/lance.asm" +INCLUDE "text/maps/hall_of_fame.asm" +INCLUDE "text/maps/champion.asm" +INCLUDE "text/maps/lorelei.asm" +INCLUDE "text/maps/bruno.asm" +INCLUDE "text/maps/agatha.asm" +INCLUDE "text/maps/rock_tunnel_b2f_1.asm" -_SilphCo5AfterBattleText4: ; 8400e (21:400e) - text "You're only on 5F." - line "It's a long way" - cont "to my BOSS!" - done - -_SilphCo5BattleText5: ; 8403c (21:403c) - text "Show TEAM ROCKET" - line "a little respect!" - done - -_SilphCo5EndBattleText5: ; 84060 (21:4060) - text "Cough..." - line "Cough..." - prompt - -_SilphCo5AfterBattleText5: ; 84073 (21:4073) - text "Which reminds me." - - para "KOFFING evolves" - line "into WEEZING!" - done - -_SilphCo5Text9: ; 840a4 (21:40a4) - text "It's a #MON" - line "REPORT!" - - para "#MON LAB" - line "created PORYGON," - cont "the first virtual" - cont "reality #MON." - done - -_SilphCo5Text10: ; 840f2 (21:40f2) - text "It's a #MON" - line "REPORT!" - - para "Over 160 #MON" - line "techniques have" - cont "been confirmed." - done - -_SilphCo5Text11: ; 84134 (21:4134) - text "It's a #MON" - line "REPORT!" - - para "4 #MON evolve" - line "only when traded" - cont "by link-cable." - done - -_UnnamedText_1a24a: ; 84176 (21:4176) - text "The ROCKETs came" - line "and took over the" - cont "building!" - done - -_UnnamedText_1a24f: ; 841a4 (21:41a4) - text "Well, better get" - line "back to work!" - done - -_UnnamedText_1a261: ; 841c4 (21:41c4) - text "Oh dear, oh dear." - line "Help me please!" - done - -_UnnamedText_1a266: ; 841e7 (21:41e7) - text "We got engaged!" - line "Heheh!" - done - -_UnnamedText_1a278: ; 841ff (21:41ff) - text "Look at him! He's" - line "such a coward!" - done - -_UnnamedText_1a27d: ; 84220 (21:4220) - text "I feel so sorry" - line "for him, I have" - cont "to marry him!" - done - -_UnnamedText_1a28f: ; 8424f (21:424f) - text "TEAM ROCKET is" - line "trying to conquer" - cont "the world with" - cont "#MON!" - done - -_UnnamedText_1a294: ; 84286 (21:4286) - text "TEAM ROCKET ran" - line "because of you!" - done - -_UnnamedText_1a2a6: ; 842a7 (21:42a7) - text "They must have" - line "targeted SILPH" - cont "for our #MON" - cont "products." - done - -_UnnamedText_1a2ab: ; 842dd (21:42dd) - text "Come work for" - line "SILPH when you" - cont "get older!" - done - -_SilphCo6BattleText2: ; 84306 (21:4306) - text "I am one of the 4" - line "ROCKET BROTHERS!" - done - -_SilphCo6EndBattleText2: ; 8432a (21:432a) - text "Flame" - line "out!" - prompt - -_SilphCo6AfterBattleText2: ; 84336 (21:4336) - text "No matter!" - line "My brothers will" - cont "avenge me!" - done - -_SilphCo6BattleText3: ; 8435e (21:435e) - text "That rotten" - line "PRESIDENT!" - - para "He shouldn't have" - line "sent me to the" - cont "TIKSI BRANCH!" - done - -_SilphCo6EndBattleText3: ; 843a4 (21:43a4) - text "Shoot!" - prompt - -_SilphCo6AfterBattleText3: ; 843ac (21:43ac) - text "TIKSI BRANCH?" - line "It's in Russian" - cont "no man's land!" - done - -_SilphCo6BattleText4: ; 843d8 (21:43d8) - text "You dare betray" - line "TEAM ROCKET?" - done - -_SilphCo6EndBattleText4: ; 843f6 (21:43f6) - text "You" - line "traitor!" - prompt - -_SilphCo6AfterBattleText4: ; 84404 (21:4404) - text "If you stand for" - line "justice, you" - cont "betray evil!" - done - -_UnnamedText_51dd3: ; 84430 (21:4430) - text "Oh! Hi! You're" - line "not a ROCKET! You" - cont "came to save us?" - cont "Why, thank you!" - - para "I want you to" - line "have this #MON" - cont "for saving us." - prompt - -_UnnamedText_51dd8: ; 8449e (21:449e) - text "It's LAPRAS. It's" - line "very intelligent." - - para "We kept it in our" - line "lab, but it will" - cont "be much better" - cont "off with you!" - - para "I think you will" - line "be a good trainer" - cont "for LAPRAS!" - - para "It's a good" - line "swimmer. It'll" - cont "give you a lift!" - done - -_UnnamedText_51ddd: ; 8455a (21:455a) - text "TEAM ROCKET's" - line "BOSS went to the" - cont "boardroom! Is our" - cont "PRESIDENT OK?" - done - -_UnnamedText_51de2: ; 84599 (21:4599) - text "Saved at last!" - line "Thank you!" - done - -_UnnamedText_51e00: ; 845b4 (21:45b4) - text "TEAM ROCKET was" - line "after the MASTER" - cont "BALL which will" - cont "catch any #MON!" - done - -_UnnamedText_51e05: ; 845f6 (21:45f6) - text "We canceled the" - line "MASTER BALL" - cont "project because" - cont "of TEAM ROCKET." - done - -_UnnamedText_51e23: ; 84633 (21:4633) - text "It would be bad" - line "if TEAM ROCKET" - cont "took over SILPH" - cont "or our #MON!" - done - -_UnnamedText_51e28: ; 84670 (21:4670) - text "Wow! You chased" - line "off TEAM ROCKET" - cont "all by yourself?" - done - -_UnnamedText_51e46: ; 846a2 (21:46a2) - text "You! It's really" - line "dangerous here!" - cont "You came to save" - cont "me? You can't!" - done - -_UnnamedText_51e4b: ; 846e2 (21:46e2) - text "Safe at last!" - line "Oh thank you!" - done - -_SilphCo7BattleText1: ; 846ff (21:46ff) - text "Oh ho! I smell a" - line "little rat!" - done - -_SilphCo7EndBattleText1: ; 8471d (21:471d) - text "Lights" - line "out!" - prompt - -_SilphCo7AfterBattleText1: ; 8472a (21:472a) - text "You won't find my" - line "BOSS by just" - cont "scurrying around!" - done - -_SilphCo7BattleText2: ; 8475b (21:475b) - text "Heheh!" - - para "You mistook me for" - line "a SILPH worker?" - done - -_SilphCo7EndBattleText2: ; 84786 (21:4786) - text "I'm" - line "done!" - prompt - -_SilphCo7AfterBattleText2: ; 84790 (21:4790) - text "Despite your age," - line "you are a skilled" - cont "trainer!" - done - -_SilphCo7BattleText3: ; 847be (21:47be) - text "I am one of the 4" - line "ROCKET BROTHERS!" - done - -_SilphCo7EndBattleText3: ; 847e2 (21:47e2) - text "Aack!" - line "Brothers, I lost!" - prompt - -_SilphCo7AfterBattleText3: ; 847fb (21:47fb) - text "Doesn't matter." - line "My brothers will" - cont "repay the favor!" - done - -_SilphCo7BattleText4: ; 8482d (21:482d) - text "A child intruder?" - line "That must be you!" - done - -_SilphCo7EndBattleText4: ; 84852 (21:4852) - text "Fine!" - line "I lost!" - prompt - -_SilphCo7AfterBattleText4: ; 84861 (21:4861) - text "Go on home" - line "before my BOSS" - cont "gets ticked off!" - done - -_UnnamedText_51ebe: ; 8488d (21:488d) - text $53, ": What" - line "kept you ", $52, "?" - done - -_UnnamedText_51ec3: ; 848a2 (21:48a2) - text $53, ": Hahaha!" - line "I thought you'd" - cont "turn up if I" - cont "waited here!" - - para "I guess TEAM" - line "ROCKET slowed you" - cont "down! Not that I" - cont "care!" - - para "I saw you in" - line "SAFFRON, so I" - cont "decided to see if" - cont "you got better!" - done - -_UnnamedText_51ec8: ; 8494a (21:494a) - text "Oh ho!" - line "So, you are ready" - cont "for BOSS ROCKET!" - prompt - -_UnnamedText_51ecd: ; 84975 (21:4975) - text $53, ": How can" - line "I put this?" - - para "You're not good" - line "enough to play" - cont "with us big boys!" - prompt - -_UnnamedText_51ed2: ; 849bd (21:49bd) - text "Well, ", $52, "!" - - para "I'm moving on up" - line "and ahead!" - - para "By checking my" - line "#DEX, I'm" - cont "starting to see" - cont "what's strong and" - cont "how they evolve!" - - para "I'm going to the" - line "#MON LEAGUE" - cont "to boot out the" - cont "ELITE FOUR!" - - para "I'll become the" - line "world's most" - cont "powerful trainer!" - - para $52, ", well" - line "good luck to you!" - cont "Don't sweat it!" - cont "Smell ya!" - done - -_UnnamedText_565be: ; 84ac4 (21:4ac4) - text "I wonder if SILPH" - line "is finished..." - done - -_UnnamedText_565c3: ; 84ae6 (21:4ae6) - text "Thanks for saving" - line "us!" - done - -_SilphCo8BattleText1: ; 84afd (21:4afd) - text "That's as far as" - line "you'll go!" - done - -_SilphCo8EndBattleText1: ; 84b18 (21:4b18) - text "Not" - line "enough grit!" - prompt - -_SilphCo8AfterBattleText1: ; 84b2a (21:4b2a) - text "If you don't turn" - line "back, I'll call" - cont "for backup!" - done - -_SilphCo8BattleText2: ; 84b57 (21:4b57) - text "You're causing us" - line "problems!" - done - -_SilphCo8EndBattleText2: ; 84b73 (21:4b73) - text "Huh?" - line "I lost?" - prompt - -_SilphCo8AfterBattleText2: ; 84b81 (21:4b81) - text "So, what do you" - line "think of SILPH" - cont "BUILDING's maze?" - done - -_SilphCo8BattleText3: ; 84bb1 (21:4bb1) - text "I am one of the 4" - line "ROCKET BROTHERS!" - done - -_SilphCo8EndBattleText3: ; 84bd5 (21:4bd5) - text "Whoo!" - line "Oh brothers!" - prompt - -_SilphCo8AfterBattleText3: ; 84be9 (21:4be9) - text "I'll leave you up" - line "to my brothers!" - done - -_UnnamedText_5d8e5: ; 84c0b (21:4c0b) - text "You look tired!" - line "You should take a" - cont "quick nap!" - prompt - -_UnnamedText_5d8ea: ; 84c39 (21:4c39) - text "Don't give up!" - done - -_UnnamedText_5d8ef: ; 84c48 (21:4c48) - text "Thank you so" - line "much!" - done - -_SilphCo9BattleText1: ; 84c5c (21:4c5c) - text "Your #MON seem" - line "to adore you, kid!" - done - -_SilphCo9EndBattleText1: ; 84c7f (21:4c7f) - text "Ghaaah!" - prompt - -_SilphCo9AfterBattleText1: ; 84c88 (21:4c88) - text "If I had started" - line "as a trainer at" - cont "your age..." - done - -_SilphCo9BattleText2: ; 84cb6 (21:4cb6) - text "Your #MON have" - line "weak points! I" - cont "can nail them!" - done - -_SilphCo9EndBattleText2: ; 84ce4 (21:4ce4) - text "You" - line "hammered me!" - prompt - -_SilphCo9AfterBattleText2: ; 84cf6 (21:4cf6) - text "Exploiting weak" - line "spots does work!" - cont "Think about" - cont "element types!" - done - -_SilphCo9BattleText3: ; 84d33 (21:4d33) - text "I am one of the 4" - line "ROCKET BROTHERS!" - done - -_SilphCo9EndBattleText3: ; 84d57 (21:4d57) - text "Warg!" - line "Brothers, I lost!" - prompt - -_SilphCo9AfterBattleText3: ; 84d70 (21:4d70) - text "My brothers will" - line "avenge me!" - done - -_UnnamedText_5a1d3: ; 84d8d (21:4d8d) - text "Waaaaa!" - cont "I'm scared!" - done - -_UnnamedText_5a1d8: ; 84da1 (21:4da1) - text "Please keep quiet" - line "about my crying!" - done - -_SilphCo10BattleText1: ; 84dc5 (21:4dc5) - text "Welcome to the" - line "10F! So good of" - cont "you to join me!" - done - -_SilphCo10EndBattleText1: ; 84df5 (21:4df5) - text "I'm" - line "stunned!" - prompt - -_SilphCo10AfterBattleText1: ; 84e02 (21:4e02) - text "Nice try, but the" - line "boardroom is up" - cont "one more floor!" - done - -_SilphCo10BattleText2: ; 84e35 (21:4e35) - text "Enough of your" - line "silly games!" - done - -_SilphCo10EndBattleText2: ; 84e52 (21:4e52) - text "No" - line "continues left!" - prompt - -_SilphCo10AfterBattleText2: ; 84e66 (21:4e66) - text "Are you satisfied" - line "with beating me?" - cont "Then go on home!" - done - -_SilphCoPresidentText: ; 84e9b (21:4e9b) - text "PRESIDENT: Thank" - line "you for saving" - cont "SILPH!" - - para "I will never" - line "forget you saved" - cont "us in our moment" - cont "of peril!" - - para "I have to thank" - line "you in some way!" - - para "Because I am rich," - line "I can give you" - cont "anything!" - - para "Here, maybe this" - line "will do!" - prompt - -_ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) - text $52, " got a" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_6231c: ; 84f74 (21:4f74) - text "PRESIDENT: You" - line "can't buy that" - cont "anywhere!" - - para "It's our secret" - line "prototype MASTER" - cont "BALL!" - - para "It will catch any" - line "#MON without" - cont "fail!" - - para "You should be" - line "quiet about using" - cont "it, though." - done - -_SilphCoMasterBallNoRoomText: ; 85013 (21:5013) - text "You have no" - line "room for this." - done - -_SilphCo11Text2: ; 8502f (21:502f) - text "SECRETARY: Thank" - line "you for rescuing" - cont "all of us!" - - para "We admire your" - line "courage." - done - -_SilphCo11Text3: ; 85075 (21:5075) - text "Ah ", $52, "!" - line "So we meet again!" - - para "The PRESIDENT and" - line "I are discussing" - cont "a vital business" - cont "proposition." - - para "Keep your nose" - line "out of grown-up" - cont "matters..." - - para "Or, experience a" - line "world of pain!" - done - -_UnnamedText_62330: ; 85119 (21:5119) - text "Arrgh!!" - line "I lost again!?" - prompt - -_UnnamedText_62335: ; 85131 (21:5131) - text "Blast it all!" - line "You ruined our" - cont "plans for SILPH!" - - para "But, TEAM ROCKET" - line "will never fall!" - - para $52, "! Never" - line "forget that all" - cont "#MON exist" - cont "for TEAM ROCKET!" - - para "I must go, but I" - line "shall return!" - done - -_SilphCo11BattleText1: ; 851d6 (21:51d6) - text "Stop right there!" - line "Don't you move!" - done - -_SilphCo11EndBattleText1: ; 851f8 (21:51f8) - text "Don't..." - line "Please!" - prompt - -_SilphCo11AfterBattleText1: ; 85209 (21:5209) - text "So, you want to" - line "see my BOSS?" - done - -_SilphCo11BattleText2: ; 85227 (21:5227) - text "Halt! Do you have" - line "an appointment" - cont "with my BOSS?" - done - -_SilphCo11EndBattleText2: ; 85257 (21:5257) - text "Gaah!" - line "Demolished!" - prompt - -_SilphCo11AfterBattleText2: ; 8526a (21:526a) - text "Watch your step," - line "my BOSS likes his" - cont "#MON tough!" - done - -_UnnamedText_6237b: ; 8529a (21:529a) - text "The monitor has" - line "#MON on it!" - done - -_Mansion2BattleText1: ; 852b7 (21:52b7) - text "I can't get out!" - line "This old place is" - cont "one big puzzle!" - done - -_Mansion2EndBattleText1: ; 852ea (21:52ea) - text "Oh no!" - line "My bag of loot!" - prompt - -_Mansion2AfterBattleText1: ; 85302 (21:5302) - text "Switches open and" - line "close alternating" - cont "sets of doors!" - done - -_Mansion2Text3: ; 85336 (21:5336) - text "Diary: July 5" - line "Guyana," - cont "South America" - - para "A new #MON was" - line "discovered deep" - cont "in the jungle." - done - -_Mansion2Text4: ; 85389 (21:5389) - text "Diary: July 10" - line "We christened the" - cont "newly discovered" - cont "#MON, MEW." - done - -_UnnamedText_520c2: ; 853c7 (21:53c7) - text "A secret switch!" - - para "Press it?" - done - -_UnnamedText_520c7: ; 853e3 (21:53e3) - text "Who wouldn't?" - prompt - -_UnnamedText_520cc: ; 853f1 (21:53f1) - text "Not quite yet!" - done - -_Mansion3BattleText1: ; 85401 (21:5401) - text "This place is" - line "like, huge!" - done - -_Mansion3EndBattleText1: ; 8541c (21:541c) - text "Ayah!" - prompt - -_Mansion3AfterBattleText1: ; 85423 (21:5423) - text "I wonder where" - line "my partner went." - done - -_Mansion3BattleText2: ; 85444 (21:5444) - text "My mentor once" - line "lived here." - done - -_Mansion3EndBattleText2: ; 85460 (21:5460) - text "Whew!" - line "Overwhelming!" - prompt - -_Mansion3AfterBattleText2: ; 85475 (21:5475) - text "So, you're stuck?" - line "Try jumping off" - cont "over there!" - done - -_Mansion3Text5: ; 854a3 (21:54a3) - text "Diary: Feb. 6" - line "MEW gave birth." - - para "We named the" - line "newborn MEWTWO." - done - -_Mansion4BattleText1: ; 854df (21:54df) - text "Uh-oh. Where am" - line "I now?" - done - -_Mansion4EndBattleText1: ; 854f7 (21:54f7) - text "Awooh!" - prompt - -_Mansion4AfterBattleText1: ; 854ff (21:54ff) - text "You can find stuff" - line "lying around." - done - -_Mansion4BattleText2: ; 85521 (21:5521) - text "This place is" - line "ideal for a lab." - done - -_Mansion4EndBattleText2: ; 85541 (21:5541) - text "What" - line "was that for?" - prompt - -_Mansion4AfterBattleText2: ; 85555 (21:5555) - text "I like it here!" - line "It's conducive to" - cont "my studies!" - done - -_Mansion4Text7: ; 85583 (21:5583) - text "Diary; Sept. 1" - line "MEWTWO is far too" - cont "powerful." - - para "We have failed to" - line "curb its vicious" - cont "tendencies..." - done - -_SafariZoneEastText5: ; 855e0 (21:55e0) - text "REST HOUSE" - done - -_SafariZoneEastText6: ; 855ec (21:55ec) - text "TRAINER TIPS" - - para "The remaining time" - line "declines only" - cont "while you walk!" - done - -_SafariZoneEastText7: ; 8562b (21:562b) - text "CENTER AREA" - line "NORTH: AREA 2" - done - -_SafariZoneNorthText3: ; 85646 (21:5646) - text "REST HOUSE" - done - -_SafariZoneNorthText4: ; 85652 (21:5652) - text "TRAINER TIPS" - - para "The SECRET HOUSE" - line "is still ahead!" - done - -_SafariZoneNorthText5: ; 85681 (21:5681) - text "AREA 2" - done - -_SafariZoneNorthText6: ; 85689 (21:5689) - text "TRAINER TIPS" - - para "#MON hide in" - line "tall grass!" - - para "Zigzag through" - line "grassy areas to" - cont "flush them out." - done - -_SafariZoneNorthText7: ; 856df (21:56df) - text "TRAINER TIPS" - - para "Win a free HM for" - line "finding the" - cont "SECRET HOUSE!" - done - -_SafariZoneWestText5: ; 85719 (21:5719) - text "REST HOUSE" - done - -_SafariZoneWestText6: ; 85725 (21:5725) - text "REQUEST NOTICE" - - para "Please find the" - line "SAFARI WARDEN's" - cont "lost GOLD TEETH." - cont "They're around" - cont "here somewhere." - - para "Reward offered!" - line "Contact: WARDEN" - done - -_SafariZoneWestText7: ; 857a3 (21:57a3) - text "TRAINER TIPS" - - para "Zone Exploration" - line "Campaign!" - - para "The Search for" - line "the SECRET HOUSE!" - done - -_SafariZoneWestText8: ; 857ed (21:57ed) - text "AREA 3" - line "EAST: CENTER AREA" - done - -_SafariZoneCenterText2: ; 85807 (21:5807) - text "REST HOUSE" - done - -_SafariZoneCenterText3: ; 85813 (21:5813) - text "TRAINER TIPS" - - para "Press the START" - line "Button to check" - cont "remaining time!" - done - -_SafariZoneRestHouse1Text1: ; 85851 (21:5851) - text "SARA: Where did" - line "my boy friend," - cont "ERIK, go?" - done - -_SafariZoneRestHouse1Text2: ; 8587b (21:587b) - text "I'm catching" - line "#MON to take" - cont "home as gifts!" - done - -_UnnamedText_4a350: ; 858a4 (21:58a4) - text "Ah! Finally!" - - para "You're the first" - line "person to reach" - cont "the SECRET HOUSE!" - - para "I was getting" - line "worried that no" - cont "one would win our" - cont "campaign prize." - - para "Congratulations!" - line "You have won!" - prompt - -_ReceivedHM03Text: ; 85943 (21:5943) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_HM03ExplanationText: ; 85957 (21:5957) - text "HM03 is SURF!" - - para "#MON will be" - line "able to ferry you" - cont "across water!" - - para "And, this HM isn't" - line "disposable! You" - cont "can use it over" - cont "and over!" - - para "You're super lucky" - line "for winning this" - cont "fabulous prize!" - done - -_HM03NoRoomText: ; 85a02 (21:5a02) - text "You don't have" - line "room for this" - cont "fabulous prize!" - done - -_SafariZoneRestHouse2Text1: ; 85a2f (21:5a2f) - text "Tossing ROCKs at" - line "#MON might" - cont "make them run," - cont "but they'll be" - cont "easier to catch." - done - -_SafariZoneRestHouse2Text2: ; 85a7a (21:5a7a) - text "Using BAIT will" - line "make #MON" - cont "easier to catch." - done - -_SafariZoneRestHouse2Text3: ; 85aa6 (21:5aa6) - text "I hiked a lot, but" - line "I didn't see any" - cont "#MON I wanted." - done - -_SafariZoneRestHouse3Text1: ; 85ad9 (21:5ad9) - text "How many did you" - line "catch? I'm bushed" - cont "from the work!" - done - -_SafariZoneRestHouse3Text2: ; 85b0b (21:5b0b) - text "I caught a" - line "CHANSEY!" - - para "That makes this" - line "all worthwhile!" - done - -_SafariZoneRestHouse3Text3: ; 85b40 (21:5b40) - text "Whew! I'm tired" - line "from all the fun!" - done - -_SafariZoneRestHouse4Text1: ; 85b62 (21:5b62) - text "You can keep any" - line "item you find on" - cont "the ground here." - - para "But, you'll run" - line "out of time if" - cont "you try for all" - cont "of them at once!" - done - -_SafariZoneRestHouse4Text2: ; 85bd5 (21:5bd5) - text "Go to the deepest" - line "part of the" - cont "SAFARI ZONE. You" - cont "will win a prize!" - done - -_SafariZoneRestHouse4Text3: ; 85c17 (21:5c17) - text "My EEVEE evolved" - line "into FLAREON!" - - para "But, a friend's" - line "EEVEE turned into" - cont "a VAPOREON!" - cont "I wonder why?" - done - -_UnknownDungeon3MewtwoText: ; 85c72 (21:5c72) - text "Mew!@@" - -_VictoryRoad1BattleText1: ; 85c79 (21:5c79) - text "I wonder if you" - line "are good enough" - cont "for me!" - done - -_VictoryRoad1EndBattleText1: ; 85ca2 (21:5ca2) - text "I" - line "lost out!" - prompt - -_VictoryRoad1AfterBattleText1: ; 85caf (21:5caf) - text "I never wanted to" - line "lose to anybody!" - done - -_VictoryRoad1BattleText2: ; 85cd3 (21:5cd3) - text "I can see you're" - line "good! Let me see" - cont "exactly how good!" - done - -_VictoryRoad1EndBattleText2: ; 85d07 (21:5d07) - text "I" - line "had a chance..." - prompt - -_VictoryRoad1AfterBattleText2: ; 85d1a (21:5d1a) - text "I concede, you're" - line "better than me!" - done - -_LanceBeforeBattleText: ; 85d3c (21:5d3c) - text "Ah! I heard about" - line "you ", $52, "!" - - para "I lead the ELITE" - line "FOUR! You can" - cont "call me LANCE the" - cont "dragon trainer!" - - para "You know that" - line "dragons are" - cont "mythical #MON!" - - para "They're hard to" - line "catch and raise," - cont "but their powers" - cont "are superior!" - - para "They're virtually" - line "indestructible!" - - para "Well, are you" - line "ready to lose?" - - para "Your LEAGUE" - line "challenge ends" - cont "with me, ", $52, "!" - done - -_LanceEndBattleText: ; 85e64 (21:5e64) - text "That's it!" - - para "I hate to admit" - line "it, but you are a" - cont "#MON master!" - prompt - -_LanceAfterBattleText: ; 85e9e (21:5e9e) - text "I still can't" - line "believe my" - cont "dragons lost to" - cont "you, ", $52, "!" - - para "You are now the" - line "#MON LEAGUE" - cont "champion!" - - para "...Or, you would" - line "have been, but" - cont "you have one more" - cont "challenge ahead." - - para "You have to face" - line "another trainer!" - cont "His name is..." - - para $53, "!" - line "He beat the ELITE" - cont "FOUR before you!" - - para "He is the real" - line "#MON LEAGUE" - cont "champion!@@" - -_HallofFameRoomText1: ; 85fb5 (21:5fb5) - text "OAK: Er-hem!" - line "Congratulations" - cont $52, "!" - - para "This floor is the" - line "#MON HALL OF" - cont "FAME!" - - para "#MON LEAGUE" - line "champions are" - cont "honored for their" - cont "exploits here!" - - para "Their #MON are" - line "also recorded in" - cont "the HALL OF FAME!" - - para $52, "! You have" - line "endeavored hard" - cont "to become the new" - cont "LEAGUE champion!" - - para "Congratulations," - line $52, ", you and" - cont "your #MON are" - cont "HALL OF FAMERs!" - done - -_UnnamedText_760f4: ; 860e1 (21:60e1) - text $53, ": Hey!" - - para "I was looking" - line "forward to seeing" - cont "you, ", $52, "!" - - para "My rival should" - line "be strong to keep" - cont "me sharp!" - - para "While working on" - line "#DEX, I looked" - cont "all over for" - cont "powerful #MON!" - - para "Not only that, I" - line "assembled teams" - cont "that would beat" - cont "any #MON type!" - - para "And now!" - - para "I'm the #MON" - line "LEAGUE champion!" - - para $52, "! Do you" - line "know what that" - cont "means?" - - para "I'll tell you!" - - para "I am the most" - line "powerful trainer" - cont "in the world!" - done - -_UnnamedText_760f9: ; 8623b (21:623b) - text "NO!" - line "That can't be!" - cont "You beat my best!" - - para "After all that" - line "work to become" - cont "LEAGUE champ?" - - para "My reign is over" - line "already?" - cont "It's not fair!" - prompt - -_UnnamedText_760fe: ; 862b4 (21:62b4) - text "Hahaha!" - line "I won, I won!" - - para "I'm too good for" - line "you, ", $52, "!" - - para "You did well to" - line "even reach me," - cont $53, ", the" - cont "#MON genius!" - - para "Nice try, loser!" - line "Hahaha!" - prompt - -_UnnamedText_76103: ; 8632f (21:632f) - text "Why?" - line "Why did I lose?" - - para "I never made any" - line "mistakes raising" - cont "my #MON..." - - para "Darn it! You're" - line "the new #MON" - cont "LEAGUE champion!" - - para "Although I don't" - line "like to admit it." - done - -_GaryText2: ; 863c1 (21:63c1) - text "OAK: ", $52, "!" - done - -_UnnamedText_76120: ; 863ca (21:63ca) - text "OAK: So, you won!" - line "Congratulations!" - cont "You're the new" - cont "#MON LEAGUE" - cont "champion!" - - para "You've grown up so" - line "much since you" - cont "first left with" - cont "@" - TX_RAM $cd6d - text "!" - - para $52, ", you have" - line "come of age!" - done - -_UnnamedText_76125: ; 86463 (21:6463) - text "OAK: ", $53, "! I'm" - line "disappointed!" - - para "I came when I" - line "heard you beat" - cont "the ELITE FOUR!" - - para "But, when I got" - line "here, you had" - cont "already lost!" - - para $53, "! Do you" - line "understand why" - cont "you lost?" - - para "You have forgotten" - line "to treat your" - cont "#MON with" - cont "trust and love!" - - para "Without them, you" - line "will never become" - cont "a champ again!" - done - -_UnnamedText_7612a: ; 86567 (21:6567) - text "OAK: ", $52, "!" - - para "You understand" - line "that your victory" - cont "was not just your" - cont "own doing!" - - para "The bond you share" - line "with your #MON" - cont "is marvelous!" - - para $52, "!" - line "Come with me!" - done - -_LoreleiBeforeBattleText: ; 865ef (21:65ef) - text "Welcome to" - line "#MON LEAGUE!" - - para "I am LORELEI of" - line "the ELITE FOUR!" - - para "No one can best" - line "me when it comes" - cont "to icy #MON!" - - para "Freezing moves" - line "are powerful!" - - para "Your #MON will" - line "be at my mercy" - cont "when they are" - cont "frozen solid!" - - para "Hahaha!" - line "Are you ready?" - done - -_LoreleiEndBattleText: ; 866c4 (21:66c4) - text "How" - line "dare you!" - prompt - -_LoreleiAfterBattleText: ; 866d3 (21:66d3) - text "You're better" - line "than I thought!" - cont "Go on ahead!" - - para "You only got a" - line "taste of #MON" - cont "LEAGUE power!" - done - -_UnnamedText_7627b: ; 86729 (21:6729) - text "Someone's voice:" - line "Don't run away!" - done - -_BrunoBeforeBattleText: ; 86749 (21:6749) - text "I am BRUNO of" - line "the ELITE FOUR!" - - para "Through rigorous" - line "training, people" - cont "and #MON can" - cont "become stronger!" - - para "I've weight" - line "trained with" - cont "my #MON!" - - para $52, "!" - - para "We will grind you" - line "down with our" - cont "superior power!" - - para "Hoo hah!" - done - -_BrunoEndBattleText: ; 86805 (21:6805) - text "Why?" - line "How could I lose?" - prompt - -_BrunoAfterBattleText: ; 8681d (21:681d) - text "My job is done!" - line "Go face your next" - cont "challenge!" - done - -_UnnamedText_763d2: ; 8684b (21:684b) - text "Someone's voice:" - line "Don't run away!" - done - -_AgathaBeforeBattleText: ; 8686b (21:686b) - text "I am AGATHA of" - line "the ELITE FOUR!" - - para "OAK's taken a lot" - line "of interest in" - cont "you, child!" - - para "That old duff was" - line "once tough and" - cont "handsome! That" - cont "was decades ago!" - - para "Now he just wants" - line "to fiddle with" - cont "his #DEX! He's" - cont "wrong! #MON" - cont "are for fighting!" - - para $52, "! I'll show" - line "you how a real" - cont "trainer fights!" - done - -_AgathaEndBattleText: ; 86970 (21:6970) - text "Oh ho!" - line "You're something" - cont "special, child!" - prompt - -_AgathaAfterBattleText: ; 86998 (21:6998) - text "You win! I see" - line "what the old duff" - cont "sees in you now!" - - para "I have nothing" - line "else to say! Run" - cont "along now, child!" - done - -_AgathaText2: ; 869fd (21:69fd) - text "Someone's voice:" - line "Don't run away!" - done - -_RockTunnel2BattleText2: ; 86a1d (21:6a1d) - text "Hikers leave twigs" - line "as trail markers." - done - -_RockTunnel2EndBattleText2: ; 86a43 (21:6a43) - text "Ohhh!" - line "I did my best!" - prompt - -_RockTunnel2AfterBattleText2: ; 86a59 (21:6a59) - text "I want to go " - line "home!" - done - -_RockTunnel2BattleText3: ; 86a6e (21:6a6e) - text "Hahaha! Can you" - line "beat my power?" - done - -_RockTunnel2EndBattleText3: ; 86a8e (21:6a8e) - text "Oops!" - line "Out-muscled!" - prompt - -_RockTunnel2AfterBattleText3: ; 86aa2 (21:6aa2) - text "I go for power" - line "because I hate" - cont "thinking!" - done - -_RockTunnel2BattleText4: ; 86acb (21:6acb) - text "You have a" - line "#DEX?" - cont "I want one too!" - done - -_RockTunnel2EndBattleText4: ; 86aed (21:6aed) - text "Shoot!" - line "I'm so jealous!" - prompt - -_RockTunnel2AfterBattleText4: ; 86b04 (21:6b04) - text "When you finish" - line "your #DEX, can" - cont "I have it?" - done - -_RockTunnel2BattleText5: ; 86b2f (21:6b2f) - text "Do you know about" - line "costume players?" - done - -_RockTunnel2EndBattleText5: ; 86b53 (21:6b53) - text "Well," - line "that's that." - prompt - -_RockTunnel2AfterBattleText5: ; 86b66 (21:6b66) - text "Costume players" - line "dress up as" - cont "#MON for fun." - done - -_RockTunnel2BattleText6: ; 86b91 (21:6b91) - text "My #MON" - line "techniques will" - cont "leave you crying!" - done - -_RockTunnel2EndBattleText6: ; 86bbc (21:6bbc) - text "I give!" - line "You're a better" - cont "technician!" - prompt - -_RockTunnel2AfterBattleText6: ; 86be0 (21:6be0) - text "In mountains," - line "you'll often find" - cont "rock-type #MON." - done - -_RockTunnel2BattleText7: ; 86c10 (21:6c10) - text "I don't often" - line "come here, but I" - cont "will fight you." - done - -_RockTunnel2EndBattleText7: ; 86c3f (21:6c3f) - text "Oh!" - line "I lost!" - prompt - -_RockTunnel2AfterBattleText7: ; 86c4c (21:6c4c) - text "I like tiny" - line "#MON, big ones" - cont "are too scary!" - done - -_RockTunnel2BattleText8: ; 86c77 (21:6c77) - text "Hit me with your" - line "best shot!" - done - -_RockTunnel2EndBattleText8: ; 86c94 (21:6c94) - text "Fired" - line "away!" - prompt SECTION "bank22",ROMX,BANK[$22] -_RockTunnel2AfterBattleText8: ; 88000 (22:4000) - text "I'll raise my" - line "#MON to beat" - cont "yours, kid!" - done - -_RockTunnel2BattleText9: ; 88027 (22:4027) - text "I draw #MON" - line "when I'm home." - done - -_RockTunnel2EndBattleText9: ; 88042 (22:4042) - text "Whew!" - line "I'm exhausted!" - prompt - -_RockTunnel2AfterBattleText9: ; 88057 (22:4057) - text "I'm an artist," - line "not a fighter." - done - -_SeafoamIslands5BattleText2: ; 88075 (22:4075) - text "Gyaoo!@@" - -_SeafoamIslands5Text4: ; 8807e (22:407e) - text "Boulders might" - line "change the flow" - cont "of water!" - done - -_SeafoamIslands5Text5: ; 880a8 (22:40a8) - text "DANGER" - line "Fast current!" - done +INCLUDE "text/maps/rock_tunnel_b2f_2.asm" +INCLUDE "text/maps/seafoam_islands_1f.asm" +INCLUDE "text/maps/seafoam_islands_b1f.asm" +INCLUDE "text/maps/seafoam_islands_b2f.asm" +INCLUDE "text/maps/seafoam_islands_b3f.asm" +INCLUDE "text/maps/seafoam_islands_b4f.asm" _AIBattleWithdrawText: ; 880be (22:40be) TX_RAM W_TRAINERNAME diff --git a/text/maps/agatha.asm b/text/maps/agatha.asm new file mode 100644 index 00000000..38a49edd --- /dev/null +++ b/text/maps/agatha.asm @@ -0,0 +1,45 @@ +_AgathaBeforeBattleText: ; 8686b (21:686b) + text "I am AGATHA of" + line "the ELITE FOUR!" + + para "OAK's taken a lot" + line "of interest in" + cont "you, child!" + + para "That old duff was" + line "once tough and" + cont "handsome! That" + cont "was decades ago!" + + para "Now he just wants" + line "to fiddle with" + cont "his #DEX! He's" + cont "wrong! #MON" + cont "are for fighting!" + + para $52, "! I'll show" + line "you how a real" + cont "trainer fights!" + done + +_AgathaEndBattleText: ; 86970 (21:6970) + text "Oh ho!" + line "You're something" + cont "special, child!" + prompt + +_AgathaAfterBattleText: ; 86998 (21:6998) + text "You win! I see" + line "what the old duff" + cont "sees in you now!" + + para "I have nothing" + line "else to say! Run" + cont "along now, child!" + done + +_AgathaText2: ; 869fd (21:69fd) + text "Someone's voice:" + line "Don't run away!" + done + diff --git a/text/maps/bruno.asm b/text/maps/bruno.asm new file mode 100644 index 00000000..600d9b51 --- /dev/null +++ b/text/maps/bruno.asm @@ -0,0 +1,38 @@ +_BrunoBeforeBattleText: ; 86749 (21:6749) + text "I am BRUNO of" + line "the ELITE FOUR!" + + para "Through rigorous" + line "training, people" + cont "and #MON can" + cont "become stronger!" + + para "I've weight" + line "trained with" + cont "my #MON!" + + para $52, "!" + + para "We will grind you" + line "down with our" + cont "superior power!" + + para "Hoo hah!" + done + +_BrunoEndBattleText: ; 86805 (21:6805) + text "Why?" + line "How could I lose?" + prompt + +_BrunoAfterBattleText: ; 8681d (21:681d) + text "My job is done!" + line "Go face your next" + cont "challenge!" + done + +_UnnamedText_763d2: ; 8684b (21:684b) + text "Someone's voice:" + line "Don't run away!" + done + diff --git a/text/maps/champion.asm b/text/maps/champion.asm new file mode 100644 index 00000000..71a0ca6f --- /dev/null +++ b/text/maps/champion.asm @@ -0,0 +1,147 @@ +_UnnamedText_760f4: ; 860e1 (21:60e1) + text $53, ": Hey!" + + para "I was looking" + line "forward to seeing" + cont "you, ", $52, "!" + + para "My rival should" + line "be strong to keep" + cont "me sharp!" + + para "While working on" + line "#DEX, I looked" + cont "all over for" + cont "powerful #MON!" + + para "Not only that, I" + line "assembled teams" + cont "that would beat" + cont "any #MON type!" + + para "And now!" + + para "I'm the #MON" + line "LEAGUE champion!" + + para $52, "! Do you" + line "know what that" + cont "means?" + + para "I'll tell you!" + + para "I am the most" + line "powerful trainer" + cont "in the world!" + done + +_UnnamedText_760f9: ; 8623b (21:623b) + text "NO!" + line "That can't be!" + cont "You beat my best!" + + para "After all that" + line "work to become" + cont "LEAGUE champ?" + + para "My reign is over" + line "already?" + cont "It's not fair!" + prompt + +_UnnamedText_760fe: ; 862b4 (21:62b4) + text "Hahaha!" + line "I won, I won!" + + para "I'm too good for" + line "you, ", $52, "!" + + para "You did well to" + line "even reach me," + cont $53, ", the" + cont "#MON genius!" + + para "Nice try, loser!" + line "Hahaha!" + prompt + +_UnnamedText_76103: ; 8632f (21:632f) + text "Why?" + line "Why did I lose?" + + para "I never made any" + line "mistakes raising" + cont "my #MON..." + + para "Darn it! You're" + line "the new #MON" + cont "LEAGUE champion!" + + para "Although I don't" + line "like to admit it." + done + +_GaryText2: ; 863c1 (21:63c1) + text "OAK: ", $52, "!" + done + +_UnnamedText_76120: ; 863ca (21:63ca) + text "OAK: So, you won!" + line "Congratulations!" + cont "You're the new" + cont "#MON LEAGUE" + cont "champion!" + + para "You've grown up so" + line "much since you" + cont "first left with" + cont "@" + TX_RAM $cd6d + text "!" + + para $52, ", you have" + line "come of age!" + done + +_UnnamedText_76125: ; 86463 (21:6463) + text "OAK: ", $53, "! I'm" + line "disappointed!" + + para "I came when I" + line "heard you beat" + cont "the ELITE FOUR!" + + para "But, when I got" + line "here, you had" + cont "already lost!" + + para $53, "! Do you" + line "understand why" + cont "you lost?" + + para "You have forgotten" + line "to treat your" + cont "#MON with" + cont "trust and love!" + + para "Without them, you" + line "will never become" + cont "a champ again!" + done + +_UnnamedText_7612a: ; 86567 (21:6567) + text "OAK: ", $52, "!" + + para "You understand" + line "that your victory" + cont "was not just your" + cont "own doing!" + + para "The bond you share" + line "with your #MON" + cont "is marvelous!" + + para $52, "!" + line "Come with me!" + done + diff --git a/text/maps/hall_of_fame.asm b/text/maps/hall_of_fame.asm new file mode 100644 index 00000000..43962f4d --- /dev/null +++ b/text/maps/hall_of_fame.asm @@ -0,0 +1,29 @@ +_HallofFameRoomText1: ; 85fb5 (21:5fb5) + text "OAK: Er-hem!" + line "Congratulations" + cont $52, "!" + + para "This floor is the" + line "#MON HALL OF" + cont "FAME!" + + para "#MON LEAGUE" + line "champions are" + cont "honored for their" + cont "exploits here!" + + para "Their #MON are" + line "also recorded in" + cont "the HALL OF FAME!" + + para $52, "! You have" + line "endeavored hard" + cont "to become the new" + cont "LEAGUE champion!" + + para "Congratulations," + line $52, ", you and" + cont "your #MON are" + cont "HALL OF FAMERs!" + done + diff --git a/text/maps/lance.asm b/text/maps/lance.asm new file mode 100644 index 00000000..f0ab490c --- /dev/null +++ b/text/maps/lance.asm @@ -0,0 +1,64 @@ +_LanceBeforeBattleText: ; 85d3c (21:5d3c) + text "Ah! I heard about" + line "you ", $52, "!" + + para "I lead the ELITE" + line "FOUR! You can" + cont "call me LANCE the" + cont "dragon trainer!" + + para "You know that" + line "dragons are" + cont "mythical #MON!" + + para "They're hard to" + line "catch and raise," + cont "but their powers" + cont "are superior!" + + para "They're virtually" + line "indestructible!" + + para "Well, are you" + line "ready to lose?" + + para "Your LEAGUE" + line "challenge ends" + cont "with me, ", $52, "!" + done + +_LanceEndBattleText: ; 85e64 (21:5e64) + text "That's it!" + + para "I hate to admit" + line "it, but you are a" + cont "#MON master!" + prompt + +_LanceAfterBattleText: ; 85e9e (21:5e9e) + text "I still can't" + line "believe my" + cont "dragons lost to" + cont "you, ", $52, "!" + + para "You are now the" + line "#MON LEAGUE" + cont "champion!" + + para "...Or, you would" + line "have been, but" + cont "you have one more" + cont "challenge ahead." + + para "You have to face" + line "another trainer!" + cont "His name is..." + + para $53, "!" + line "He beat the ELITE" + cont "FOUR before you!" + + para "He is the real" + line "#MON LEAGUE" + cont "champion!@@" + diff --git a/text/maps/lorelei.asm b/text/maps/lorelei.asm new file mode 100644 index 00000000..9679626b --- /dev/null +++ b/text/maps/lorelei.asm @@ -0,0 +1,43 @@ +_LoreleiBeforeBattleText: ; 865ef (21:65ef) + text "Welcome to" + line "#MON LEAGUE!" + + para "I am LORELEI of" + line "the ELITE FOUR!" + + para "No one can best" + line "me when it comes" + cont "to icy #MON!" + + para "Freezing moves" + line "are powerful!" + + para "Your #MON will" + line "be at my mercy" + cont "when they are" + cont "frozen solid!" + + para "Hahaha!" + line "Are you ready?" + done + +_LoreleiEndBattleText: ; 866c4 (21:66c4) + text "How" + line "dare you!" + prompt + +_LoreleiAfterBattleText: ; 866d3 (21:66d3) + text "You're better" + line "than I thought!" + cont "Go on ahead!" + + para "You only got a" + line "taste of #MON" + cont "LEAGUE power!" + done + +_UnnamedText_7627b: ; 86729 (21:6729) + text "Someone's voice:" + line "Don't run away!" + done + diff --git a/text/maps/mansion_2f.asm b/text/maps/mansion_2f.asm new file mode 100644 index 00000000..37746069 --- /dev/null +++ b/text/maps/mansion_2f.asm @@ -0,0 +1,48 @@ +_Mansion2BattleText1: ; 852b7 (21:52b7) + text "I can't get out!" + line "This old place is" + cont "one big puzzle!" + done + +_Mansion2EndBattleText1: ; 852ea (21:52ea) + text "Oh no!" + line "My bag of loot!" + prompt + +_Mansion2AfterBattleText1: ; 85302 (21:5302) + text "Switches open and" + line "close alternating" + cont "sets of doors!" + done + +_Mansion2Text3: ; 85336 (21:5336) + text "Diary: July 5" + line "Guyana," + cont "South America" + + para "A new #MON was" + line "discovered deep" + cont "in the jungle." + done + +_Mansion2Text4: ; 85389 (21:5389) + text "Diary: July 10" + line "We christened the" + cont "newly discovered" + cont "#MON, MEW." + done + +_UnnamedText_520c2: ; 853c7 (21:53c7) + text "A secret switch!" + + para "Press it?" + done + +_UnnamedText_520c7: ; 853e3 (21:53e3) + text "Who wouldn't?" + prompt + +_UnnamedText_520cc: ; 853f1 (21:53f1) + text "Not quite yet!" + done + diff --git a/text/maps/mansion_3f.asm b/text/maps/mansion_3f.asm new file mode 100644 index 00000000..dbf50992 --- /dev/null +++ b/text/maps/mansion_3f.asm @@ -0,0 +1,38 @@ +_Mansion3BattleText1: ; 85401 (21:5401) + text "This place is" + line "like, huge!" + done + +_Mansion3EndBattleText1: ; 8541c (21:541c) + text "Ayah!" + prompt + +_Mansion3AfterBattleText1: ; 85423 (21:5423) + text "I wonder where" + line "my partner went." + done + +_Mansion3BattleText2: ; 85444 (21:5444) + text "My mentor once" + line "lived here." + done + +_Mansion3EndBattleText2: ; 85460 (21:5460) + text "Whew!" + line "Overwhelming!" + prompt + +_Mansion3AfterBattleText2: ; 85475 (21:5475) + text "So, you're stuck?" + line "Try jumping off" + cont "over there!" + done + +_Mansion3Text5: ; 854a3 (21:54a3) + text "Diary: Feb. 6" + line "MEW gave birth." + + para "We named the" + line "newborn MEWTWO." + done + diff --git a/text/maps/mansion_b1f.asm b/text/maps/mansion_b1f.asm new file mode 100644 index 00000000..54e78bf2 --- /dev/null +++ b/text/maps/mansion_b1f.asm @@ -0,0 +1,40 @@ +_Mansion4BattleText1: ; 854df (21:54df) + text "Uh-oh. Where am" + line "I now?" + done + +_Mansion4EndBattleText1: ; 854f7 (21:54f7) + text "Awooh!" + prompt + +_Mansion4AfterBattleText1: ; 854ff (21:54ff) + text "You can find stuff" + line "lying around." + done + +_Mansion4BattleText2: ; 85521 (21:5521) + text "This place is" + line "ideal for a lab." + done + +_Mansion4EndBattleText2: ; 85541 (21:5541) + text "What" + line "was that for?" + prompt + +_Mansion4AfterBattleText2: ; 85555 (21:5555) + text "I like it here!" + line "It's conducive to" + cont "my studies!" + done + +_Mansion4Text7: ; 85583 (21:5583) + text "Diary; Sept. 1" + line "MEWTWO is far too" + cont "powerful." + + para "We have failed to" + line "curb its vicious" + cont "tendencies..." + done + diff --git a/text/maps/mt_moon_1f.asm b/text/maps/mt_moon_1f.asm new file mode 100644 index 00000000..6013c78a --- /dev/null +++ b/text/maps/mt_moon_1f.asm @@ -0,0 +1,120 @@ +_MtMoon1BattleText2: ; 80692 (20:4692) + text "WHOA! You shocked" + line "me! Oh, you're" + cont "just a kid!" + done + +_MtMoon1EndBattleText2: ; 806bf (20:46bf) + text "Wow!" + line "Shocked again!" + prompt + +_MtMoon1AfterBattleText2: ; 806d4 (20:46d4) + text "Kids like you" + line "shouldn't be" + cont "here!" + done + +_MtMoon1BattleText3: ; 806f5 (20:46f5) + text "Did you come to" + line "explore too?" + done + +_MtMoon1EndBattleText3: ; 80713 (20:4713) + text "Losing" + line "stinks!" + prompt + +_MtMoon1AfterBattleText3: ; 80723 (20:4723) + text "I came down here" + line "to show off to" + cont "girls." + done + +_MtMoon1BattleText4: ; 8074b (20:474b) + text "Wow! It's way" + line "bigger in here" + cont "than I thought!" + done + +_MtMoon1EndBattleText4: ; 80778 (20:4778) + text "Oh!" + line "I lost it!" + prompt + +_MtMoon1AfterBattleText4: ; 80788 (20:4788) + text "How do you get" + line "out of here?" + done + +_MtMoon1BattleText5: ; 807a5 (20:47a5) + text "What! Don't sneak" + line "up on me!" + done + +_MtMoon1EndBattleText5: ; 807c1 (20:47c1) + text "My" + line "#MON won't do!" + prompt + +_MtMoon1AfterBattleText5: ; 807d3 (20:47d3) + text "I have to find" + line "stronger #MON." + done + +_MtMoon1BattleText6: ; 807f2 (20:47f2) + text "What? I'm waiting" + line "for my friends to" + cont "find me here." + done + +_MtMoon1EndBattleText6: ; 80824 (20:4824) + text "I lost?" + prompt + +_MtMoon1AfterBattleText6: ; 8082d (20:482d) + text "I heard there are" + line "some very rare" + cont "fossils here." + done + +_MtMoon1BattleText7: ; 8085d (20:485d) + text "Suspicious men" + line "are in the cave." + cont "What about you?" + done + +_MtMoon1EndBattleText7: ; 8088e (20:488e) + text "You" + line "got me!" + prompt + +_MtMoon1AfterBattleText7: ; 8089b (20:489b) + text "I saw them! I'm" + line "sure they're from" + cont "TEAM ROCKET!" + done + +_MtMoon1BattleText8: ; 808c9 (20:48c9) + text "Go through this" + line "cave to get to" + cont "CERULEAN CITY!" + done + +_MtMoon1EndBattleText8: ; 808f8 (20:48f8) + text "I" + line "lost." + prompt + +_MtMoon1AfterBattleText8: ; 80901 (20:4901) + text "ZUBAT is tough!" + line "But, it can be" + cont "useful if you" + cont "catch one." + done + +_MtMoon1Text14: ; 8093a (20:493a) + text "Beware! ZUBAT is" + line "a blood sucker!" + done + diff --git a/text/maps/mt_moon_b1f.asm b/text/maps/mt_moon_b1f.asm new file mode 100644 index 00000000..d6ccfc84 --- /dev/null +++ b/text/maps/mt_moon_b1f.asm @@ -0,0 +1,4 @@ +_UnnamedText_51a48: ; 8095c (20:495c) + db $0 + done + diff --git a/text/maps/mt_moon_b2f.asm b/text/maps/mt_moon_b2f.asm new file mode 100644 index 00000000..c8b2920c --- /dev/null +++ b/text/maps/mt_moon_b2f.asm @@ -0,0 +1,123 @@ +_UnnamedText_49f24: ; 8095e (20:495e) + text "You want the" + line "DOME FOSSIL?" + done + +_UnnamedText_49f64: ; 80979 (20:4979) + text "You want the" + line "HELIX FOSSIL?" + done + +_UnnamedText_49f6f: ; 80995 (20:4995) + text $52, " got the" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_49f7f: ; 809a8 (20:49a8) + text "Look, you've got" + line "no room for this.@@" + +_UnnamedText_49f85: ; 809cc (20:49cc) + text "Hey, stop!" + + para "I found these" + line "fossils! They're" + cont "both mine!" + done + +_UnnamedText_49f8a: ; 80a01 (20:4a01) + text "OK!" + line "I'll share!" + prompt + +_UnnamedText_49f8f: ; 80a11 (20:4a11) + text "We'll each take" + line "one!" + cont "No being greedy!" + done + +_UnnamedText_49f94: ; 80a37 (20:4a37) + text "Far away, on" + line "CINNABAR ISLAND," + cont "there's a #MON" + cont "LAB." + + para "They do research" + line "on regenerating" + cont "fossils." + done + +_UnnamedText_49f99: ; 80a93 (20:4a93) + text "All right. Then" + line "this is mine!@@" + +_MtMoon3BattleText2: ; 80ab3 (20:4ab3) + text "TEAM ROCKET will" + line "find the fossils," + cont "revive and sell" + cont "them for cash!" + done + +_MtMoon3EndBattleText2: ; 80af6 (20:4af6) + text "Urgh!" + line "Now I'm mad!" + prompt + +_MtMoon3AfterBattleText2: ; 80b09 (20:4b09) + text "You made me mad!" + line "TEAM ROCKET will" + cont "blacklist you!" + done + +_MtMoon3BattleText3: ; 80b3b (20:4b3b) + text "We, TEAM ROCKET," + line "are #MON" + cont "gangsters!" + done + +_MtMoon3EndBattleText3: ; 80b61 (20:4b61) + text "I blew" + line "it!" + prompt + +_MtMoon3AfterBattleText3: ; 80b6d (20:4b6d) + text "Darn it all! My" + line "associates won't" + cont "stand for this!" + done + +_MtMoon3BattleText4: ; 80b9e (20:4b9e) + text "We're pulling a" + line "big job here!" + cont "Get lost, kid!" + done + +_MtMoon3EndBattleText4: ; 80bcb (20:4bcb) + text "So, you" + line "are good." + prompt + +_MtMoon3AfterBattleText4: ; 80bde (20:4bde) + text "If you find a" + line "fossil, give it" + cont "to me and scram!" + done + +_MtMoon3BattleText5: ; 80c0e (20:4c0e) + text "Little kids" + line "should leave" + cont "grown-ups alone!" + done + +_MtMoon3EndBattleText5: ; 80c39 (20:4c39) + text "I'm" + line "steamed!" + prompt + +_MtMoon3AfterBattleText5: ; 80c46 (20:4c46) + text "#MON lived" + line "here long before" + cont "people came." + done + diff --git a/text/maps/rock_tunnel_b2f_1.asm b/text/maps/rock_tunnel_b2f_1.asm new file mode 100644 index 00000000..d6aaa414 --- /dev/null +++ b/text/maps/rock_tunnel_b2f_1.asm @@ -0,0 +1,109 @@ +_RockTunnel2BattleText2: ; 86a1d (21:6a1d) + text "Hikers leave twigs" + line "as trail markers." + done + +_RockTunnel2EndBattleText2: ; 86a43 (21:6a43) + text "Ohhh!" + line "I did my best!" + prompt + +_RockTunnel2AfterBattleText2: ; 86a59 (21:6a59) + text "I want to go " + line "home!" + done + +_RockTunnel2BattleText3: ; 86a6e (21:6a6e) + text "Hahaha! Can you" + line "beat my power?" + done + +_RockTunnel2EndBattleText3: ; 86a8e (21:6a8e) + text "Oops!" + line "Out-muscled!" + prompt + +_RockTunnel2AfterBattleText3: ; 86aa2 (21:6aa2) + text "I go for power" + line "because I hate" + cont "thinking!" + done + +_RockTunnel2BattleText4: ; 86acb (21:6acb) + text "You have a" + line "#DEX?" + cont "I want one too!" + done + +_RockTunnel2EndBattleText4: ; 86aed (21:6aed) + text "Shoot!" + line "I'm so jealous!" + prompt + +_RockTunnel2AfterBattleText4: ; 86b04 (21:6b04) + text "When you finish" + line "your #DEX, can" + cont "I have it?" + done + +_RockTunnel2BattleText5: ; 86b2f (21:6b2f) + text "Do you know about" + line "costume players?" + done + +_RockTunnel2EndBattleText5: ; 86b53 (21:6b53) + text "Well," + line "that's that." + prompt + +_RockTunnel2AfterBattleText5: ; 86b66 (21:6b66) + text "Costume players" + line "dress up as" + cont "#MON for fun." + done + +_RockTunnel2BattleText6: ; 86b91 (21:6b91) + text "My #MON" + line "techniques will" + cont "leave you crying!" + done + +_RockTunnel2EndBattleText6: ; 86bbc (21:6bbc) + text "I give!" + line "You're a better" + cont "technician!" + prompt + +_RockTunnel2AfterBattleText6: ; 86be0 (21:6be0) + text "In mountains," + line "you'll often find" + cont "rock-type #MON." + done + +_RockTunnel2BattleText7: ; 86c10 (21:6c10) + text "I don't often" + line "come here, but I" + cont "will fight you." + done + +_RockTunnel2EndBattleText7: ; 86c3f (21:6c3f) + text "Oh!" + line "I lost!" + prompt + +_RockTunnel2AfterBattleText7: ; 86c4c (21:6c4c) + text "I like tiny" + line "#MON, big ones" + cont "are too scary!" + done + +_RockTunnel2BattleText8: ; 86c77 (21:6c77) + text "Hit me with your" + line "best shot!" + done + +_RockTunnel2EndBattleText8: ; 86c94 (21:6c94) + text "Fired" + line "away!" + prompt + diff --git a/text/maps/rock_tunnel_b2f_2.asm b/text/maps/rock_tunnel_b2f_2.asm new file mode 100644 index 00000000..6ce94a79 --- /dev/null +++ b/text/maps/rock_tunnel_b2f_2.asm @@ -0,0 +1,21 @@ +_RockTunnel2AfterBattleText8: ; 88000 (22:4000) + text "I'll raise my" + line "#MON to beat" + cont "yours, kid!" + done + +_RockTunnel2BattleText9: ; 88027 (22:4027) + text "I draw #MON" + line "when I'm home." + done + +_RockTunnel2EndBattleText9: ; 88042 (22:4042) + text "Whew!" + line "I'm exhausted!" + prompt + +_RockTunnel2AfterBattleText9: ; 88057 (22:4057) + text "I'm an artist," + line "not a fighter." + done + diff --git a/text/maps/rocket_hideout_b1f.asm b/text/maps/rocket_hideout_b1f.asm new file mode 100644 index 00000000..093a1395 --- /dev/null +++ b/text/maps/rocket_hideout_b1f.asm @@ -0,0 +1,74 @@ +_RocketHideout1EndBattleText6: ; 81f2a (20:5f2a) + text "Why...?@@" + +_RocketHideout1BattleText2: ; 81f34 (20:5f34) + text "Who are you? How" + line "did you get here?" + done + +_RocketHideout1EndBattleText2: ; 81f58 (20:5f58) + text "Oww!" + line "Beaten!" + prompt + +_RocketHideout1AfterBattleTxt2: ; 81f66 (20:5f66) + text "Are you dissing" + line "TEAM ROCKET?" + done + +_RocketHideout1BattleText3: ; 81f84 (20:5f84) + text "You broke into" + line "our operation?" + done + +_RocketHideout1EndBattleText3: ; 81fa3 (20:5fa3) + text "Burnt!" + prompt + +_RocketHideout1AfterBattleTxt3: ; 81fab (20:5fab) + text "You're not going" + line "to get away with" + cont "this, brat!" + done + +_RocketHideout1BattleText4: ; 81fd9 (20:5fd9) + text "Intruder alert!" + done + +_RocketHideout1EndBattleText4: ; 81fea (20:5fea) + text "I" + line "can't do it!" + prompt + +_RocketHideout1AfterBattleTxt4: ; 81ff9 (20:5ff9) + text "SILPH SCOPE?" + line "I don't know" + cont "where it is!" + done + +_RocketHideout1BattleText5: ; 82020 (20:6020) + text "Why did you come" + line "here?" + done + +_RocketHideout1EndBattleText5: ; 82038 (20:6038) + text "This" + line "won't do!" + prompt + +_RocketHideout1AfterBattleTxt5: ; 82047 (20:6047) + text "OK, I'll talk!" + line "Take the elevator" + cont "to see my BOSS!" + done + +_RocketHideout1BattleText6: ; 82078 (20:6078) + text "Are you lost, you" + line "little rat?" + done + +_RocketHideout1AfterBattleTxt6: ; 82097 (20:6097) + text "Uh-oh, that fight" + line "opened the door!" + done + diff --git a/text/maps/rocket_hideout_b2f.asm b/text/maps/rocket_hideout_b2f.asm new file mode 100644 index 00000000..01833603 --- /dev/null +++ b/text/maps/rocket_hideout_b2f.asm @@ -0,0 +1,18 @@ +_RocketHideout2BattleText2: ; 820bb (20:60bb) + text "BOSS said you can" + line "see GHOSTs with" + cont "the SILPH SCOPE!" + done + +_RocketHideout2EndBattleText2: ; 820ef (20:60ef) + text "I" + line "surrender!" + prompt + +_RocketHideout2AfterBattleTxt2: ; 820fd (20:60fd) + text "The TEAM ROCKET" + line "HQ has 4 basement" + cont "floors. Can you" + cont "reach the BOSS?" + done + diff --git a/text/maps/rocket_hideout_b3f.asm b/text/maps/rocket_hideout_b3f.asm new file mode 100644 index 00000000..fbd78399 --- /dev/null +++ b/text/maps/rocket_hideout_b3f.asm @@ -0,0 +1,36 @@ +_RocketHideout3BattleText2: ; 82140 (20:6140) + text "Stop meddling in" + line "TEAM ROCKET's" + cont "affairs!" + done + +_RocketHideout3EndBattleText2: ; 82168 (20:6168) + text "Oof!" + line "Taken down!" + prompt + +_RocketHideout3AfterBattleTxt2: ; 8217a (20:617a) + text "SILPH SCOPE?" + line "The machine the" + cont "BOSS stole. It's" + cont "here somewhere." + done + +_RocketHideout3BattleTxt: ; 821b8 (20:61b8) + text "We got word from" + line "upstairs that you" + cont "were coming!" + done + +_RocketHideout3EndBattleText3: ; 821e9 (20:61e9) + text "What?" + line "I lost? No!" + prompt + +_RocketHide3AfterBattleText3: ; 821fc (20:61fc) + text "Go ahead and go!" + line "But, you need the" + cont "LIFT KEY to run" + cont "the elevator!" + done + diff --git a/text/maps/rocket_hideout_b4f.asm b/text/maps/rocket_hideout_b4f.asm new file mode 100644 index 00000000..d1ecf9cb --- /dev/null +++ b/text/maps/rocket_hideout_b4f.asm @@ -0,0 +1,75 @@ +_UnnamedText_4557a: ; 8223e (20:623e) + text "So! I must say, I" + line "am impressed you" + cont "got here!" + done + +_UnnamedText_4557f: ; 8226c (20:626c) + text "WHAT!" + line "This cannot be!" + prompt + +_UnnamedText_45584: ; 82283 (20:6283) + text "I see that you" + line "raise #MON" + cont "with utmost care." + + para "A child like you" + line "would never" + cont "understand what I" + cont "hope to achieve." + + para "I shall step" + line "aside this time!" + + para "I hope we meet" + line "again..." + done + +_RocketHideout4BattleText2: ; 82326 (20:6326) + text "I know you! You" + line "ruined our plans" + cont "at MT.MOON!" + done + +_RocketHideout4EndBattleText2: ; 82354 (20:6354) + text "Burned" + line "again!" + prompt + +_RocketHide4AfterBattleText2: ; 82363 (20:6363) + text "Do you have" + line "something against" + cont "TEAM ROCKET?" + done + +_RocketHideout4BattleText3: ; 8238f (20:638f) + text "How can you not" + line "see the beauty of" + cont "our evil?" + done + +_RocketHideout4EndBattleText3: ; 823bc (20:63bc) + text "Ayaya!" + prompt + +_RocketHide4AfterBattleText3: ; 823c4 (20:63c4) + text "BOSS! I'm sorry I" + line "failed you!" + done + +_RocketHideout4BattleText4: ; 823e2 (20:63e2) + text "The elevator" + line "doesn't work? Who" + cont "has the LIFT KEY?" + done + +_RocketHideout4EndBattleText4: ; 82413 (20:6413) + text "No!" + prompt + +_UnnamedText_455ec: ; 82418 (20:6418) + text "Oh no! I dropped" + line "the LIFT KEY!" + done + diff --git a/text/maps/rocket_hideout_elevator.asm b/text/maps/rocket_hideout_elevator.asm new file mode 100644 index 00000000..b9854d49 --- /dev/null +++ b/text/maps/rocket_hideout_elevator.asm @@ -0,0 +1,4 @@ +_UnnamedText_4578b: ; 82438 (20:6438) + text "It appears to" + line "need a key.@@" + diff --git a/text/maps/safari_zone_center.asm b/text/maps/safari_zone_center.asm new file mode 100644 index 00000000..20c00688 --- /dev/null +++ b/text/maps/safari_zone_center.asm @@ -0,0 +1,12 @@ +_SafariZoneCenterText2: ; 85807 (21:5807) + text "REST HOUSE" + done + +_SafariZoneCenterText3: ; 85813 (21:5813) + text "TRAINER TIPS" + + para "Press the START" + line "Button to check" + cont "remaining time!" + done + diff --git a/text/maps/safari_zone_east.asm b/text/maps/safari_zone_east.asm new file mode 100644 index 00000000..90cf9493 --- /dev/null +++ b/text/maps/safari_zone_east.asm @@ -0,0 +1,17 @@ +_SafariZoneEastText5: ; 855e0 (21:55e0) + text "REST HOUSE" + done + +_SafariZoneEastText6: ; 855ec (21:55ec) + text "TRAINER TIPS" + + para "The remaining time" + line "declines only" + cont "while you walk!" + done + +_SafariZoneEastText7: ; 8562b (21:562b) + text "CENTER AREA" + line "NORTH: AREA 2" + done + diff --git a/text/maps/safari_zone_north.asm b/text/maps/safari_zone_north.asm new file mode 100644 index 00000000..1c549f9b --- /dev/null +++ b/text/maps/safari_zone_north.asm @@ -0,0 +1,34 @@ +_SafariZoneNorthText3: ; 85646 (21:5646) + text "REST HOUSE" + done + +_SafariZoneNorthText4: ; 85652 (21:5652) + text "TRAINER TIPS" + + para "The SECRET HOUSE" + line "is still ahead!" + done + +_SafariZoneNorthText5: ; 85681 (21:5681) + text "AREA 2" + done + +_SafariZoneNorthText6: ; 85689 (21:5689) + text "TRAINER TIPS" + + para "#MON hide in" + line "tall grass!" + + para "Zigzag through" + line "grassy areas to" + cont "flush them out." + done + +_SafariZoneNorthText7: ; 856df (21:56df) + text "TRAINER TIPS" + + para "Win a free HM for" + line "finding the" + cont "SECRET HOUSE!" + done + diff --git a/text/maps/safari_zone_rest_house_1.asm b/text/maps/safari_zone_rest_house_1.asm new file mode 100644 index 00000000..330367a9 --- /dev/null +++ b/text/maps/safari_zone_rest_house_1.asm @@ -0,0 +1,12 @@ +_SafariZoneRestHouse1Text1: ; 85851 (21:5851) + text "SARA: Where did" + line "my boy friend," + cont "ERIK, go?" + done + +_SafariZoneRestHouse1Text2: ; 8587b (21:587b) + text "I'm catching" + line "#MON to take" + cont "home as gifts!" + done + diff --git a/text/maps/safari_zone_rest_house_2.asm b/text/maps/safari_zone_rest_house_2.asm new file mode 100644 index 00000000..45dbe7b9 --- /dev/null +++ b/text/maps/safari_zone_rest_house_2.asm @@ -0,0 +1,20 @@ +_SafariZoneRestHouse2Text1: ; 85a2f (21:5a2f) + text "Tossing ROCKs at" + line "#MON might" + cont "make them run," + cont "but they'll be" + cont "easier to catch." + done + +_SafariZoneRestHouse2Text2: ; 85a7a (21:5a7a) + text "Using BAIT will" + line "make #MON" + cont "easier to catch." + done + +_SafariZoneRestHouse2Text3: ; 85aa6 (21:5aa6) + text "I hiked a lot, but" + line "I didn't see any" + cont "#MON I wanted." + done + diff --git a/text/maps/safari_zone_rest_house_3.asm b/text/maps/safari_zone_rest_house_3.asm new file mode 100644 index 00000000..bd82ac94 --- /dev/null +++ b/text/maps/safari_zone_rest_house_3.asm @@ -0,0 +1,19 @@ +_SafariZoneRestHouse3Text1: ; 85ad9 (21:5ad9) + text "How many did you" + line "catch? I'm bushed" + cont "from the work!" + done + +_SafariZoneRestHouse3Text2: ; 85b0b (21:5b0b) + text "I caught a" + line "CHANSEY!" + + para "That makes this" + line "all worthwhile!" + done + +_SafariZoneRestHouse3Text3: ; 85b40 (21:5b40) + text "Whew! I'm tired" + line "from all the fun!" + done + diff --git a/text/maps/safari_zone_rest_house_4.asm b/text/maps/safari_zone_rest_house_4.asm new file mode 100644 index 00000000..bce41d63 --- /dev/null +++ b/text/maps/safari_zone_rest_house_4.asm @@ -0,0 +1,28 @@ +_SafariZoneRestHouse4Text1: ; 85b62 (21:5b62) + text "You can keep any" + line "item you find on" + cont "the ground here." + + para "But, you'll run" + line "out of time if" + cont "you try for all" + cont "of them at once!" + done + +_SafariZoneRestHouse4Text2: ; 85bd5 (21:5bd5) + text "Go to the deepest" + line "part of the" + cont "SAFARI ZONE. You" + cont "will win a prize!" + done + +_SafariZoneRestHouse4Text3: ; 85c17 (21:5c17) + text "My EEVEE evolved" + line "into FLAREON!" + + para "But, a friend's" + line "EEVEE turned into" + cont "a VAPOREON!" + cont "I wonder why?" + done + diff --git a/text/maps/safari_zone_secret_house.asm b/text/maps/safari_zone_secret_house.asm new file mode 100644 index 00000000..c2ef9219 --- /dev/null +++ b/text/maps/safari_zone_secret_house.asm @@ -0,0 +1,45 @@ +_UnnamedText_4a350: ; 858a4 (21:58a4) + text "Ah! Finally!" + + para "You're the first" + line "person to reach" + cont "the SECRET HOUSE!" + + para "I was getting" + line "worried that no" + cont "one would win our" + cont "campaign prize." + + para "Congratulations!" + line "You have won!" + prompt + +_ReceivedHM03Text: ; 85943 (21:5943) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_HM03ExplanationText: ; 85957 (21:5957) + text "HM03 is SURF!" + + para "#MON will be" + line "able to ferry you" + cont "across water!" + + para "And, this HM isn't" + line "disposable! You" + cont "can use it over" + cont "and over!" + + para "You're super lucky" + line "for winning this" + cont "fabulous prize!" + done + +_HM03NoRoomText: ; 85a02 (21:5a02) + text "You don't have" + line "room for this" + cont "fabulous prize!" + done + diff --git a/text/maps/safari_zone_west.asm b/text/maps/safari_zone_west.asm new file mode 100644 index 00000000..cefc70c7 --- /dev/null +++ b/text/maps/safari_zone_west.asm @@ -0,0 +1,32 @@ +_SafariZoneWestText5: ; 85719 (21:5719) + text "REST HOUSE" + done + +_SafariZoneWestText6: ; 85725 (21:5725) + text "REQUEST NOTICE" + + para "Please find the" + line "SAFARI WARDEN's" + cont "lost GOLD TEETH." + cont "They're around" + cont "here somewhere." + + para "Reward offered!" + line "Contact: WARDEN" + done + +_SafariZoneWestText7: ; 857a3 (21:57a3) + text "TRAINER TIPS" + + para "Zone Exploration" + line "Campaign!" + + para "The Search for" + line "the SECRET HOUSE!" + done + +_SafariZoneWestText8: ; 857ed (21:57ed) + text "AREA 3" + line "EAST: CENTER AREA" + done + diff --git a/text/maps/seafoam_islands_1f.asm b/text/maps/seafoam_islands_1f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/seafoam_islands_1f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/seafoam_islands_b1f.asm b/text/maps/seafoam_islands_b1f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/seafoam_islands_b1f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/seafoam_islands_b2f.asm b/text/maps/seafoam_islands_b2f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/seafoam_islands_b2f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/seafoam_islands_b3f.asm b/text/maps/seafoam_islands_b3f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/seafoam_islands_b3f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/seafoam_islands_b4f.asm b/text/maps/seafoam_islands_b4f.asm new file mode 100644 index 00000000..c1839658 --- /dev/null +++ b/text/maps/seafoam_islands_b4f.asm @@ -0,0 +1,14 @@ +_SeafoamIslands5BattleText2: ; 88075 (22:4075) + text "Gyaoo!@@" + +_SeafoamIslands5Text4: ; 8807e (22:407e) + text "Boulders might" + line "change the flow" + cont "of water!" + done + +_SeafoamIslands5Text5: ; 880a8 (22:40a8) + text "DANGER" + line "Fast current!" + done + diff --git a/text/maps/silph_co_10f.asm b/text/maps/silph_co_10f.asm new file mode 100644 index 00000000..e56fcdd9 --- /dev/null +++ b/text/maps/silph_co_10f.asm @@ -0,0 +1,43 @@ +_UnnamedText_5a1d3: ; 84d8d (21:4d8d) + text "Waaaaa!" + cont "I'm scared!" + done + +_UnnamedText_5a1d8: ; 84da1 (21:4da1) + text "Please keep quiet" + line "about my crying!" + done + +_SilphCo10BattleText1: ; 84dc5 (21:4dc5) + text "Welcome to the" + line "10F! So good of" + cont "you to join me!" + done + +_SilphCo10EndBattleText1: ; 84df5 (21:4df5) + text "I'm" + line "stunned!" + prompt + +_SilphCo10AfterBattleText1: ; 84e02 (21:4e02) + text "Nice try, but the" + line "boardroom is up" + cont "one more floor!" + done + +_SilphCo10BattleText2: ; 84e35 (21:4e35) + text "Enough of your" + line "silly games!" + done + +_SilphCo10EndBattleText2: ; 84e52 (21:4e52) + text "No" + line "continues left!" + prompt + +_SilphCo10AfterBattleText2: ; 84e66 (21:4e66) + text "Are you satisfied" + line "with beating me?" + cont "Then go on home!" + done + diff --git a/text/maps/silph_co_11f.asm b/text/maps/silph_co_11f.asm new file mode 100644 index 00000000..aa91a357 --- /dev/null +++ b/text/maps/silph_co_11f.asm @@ -0,0 +1,135 @@ +_SilphCoPresidentText: ; 84e9b (21:4e9b) + text "PRESIDENT: Thank" + line "you for saving" + cont "SILPH!" + + para "I will never" + line "forget you saved" + cont "us in our moment" + cont "of peril!" + + para "I have to thank" + line "you in some way!" + + para "Because I am rich," + line "I can give you" + cont "anything!" + + para "Here, maybe this" + line "will do!" + prompt + +_ReceivedSilphCoMasterBallText: ; 84f63 (21:4f63) + text $52, " got a" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_6231c: ; 84f74 (21:4f74) + text "PRESIDENT: You" + line "can't buy that" + cont "anywhere!" + + para "It's our secret" + line "prototype MASTER" + cont "BALL!" + + para "It will catch any" + line "#MON without" + cont "fail!" + + para "You should be" + line "quiet about using" + cont "it, though." + done + +_SilphCoMasterBallNoRoomText: ; 85013 (21:5013) + text "You have no" + line "room for this." + done + +_SilphCo11Text2: ; 8502f (21:502f) + text "SECRETARY: Thank" + line "you for rescuing" + cont "all of us!" + + para "We admire your" + line "courage." + done + +_SilphCo11Text3: ; 85075 (21:5075) + text "Ah ", $52, "!" + line "So we meet again!" + + para "The PRESIDENT and" + line "I are discussing" + cont "a vital business" + cont "proposition." + + para "Keep your nose" + line "out of grown-up" + cont "matters..." + + para "Or, experience a" + line "world of pain!" + done + +_UnnamedText_62330: ; 85119 (21:5119) + text "Arrgh!!" + line "I lost again!?" + prompt + +_UnnamedText_62335: ; 85131 (21:5131) + text "Blast it all!" + line "You ruined our" + cont "plans for SILPH!" + + para "But, TEAM ROCKET" + line "will never fall!" + + para $52, "! Never" + line "forget that all" + cont "#MON exist" + cont "for TEAM ROCKET!" + + para "I must go, but I" + line "shall return!" + done + +_SilphCo11BattleText1: ; 851d6 (21:51d6) + text "Stop right there!" + line "Don't you move!" + done + +_SilphCo11EndBattleText1: ; 851f8 (21:51f8) + text "Don't..." + line "Please!" + prompt + +_SilphCo11AfterBattleText1: ; 85209 (21:5209) + text "So, you want to" + line "see my BOSS?" + done + +_SilphCo11BattleText2: ; 85227 (21:5227) + text "Halt! Do you have" + line "an appointment" + cont "with my BOSS?" + done + +_SilphCo11EndBattleText2: ; 85257 (21:5257) + text "Gaah!" + line "Demolished!" + prompt + +_SilphCo11AfterBattleText2: ; 8526a (21:526a) + text "Watch your step," + line "my BOSS likes his" + cont "#MON tough!" + done + +_UnnamedText_6237b: ; 8529a (21:529a) + text "The monitor has" + line "#MON on it!" + done + diff --git a/text/maps/silph_co_1f.asm b/text/maps/silph_co_1f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/silph_co_1f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/silph_co_2f.asm b/text/maps/silph_co_2f.asm new file mode 100644 index 00000000..c442c3e6 --- /dev/null +++ b/text/maps/silph_co_2f.asm @@ -0,0 +1,97 @@ +_UnnamedText_59ded: ; 82454 (20:6454) + text "Eeek!" + line "No! Stop! Help!" + + para "Oh, you're not" + line "with TEAM ROCKET." + cont "I thought..." + cont "I'm sorry. Here," + cont "please take this!" + prompt + +_ReceivedTM36Text: ; 824ba (20:64ba) + text $52, " got" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM36ExplanationText: ; 824c9 (20:64c9) + text "TM36 is" + line "SELFDESTRUCT!" + + para "It's powerful, but" + line "the #MON that" + cont "uses it faints!" + cont "Be careful." + done + +_TM36NoRoomText: ; 8251c (20:651c) + text "You don't have any" + line "room for this." + done + +_SilphCo2BattleText1: ; 8253e (20:653e) + text "Help! I'm a SILPH" + line "employee." + done + +_SilphCo2EndBattleText1: ; 8255a (20:655a) + text "How" + line "did you know I" + cont "was a ROCKET?" + prompt + +_SilphCo2AfterBattleText1: ; 8257c (20:657c) + text "I work for both" + line "SILPH and TEAM" + cont "ROCKET!" + done + +_SilphCo2BattleText2: ; 825a4 (20:65a4) + text "It's off limits" + line "here! Go home!" + done + +_SilphCo2EndBattleText2: ; 825c3 (20:65c3) + text "You're" + line "good." + prompt + +_SilphCo2AfterBattleText2: ; 825d0 (20:65d0) + text "Can you solve the" + line "maze in here?" + done + +_SilphCo2BattleText3: ; 825f1 (20:65f1) + text "No kids are" + line "allowed in here!" + done + +_SilphCo2EndBattleText3: ; 8260f (20:660f) + text "Tough!" + prompt + +_SilphCo2AfterBattleText3: ; 82617 (20:6617) + text "Diamond shaped" + line "tiles are" + cont "teleport blocks!" + + para "They're hi-tech" + line "transporters!" + done + +_SilphCo2BattleText4: ; 8265f (20:665f) + text "Hey kid! What are" + line "you doing here?" + done + +_SilphCo2EndBattleText4: ; 82682 (20:6682) + text "I goofed!" + prompt + +_SilphCo2AfterBattleText4: ; 8268d (20:668d) + text "SILPH CO. will" + line "be merged with" + cont "TEAM ROCKET!" + done + diff --git a/text/maps/silph_co_3f.asm b/text/maps/silph_co_3f.asm new file mode 100644 index 00000000..057c6683 --- /dev/null +++ b/text/maps/silph_co_3f.asm @@ -0,0 +1,47 @@ +_UnnamedText_59ff9: ; 826b9 (20:66b9) + text "I work for SILPH." + line "What should I do?" + done + +_UnnamedText_59ffe: ; 826de (20:66de) + text $52, "! You and" + line "your #MON" + cont "saved us!" + done + +_SilphCo3BattleText1: ; 826fe (20:66fe) + text "Quit messing with" + line "us, kid!" + done + +_SilphCo3EndBattleText1: ; 8271a (20:671a) + text "I give" + line "up!" + prompt + +_SilphCo3AfterBattleText1: ; 82726 (20:6726) + text "A hint? You can" + line "open doors with a" + cont "CARD KEY!" + done + +_SilphCo3BattleText2: ; 82753 (20:6753) + text "I support TEAM" + line "ROCKET more than" + cont "I support SILPH!" + done + +_SilphCo3EndBattleText2: ; 82785 (20:6785) + text "You" + line "really got me!" + prompt + +_SilphCo3AfterBattleText2: ; 82799 (20:6799) + text "Humph..." + + para "TEAM ROCKET said" + line "that if I helped" + cont "them, they'd let" + cont "me study #MON!" + done + diff --git a/text/maps/silph_co_4f.asm b/text/maps/silph_co_4f.asm new file mode 100644 index 00000000..e43845a4 --- /dev/null +++ b/text/maps/silph_co_4f.asm @@ -0,0 +1,57 @@ +_UnnamedText_19de0: ; 827e4 (20:67e4) + text "Sssh! Can't you" + line "see I'm hiding?" + done + +_UnnamedText_19de5: ; 82803 (20:6803) + text "Huh? TEAM ROCKET" + line "is gone?" + done + +_SilphCo4BattleText2: ; 8281e (20:681e) + text "TEAM ROCKET has" + line "taken command of" + cont "SILPH CO.!" + done + +_SilphCo4EndBattleText2: ; 8284b (20:684b) + text "Arrgh!" + prompt + +_SilphCo4AfterBattleText2: ; 82853 (20:6853) + text "Fwahahaha!" + line "My BOSS has been" + cont "after this place!" + done + +_SilphCo4BattleText3: ; 82882 (20:6882) + text "My #MON are my" + line "loyal soldiers!" + done + +_SilphCo4EndBattleText3: ; 828a2 (20:68a2) + text "Darn!" + line "You weak #MON!" + prompt + +_SilphCo4AfterBattleText3: ; 828b8 (20:68b8) + text "The doors are" + line "electronically" + cont "locked! A CARD" + cont "KEY opens them!" + done + +_SilphCo4BattleText4: ; 828f5 (20:68f5) + text "Intruder spotted!" + done + +_SilphCo4EndBattleText4: ; 82908 (20:6908) + text "Who" + line "are you?" + prompt + +_SilphCo4AfterBattleText4: ; 82916 (20:6916) + text "I better tell the" + line "BOSS on 11F!" + done + diff --git a/text/maps/silph_co_5f_1.asm b/text/maps/silph_co_5f_1.asm new file mode 100644 index 00000000..88741b2b --- /dev/null +++ b/text/maps/silph_co_5f_1.asm @@ -0,0 +1,52 @@ +_UnnamedText_1a010: ; 82936 (20:6936) + text "TEAM ROCKET is" + line "in an uproar over" + cont "some intruder." + cont "That's you right?" + done + +_UnnamedText_1a015: ; 82978 (20:6978) + text "TEAM ROCKET took" + line "off! You're our" + cont "hero! Thank you!" + done + +_SilphCo5BattleText2: ; 829aa (20:69aa) + text "I heard a kid was" + line "wandering around." + done + +_SilphCo5EndBattleText2: ; 829cf (20:69cf) + text "Boom!" + prompt + +_SilphCo5AfterBattleText2: ; 829d6 (20:69d6) + text "It's not smart" + line "to pick a fight" + cont "with TEAM ROCKET!" + done + +_SilphCo5BattleText3: ; 82a07 (20:6a07) + text "We study #" + line "BALL technology" + cont "on this floor!" + done + +_SilphCo5EndBattleText3: ; 82a32 (20:6a32) + text "Dang!" + line "Blast it!" + prompt + +_SilphCo5AfterBattleText3: ; 82a43 (20:6a43) + text "We worked on the" + line "ultimate #" + cont "BALL which would" + cont "catch anything!" + done + +_SilphCo5BattleText4: ; 82a81 (20:6a81) + text "Whaaat? There" + line "shouldn't be any" + cont "children here?" + done + diff --git a/text/maps/silph_co_5f_2.asm b/text/maps/silph_co_5f_2.asm new file mode 100644 index 00000000..999b7358 --- /dev/null +++ b/text/maps/silph_co_5f_2.asm @@ -0,0 +1,56 @@ +_SilphCo5EndBattleText4: ; 84000 (21:4000) + text "Oh" + line "goodness!" + prompt + +_SilphCo5AfterBattleText4: ; 8400e (21:400e) + text "You're only on 5F." + line "It's a long way" + cont "to my BOSS!" + done + +_SilphCo5BattleText5: ; 8403c (21:403c) + text "Show TEAM ROCKET" + line "a little respect!" + done + +_SilphCo5EndBattleText5: ; 84060 (21:4060) + text "Cough..." + line "Cough..." + prompt + +_SilphCo5AfterBattleText5: ; 84073 (21:4073) + text "Which reminds me." + + para "KOFFING evolves" + line "into WEEZING!" + done + +_SilphCo5Text9: ; 840a4 (21:40a4) + text "It's a #MON" + line "REPORT!" + + para "#MON LAB" + line "created PORYGON," + cont "the first virtual" + cont "reality #MON." + done + +_SilphCo5Text10: ; 840f2 (21:40f2) + text "It's a #MON" + line "REPORT!" + + para "Over 160 #MON" + line "techniques have" + cont "been confirmed." + done + +_SilphCo5Text11: ; 84134 (21:4134) + text "It's a #MON" + line "REPORT!" + + para "4 #MON evolve" + line "only when traded" + cont "by link-cable." + done + diff --git a/text/maps/silph_co_6f.asm b/text/maps/silph_co_6f.asm new file mode 100644 index 00000000..c60695ee --- /dev/null +++ b/text/maps/silph_co_6f.asm @@ -0,0 +1,108 @@ +_UnnamedText_1a24a: ; 84176 (21:4176) + text "The ROCKETs came" + line "and took over the" + cont "building!" + done + +_UnnamedText_1a24f: ; 841a4 (21:41a4) + text "Well, better get" + line "back to work!" + done + +_UnnamedText_1a261: ; 841c4 (21:41c4) + text "Oh dear, oh dear." + line "Help me please!" + done + +_UnnamedText_1a266: ; 841e7 (21:41e7) + text "We got engaged!" + line "Heheh!" + done + +_UnnamedText_1a278: ; 841ff (21:41ff) + text "Look at him! He's" + line "such a coward!" + done + +_UnnamedText_1a27d: ; 84220 (21:4220) + text "I feel so sorry" + line "for him, I have" + cont "to marry him!" + done + +_UnnamedText_1a28f: ; 8424f (21:424f) + text "TEAM ROCKET is" + line "trying to conquer" + cont "the world with" + cont "#MON!" + done + +_UnnamedText_1a294: ; 84286 (21:4286) + text "TEAM ROCKET ran" + line "because of you!" + done + +_UnnamedText_1a2a6: ; 842a7 (21:42a7) + text "They must have" + line "targeted SILPH" + cont "for our #MON" + cont "products." + done + +_UnnamedText_1a2ab: ; 842dd (21:42dd) + text "Come work for" + line "SILPH when you" + cont "get older!" + done + +_SilphCo6BattleText2: ; 84306 (21:4306) + text "I am one of the 4" + line "ROCKET BROTHERS!" + done + +_SilphCo6EndBattleText2: ; 8432a (21:432a) + text "Flame" + line "out!" + prompt + +_SilphCo6AfterBattleText2: ; 84336 (21:4336) + text "No matter!" + line "My brothers will" + cont "avenge me!" + done + +_SilphCo6BattleText3: ; 8435e (21:435e) + text "That rotten" + line "PRESIDENT!" + + para "He shouldn't have" + line "sent me to the" + cont "TIKSI BRANCH!" + done + +_SilphCo6EndBattleText3: ; 843a4 (21:43a4) + text "Shoot!" + prompt + +_SilphCo6AfterBattleText3: ; 843ac (21:43ac) + text "TIKSI BRANCH?" + line "It's in Russian" + cont "no man's land!" + done + +_SilphCo6BattleText4: ; 843d8 (21:43d8) + text "You dare betray" + line "TEAM ROCKET?" + done + +_SilphCo6EndBattleText4: ; 843f6 (21:43f6) + text "You" + line "traitor!" + prompt + +_SilphCo6AfterBattleText4: ; 84404 (21:4404) + text "If you stand for" + line "justice, you" + cont "betray evil!" + done + diff --git a/text/maps/silph_co_7f.asm b/text/maps/silph_co_7f.asm new file mode 100644 index 00000000..f196332f --- /dev/null +++ b/text/maps/silph_co_7f.asm @@ -0,0 +1,146 @@ +_UnnamedText_51dd3: ; 84430 (21:4430) + text "Oh! Hi! You're" + line "not a ROCKET! You" + cont "came to save us?" + cont "Why, thank you!" + + para "I want you to" + line "have this #MON" + cont "for saving us." + prompt + +_UnnamedText_51dd8: ; 8449e (21:449e) + text "It's LAPRAS. It's" + line "very intelligent." + + para "We kept it in our" + line "lab, but it will" + cont "be much better" + cont "off with you!" + + para "I think you will" + line "be a good trainer" + cont "for LAPRAS!" + + para "It's a good" + line "swimmer. It'll" + cont "give you a lift!" + done + +_UnnamedText_51ddd: ; 8455a (21:455a) + text "TEAM ROCKET's" + line "BOSS went to the" + cont "boardroom! Is our" + cont "PRESIDENT OK?" + done + +_UnnamedText_51de2: ; 84599 (21:4599) + text "Saved at last!" + line "Thank you!" + done + +_UnnamedText_51e00: ; 845b4 (21:45b4) + text "TEAM ROCKET was" + line "after the MASTER" + cont "BALL which will" + cont "catch any #MON!" + done + +_UnnamedText_51e05: ; 845f6 (21:45f6) + text "We canceled the" + line "MASTER BALL" + cont "project because" + cont "of TEAM ROCKET." + done + +_UnnamedText_51e23: ; 84633 (21:4633) + text "It would be bad" + line "if TEAM ROCKET" + cont "took over SILPH" + cont "or our #MON!" + done + +_UnnamedText_51e28: ; 84670 (21:4670) + text "Wow! You chased" + line "off TEAM ROCKET" + cont "all by yourself?" + done + +_UnnamedText_51e46: ; 846a2 (21:46a2) + text "You! It's really" + line "dangerous here!" + cont "You came to save" + cont "me? You can't!" + done + +_UnnamedText_51e4b: ; 846e2 (21:46e2) + text "Safe at last!" + line "Oh thank you!" + done + +_SilphCo7BattleText1: ; 846ff (21:46ff) + text "Oh ho! I smell a" + line "little rat!" + done + +_SilphCo7EndBattleText1: ; 8471d (21:471d) + text "Lights" + line "out!" + prompt + +_SilphCo7AfterBattleText1: ; 8472a (21:472a) + text "You won't find my" + line "BOSS by just" + cont "scurrying around!" + done + +_SilphCo7BattleText2: ; 8475b (21:475b) + text "Heheh!" + + para "You mistook me for" + line "a SILPH worker?" + done + +_SilphCo7EndBattleText2: ; 84786 (21:4786) + text "I'm" + line "done!" + prompt + +_SilphCo7AfterBattleText2: ; 84790 (21:4790) + text "Despite your age," + line "you are a skilled" + cont "trainer!" + done + +_SilphCo7BattleText3: ; 847be (21:47be) + text "I am one of the 4" + line "ROCKET BROTHERS!" + done + +_SilphCo7EndBattleText3: ; 847e2 (21:47e2) + text "Aack!" + line "Brothers, I lost!" + prompt + +_SilphCo7AfterBattleText3: ; 847fb (21:47fb) + text "Doesn't matter." + line "My brothers will" + cont "repay the favor!" + done + +_SilphCo7BattleText4: ; 8482d (21:482d) + text "A child intruder?" + line "That must be you!" + done + +_SilphCo7EndBattleText4: ; 84852 (21:4852) + text "Fine!" + line "I lost!" + prompt + +_SilphCo7AfterBattleText4: ; 84861 (21:4861) + text "Go on home" + line "before my BOSS" + cont "gets ticked off!" + done + diff --git a/text/maps/silph_co_8f.asm b/text/maps/silph_co_8f.asm new file mode 100644 index 00000000..561ab787 --- /dev/null +++ b/text/maps/silph_co_8f.asm @@ -0,0 +1,121 @@ +_UnnamedText_51ebe: ; 8488d (21:488d) + text $53, ": What" + line "kept you ", $52, "?" + done + +_UnnamedText_51ec3: ; 848a2 (21:48a2) + text $53, ": Hahaha!" + line "I thought you'd" + cont "turn up if I" + cont "waited here!" + + para "I guess TEAM" + line "ROCKET slowed you" + cont "down! Not that I" + cont "care!" + + para "I saw you in" + line "SAFFRON, so I" + cont "decided to see if" + cont "you got better!" + done + +_UnnamedText_51ec8: ; 8494a (21:494a) + text "Oh ho!" + line "So, you are ready" + cont "for BOSS ROCKET!" + prompt + +_UnnamedText_51ecd: ; 84975 (21:4975) + text $53, ": How can" + line "I put this?" + + para "You're not good" + line "enough to play" + cont "with us big boys!" + prompt + +_UnnamedText_51ed2: ; 849bd (21:49bd) + text "Well, ", $52, "!" + + para "I'm moving on up" + line "and ahead!" + + para "By checking my" + line "#DEX, I'm" + cont "starting to see" + cont "what's strong and" + cont "how they evolve!" + + para "I'm going to the" + line "#MON LEAGUE" + cont "to boot out the" + cont "ELITE FOUR!" + + para "I'll become the" + line "world's most" + cont "powerful trainer!" + + para $52, ", well" + line "good luck to you!" + cont "Don't sweat it!" + cont "Smell ya!" + done + +_UnnamedText_565be: ; 84ac4 (21:4ac4) + text "I wonder if SILPH" + line "is finished..." + done + +_UnnamedText_565c3: ; 84ae6 (21:4ae6) + text "Thanks for saving" + line "us!" + done + +_SilphCo8BattleText1: ; 84afd (21:4afd) + text "That's as far as" + line "you'll go!" + done + +_SilphCo8EndBattleText1: ; 84b18 (21:4b18) + text "Not" + line "enough grit!" + prompt + +_SilphCo8AfterBattleText1: ; 84b2a (21:4b2a) + text "If you don't turn" + line "back, I'll call" + cont "for backup!" + done + +_SilphCo8BattleText2: ; 84b57 (21:4b57) + text "You're causing us" + line "problems!" + done + +_SilphCo8EndBattleText2: ; 84b73 (21:4b73) + text "Huh?" + line "I lost?" + prompt + +_SilphCo8AfterBattleText2: ; 84b81 (21:4b81) + text "So, what do you" + line "think of SILPH" + cont "BUILDING's maze?" + done + +_SilphCo8BattleText3: ; 84bb1 (21:4bb1) + text "I am one of the 4" + line "ROCKET BROTHERS!" + done + +_SilphCo8EndBattleText3: ; 84bd5 (21:4bd5) + text "Whoo!" + line "Oh brothers!" + prompt + +_SilphCo8AfterBattleText3: ; 84be9 (21:4be9) + text "I'll leave you up" + line "to my brothers!" + done + diff --git a/text/maps/silph_co_9f.asm b/text/maps/silph_co_9f.asm new file mode 100644 index 00000000..1005f993 --- /dev/null +++ b/text/maps/silph_co_9f.asm @@ -0,0 +1,63 @@ +_UnnamedText_5d8e5: ; 84c0b (21:4c0b) + text "You look tired!" + line "You should take a" + cont "quick nap!" + prompt + +_UnnamedText_5d8ea: ; 84c39 (21:4c39) + text "Don't give up!" + done + +_UnnamedText_5d8ef: ; 84c48 (21:4c48) + text "Thank you so" + line "much!" + done + +_SilphCo9BattleText1: ; 84c5c (21:4c5c) + text "Your #MON seem" + line "to adore you, kid!" + done + +_SilphCo9EndBattleText1: ; 84c7f (21:4c7f) + text "Ghaaah!" + prompt + +_SilphCo9AfterBattleText1: ; 84c88 (21:4c88) + text "If I had started" + line "as a trainer at" + cont "your age..." + done + +_SilphCo9BattleText2: ; 84cb6 (21:4cb6) + text "Your #MON have" + line "weak points! I" + cont "can nail them!" + done + +_SilphCo9EndBattleText2: ; 84ce4 (21:4ce4) + text "You" + line "hammered me!" + prompt + +_SilphCo9AfterBattleText2: ; 84cf6 (21:4cf6) + text "Exploiting weak" + line "spots does work!" + cont "Think about" + cont "element types!" + done + +_SilphCo9BattleText3: ; 84d33 (21:4d33) + text "I am one of the 4" + line "ROCKET BROTHERS!" + done + +_SilphCo9EndBattleText3: ; 84d57 (21:4d57) + text "Warg!" + line "Brothers, I lost!" + prompt + +_SilphCo9AfterBattleText3: ; 84d70 (21:4d70) + text "My brothers will" + line "avenge me!" + done + diff --git a/text/maps/ss_anne_1.asm b/text/maps/ss_anne_1.asm new file mode 100644 index 00000000..67dd671a --- /dev/null +++ b/text/maps/ss_anne_1.asm @@ -0,0 +1,22 @@ +_SSAnne1Text1: ; 80c70 (20:4c70) + text "Bonjour!" + line "I am le waiter on" + cont "this ship!" + + para "I will be happy" + line "to serve you any-" + cont "thing you please!" + + para "Ah! Le strong" + line "silent type!" + done + +_SSAnne1Text2: ; 80ce6 (20:4ce6) + text "The passengers" + line "are restless!" + + para "You might be" + line "challenged by the" + cont "more bored ones!" + done + diff --git a/text/maps/ss_anne_10.asm b/text/maps/ss_anne_10.asm new file mode 100644 index 00000000..3b918db6 --- /dev/null +++ b/text/maps/ss_anne_10.asm @@ -0,0 +1,113 @@ +_SSAnne10Text8: ; 81aaa (20:5aaa) + text "MACHOKE: Gwoh!" + line "Goggoh!@@" + +_SSAnne10BattleText1: ; 81ac3 (20:5ac3) + text "You know what they" + line "say about sailors" + cont "and fighting!" + done + +_SSAnne10EndBattleText1: ; 81af7 (20:5af7) + text "Right!" + line "Good fight, mate!" + prompt + +_SSAnne10AfterBattleText1: ; 81b11 (20:5b11) + text "Haha! Want to be" + line "a sailor, mate?" + done + +_SSAnne10BattleText2: ; 81b33 (20:5b33) + text "My sailor's pride" + line "is at stake!" + done + +_SSAnne10EndBattleText2: ; 81b52 (20:5b52) + text "Your" + line "spirit sank me!" + prompt + +_SSAnne10AfterBattleText2: ; 81b68 (20:5b68) + text "Did you see the" + line "FISHING GURU in" + cont "VERMILION CITY?" + done + +_SSAnne10BattleText3: ; 81b99 (20:5b99) + text "Us sailors have" + line "#MON too!" + done + +_SSAnne10EndBattleText3: ; 81bb4 (20:5bb4) + text "OK, " + line "you're not bad." + prompt + +_SSAnne10AfterBattleText3: ; 81bc9 (20:5bc9) + text "We caught all our" + line "#MON while" + cont "out at sea!" + done + +_SSAnne10BattleText4: ; 81bf3 (20:5bf3) + text "I like feisty" + line "kids like you!@@" + +_SSAnne10EndBattleText4: ; 81c12 (20:5c12) + text "Argh!" + line "Lost it!" + prompt + +_SSAnne10AfterBattleText4: ; 81c22 (20:5c22) + text "Sea #MON live" + line "in deep water." + cont "You'll need a ROD!" + done + +_SSAnne10BattleText5: ; 81c52 (20:5c52) + text "Matey, you're" + line "walking the plank" + cont "if you lose!" + done + +_SSAnne10EndBattleText5: ; 81c7f (20:5c7f) + text "Argh!" + line "Beaten by a kid!" + prompt + +_SSAnne10AfterBattleText5: ; 81c97 (20:5c97) + text "Jellyfish some-" + line "times drift into" + cont "the ship." + done + +_SSAnne10BattleText6: ; 81cc3 (20:5cc3) + text "Hello stranger!" + line "Stop and chat!" + + para "All my #MON" + line "are from the sea!" + done + +_SSAnne10EndBattleText6: ; 81d01 (20:5d01) + text "Darn!" + line "I let that one" + cont "get away!" + prompt + +_SSAnne10AfterBattleText6: ; 81d21 (20:5d21) + text "I was going to" + line "make you my" + cont "assistant too!" + done + +_SSAnne10Text7: ; 81d4c (20:5d4c) + text "My buddy, MACHOKE," + line "is super strong!" + + para "He has enough" + line "STRENGTH to move" + cont "big rocks!" + done + diff --git a/text/maps/ss_anne_2.asm b/text/maps/ss_anne_2.asm new file mode 100644 index 00000000..7efb6c9c --- /dev/null +++ b/text/maps/ss_anne_2.asm @@ -0,0 +1,64 @@ +_SSAnne2Text1: ; 80d34 (20:4d34) + text "This ship, she is" + line "a luxury liner" + cont "for trainers!" + + para "At every port, we" + line "hold parties with" + cont "invited trainers!" + done + +_SSAnneRivalBeforeBattleText: ; 80d9a (20:4d9a) + text $53, ": Bonjour!" + line $52, "!" + + para "Imagine seeing" + line "you here!" + + para $52, ", were you" + line "really invited?" + + para "So how's your" + line "#DEX coming?" + + para "I already caught" + line "40 kinds, pal!" + + para "Different kinds" + line "are everywhere!" + + para "Crawl around in" + line "grassy areas!" + done + +_SSAnneRivalDefeatedText: ; 80e57 (20:4e57) + text "Humph!" + + para "At least you're" + line "raising your" + cont "#MON!" + prompt + +_SSAnneRivalWonText: ; 80e81 (20:4e81) + text $52, "! What are" + line "you, seasick?" + + para "You should shape" + line "up, pal!" + prompt + +_SSAnneRivalCaptainText: ; 80eb6 (20:4eb6) + text $53, ": I heard" + line "there was a CUT" + cont "master on board." + + para "But, he was just a" + line "seasick, old man!" + + para "But, CUT itself is" + line "really useful!" + + para "You should go see" + line "him! Smell ya!" + done + diff --git a/text/maps/ss_anne_3.asm b/text/maps/ss_anne_3.asm new file mode 100644 index 00000000..9771a677 --- /dev/null +++ b/text/maps/ss_anne_3.asm @@ -0,0 +1,8 @@ +_SSAnne3Text1: ; 80f4b (20:4f4b) + text "Our CAPTAIN is a" + line "sword master!" + + para "He even teaches" + line "CUT to #MON!" + done + diff --git a/text/maps/ss_anne_4.asm b/text/maps/ss_anne_4.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/ss_anne_4.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/ss_anne_5.asm b/text/maps/ss_anne_5.asm new file mode 100644 index 00000000..f413704b --- /dev/null +++ b/text/maps/ss_anne_5.asm @@ -0,0 +1,53 @@ +_SSAnne5Text1: ; 80f88 (20:4f88) + text "The party's over." + line "The ship will be" + cont "departing soon." + done + +_SSAnne5Text2: ; 80fbb (20:4fbb) + text "Scrubbing decks" + line "is hard work!" + done + +_SSAnne5Text3: ; 80fda (20:4fda) + text "Urf. I feel ill." + + para "I stepped out to" + line "get some air." + done + +_SSAnneBattleText1: ; 8100b (20:500b) + text "Hey matey!" + + para "Let's do a little" + line "jig!" + done + +_SSAnneEndBattleText1: ; 8102d (20:502d) + text "You're" + line "impressive!" + prompt + +_SSAnneAfterBattleText1: ; 81040 (20:5040) + text "How many kinds of" + line "#MON do you" + cont "think there are?" + done + +_SSAnneBattleText2: ; 81070 (20:5070) + text "Ahoy there!" + line "Are you seasick?" + done + +_SSAnneEndBattleText2: ; 8108e (20:508e) + text "I was" + line "just careless!" + prompt + +_SSAnneAfterBattleText2: ; 810a4 (20:50a4) + text "My Pa said there" + line "are 100 kinds of" + cont "#MON. I think" + cont "there are more." + done + diff --git a/text/maps/ss_anne_6.asm b/text/maps/ss_anne_6.asm new file mode 100644 index 00000000..555e03e6 --- /dev/null +++ b/text/maps/ss_anne_6.asm @@ -0,0 +1,70 @@ +_SSAnne6Text1: ; 810e5 (20:50e5) + text "You, mon petit!" + line "We're busy here!" + cont "Out of the way!" + done + +_SSAnne6Text2: ; 81116 (20:5116) + text "I saw an odd ball" + line "in the trash." + done + +_SSAnne6Text3: ; 81137 (20:5137) + text "I'm so busy I'm" + line "getting dizzy!" + done + +_SSAnne6Text4: ; 81155 (20:5155) + text "Hum-de-hum-de-" + line "ho..." + + para "I peel spuds" + line "every day!" + cont "Hum-hum..." + done + +_SSAnne6Text5: ; 8118e (20:518e) + text "Did you hear about" + line "SNORLAX?" + + para "All it does is" + line "eat and sleep!" + done + +_SSAnne6Text6: ; 811c9 (20:51c9) + text "Snivel...Sniff..." + + para "I only get to" + line "peel onions..." + cont "Snivel..." + done + +_UnnamedText_61807: ; 81203 (20:5203) + text "Er-hem! Indeed I" + line "am le CHEF!" + + para "Le main course is" + prompt + +_UnnamedText_6180c: ; 81233 (20:5233) + text "Salmon du Salad!" + + para "Les guests may" + line "gripe it's fish" + cont "again, however!" + done + +_UnnamedText_61811: ; 81273 (20:5273) + text "Eels au Barbecue!" + + para "Les guests will" + line "mutiny, I fear." + done + +_UnnamedText_61816: ; 812a6 (20:52a6) + text "Prime Beef Steak!" + + para "But, have I enough" + line "fillets du beef?" + done + diff --git a/text/maps/ss_anne_7.asm b/text/maps/ss_anne_7.asm new file mode 100644 index 00000000..b0bc50a2 --- /dev/null +++ b/text/maps/ss_anne_7.asm @@ -0,0 +1,63 @@ +_SSAnne7RubText: ; 812dd (20:52dd) + text "CAPTAIN: Ooargh..." + line "I feel hideous..." + cont "Urrp! Seasick..." + + para $52, " rubbed" + line "the CAPTAIN's" + cont "back!" + + para "Rub-rub..." + line "Rub-rub...@@" + +_ReceivingHM01Text: ; 81347 (20:5347) + text "CAPTAIN: Whew!" + line "Thank you! I" + cont "feel much better!" + + para "You want to see" + line "my CUT technique?" + + para "I could show you" + line "if I wasn't ill..." + + para "I know! You can" + line "have this!" + + para "Teach it to your" + line "#MON and you" + cont "can see it CUT" + cont "any time!" + prompt + +_ReceivedHM01Text: ; 8140d (20:540d) + text $52, " got" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_61932: ; 8141c (20:541c) + text "CAPTAIN: Whew!" + + para "Now that I'm not" + line "sick any more, I" + cont "guess it's time." + done + +_HM01NoRoomText: ; 8145d (20:545d) + text "Oh no! You have" + line "no room for this!" + done + +_SSAnne7Text2: ; 81480 (20:5480) + text "Yuck! Shouldn't" + line "have looked!" + done + +_SSAnne7Text3: ; 8149d (20:549d) + text "How to Conquer" + line "Seasickness..." + cont "The CAPTAIN's" + cont "reading this!" + done + diff --git a/text/maps/ss_anne_8.asm b/text/maps/ss_anne_8.asm new file mode 100644 index 00000000..72de780c --- /dev/null +++ b/text/maps/ss_anne_8.asm @@ -0,0 +1,105 @@ +_SSAnne8Text8: ; 814d7 (20:54d7) + text "WIGGLYTUFF: Puup" + line "pupuu!@@" + +_SSAnne8BattleText1: ; 814f1 (20:54f1) + text "I travel alone" + line "on my journeys!" + + para "My #MON are my" + line "only friends!" + done + +_SSAnne8EndBattleText1: ; 8152e (20:552e) + text "My, my" + line "friends..." + prompt + +_SSAnne8AfterBattleText1: ; 81541 (20:5541) + text "You should be" + line "nice to friends!" + done + +_SSAnne8BattleText2: ; 81561 (20:5561) + text "You pup! How dare" + line "you barge in!" + done + +_SSAnne8EndBattleText2: ; 81582 (20:5582) + text "Humph!" + line "You rude child!" + prompt + +_UnnamedText_61a24: ; 8159a (20:559a) + text "I wish to be left" + line "alone! Get out!" + done + +_SSAnne8BattleText3: ; 815bd (20:55bd) + text "I love #MON!" + line "Do you?" + done + +_SSAnne8EndBattleText3: ; 815d3 (20:55d3) + text "Wow! " + line "You're great!" + prompt + +_SSAnne8AfterBattleText3: ; 815e7 (20:55e7) + text "Let me be your" + line "friend, OK?" + + para "Then we can trade" + line "#MON!" + done + +_SSAnne8BattleText4: ; 8161b (20:561b) + text "I collected these" + line "#MON from all" + cont "around the world!" + done + +_SSAnne8EndBattleText4: ; 8164e (20:564e) + text "Oh no!" + line "I went around the" + cont "world for these!" + prompt + +_SSAnne8AfterBattleText4: ; 81679 (20:5679) + text "You hurt my poor" + line "worldly #MON!" + + para "I demand that you" + line "heal them at a" + cont "#MON CENTER!" + done + +_SSAnne8Text5: ; 816c7 (20:56c7) + text "Waiter, I would" + line "like a cherry pie" + cont "please!" + done + +_SSAnne8Text6: ; 816f2 (20:56f2) + text "A cruise is so" + line "elegant yet cozy!" + done + +_SSAnne8Text7: ; 81714 (20:5714) + text "I always travel" + line "with WIGGLYTUFF!" + done + +_SSAnne8Text9: ; 81736 (20:5736) + text "We are cruising" + line "around the world." + done + +_SSAnne8Text11: ; 81759 (20:5759) + text "Ssh! I'm a GLOBAL" + line "POLICE agent!" + + para "I'm on the trail" + line "of TEAM ROCKET!" + done + diff --git a/text/maps/ss_anne_9.asm b/text/maps/ss_anne_9.asm new file mode 100644 index 00000000..5ba1c47b --- /dev/null +++ b/text/maps/ss_anne_9.asm @@ -0,0 +1,114 @@ +_UnnamedText_61bf2: ; 81799 (20:5799) + text "In all my travels" + line "I've never seen" + cont "any #MON sleep" + cont "like this one!" + + para "It was something" + line "like this!" + prompt + +_UnnamedText_61c01: ; 817f5 (20:57f5) + text "Ah yes, I have" + line "seen some #MON" + cont "ferry people" + cont "across the water!" + done + +_UnnamedText_61c10: ; 81833 (20:5833) + text "#MON can CUT" + line "down small bushes." + done + +_UnnamedText_61c1f: ; 81854 (20:5854) + text "Have you gone to" + line "the SAFARI ZONE" + cont "in FUCHSIA CITY?" + + para "It had many rare" + line "kinds of #MON!!" + done + +_UnnamedText_61c2e: ; 818a8 (20:58a8) + text "Me and my Daddy" + line "think the SAFARI" + cont "ZONE is awesome!" + done + +_UnnamedText_61c3d: ; 818db (20:58db) + text "The CAPTAIN looked" + line "really sick and" + cont "pale!" + done + +_UnnamedText_61c4c: ; 81905 (20:5905) + text "I hear many people" + line "get seasick!" + done + +_SSAnne9BattleText1: ; 81926 (20:5926) + text "Competing against" + line "the young keeps" + cont "me youthful." + done + +_SSAnne9EndBattleText1: ; 81956 (20:5956) + text "Good" + line "fight! Ah, I feel" + cont "young again!" + prompt + +_SSAnne9AfterBattleText1: ; 8197b (20:597b) + text "15 years ago, I" + line "would have won!" + done + +_SSAnne9BattleText2: ; 8199c (20:599c) + text "Check out what I" + line "fished up!" + done + +_SSAnne9EndBattleText2: ; 819b9 (20:59b9) + text "I'm" + line "all out!" + prompt + +_SSAnne9AfterBattleText2: ; 819c6 (20:59c6) + text "Party?" + + para "The cruise ship's" + line "party should be" + cont "over by now." + done + +_SSAnne9BattleText3: ; 819fc (20:59fc) + text "Which do you like," + line "a strong or a" + cont "rare #MON?" + done + +_SSAnne9EndBattleText3: ; 81a29 (20:5a29) + text "I must" + line "salute you!" + prompt + +_SSAnne9AfterBattleText3: ; 81a3d (20:5a3d) + text "I prefer strong" + line "and rare #MON." + done + +_SSAnne9BattleText4: ; 81a5d (20:5a5d) + text "I never saw you" + line "at the party." + done + +_SSAnne9EndBattleText4: ; 81a7c (20:5a7c) + text "Take" + line "it easy!" + prompt + +_SSAnne9AfterBattleText4: ; 81a8b (20:5a8b) + text "Oh, I adore your" + line "strong #MON!" + done + diff --git a/text/maps/unknown_dungeon_1f.asm b/text/maps/unknown_dungeon_1f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/unknown_dungeon_1f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/unknown_dungeon_2f.asm b/text/maps/unknown_dungeon_2f.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/unknown_dungeon_2f.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/unknown_dungeon_b1f.asm b/text/maps/unknown_dungeon_b1f.asm new file mode 100644 index 00000000..f00e4f1c --- /dev/null +++ b/text/maps/unknown_dungeon_b1f.asm @@ -0,0 +1,3 @@ +_UnknownDungeon3MewtwoText: ; 85c72 (21:5c72) + text "Mew!@@" + diff --git a/text/maps/victory_road_1f.asm b/text/maps/victory_road_1f.asm new file mode 100644 index 00000000..e23f26f8 --- /dev/null +++ b/text/maps/victory_road_1f.asm @@ -0,0 +1,32 @@ +_VictoryRoad1BattleText1: ; 85c79 (21:5c79) + text "I wonder if you" + line "are good enough" + cont "for me!" + done + +_VictoryRoad1EndBattleText1: ; 85ca2 (21:5ca2) + text "I" + line "lost out!" + prompt + +_VictoryRoad1AfterBattleText1: ; 85caf (21:5caf) + text "I never wanted to" + line "lose to anybody!" + done + +_VictoryRoad1BattleText2: ; 85cd3 (21:5cd3) + text "I can see you're" + line "good! Let me see" + cont "exactly how good!" + done + +_VictoryRoad1EndBattleText2: ; 85d07 (21:5d07) + text "I" + line "had a chance..." + prompt + +_VictoryRoad1AfterBattleText2: ; 85d1a (21:5d1a) + text "I concede, you're" + line "better than me!" + done + diff --git a/text/maps/victory_road_3f.asm b/text/maps/victory_road_3f.asm new file mode 100644 index 00000000..35604c17 --- /dev/null +++ b/text/maps/victory_road_3f.asm @@ -0,0 +1,64 @@ +_VictoryRoad3BattleText2: ; 81d9b (20:5d9b) + text "I heard rumors of" + line "a child prodigy!" + done + +_VictoryRoad3EndBattleText2: ; 81dbf (20:5dbf) + text "The" + line "rumors were true!" + prompt + +_VictoryRoad3AfterBattleText2: ; 81dd6 (20:5dd6) + text "You beat GIOVANNI" + line "of TEAM ROCKET?" + done + +_VictoryRoad3BattleText3: ; 81df9 (20:5df9) + text "I'll show you just" + line "how good you are!" + done + +_VictoryRoad3EndBattleText3: ; 81e1e (20:5e1e) + text "I'm" + line "furious!" + prompt + +_VictoryRoad3AfterBattleText3: ; 81e2b (20:5e2b) + text "You showed me just" + line "how good I was!" + done + +_VictoryRoad3BattleText4: ; 81e4f (20:5e4f) + text "Only the chosen" + line "can pass here!" + done + +_VictoryRoad3EndBattleText4: ; 81e6f (20:5e6f) + text "I" + line "don't believe it!" + prompt + +_VictoryRoad3AfterBattleText4: ; 81e83 (20:5e83) + text "All trainers here" + line "are headed to the" + cont "#MON LEAGUE!" + cont "Be careful!" + done + +_VictoryRoad3BattleText5: ; 81ec1 (20:5ec1) + text "Trainers live to" + line "seek stronger" + cont "opponents!" + done + +_VictoryRoad3EndBattleText5: ; 81eec (20:5eec) + text "Oh!" + line "So strong!" + prompt + +_VictoryRoad3AfterBattleText5: ; 81efc (20:5efc) + text "By fighting tough" + line "battles, you get" + cont "stronger!" + done + diff --git a/text/maps/viridian_forest.asm b/text/maps/viridian_forest.asm new file mode 100644 index 00000000..69cb59da --- /dev/null +++ b/text/maps/viridian_forest.asm @@ -0,0 +1,124 @@ +_ViridianForestText1: ; 8031d (20:431d) + text "I came here with" + line "some friends!" + + para "They're out for" + line "#MON fights!" + done + +_ViridianForestBattleText1: ; 80359 (20:4359) + text "Hey! You have" + line "#MON! Come on!" + cont "Let's battle'em!" + done + +_ViridianForestEndBattleText1: ; 80387 (20:4387) + text "No!" + line "CATERPIE can't" + cont "cut it!" + prompt + +_ViridianFrstAfterBattleText1: ; 803a2 (20:43a2) + text "Ssh! You'll scare" + line "the bugs away!" + done + +_ViridianForestBattleText2: ; 803c3 (20:43c3) + text "Yo! You can't jam" + line "out if you're a" + cont "#MON trainer!" + done + +_ViridianForestEndBattleText2: ; 803f2 (20:43f2) + text "Huh?" + line "I ran out of" + cont "#MON!" + prompt + +_ViridianFrstAfterBattleText2: ; 8040b (20:440b) + text "Darn! I'm going" + line "to catch some" + cont "stronger ones!" + done + +_ViridianForestBattleText3: ; 80438 (20:4438) + text "Hey, wait up!" + line "What's the hurry?" + done + +_ViridianForestEndBattleText3: ; 80458 (20:4458) + text "I" + line "give! You're good" + cont "at this!" + prompt + +_ViridianFrstAfterBattleText3: ; 80475 (20:4475) + text "Sometimes, you" + line "can find stuff on" + cont "the ground!" + + para "I'm looking for" + line "the stuff I" + cont "dropped!" + done + +_ViridianForestText8: ; 804c7 (20:44c7) + text "I ran out of #" + line "BALLs to catch" + cont "#MON with!" + + para "You should carry" + line "extras!" + done + +_ViridianForestText9: ; 8050a (20:450a) + text "TRAINER TIPS" + + para "If you want to" + line "avoid battles," + cont "stay away from" + cont "grassy areas!" + done + +_ViridianForestText10: ; 80553 (20:4553) + text "For poison, use" + line "ANTIDOTE! Get it" + cont "at #MON MARTs!" + done + +_ViridianForestText11: ; 80584 (20:4584) + text "TRAINER TIPS" + + para "Contact PROF.OAK" + line "via PC to get" + cont "your #DEX" + cont "evaluated!" + done + +_ViridianForestText12: ; 805c6 (20:45c6) + text "TRAINER TIPS" + + para "No stealing of" + line "#MON from" + cont "other trainers!" + cont "Catch only wild" + cont "#MON!" + done + +_ViridianForestText13: ; 80613 (20:4613) + text "TRAINER TIPS" + + para "Weaken #MON" + line "before attempting" + cont "capture!" + + para "When healthy," + line "they may escape!" + done + +_ViridianForestText14: ; 80667 (20:4667) + text "LEAVING" + line "VIRIDIAN FOREST" + cont "PEWTER CITY AHEAD" + done + From 9da43a2311ff61ef89a187be4f8b897abf660bed Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 18:58:13 -0500 Subject: [PATCH 25/41] Move city and town map text into text/maps --- main.asm | 1196 +-------------------------------- text/maps/celadon_city.asm | 153 +++++ text/maps/cerulean_city.asm | 233 +++++++ text/maps/cinnabar_island.asm | 38 ++ text/maps/fuchsia_city.asm | 120 ++++ text/maps/lavender_town.asm | 65 ++ text/maps/pewter_city.asm | 118 ++++ text/maps/saffron_city.asm | 152 +++++ text/maps/vermilion_city.asm | 127 ++++ text/maps/viridian_city.asm | 181 +++++ 10 files changed, 1196 insertions(+), 1187 deletions(-) create mode 100644 text/maps/celadon_city.asm create mode 100644 text/maps/cerulean_city.asm create mode 100644 text/maps/cinnabar_island.asm create mode 100644 text/maps/fuchsia_city.asm create mode 100644 text/maps/lavender_town.asm create mode 100644 text/maps/pewter_city.asm create mode 100644 text/maps/saffron_city.asm create mode 100644 text/maps/vermilion_city.asm create mode 100644 text/maps/viridian_city.asm diff --git a/main.asm b/main.asm index 7f824053..77706a9d 100644 --- a/main.asm +++ b/main.asm @@ -126331,1193 +126331,15 @@ _UnnamedText_4fe44: ; a41d6 (29:41d6) done INCLUDE "text/maps/pallet_town.asm" - -_ViridianCityText1: ; a43cc (29:43cc) - text "Those # BALLs" - line "at your waist!" - cont "You have #MON!" - - para "It's great that" - line "you can carry and" - cont "use #MON any" - cont "time, anywhere!" - done - -_UnnamedText_19122: ; a4437 (29:4437) - text "This #MON GYM" - line "is always closed." - - para "I wonder who the" - line "LEADER is?" - done - -_UnnamedText_19127: ; a4474 (29:4474) - text "VIRIDIAN GYM's" - line "LEADER returned!" - done - -_UnnamedText_1914d: ; a4494 (29:4494) - text "You want to know" - line "about the 2 kinds" - cont "of caterpillar" - cont "#MON?" - done - -_UnnamedText_19152: ; a44cd (29:44cd) - text "Oh, OK then!" - done - -_UnnamedText_19157: ; a44db (29:44db) - text "CATERPIE has no" - line "poison, but" - cont "WEEDLE does." - - para "Watch out for its" - line "POISON STING!" - done - -_UnnamedText_19175: ; a4525 (29:4525) - text "Oh Grandpa! Don't" - line "be so mean!" - cont "He hasn't had his" - cont "coffee yet." - done - -_UnnamedText_1917a: ; a4560 (29:4560) - text "When I go shop in" - line "PEWTER CITY, I" - cont "have to take the" - cont "winding trail in" - cont "VIRIDIAN FOREST." - done - -_UnnamedText_19191: ; a45b5 (29:45b5) - text "You can't go" - line "through here!" - - para "This is private" - line "property!" - done - -_UnnamedText_191ca: ; a45ea (29:45ea) - text "Yawn!" - line "I must have dozed" - cont "off in the sun." - - para "I had this dream" - line "about a DROWZEE" - cont "eating my dream." - cont "What's this?" - cont "Where did this TM" - cont "come from?" - - para "This is spooky!" - line "Here, you can" - cont "have this TM." - prompt - -_ReceivedTM42Text: ; a469a (29:469a) - text $52, " received" - line "TM42!@@" - -_TM42Explanation: ; a46ad (29:46ad) - text "TM42 contains" - line "DREAM EATER..." - cont "...Snore..." - done - -_TM42NoRoomText: ; a46d7 (29:46d7) - text "You have too much" - line "stuff already." - done - -_UnnamedText_1920a: ; a46f9 (29:46f9) - text "Ahh, I've had my" - line "coffee now and I" - cont "feel great!" - - para "Sure you can go" - line "through!" - - para "Are you in a" - line "hurry?" - done - -_UnnamedText_1920f: ; a4754 (29:4754) - text "I see you're using" - line "a #DEX." - - para "When you catch a" - line "#MON, #DEX" - cont "is automatically" - cont "updated." - - para "What? Don't you" - line "know how to catch" - cont "#MON?" - - para "I'll show you" - line "how to then." - done - -_UnnamedText_19214: ; a47e6 (29:47e6) - text "Time is money..." - line "Go along then." - done - -_UnnamedText_19219: ; a4807 (29:4807) - text "First, you need" - line "to weaken the" - cont "target #MON." - done - -_ViridianCityText8: ; a4833 (29:4833) - text "VIRIDIAN CITY " - line "The Eternally" - cont "Green Paradise" - done - -_ViridianCityText9: ; a4860 (29:4860) - text "TRAINER TIPS" - - para "Catch #MON" - line "and expand your" - cont "collection!" - - para "The more you have," - line "the easier it is" - cont "to fight!" - done - -_ViridianCityText10: ; a48c3 (29:48c3) - text "TRAINER TIPS" - - para "The battle moves" - line "of #MON are" - cont "limited by their" - cont "POWER POINTs, PP." - - para "To replenish PP," - line "rest your tired" - cont "#MON at a" - cont "#MON CENTER!" - done - -_ViridianCityText13: ; a4949 (29:4949) - text "VIRIDIAN CITY" - line "#MON GYM" - done - -_ViridianCityText14: ; a4961 (29:4961) - text "The GYM's doors" - line "are locked..." - done - -_PewterCityText1: ; a497f (29:497f) - text "It's rumored that" - line "CLEFAIRYs came" - cont "from the moon!" - - para "They appeared " - line "after MOON STONE" - cont "fell on MT.MOON." - done - -_PewterCityText2: ; a49e0 (29:49e0) - text "There aren't many" - line "serious #MON" - cont "trainers here!" - - para "They're all like" - line "BUG CATCHERs," - cont "but PEWTER GYM's" - cont "BROCK is totally" - cont "into it!" - done - -_UnnamedText_193f1: ; a4a56 (29:4a56) - text "Did you check out" - line "the MUSEUM?" - done - -_UnnamedText_193f6: ; a4a75 (29:4a75) - text "Weren't those" - line "fossils from MT." - cont "MOON amazing?" - done - -_UnnamedText_193fb: ; a4aa2 (29:4aa2) - text "Really?" - line "You absolutely" - cont "have to go!" - done - -_PewterCityText13: ; a4ac6 (29:4ac6) - text "It's right here!" - line "You have to pay" - cont "to get in, but" - cont "it's worth it!" - cont "See you around!" - done - -_UnnamedText_19427: ; a4b14 (29:4b14) - text "Psssst!" - line "Do you know what" - cont "I'm doing?" - done - -_UnnamedText_1942c: ; a4b38 (29:4b38) - text "That's right!" - line "It's hard work!" - done - -_UnnamedText_19431: ; a4b55 (29:4b55) - text "I'm spraying REPEL" - line "to keep #MON" - cont "out of my garden!" - done - -_UnnamedText_1945d: ; a4b87 (29:4b87) - text "You're a trainer" - line "right? BROCK's" - cont "looking for new" - cont "challengers!" - cont "Follow me!" - done - -_UnnamedText_19462: ; a4bce (29:4bce) - text "If you have the" - line "right stuff, go" - cont "take on BROCK!" - done - -_PewterCityText6: ; a4bfe (29:4bfe) - text "TRAINER TIPS" - - para "Any #MON that" - line "takes part in" - cont "battle, however" - cont "short, earns EXP!" - done - -_PewterCityText7: ; a4c4a (29:4c4a) - text "NOTICE!" - - para "Thieves have been" - line "stealing #MON" - cont "fossils at MT." - cont "MOON! Please call" - cont "PEWTER POLICE" - cont "with any info!" - done - -_PewterCityText10: ; a4cb1 (29:4cb1) - text "PEWTER MUSEUM" - line "OF SCIENCE" - done - -_PewterCityText11: ; a4ccb (29:4ccb) - text "PEWTER CITY" - line "#MON GYM" - cont "LEADER: BROCK" - - para "The Rock Solid" - line "#MON Trainer!" - done - -_PewterCityText12: ; a4d0c (29:4d0c) - text "PEWTER CITY" - line "A Stone Gray" - cont "City" - done - -_UnnamedText_19668: ; a4d2b (29:4d2b) - text $53, ": Yo!" - line $52, "!" - - para "You're still" - line "struggling along" - cont "back here?" - - para "I'm doing great!" - line "I caught a bunch" - cont "of strong and" - cont "smart #MON!" - - para "Here, let me see" - line "what you caught," - cont $52, "!" - done - -_UnnamedText_1966d: ; a4dbe (29:4dbe) - text "Hey!" - line "Take it easy!" - cont "You won already!" - prompt - -_UnnamedText_19672: ; a4de3 (29:4de3) - text "Heh!" - line "You're no match" - cont "for my genius!" - prompt - -_UnnamedText_19677: ; a4e07 (29:4e07) - text $53, ": Hey," - line "guess what?" - - para "I went to BILL's" - line "and got him to" - cont "show me his rare" - cont "#MON!" - - para "That added a lot" - line "of pages to my" - cont "#DEX!" - - para "After all, BILL's" - line "world famous as a" - cont "#MANIAC!" - - para "He invented the" - line "#MON Storage" - cont "System on PC!" - - para "Since you're using" - line "his system, go" - cont "thank him!" - - para "Well, I better" - line "get rolling!" - cont "Smell ya later!" - done - -_UnnamedText_196d9: ; a4f27 (29:4f27) - text "Hey! Stay out!" - line "It's not your" - cont "yard! Huh? Me?" - - para "I'm an innocent" - line "bystander! Don't" - cont "you believe me?" - done - -_ReceivedTM28Text: ; a4f82 (29:4f82) - text $52, " recovered" - line "TM28!@@" - -_ReceivedTM28Text2: ; a4f96 (29:4f96) - db $0 - para "I better get" - line "moving! Bye!@@" - -_TM28NoRoomText: ; a4fb3 (29:4fb3) - text "Make room for" - line "this!" - - para "I can't run until" - line "I give it to you!" - done - -_UnnamedText_196ee: ; a4feb (29:4feb) - text "Stop!" - line "I give up! I'll" - cont "leave quietly!" - prompt - -_UnnamedText_196f3: ; a5010 (29:5010) - text "OK! I'll return" - line "the TM I stole!" - prompt - -_CeruleanCityText3: ; a5030 (29:5030) - text "You're a trainer" - line "too? Collecting," - cont "fighting, it's a" - cont "tough life." - done - -_CeruleanCityText4: ; a506e (29:506e) - text "That bush in" - line "front of the shop" - cont "is in the way." - - para "There might be a" - line "way around." - done - -_CeruleanCityText5: ; a50ba (29:50ba) - text "You're making an" - line "encyclopedia on" - cont "#MON? That" - cont "sounds amusing." - done - -_CeruleanCityText6: ; a50f6 (29:50f6) - text "The people here" - line "were robbed." - - para "It's obvious that" - line "TEAM ROCKET is" - cont "behind this most" - cont "heinous crime!" - - para "Even our POLICE" - line "force has trouble" - cont "with the ROCKETs!" - done - -_UnnamedText_19730: ; a5188 (29:5188) - text "OK! SLOWBRO!" - line "Use SONICBOOM!" - cont "Come on, SLOWBRO" - cont "pay attention!" - done - -_UnnamedText_19735: ; a51c5 (29:51c5) - text "SLOWBRO punch!" - line "No! You blew it" - cont "again!" - done - -_UnnamedText_1973a: ; a51ec (29:51ec) - text "SLOWBRO, WITHDRAW!" - line "No! That's wrong!" - - para "It's so hard to" - line "control #MON!" - - para "Your #MON's" - line "obedience depends" - cont "on your abilities" - cont "as a trainer!" - done - -_UnnamedText_1976f: ; a526b (29:526b) - text "SLOWBRO took a" - line "snooze..." - done - -_UnnamedText_19774: ; a5285 (29:5285) - text "SLOWBRO is" - line "loafing around..." - done - -_UnnamedText_19779: ; a52a3 (29:52a3) - text "SLOWBRO turned" - line "away..." - done - -_UnnamedText_1977e: ; a52bb (29:52bb) - text "SLOWBRO" - line "ignored orders..." - done - -_CeruleanCityText9: ; a52d6 (29:52d6) - text "I want a bright" - line "red BICYCLE!" - - para "I'll keep it at" - line "home, so it won't" - cont "get dirty!" - done - -_CeruleanCityText10: ; a531f (29:531f) - text "This is CERULEAN" - line "CAVE! Horribly" - cont "strong #MON" - cont "live in there!" - - para "The #MON LEAGUE" - line "champion is the" - cont "only person who" - cont "is allowed in!" - done - -_CeruleanCityText12: ; a539a (29:539a) - text "CERULEAN CITY" - line "A Mysterious," - cont "Blue Aura" - cont "Surrounds It" - done - -_CeruleanCityText13: ; a53ce (29:53ce) - text "TRAINER TIPS" - - para "Pressing B Button" - line "during evolution" - cont "cancels the whole" - cont "process." - done - -_CeruleanCityText16: ; a541a (29:541a) - text "Grass and caves" - line "handled easily!" - cont "BIKE SHOP" - done - -_CeruleanCityText17: ; a5445 (29:5445) - text "CERULEAN CITY" - line "#MON GYM" - cont "LEADER: MISTY" - - para "The Tomboyish" - line "Mermaid!" - done - -_UnnamedText_4413c: ; a5482 (29:5482) - text "Do you believe in" - line "GHOSTs?" - done - -_UnnamedText_44141: ; a549d (29:549d) - text "Really? So there" - line "are believers..." - done - -_UnnamedText_44146: ; a54c0 (29:54c0) - text "Hahaha, I guess" - line "not." - - para "That white hand" - line "on your shoulder," - cont "it's not real." - done - -_LavenderTownText2: ; a5506 (29:5506) - text "This town is known" - line "as the grave site" - cont "of #MON." - - para "Memorial services" - line "are held in" - cont "#MON TOWER." - done - -_LavenderTownText3: ; a555f (29:555f) - text "GHOSTs appeared" - line "in #MON TOWER." - - para "I think they're" - line "the spirits of" - cont "#MON that the" - cont "ROCKETs killed." - done - -_LavenderTownText4: ; a55bb (29:55bb) - text "LAVENDER TOWN" - line "The Noble Purple" - cont "Town" - done - -_LavenderTownText5: ; a55e0 (29:55e0) - text "New SILPH SCOPE!" - - para "Make the Invisible" - line "Plain to See!" - - para "SILPH CO." - done - -_LavenderTownText8: ; a561d (29:561d) - text "LAVENDER VOLUNTEER" - line "#MON HOUSE" - done - -_LavenderTownText9: ; a563c (29:563c) - text "May the Souls of" - line "#MON Rest Easy" - cont "#MON TOWER" - done - -_VermilionCityText1: ; a5668 (29:5668) - text "We're careful" - line "about pollution!" - - para "We've heard GRIMER" - line "multiplies in" - cont "toxic sludge!" - done - -_UnnamedText_198a7: ; a56b5 (29:56b5) - text "Did you see S.S." - line "ANNE moored in" - cont "the harbor?" - done - -_UnnamedText_198ac: ; a56e2 (29:56e2) - text "So, S.S.ANNE has" - line "departed!" - - para "She'll be back in" - line "about a year." - done - -_SSAnneWelcomeText4: ; a571d (29:571d) - text "Welcome to S.S." - line "ANNE!" - done - -_SSAnneWelcomeText9: ; a5734 (29:5734) - text "Welcome to S.S." - line "ANNE!" - - para "Excuse me, do you" - line "have a ticket?" - prompt - -_SSAnneFlashedTicketText: ; a576c (29:576c) - text $52, " flashed" - line "the S.S.TICKET!" - - para "Great! Welcome to" - line "S.S.ANNE!" - done - -_SSAnneNoTicketText: ; a57a3 (29:57a3) - text $52, " doesn't" - line "have the needed" - cont "S.S.TICKET." - - para "Sorry!" - - para "You need a ticket" - line "to get aboard." - done - -_SSAnneNotHereText: ; a57f1 (29:57f1) - text "The ship set sail." - done - -_VermilionCityText4: ; a5805 (29:5805) - text "I'm putting up a" - line "building on this" - cont "plot of land." - - para "My #MON is" - line "tamping the land." - done - -_VermilionCityText5: ; a5852 (29:5852) - text "MACHOP: Guoh!" - line "Gogogoh!@@" - -_VermilionCityText14: ; a586b (29:586b) - db $0 - para "A MACHOP is" - line "stomping the land" - cont "flat." - done - -_VermilionCityText6: ; a5891 (29:5891) - text "S.S.ANNE is a" - line "famous luxury" - cont "cruise ship." - - para "We visit VERMILION" - line "once a year." - done - -_VermilionCityText7: ; a58db (29:58db) - text "VERMILION CITY" - line "The Port of" - cont "Exquisite Sunsets" - done - -_VermilionCityText8: ; a5909 (29:5909) - text "NOTICE!" - - para "ROUTE 12 may be" - line "blocked off by a" - cont "sleeping #MON." - - para "Detour through" - line "ROCK TUNNEL to" - cont "LAVENDER TOWN." - - para "VERMILION POLICE" - done - -_VermilionCityText11: ; a5980 (29:5980) - text "#MON FAN CLUB" - line "All #MON fans" - cont "welcome!" - done - -_VermilionCityText12: ; a59a6 (29:59a6) - text "VERMILION CITY" - line "#MON GYM" - cont "LEADER: LT.SURGE" - - para "The Lightning " - line "American!" - done - -_VermilionCityText13: ; a59e9 (29:59e9) - text "VERMILION HARBOR" - done - -_CeladonCityText1: ; a59fb (29:59fb) - text "I got my KOFFING" - line "in CINNABAR!" - - para "It's nice, but it" - line "breathes poison" - cont "when it's angry!" - done - -_CeladonCityText2: ; a5a4b (29:5a4b) - text "Heheh! This GYM" - line "is great! It's" - cont "full of women!" - done - -_CeladonCityText3: ; a5a79 (29:5a79) - text "The GAME CORNER" - line "is bad for our" - cont "city's image!" - done - -_CeladonCityText4: ; a5aa6 (29:5aa6) - text "Moan! I blew it" - line "all at the slots!" - - para "I knew I should" - line "have cashed in my" - cont "coins for prizes!" - done - -_TM41PreText: ; a5afd (29:5afd) - text "Hello, there!" - - para "I've seen you," - line "but I never had a" - cont "chance to talk!" - - para "Here's a gift for" - line "dropping by!" - prompt - -_ReceivedTM41Text: ; a5b5a (29:5b5a) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM41ExplanationText: ; a5b6e (29:5b6e) - text "TM41 teaches" - line "SOFTBOILED!" - - para "Only one #MON" - line "can use it!" - - para "That #MON is" - line "CHANSEY!" - done - -_TM41NoRoomText: ; a5bb8 (29:5bb8) - text "Oh, your pack is" - line "full of items!" - done - -_CeladonCityText6: ; a5bd9 (29:5bd9) - text "This is my trusted" - line "pal, POLIWRATH!" - - para "It evolved from" - line "POLIWHIRL when I" - cont "used WATER STONE!" - done - -_CeladonCityText7: ; a5c30 (29:5c30) - text "POLIWRATH: Ribi" - line "ribit!@@" - -_CeladonCityText8: ; a5c49 (29:5c49) - text "What are you" - line "staring at?" - done - -_CeladonCityText9: ; a5c63 (29:5c63) - text "Keep out of TEAM" - line "ROCKET's way!" - done - -_CeladonCityText10: ; a5c82 (29:5c82) - text "TRAINER TIPS" - - para "X ACCURACY boosts" - line "the accuracy of" - cont "techniques!" - - para "DIRE HIT jacks up" - line "the likelihood of" - cont "critical hits!" - - para "Get your items at" - line "CELADON DEPT." - cont "STORE!" - done - -_CeladonCityText11: ; a5d18 (29:5d18) - text "CELADON CITY" - line "The City of" - cont "Rainbow Dreams" - done - -_CeladonCityText13: ; a5d41 (29:5d41) - text "CELADON CITY" - line "#MON GYM" - cont "LEADER: ERIKA" - - para "The Nature Loving" - line "Princess!" - done - -_CeladonCityText14: ; a5d82 (29:5d82) - text "CELADON MANSION" - done - -_CeladonCityText15: ; a5d93 (29:5d93) - text "Find what you" - line "need at CELADON" - cont "DEPT. STORE!" - done - -_CeladonCityText16: ; a5dbf (29:5dbf) - text "TRAINER TIPS" - - para "GUARD SPEC." - line "protects #MON" - cont "against SPECIAL" - cont "attacks such as" - cont "fire and water!" - - para "Get your items at" - line "CELADON DEPT." - cont "STORE!" - done - -_CeladonCityText17: ; a5e3e (29:5e3e) - text "Coins exchanged" - line "for prizes!" - cont "PRIZE EXCHANGE" - done - -_CeladonCityText18: ; a5e6a (29:5e6a) - text "ROCKET GAME CORNER" - line "The playground" - cont "for grown-ups!" - done - -_FuchsiaCityText1: ; a5e9c (29:5e9c) - text "Did you try the" - line "SAFARI GAME? Some" - cont "#MON can only" - cont "be caught there." - done - -_FuchsiaCityText2: ; a5ede (29:5ede) - text "SAFARI ZONE has a" - line "zoo in front of" - cont "the entrance." - - para "Out back is the" - line "SAFARI GAME for" - cont "catching #MON." - done - -_FuchsiaCityText3: ; a5f3e (29:5f3e) - text "ERIK: Where's" - line "SARA? I said I'd" - cont "meet her here." - done - -_FuchsiaCityText4: ; a5f6b (29:5f6b) - text "That item ball in" - line "there is really a" - cont "#MON." - done - -_FuchsiaCityText5: ; a5f96 (29:5f96) - text "!" - done - -_FuchsiaCityText11: ; a5f99 (29:5f99) - text "FUCHSIA CITY" - line "Behold! It's" - cont "Passion Pink!" - done - -_FuchsiaCityText13: ; a5fc1 (29:5fc1) - text "SAFARI GAME" - line "#MON-U-CATCH!" - done - -_FuchsiaCityText16: ; a5fdc (29:5fdc) - text "SAFARI ZONE" - line "WARDEN's HOME" - done - -_FuchsiaCityText17: ; a5ff6 (29:5ff6) - text "#MON PARADISE" - line "SAFARI ZONE" - done - -_FuchsiaCityText18: ; a6011 (29:6011) - text "FUCHSIA CITY" - line "#MON GYM" - cont "LEADER: KOGA" - - para "The Poisonous" - line "Ninja Master" - done - -_FuchsiaCityChanseyText: ; a6050 (29:6050) - text "Name: CHANSEY" - - para "Catching one is" - line "all up to chance." - prompt - -_FuchsiaCityVoltorbText: ; a6081 (29:6081) - text "Name: VOLTORB" - - para "The very image of" - line "a # BALL." - prompt - -_FuchsiaCityKangaskhanText: ; a60ac (29:60ac) - text "Name: KANGASKHAN" - - para "A maternal #MON" - line "that raises its" - cont "young in a pouch" - cont "on its belly." - prompt - -_FuchsiaCitySlowpokeText: ; a60fd (29:60fd) - text "Name: SLOWPOKE" - - para "Friendly and very" - line "slow moving." - prompt - -_FuchsiaCityLaprasText: ; a612c (29:612c) - text "Name: LAPRAS" - - para "A.K.A. the king" - line "of the seas." - prompt - -_FuchsiaCityOmanyteText: ; a6157 (29:6157) - text "Name: OMANYTE" - - para "A #MON that" - line "was resurrected" - cont "from a fossil." - prompt - -_FuchsiaCityKabutoText: ; a6191 (29:6191) - text "Name: KABUTO" - - para "A #MON that" - line "was resurrected" - cont "from a fossil." - prompt - -_UnnamedText_19b2a: ; a61ca (29:61ca) - text "..." - done - -_CinnabarIslandText8: ; a61cf (29:61cf) - text "The door is" - line "locked..." - done - -_CinnabarIslandText1: ; a61e6 (29:61e6) - text "CINNABAR GYM's" - line "BLAINE is an odd" - cont "man who has lived" - cont "here for decades." - done - -_CinnabarIslandText2: ; a622a (29:622a) - text "Scientists conduct" - line "experiments in" - cont "the burned out" - cont "building." - done - -_CinnabarIslandText3: ; a6266 (29:6266) - text "CINNABAR ISLAND" - line "The Fiery Town of" - cont "Burning Desire" - done - -_CinnabarIslandText6: ; a6298 (29:6298) - text "#MON LAB" - done - -_CinnabarIslandText7: ; a62a2 (29:62a2) - text "CINNABAR ISLAND" - line "#MON GYM" - cont "LEADER: BLAINE" - - para "The Hot-Headed" - line "Quiz Master!" - done - -_SaffronCityText1: ; a62e7 (29:62e7) - text "What do you want?" - line "Get lost!" - done - -_SaffronCityText2: ; a6304 (29:6304) - text "BOSS said he'll" - line "take this town!" - done - -_SaffronCityText3: ; a6324 (29:6324) - text "Get out of the" - line "way!" - done - -_SaffronCityText4: ; a6339 (29:6339) - text "SAFFRON belongs" - line "to TEAM ROCKET!" - done - -_SaffronCityText5: ; a635a (29:635a) - text "Being evil makes" - line "me feel so alive!" - done - -_SaffronCityText6: ; a637e (29:637e) - text "Ow! Watch where" - line "you're walking!" - done - -_SaffronCityText7: ; a639e (29:639e) - text "With SILPH under" - line "control, we can" - cont "exploit #MON" - cont "around the world!" - done - -_SaffronCityText8: ; a63df (29:63df) - text "You beat TEAM" - line "ROCKET all alone?" - cont "That's amazing!" - done - -_SaffronCityText9: ; a640f (29:640f) - text "Yeah! TEAM ROCKET" - line "is gone!" - cont "It's safe to go" - cont "out again!" - done - -_SaffronCityText10: ; a6445 (29:6445) - text "People should be" - line "flocking back to" - cont "SAFFRON now." - done - -_SaffronCityText11: ; a6475 (29:6475) - text "I flew here on my" - line "PIDGEOT when I" - cont "read about SILPH." - - para "It's already over?" - line "I missed the" - cont "media action." - done - -_SaffronCityText12: ; a64d6 (29:64d6) - text "PIDGEOT: Bi bibii!@@" - -_SaffronCityText13: ; a64eb (29:64eb) - text "I saw ROCKET" - line "BOSS escaping" - cont "SILPH's building." - done - -_SaffronCityText14: ; a6518 (29:6518) - text "I'm a security" - line "guard." - - para "Suspicious kids I" - line "don't allow in!" - done - -_SaffronCityText15: ; a654f (29:654f) - text "..." - line "Snore..." - - para "Hah! He's taking" - line "a snooze!" - done - -_SaffronCityText16: ; a6577 (29:6577) - text "SAFFRON CITY" - line "Shining, Golden" - cont "Land of Commerce" - done - -_SaffronCityText17: ; a65a6 (29:65a6) - text "FIGHTING DOJO" - done - -_SaffronCityText18: ; a65b5 (29:65b5) - text "SAFFRON CITY" - line "#MON GYM" - cont "LEADER: SABRINA" - - para "The Master of" - line "Psychic #MON!" - done - -_SaffronCityText20: ; a65f8 (29:65f8) - text "TRAINER TIPS" - - para "FULL HEAL cures" - line "all ailments like" - cont "sleep and burns." - - para "It costs a bit" - line "more, but it's" - cont "more convenient." - done - -_SaffronCityText21: ; a6667 (29:6667) - text "TRAINER TIPS" - - para "New GREAT BALL" - line "offers improved" - cont "capture rates." - - para "Try it on those" - line "hard-to-catch" - cont "#MON." - done - -_SaffronCityText22: ; a66c7 (29:66c7) - text "SILPH CO." - line "OFFICE BUILDING" - done - -_SaffronCityText24: ; a66e2 (29:66e2) - text "MR.PSYCHIC's" - line "HOUSE" - done - -_SaffronCityText25: ; a66f5 (29:66f5) - text "SILPH's latest" - line "product!" - - para "Release to be" - line "determined..." - done +INCLUDE "text/maps/viridian_city.asm" +INCLUDE "text/maps/pewter_city.asm" +INCLUDE "text/maps/cerulean_city.asm" +INCLUDE "text/maps/lavender_town.asm" +INCLUDE "text/maps/vermilion_city.asm" +INCLUDE "text/maps/celadon_city.asm" +INCLUDE "text/maps/fuchsia_city.asm" +INCLUDE "text/maps/cinnabar_island.asm" +INCLUDE "text/maps/saffron_city.asm" _ItemUseBallText00: ; a6729 (29:6729) text "It dodged the" diff --git a/text/maps/celadon_city.asm b/text/maps/celadon_city.asm new file mode 100644 index 00000000..fd1bb98f --- /dev/null +++ b/text/maps/celadon_city.asm @@ -0,0 +1,153 @@ +_CeladonCityText1: ; a59fb (29:59fb) + text "I got my KOFFING" + line "in CINNABAR!" + + para "It's nice, but it" + line "breathes poison" + cont "when it's angry!" + done + +_CeladonCityText2: ; a5a4b (29:5a4b) + text "Heheh! This GYM" + line "is great! It's" + cont "full of women!" + done + +_CeladonCityText3: ; a5a79 (29:5a79) + text "The GAME CORNER" + line "is bad for our" + cont "city's image!" + done + +_CeladonCityText4: ; a5aa6 (29:5aa6) + text "Moan! I blew it" + line "all at the slots!" + + para "I knew I should" + line "have cashed in my" + cont "coins for prizes!" + done + +_TM41PreText: ; a5afd (29:5afd) + text "Hello, there!" + + para "I've seen you," + line "but I never had a" + cont "chance to talk!" + + para "Here's a gift for" + line "dropping by!" + prompt + +_ReceivedTM41Text: ; a5b5a (29:5b5a) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM41ExplanationText: ; a5b6e (29:5b6e) + text "TM41 teaches" + line "SOFTBOILED!" + + para "Only one #MON" + line "can use it!" + + para "That #MON is" + line "CHANSEY!" + done + +_TM41NoRoomText: ; a5bb8 (29:5bb8) + text "Oh, your pack is" + line "full of items!" + done + +_CeladonCityText6: ; a5bd9 (29:5bd9) + text "This is my trusted" + line "pal, POLIWRATH!" + + para "It evolved from" + line "POLIWHIRL when I" + cont "used WATER STONE!" + done + +_CeladonCityText7: ; a5c30 (29:5c30) + text "POLIWRATH: Ribi" + line "ribit!@@" + +_CeladonCityText8: ; a5c49 (29:5c49) + text "What are you" + line "staring at?" + done + +_CeladonCityText9: ; a5c63 (29:5c63) + text "Keep out of TEAM" + line "ROCKET's way!" + done + +_CeladonCityText10: ; a5c82 (29:5c82) + text "TRAINER TIPS" + + para "X ACCURACY boosts" + line "the accuracy of" + cont "techniques!" + + para "DIRE HIT jacks up" + line "the likelihood of" + cont "critical hits!" + + para "Get your items at" + line "CELADON DEPT." + cont "STORE!" + done + +_CeladonCityText11: ; a5d18 (29:5d18) + text "CELADON CITY" + line "The City of" + cont "Rainbow Dreams" + done + +_CeladonCityText13: ; a5d41 (29:5d41) + text "CELADON CITY" + line "#MON GYM" + cont "LEADER: ERIKA" + + para "The Nature Loving" + line "Princess!" + done + +_CeladonCityText14: ; a5d82 (29:5d82) + text "CELADON MANSION" + done + +_CeladonCityText15: ; a5d93 (29:5d93) + text "Find what you" + line "need at CELADON" + cont "DEPT. STORE!" + done + +_CeladonCityText16: ; a5dbf (29:5dbf) + text "TRAINER TIPS" + + para "GUARD SPEC." + line "protects #MON" + cont "against SPECIAL" + cont "attacks such as" + cont "fire and water!" + + para "Get your items at" + line "CELADON DEPT." + cont "STORE!" + done + +_CeladonCityText17: ; a5e3e (29:5e3e) + text "Coins exchanged" + line "for prizes!" + cont "PRIZE EXCHANGE" + done + +_CeladonCityText18: ; a5e6a (29:5e6a) + text "ROCKET GAME CORNER" + line "The playground" + cont "for grown-ups!" + done + diff --git a/text/maps/cerulean_city.asm b/text/maps/cerulean_city.asm new file mode 100644 index 00000000..843e043e --- /dev/null +++ b/text/maps/cerulean_city.asm @@ -0,0 +1,233 @@ +_UnnamedText_19668: ; a4d2b (29:4d2b) + text $53, ": Yo!" + line $52, "!" + + para "You're still" + line "struggling along" + cont "back here?" + + para "I'm doing great!" + line "I caught a bunch" + cont "of strong and" + cont "smart #MON!" + + para "Here, let me see" + line "what you caught," + cont $52, "!" + done + +_UnnamedText_1966d: ; a4dbe (29:4dbe) + text "Hey!" + line "Take it easy!" + cont "You won already!" + prompt + +_UnnamedText_19672: ; a4de3 (29:4de3) + text "Heh!" + line "You're no match" + cont "for my genius!" + prompt + +_UnnamedText_19677: ; a4e07 (29:4e07) + text $53, ": Hey," + line "guess what?" + + para "I went to BILL's" + line "and got him to" + cont "show me his rare" + cont "#MON!" + + para "That added a lot" + line "of pages to my" + cont "#DEX!" + + para "After all, BILL's" + line "world famous as a" + cont "#MANIAC!" + + para "He invented the" + line "#MON Storage" + cont "System on PC!" + + para "Since you're using" + line "his system, go" + cont "thank him!" + + para "Well, I better" + line "get rolling!" + cont "Smell ya later!" + done + +_UnnamedText_196d9: ; a4f27 (29:4f27) + text "Hey! Stay out!" + line "It's not your" + cont "yard! Huh? Me?" + + para "I'm an innocent" + line "bystander! Don't" + cont "you believe me?" + done + +_ReceivedTM28Text: ; a4f82 (29:4f82) + text $52, " recovered" + line "TM28!@@" + +_ReceivedTM28Text2: ; a4f96 (29:4f96) + db $0 + para "I better get" + line "moving! Bye!@@" + +_TM28NoRoomText: ; a4fb3 (29:4fb3) + text "Make room for" + line "this!" + + para "I can't run until" + line "I give it to you!" + done + +_UnnamedText_196ee: ; a4feb (29:4feb) + text "Stop!" + line "I give up! I'll" + cont "leave quietly!" + prompt + +_UnnamedText_196f3: ; a5010 (29:5010) + text "OK! I'll return" + line "the TM I stole!" + prompt + +_CeruleanCityText3: ; a5030 (29:5030) + text "You're a trainer" + line "too? Collecting," + cont "fighting, it's a" + cont "tough life." + done + +_CeruleanCityText4: ; a506e (29:506e) + text "That bush in" + line "front of the shop" + cont "is in the way." + + para "There might be a" + line "way around." + done + +_CeruleanCityText5: ; a50ba (29:50ba) + text "You're making an" + line "encyclopedia on" + cont "#MON? That" + cont "sounds amusing." + done + +_CeruleanCityText6: ; a50f6 (29:50f6) + text "The people here" + line "were robbed." + + para "It's obvious that" + line "TEAM ROCKET is" + cont "behind this most" + cont "heinous crime!" + + para "Even our POLICE" + line "force has trouble" + cont "with the ROCKETs!" + done + +_UnnamedText_19730: ; a5188 (29:5188) + text "OK! SLOWBRO!" + line "Use SONICBOOM!" + cont "Come on, SLOWBRO" + cont "pay attention!" + done + +_UnnamedText_19735: ; a51c5 (29:51c5) + text "SLOWBRO punch!" + line "No! You blew it" + cont "again!" + done + +_UnnamedText_1973a: ; a51ec (29:51ec) + text "SLOWBRO, WITHDRAW!" + line "No! That's wrong!" + + para "It's so hard to" + line "control #MON!" + + para "Your #MON's" + line "obedience depends" + cont "on your abilities" + cont "as a trainer!" + done + +_UnnamedText_1976f: ; a526b (29:526b) + text "SLOWBRO took a" + line "snooze..." + done + +_UnnamedText_19774: ; a5285 (29:5285) + text "SLOWBRO is" + line "loafing around..." + done + +_UnnamedText_19779: ; a52a3 (29:52a3) + text "SLOWBRO turned" + line "away..." + done + +_UnnamedText_1977e: ; a52bb (29:52bb) + text "SLOWBRO" + line "ignored orders..." + done + +_CeruleanCityText9: ; a52d6 (29:52d6) + text "I want a bright" + line "red BICYCLE!" + + para "I'll keep it at" + line "home, so it won't" + cont "get dirty!" + done + +_CeruleanCityText10: ; a531f (29:531f) + text "This is CERULEAN" + line "CAVE! Horribly" + cont "strong #MON" + cont "live in there!" + + para "The #MON LEAGUE" + line "champion is the" + cont "only person who" + cont "is allowed in!" + done + +_CeruleanCityText12: ; a539a (29:539a) + text "CERULEAN CITY" + line "A Mysterious," + cont "Blue Aura" + cont "Surrounds It" + done + +_CeruleanCityText13: ; a53ce (29:53ce) + text "TRAINER TIPS" + + para "Pressing B Button" + line "during evolution" + cont "cancels the whole" + cont "process." + done + +_CeruleanCityText16: ; a541a (29:541a) + text "Grass and caves" + line "handled easily!" + cont "BIKE SHOP" + done + +_CeruleanCityText17: ; a5445 (29:5445) + text "CERULEAN CITY" + line "#MON GYM" + cont "LEADER: MISTY" + + para "The Tomboyish" + line "Mermaid!" + done + diff --git a/text/maps/cinnabar_island.asm b/text/maps/cinnabar_island.asm new file mode 100644 index 00000000..3a4ba567 --- /dev/null +++ b/text/maps/cinnabar_island.asm @@ -0,0 +1,38 @@ +_CinnabarIslandText8: ; a61cf (29:61cf) + text "The door is" + line "locked..." + done + +_CinnabarIslandText1: ; a61e6 (29:61e6) + text "CINNABAR GYM's" + line "BLAINE is an odd" + cont "man who has lived" + cont "here for decades." + done + +_CinnabarIslandText2: ; a622a (29:622a) + text "Scientists conduct" + line "experiments in" + cont "the burned out" + cont "building." + done + +_CinnabarIslandText3: ; a6266 (29:6266) + text "CINNABAR ISLAND" + line "The Fiery Town of" + cont "Burning Desire" + done + +_CinnabarIslandText6: ; a6298 (29:6298) + text "#MON LAB" + done + +_CinnabarIslandText7: ; a62a2 (29:62a2) + text "CINNABAR ISLAND" + line "#MON GYM" + cont "LEADER: BLAINE" + + para "The Hot-Headed" + line "Quiz Master!" + done + diff --git a/text/maps/fuchsia_city.asm b/text/maps/fuchsia_city.asm new file mode 100644 index 00000000..c0ca41be --- /dev/null +++ b/text/maps/fuchsia_city.asm @@ -0,0 +1,120 @@ +_FuchsiaCityText1: ; a5e9c (29:5e9c) + text "Did you try the" + line "SAFARI GAME? Some" + cont "#MON can only" + cont "be caught there." + done + +_FuchsiaCityText2: ; a5ede (29:5ede) + text "SAFARI ZONE has a" + line "zoo in front of" + cont "the entrance." + + para "Out back is the" + line "SAFARI GAME for" + cont "catching #MON." + done + +_FuchsiaCityText3: ; a5f3e (29:5f3e) + text "ERIK: Where's" + line "SARA? I said I'd" + cont "meet her here." + done + +_FuchsiaCityText4: ; a5f6b (29:5f6b) + text "That item ball in" + line "there is really a" + cont "#MON." + done + +_FuchsiaCityText5: ; a5f96 (29:5f96) + text "!" + done + +_FuchsiaCityText11: ; a5f99 (29:5f99) + text "FUCHSIA CITY" + line "Behold! It's" + cont "Passion Pink!" + done + +_FuchsiaCityText13: ; a5fc1 (29:5fc1) + text "SAFARI GAME" + line "#MON-U-CATCH!" + done + +_FuchsiaCityText16: ; a5fdc (29:5fdc) + text "SAFARI ZONE" + line "WARDEN's HOME" + done + +_FuchsiaCityText17: ; a5ff6 (29:5ff6) + text "#MON PARADISE" + line "SAFARI ZONE" + done + +_FuchsiaCityText18: ; a6011 (29:6011) + text "FUCHSIA CITY" + line "#MON GYM" + cont "LEADER: KOGA" + + para "The Poisonous" + line "Ninja Master" + done + +_FuchsiaCityChanseyText: ; a6050 (29:6050) + text "Name: CHANSEY" + + para "Catching one is" + line "all up to chance." + prompt + +_FuchsiaCityVoltorbText: ; a6081 (29:6081) + text "Name: VOLTORB" + + para "The very image of" + line "a # BALL." + prompt + +_FuchsiaCityKangaskhanText: ; a60ac (29:60ac) + text "Name: KANGASKHAN" + + para "A maternal #MON" + line "that raises its" + cont "young in a pouch" + cont "on its belly." + prompt + +_FuchsiaCitySlowpokeText: ; a60fd (29:60fd) + text "Name: SLOWPOKE" + + para "Friendly and very" + line "slow moving." + prompt + +_FuchsiaCityLaprasText: ; a612c (29:612c) + text "Name: LAPRAS" + + para "A.K.A. the king" + line "of the seas." + prompt + +_FuchsiaCityOmanyteText: ; a6157 (29:6157) + text "Name: OMANYTE" + + para "A #MON that" + line "was resurrected" + cont "from a fossil." + prompt + +_FuchsiaCityKabutoText: ; a6191 (29:6191) + text "Name: KABUTO" + + para "A #MON that" + line "was resurrected" + cont "from a fossil." + prompt + +_UnnamedText_19b2a: ; a61ca (29:61ca) + text "..." + done + diff --git a/text/maps/lavender_town.asm b/text/maps/lavender_town.asm new file mode 100644 index 00000000..a3d7ccae --- /dev/null +++ b/text/maps/lavender_town.asm @@ -0,0 +1,65 @@ +_UnnamedText_4413c: ; a5482 (29:5482) + text "Do you believe in" + line "GHOSTs?" + done + +_UnnamedText_44141: ; a549d (29:549d) + text "Really? So there" + line "are believers..." + done + +_UnnamedText_44146: ; a54c0 (29:54c0) + text "Hahaha, I guess" + line "not." + + para "That white hand" + line "on your shoulder," + cont "it's not real." + done + +_LavenderTownText2: ; a5506 (29:5506) + text "This town is known" + line "as the grave site" + cont "of #MON." + + para "Memorial services" + line "are held in" + cont "#MON TOWER." + done + +_LavenderTownText3: ; a555f (29:555f) + text "GHOSTs appeared" + line "in #MON TOWER." + + para "I think they're" + line "the spirits of" + cont "#MON that the" + cont "ROCKETs killed." + done + +_LavenderTownText4: ; a55bb (29:55bb) + text "LAVENDER TOWN" + line "The Noble Purple" + cont "Town" + done + +_LavenderTownText5: ; a55e0 (29:55e0) + text "New SILPH SCOPE!" + + para "Make the Invisible" + line "Plain to See!" + + para "SILPH CO." + done + +_LavenderTownText8: ; a561d (29:561d) + text "LAVENDER VOLUNTEER" + line "#MON HOUSE" + done + +_LavenderTownText9: ; a563c (29:563c) + text "May the Souls of" + line "#MON Rest Easy" + cont "#MON TOWER" + done + diff --git a/text/maps/pewter_city.asm b/text/maps/pewter_city.asm new file mode 100644 index 00000000..85f6eab0 --- /dev/null +++ b/text/maps/pewter_city.asm @@ -0,0 +1,118 @@ +_PewterCityText1: ; a497f (29:497f) + text "It's rumored that" + line "CLEFAIRYs came" + cont "from the moon!" + + para "They appeared " + line "after MOON STONE" + cont "fell on MT.MOON." + done + +_PewterCityText2: ; a49e0 (29:49e0) + text "There aren't many" + line "serious #MON" + cont "trainers here!" + + para "They're all like" + line "BUG CATCHERs," + cont "but PEWTER GYM's" + cont "BROCK is totally" + cont "into it!" + done + +_UnnamedText_193f1: ; a4a56 (29:4a56) + text "Did you check out" + line "the MUSEUM?" + done + +_UnnamedText_193f6: ; a4a75 (29:4a75) + text "Weren't those" + line "fossils from MT." + cont "MOON amazing?" + done + +_UnnamedText_193fb: ; a4aa2 (29:4aa2) + text "Really?" + line "You absolutely" + cont "have to go!" + done + +_PewterCityText13: ; a4ac6 (29:4ac6) + text "It's right here!" + line "You have to pay" + cont "to get in, but" + cont "it's worth it!" + cont "See you around!" + done + +_UnnamedText_19427: ; a4b14 (29:4b14) + text "Psssst!" + line "Do you know what" + cont "I'm doing?" + done + +_UnnamedText_1942c: ; a4b38 (29:4b38) + text "That's right!" + line "It's hard work!" + done + +_UnnamedText_19431: ; a4b55 (29:4b55) + text "I'm spraying REPEL" + line "to keep #MON" + cont "out of my garden!" + done + +_UnnamedText_1945d: ; a4b87 (29:4b87) + text "You're a trainer" + line "right? BROCK's" + cont "looking for new" + cont "challengers!" + cont "Follow me!" + done + +_UnnamedText_19462: ; a4bce (29:4bce) + text "If you have the" + line "right stuff, go" + cont "take on BROCK!" + done + +_PewterCityText6: ; a4bfe (29:4bfe) + text "TRAINER TIPS" + + para "Any #MON that" + line "takes part in" + cont "battle, however" + cont "short, earns EXP!" + done + +_PewterCityText7: ; a4c4a (29:4c4a) + text "NOTICE!" + + para "Thieves have been" + line "stealing #MON" + cont "fossils at MT." + cont "MOON! Please call" + cont "PEWTER POLICE" + cont "with any info!" + done + +_PewterCityText10: ; a4cb1 (29:4cb1) + text "PEWTER MUSEUM" + line "OF SCIENCE" + done + +_PewterCityText11: ; a4ccb (29:4ccb) + text "PEWTER CITY" + line "#MON GYM" + cont "LEADER: BROCK" + + para "The Rock Solid" + line "#MON Trainer!" + done + +_PewterCityText12: ; a4d0c (29:4d0c) + text "PEWTER CITY" + line "A Stone Gray" + cont "City" + done + diff --git a/text/maps/saffron_city.asm b/text/maps/saffron_city.asm new file mode 100644 index 00000000..5b6f95ec --- /dev/null +++ b/text/maps/saffron_city.asm @@ -0,0 +1,152 @@ +_SaffronCityText1: ; a62e7 (29:62e7) + text "What do you want?" + line "Get lost!" + done + +_SaffronCityText2: ; a6304 (29:6304) + text "BOSS said he'll" + line "take this town!" + done + +_SaffronCityText3: ; a6324 (29:6324) + text "Get out of the" + line "way!" + done + +_SaffronCityText4: ; a6339 (29:6339) + text "SAFFRON belongs" + line "to TEAM ROCKET!" + done + +_SaffronCityText5: ; a635a (29:635a) + text "Being evil makes" + line "me feel so alive!" + done + +_SaffronCityText6: ; a637e (29:637e) + text "Ow! Watch where" + line "you're walking!" + done + +_SaffronCityText7: ; a639e (29:639e) + text "With SILPH under" + line "control, we can" + cont "exploit #MON" + cont "around the world!" + done + +_SaffronCityText8: ; a63df (29:63df) + text "You beat TEAM" + line "ROCKET all alone?" + cont "That's amazing!" + done + +_SaffronCityText9: ; a640f (29:640f) + text "Yeah! TEAM ROCKET" + line "is gone!" + cont "It's safe to go" + cont "out again!" + done + +_SaffronCityText10: ; a6445 (29:6445) + text "People should be" + line "flocking back to" + cont "SAFFRON now." + done + +_SaffronCityText11: ; a6475 (29:6475) + text "I flew here on my" + line "PIDGEOT when I" + cont "read about SILPH." + + para "It's already over?" + line "I missed the" + cont "media action." + done + +_SaffronCityText12: ; a64d6 (29:64d6) + text "PIDGEOT: Bi bibii!@@" + +_SaffronCityText13: ; a64eb (29:64eb) + text "I saw ROCKET" + line "BOSS escaping" + cont "SILPH's building." + done + +_SaffronCityText14: ; a6518 (29:6518) + text "I'm a security" + line "guard." + + para "Suspicious kids I" + line "don't allow in!" + done + +_SaffronCityText15: ; a654f (29:654f) + text "..." + line "Snore..." + + para "Hah! He's taking" + line "a snooze!" + done + +_SaffronCityText16: ; a6577 (29:6577) + text "SAFFRON CITY" + line "Shining, Golden" + cont "Land of Commerce" + done + +_SaffronCityText17: ; a65a6 (29:65a6) + text "FIGHTING DOJO" + done + +_SaffronCityText18: ; a65b5 (29:65b5) + text "SAFFRON CITY" + line "#MON GYM" + cont "LEADER: SABRINA" + + para "The Master of" + line "Psychic #MON!" + done + +_SaffronCityText20: ; a65f8 (29:65f8) + text "TRAINER TIPS" + + para "FULL HEAL cures" + line "all ailments like" + cont "sleep and burns." + + para "It costs a bit" + line "more, but it's" + cont "more convenient." + done + +_SaffronCityText21: ; a6667 (29:6667) + text "TRAINER TIPS" + + para "New GREAT BALL" + line "offers improved" + cont "capture rates." + + para "Try it on those" + line "hard-to-catch" + cont "#MON." + done + +_SaffronCityText22: ; a66c7 (29:66c7) + text "SILPH CO." + line "OFFICE BUILDING" + done + +_SaffronCityText24: ; a66e2 (29:66e2) + text "MR.PSYCHIC's" + line "HOUSE" + done + +_SaffronCityText25: ; a66f5 (29:66f5) + text "SILPH's latest" + line "product!" + + para "Release to be" + line "determined..." + done + diff --git a/text/maps/vermilion_city.asm b/text/maps/vermilion_city.asm new file mode 100644 index 00000000..a4df5ffa --- /dev/null +++ b/text/maps/vermilion_city.asm @@ -0,0 +1,127 @@ +_VermilionCityText1: ; a5668 (29:5668) + text "We're careful" + line "about pollution!" + + para "We've heard GRIMER" + line "multiplies in" + cont "toxic sludge!" + done + +_UnnamedText_198a7: ; a56b5 (29:56b5) + text "Did you see S.S." + line "ANNE moored in" + cont "the harbor?" + done + +_UnnamedText_198ac: ; a56e2 (29:56e2) + text "So, S.S.ANNE has" + line "departed!" + + para "She'll be back in" + line "about a year." + done + +_SSAnneWelcomeText4: ; a571d (29:571d) + text "Welcome to S.S." + line "ANNE!" + done + +_SSAnneWelcomeText9: ; a5734 (29:5734) + text "Welcome to S.S." + line "ANNE!" + + para "Excuse me, do you" + line "have a ticket?" + prompt + +_SSAnneFlashedTicketText: ; a576c (29:576c) + text $52, " flashed" + line "the S.S.TICKET!" + + para "Great! Welcome to" + line "S.S.ANNE!" + done + +_SSAnneNoTicketText: ; a57a3 (29:57a3) + text $52, " doesn't" + line "have the needed" + cont "S.S.TICKET." + + para "Sorry!" + + para "You need a ticket" + line "to get aboard." + done + +_SSAnneNotHereText: ; a57f1 (29:57f1) + text "The ship set sail." + done + +_VermilionCityText4: ; a5805 (29:5805) + text "I'm putting up a" + line "building on this" + cont "plot of land." + + para "My #MON is" + line "tamping the land." + done + +_VermilionCityText5: ; a5852 (29:5852) + text "MACHOP: Guoh!" + line "Gogogoh!@@" + +_VermilionCityText14: ; a586b (29:586b) + db $0 + para "A MACHOP is" + line "stomping the land" + cont "flat." + done + +_VermilionCityText6: ; a5891 (29:5891) + text "S.S.ANNE is a" + line "famous luxury" + cont "cruise ship." + + para "We visit VERMILION" + line "once a year." + done + +_VermilionCityText7: ; a58db (29:58db) + text "VERMILION CITY" + line "The Port of" + cont "Exquisite Sunsets" + done + +_VermilionCityText8: ; a5909 (29:5909) + text "NOTICE!" + + para "ROUTE 12 may be" + line "blocked off by a" + cont "sleeping #MON." + + para "Detour through" + line "ROCK TUNNEL to" + cont "LAVENDER TOWN." + + para "VERMILION POLICE" + done + +_VermilionCityText11: ; a5980 (29:5980) + text "#MON FAN CLUB" + line "All #MON fans" + cont "welcome!" + done + +_VermilionCityText12: ; a59a6 (29:59a6) + text "VERMILION CITY" + line "#MON GYM" + cont "LEADER: LT.SURGE" + + para "The Lightning " + line "American!" + done + +_VermilionCityText13: ; a59e9 (29:59e9) + text "VERMILION HARBOR" + done + diff --git a/text/maps/viridian_city.asm b/text/maps/viridian_city.asm new file mode 100644 index 00000000..8d37ebcf --- /dev/null +++ b/text/maps/viridian_city.asm @@ -0,0 +1,181 @@ +_ViridianCityText1: ; a43cc (29:43cc) + text "Those # BALLs" + line "at your waist!" + cont "You have #MON!" + + para "It's great that" + line "you can carry and" + cont "use #MON any" + cont "time, anywhere!" + done + +_UnnamedText_19122: ; a4437 (29:4437) + text "This #MON GYM" + line "is always closed." + + para "I wonder who the" + line "LEADER is?" + done + +_UnnamedText_19127: ; a4474 (29:4474) + text "VIRIDIAN GYM's" + line "LEADER returned!" + done + +_UnnamedText_1914d: ; a4494 (29:4494) + text "You want to know" + line "about the 2 kinds" + cont "of caterpillar" + cont "#MON?" + done + +_UnnamedText_19152: ; a44cd (29:44cd) + text "Oh, OK then!" + done + +_UnnamedText_19157: ; a44db (29:44db) + text "CATERPIE has no" + line "poison, but" + cont "WEEDLE does." + + para "Watch out for its" + line "POISON STING!" + done + +_UnnamedText_19175: ; a4525 (29:4525) + text "Oh Grandpa! Don't" + line "be so mean!" + cont "He hasn't had his" + cont "coffee yet." + done + +_UnnamedText_1917a: ; a4560 (29:4560) + text "When I go shop in" + line "PEWTER CITY, I" + cont "have to take the" + cont "winding trail in" + cont "VIRIDIAN FOREST." + done + +_UnnamedText_19191: ; a45b5 (29:45b5) + text "You can't go" + line "through here!" + + para "This is private" + line "property!" + done + +_UnnamedText_191ca: ; a45ea (29:45ea) + text "Yawn!" + line "I must have dozed" + cont "off in the sun." + + para "I had this dream" + line "about a DROWZEE" + cont "eating my dream." + cont "What's this?" + cont "Where did this TM" + cont "come from?" + + para "This is spooky!" + line "Here, you can" + cont "have this TM." + prompt + +_ReceivedTM42Text: ; a469a (29:469a) + text $52, " received" + line "TM42!@@" + +_TM42Explanation: ; a46ad (29:46ad) + text "TM42 contains" + line "DREAM EATER..." + cont "...Snore..." + done + +_TM42NoRoomText: ; a46d7 (29:46d7) + text "You have too much" + line "stuff already." + done + +_UnnamedText_1920a: ; a46f9 (29:46f9) + text "Ahh, I've had my" + line "coffee now and I" + cont "feel great!" + + para "Sure you can go" + line "through!" + + para "Are you in a" + line "hurry?" + done + +_UnnamedText_1920f: ; a4754 (29:4754) + text "I see you're using" + line "a #DEX." + + para "When you catch a" + line "#MON, #DEX" + cont "is automatically" + cont "updated." + + para "What? Don't you" + line "know how to catch" + cont "#MON?" + + para "I'll show you" + line "how to then." + done + +_UnnamedText_19214: ; a47e6 (29:47e6) + text "Time is money..." + line "Go along then." + done + +_UnnamedText_19219: ; a4807 (29:4807) + text "First, you need" + line "to weaken the" + cont "target #MON." + done + +_ViridianCityText8: ; a4833 (29:4833) + text "VIRIDIAN CITY " + line "The Eternally" + cont "Green Paradise" + done + +_ViridianCityText9: ; a4860 (29:4860) + text "TRAINER TIPS" + + para "Catch #MON" + line "and expand your" + cont "collection!" + + para "The more you have," + line "the easier it is" + cont "to fight!" + done + +_ViridianCityText10: ; a48c3 (29:48c3) + text "TRAINER TIPS" + + para "The battle moves" + line "of #MON are" + cont "limited by their" + cont "POWER POINTs, PP." + + para "To replenish PP," + line "rest your tired" + cont "#MON at a" + cont "#MON CENTER!" + done + +_ViridianCityText13: ; a4949 (29:4949) + text "VIRIDIAN CITY" + line "#MON GYM" + done + +_ViridianCityText14: ; a4961 (29:4961) + text "The GYM's doors" + line "are locked..." + done + From bf743815fabea7ff0d5f6775a39befe94d919299 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 19:07:39 -0500 Subject: [PATCH 26/41] Silph Co 1f text was actually somewhere else --- main.asm | 9 +-------- text/maps/silph_co_1f.asm | 6 ++++++ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/main.asm b/main.asm index 77706a9d..89cec4cd 100644 --- a/main.asm +++ b/main.asm @@ -115792,7 +115792,6 @@ INCLUDE "text/maps/rocket_hideout_b2f.asm" INCLUDE "text/maps/rocket_hideout_b3f.asm" INCLUDE "text/maps/rocket_hideout_b4f.asm" INCLUDE "text/maps/rocket_hideout_elevator.asm" -INCLUDE "text/maps/silph_co_1f.asm" INCLUDE "text/maps/silph_co_2f.asm" INCLUDE "text/maps/silph_co_3f.asm" INCLUDE "text/maps/silph_co_4f.asm" @@ -125958,13 +125957,7 @@ _SaffronMartText3: ; a242a (28:642a) cont "fainted #MON!" done -_SilphCo1Text1: ; a245a (28:645a) - text "Welcome!" - - para "The PRESIDENT is" - line "in the boardroom" - cont "on 11F!" - done +INCLUDE "text/maps/silph_co_1f.asm" _SaffronPokecenterText1: ; a248e (28:648e) text "#MON growth" diff --git a/text/maps/silph_co_1f.asm b/text/maps/silph_co_1f.asm index 139597f9..ebb1cb90 100644 --- a/text/maps/silph_co_1f.asm +++ b/text/maps/silph_co_1f.asm @@ -1,2 +1,8 @@ +_SilphCo1Text1: ; a245a (28:645a) + text "Welcome!" + para "The PRESIDENT is" + line "in the boardroom" + cont "on 11F!" + done From 6e5476d420d5d3a73e478a28ed96e8425b7ba94c Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 23:37:40 -0500 Subject: [PATCH 27/41] Even more map text --- main.asm | 4450 +----------------- text/maps/bike_shop.asm | 71 + text/maps/celadon_dept_store_1f.asm | 32 + text/maps/celadon_dept_store_2f.asm | 23 + text/maps/celadon_dept_store_3f.asm | 99 + text/maps/celadon_dept_store_4f.asm | 27 + text/maps/celadon_dept_store_5f.asm | 29 + text/maps/celadon_dept_store_roof.asm | 139 + text/maps/celadon_diner.asm | 60 + text/maps/celadon_game_corner.asm | 187 + text/maps/celadon_gym.asm | 219 + text/maps/celadon_hotel.asm | 22 + text/maps/celadon_house.asm | 23 + text/maps/celadon_mansion_1f.asm | 24 + text/maps/celadon_mansion_2f.asm | 5 + text/maps/celadon_mansion_3f.asm | 67 + text/maps/celadon_mansion_4f_inside.asm | 11 + text/maps/celadon_mansion_4f_outside.asm | 4 + text/maps/celadon_pokecenter.asm | 13 + text/maps/celadon_prize_room.asm | 13 + text/maps/cerulean_badge_house.asm | 98 + text/maps/cerulean_gym.asm | 132 + text/maps/cerulean_mart.asm | 20 + text/maps/cerulean_pokecenter.asm | 25 + text/maps/cerulean_trade_house.asm | 10 + text/maps/cerulean_trashed_house.asm | 37 + text/maps/cinnabar_gym.asm | 210 + text/maps/cinnabar_lab.asm | 30 + text/maps/cinnabar_lab_fossil_room.asm | 79 + text/maps/cinnabar_lab_metronome_room.asm | 64 + text/maps/cinnabar_lab_trade_room.asm | 10 + text/maps/cinnabar_mart.asm | 11 + text/maps/cinnabar_pokecenter.asm | 23 + text/maps/copycats_house_1f.asm | 21 + text/maps/copycats_house_2f.asm | 97 + text/maps/digletts_cave_route_2_entrance.asm | 10 + text/maps/fan_club.asm | 144 + text/maps/fighting_dojo.asm | 131 + text/maps/fuchsia_fishing_house.asm | 44 + text/maps/fuchsia_gym_1.asm | 27 + text/maps/fuchsia_gym_2.asm | 194 + text/maps/fuchsia_house.asm | 28 + text/maps/fuchsia_mart.asm | 15 + text/maps/fuchsia_meeting_room.asm | 27 + text/maps/fuchsia_pokecenter.asm | 21 + text/maps/fujis_house.asm | 86 + text/maps/indigo_plateau_lobby.asm | 26 + text/maps/lavender_house.asm | 25 + text/maps/lavender_mart.asm | 31 + text/maps/lavender_pokecenter.asm | 15 + text/maps/mansion_1f.asm | 30 + text/maps/mr_psychics_house.asm | 26 + text/maps/mt_moon_pokecenter.asm | 49 + text/maps/name_rater.asm | 61 + text/maps/pewter_gym_1.asm | 19 + text/maps/pewter_gym_2.asm | 143 + text/maps/pewter_house_1.asm | 25 + text/maps/pewter_house_2.asm | 20 + text/maps/pewter_mart.asm | 18 + text/maps/pewter_pokecenter.asm | 15 + text/maps/pokemon_tower_1f.asm | 32 + text/maps/pokemon_tower_2f.asm | 58 + text/maps/pokemon_tower_3f.asm | 46 + text/maps/pokemon_tower_4f.asm | 46 + text/maps/pokemon_tower_5f.asm | 72 + text/maps/pokemon_tower_6f.asm | 62 + text/maps/pokemon_tower_7f.asm | 79 + text/maps/route_2_gate.asm | 13 + text/maps/route_2_house.asm | 7 + text/maps/safari_zone_entrance.asm | 94 + text/maps/saffron_gym.asm | 237 + text/maps/saffron_house.asm | 27 + text/maps/saffron_mart.asm | 14 + text/maps/saffron_pokecenter.asm | 13 + text/maps/vermilion_dock.asm | 3 + text/maps/vermilion_fishing_house.asm | 54 + text/maps/vermilion_gym_1.asm | 22 + text/maps/vermilion_gym_2.asm | 144 + text/maps/vermilion_house.asm | 22 + text/maps/vermilion_mart.asm | 24 + text/maps/vermilion_pokecenter.asm | 21 + text/maps/viridian_forest_entrance.asm | 14 + text/maps/viridian_forest_exit.asm | 20 + text/maps/wardens_house.asm | 84 + 84 files changed, 4456 insertions(+), 4367 deletions(-) create mode 100644 text/maps/bike_shop.asm create mode 100644 text/maps/celadon_dept_store_1f.asm create mode 100644 text/maps/celadon_dept_store_2f.asm create mode 100644 text/maps/celadon_dept_store_3f.asm create mode 100644 text/maps/celadon_dept_store_4f.asm create mode 100644 text/maps/celadon_dept_store_5f.asm create mode 100644 text/maps/celadon_dept_store_roof.asm create mode 100644 text/maps/celadon_diner.asm create mode 100644 text/maps/celadon_game_corner.asm create mode 100644 text/maps/celadon_gym.asm create mode 100644 text/maps/celadon_hotel.asm create mode 100644 text/maps/celadon_house.asm create mode 100644 text/maps/celadon_mansion_1f.asm create mode 100644 text/maps/celadon_mansion_2f.asm create mode 100644 text/maps/celadon_mansion_3f.asm create mode 100644 text/maps/celadon_mansion_4f_inside.asm create mode 100644 text/maps/celadon_mansion_4f_outside.asm create mode 100644 text/maps/celadon_pokecenter.asm create mode 100644 text/maps/celadon_prize_room.asm create mode 100644 text/maps/cerulean_badge_house.asm create mode 100644 text/maps/cerulean_gym.asm create mode 100644 text/maps/cerulean_mart.asm create mode 100644 text/maps/cerulean_pokecenter.asm create mode 100644 text/maps/cerulean_trade_house.asm create mode 100644 text/maps/cerulean_trashed_house.asm create mode 100644 text/maps/cinnabar_gym.asm create mode 100644 text/maps/cinnabar_lab.asm create mode 100644 text/maps/cinnabar_lab_fossil_room.asm create mode 100644 text/maps/cinnabar_lab_metronome_room.asm create mode 100644 text/maps/cinnabar_lab_trade_room.asm create mode 100644 text/maps/cinnabar_mart.asm create mode 100644 text/maps/cinnabar_pokecenter.asm create mode 100644 text/maps/copycats_house_1f.asm create mode 100644 text/maps/copycats_house_2f.asm create mode 100644 text/maps/digletts_cave_route_2_entrance.asm create mode 100644 text/maps/fan_club.asm create mode 100644 text/maps/fighting_dojo.asm create mode 100644 text/maps/fuchsia_fishing_house.asm create mode 100644 text/maps/fuchsia_gym_1.asm create mode 100644 text/maps/fuchsia_gym_2.asm create mode 100644 text/maps/fuchsia_house.asm create mode 100644 text/maps/fuchsia_mart.asm create mode 100644 text/maps/fuchsia_meeting_room.asm create mode 100644 text/maps/fuchsia_pokecenter.asm create mode 100644 text/maps/fujis_house.asm create mode 100644 text/maps/indigo_plateau_lobby.asm create mode 100644 text/maps/lavender_house.asm create mode 100644 text/maps/lavender_mart.asm create mode 100644 text/maps/lavender_pokecenter.asm create mode 100644 text/maps/mansion_1f.asm create mode 100644 text/maps/mr_psychics_house.asm create mode 100644 text/maps/mt_moon_pokecenter.asm create mode 100644 text/maps/name_rater.asm create mode 100644 text/maps/pewter_gym_1.asm create mode 100644 text/maps/pewter_gym_2.asm create mode 100644 text/maps/pewter_house_1.asm create mode 100644 text/maps/pewter_house_2.asm create mode 100644 text/maps/pewter_mart.asm create mode 100644 text/maps/pewter_pokecenter.asm create mode 100644 text/maps/pokemon_tower_1f.asm create mode 100644 text/maps/pokemon_tower_2f.asm create mode 100644 text/maps/pokemon_tower_3f.asm create mode 100644 text/maps/pokemon_tower_4f.asm create mode 100644 text/maps/pokemon_tower_5f.asm create mode 100644 text/maps/pokemon_tower_6f.asm create mode 100644 text/maps/pokemon_tower_7f.asm create mode 100644 text/maps/route_2_gate.asm create mode 100644 text/maps/route_2_house.asm create mode 100644 text/maps/safari_zone_entrance.asm create mode 100644 text/maps/saffron_gym.asm create mode 100644 text/maps/saffron_house.asm create mode 100644 text/maps/saffron_mart.asm create mode 100644 text/maps/saffron_pokecenter.asm create mode 100644 text/maps/vermilion_dock.asm create mode 100644 text/maps/vermilion_fishing_house.asm create mode 100644 text/maps/vermilion_gym_1.asm create mode 100644 text/maps/vermilion_gym_2.asm create mode 100644 text/maps/vermilion_house.asm create mode 100644 text/maps/vermilion_mart.asm create mode 100644 text/maps/vermilion_pokecenter.asm create mode 100644 text/maps/viridian_forest_entrance.asm create mode 100644 text/maps/viridian_forest_exit.asm create mode 100644 text/maps/wardens_house.asm diff --git a/main.asm b/main.asm index 89cec4cd..1bc3375c 100644 --- a/main.asm +++ b/main.asm @@ -117545,118 +117545,12 @@ _Char00Text: ; 8a696 (22:6696) _Char55Text: ; 8a6a3 (22:66a3) text $4B,"@@" -_DiglettsCaveRoute2Text1: ; 8a6a7 (22:66a7) - text "I went to ROCK" - line "TUNNEL, but it's" - cont "dark and scary." - - para "If a #MON's" - line "FLASH could light" - cont "it up..." - done - -_ViridianForestexitText1: ; 8a6fd (22:66fd) - text "Many #MON live" - line "only in forests " - cont "and caves." - - para "You need to look" - line "everywhere to get" - cont "different kinds!" - done - -_ViridianForestexitText2: ; 8a75d (22:675d) - text "Have you noticed" - line "the bushes on the" - cont "roadside?" - - para "They can be cut" - line "down by a special" - cont "#MON move." - done - -_Route2HouseText1: ; 8a7b8 (22:67b8) - text "A fainted #MON" - line "can't fight. But, " - cont "it can still use " - cont "moves like CUT!" - done - -_UnnamedText_5d616: ; 8a7fc (22:67fc) - text "The HM FLASH" - line "lights even the" - cont "darkest dungeons." - done - -_Route2GateText2: ; 8a82c (22:682c) - text "Once a #MON" - line "learns FLASH, you" - cont "can get through" - cont "ROCK TUNNEL." - done - -_ViridianForestEntranceText1: ; 8a868 (22:6868) - text "Are you going to" - line "VIRIDIAN FOREST?" - cont "Be careful, it's" - cont "a natural maze!" - done - -_ViridianForestEntranceText2: ; 8a8ab (22:68ab) - text "RATTATA may be" - line "small, but its" - cont "bite is wicked!" - cont "Did you get one?" - done - -_MtMoonPokecenterText1: ; 8a8eb (22:68eb) - text "I've 6 # BALLs" - line "set in my belt." - - para "At most, you can" - line "carry 6 #MON." - done - -_MtMoonPokecenterText3: ; 8a929 (22:6929) - text "TEAM ROCKET" - line "attacks CERULEAN" - cont "citizens..." - - para "TEAM ROCKET is" - line "always in the" - cont "news!" - done - -_UnnamedText_4935c: ; 8a976 (22:6976) - text "MAN: Hello, there!" - line "Have I got a deal" - cont "just for you!" - - para "I'll let you have" - line "a swell MAGIKARP" - cont "for just ¥500!" - cont "What do you say?" - done - -_UnnamedText_49361: ; 8a9ec (22:69ec) - text "No? I'm only" - line "doing this as a" - cont "favor to you!" - done - -_UnnamedText_49366: ; 8aa17 (22:6a17) - text "You'll need more" - line "money than that!" - done - -_UnnamedText_4936b: ; 8aa39 (22:6a39) - text "MAN: Well, I don't" - line "give refunds!" - done - -_MtMoonPokecenterText5: ; 8aa5a (22:6a5a) - db $0 - done +INCLUDE "text/maps/digletts_cave_route_2_entrance.asm" +INCLUDE "text/maps/viridian_forest_exit.asm" +INCLUDE "text/maps/route_2_house.asm" +INCLUDE "text/maps/route_2_gate.asm" +INCLUDE "text/maps/viridian_forest_entrance.asm" +INCLUDE "text/maps/mt_moon_pokecenter.asm" _UnnamedText_1dfe7: ; 8aa5c (22:6a5c) text "I'm on guard duty." @@ -121729,4274 +121623,96 @@ INCLUDE "text/maps/viridian_house.asm" INCLUDE "text/maps/viridian_gym.asm" INCLUDE "text/maps/museum_1f.asm" INCLUDE "text/maps/museum_2f.asm" +INCLUDE "text/maps/pewter_gym_1.asm" -_UnnamedText_5c49e: ; 9697a (25:697a) - text "I'm BROCK!" - line "I'm PEWTER's GYM" - cont "LEADER!" - - para "I believe in rock" - line "hard defense and" - cont "determination!" - - para "That's why my" - line "#MON are all" - cont "the rock-type!" - - para "Do you still want" - line "to challenge me?" - cont "Fine then! Show" - cont "me your best!" - done SECTION "bank26",ROMX,BANK[$26] -_UnnamedText_5c4a3: ; 98000 (26:4000) - text "There are all" - line "kinds of trainers" - cont "in the world!" +INCLUDE "text/maps/pewter_gym_2.asm" +INCLUDE "text/maps/pewter_house_1.asm" +INCLUDE "text/maps/pewter_mart.asm" +INCLUDE "text/maps/pewter_house_2.asm" +INCLUDE "text/maps/pewter_pokecenter.asm" +INCLUDE "text/maps/cerulean_trashed_house.asm" +INCLUDE "text/maps/cerulean_trade_house.asm" +INCLUDE "text/maps/cerulean_pokecenter.asm" +INCLUDE "text/maps/cerulean_gym.asm" +INCLUDE "text/maps/bike_shop.asm" +INCLUDE "text/maps/cerulean_mart.asm" +INCLUDE "text/maps/cerulean_badge_house.asm" +INCLUDE "text/maps/lavender_pokecenter.asm" +INCLUDE "text/maps/pokemon_tower_1f.asm" +INCLUDE "text/maps/pokemon_tower_2f.asm" +INCLUDE "text/maps/pokemon_tower_3f.asm" +INCLUDE "text/maps/pokemon_tower_4f.asm" +INCLUDE "text/maps/pokemon_tower_5f.asm" +INCLUDE "text/maps/pokemon_tower_6f.asm" +INCLUDE "text/maps/pokemon_tower_7f.asm" +INCLUDE "text/maps/fujis_house.asm" +INCLUDE "text/maps/lavender_mart.asm" +INCLUDE "text/maps/lavender_house.asm" +INCLUDE "text/maps/name_rater.asm" +INCLUDE "text/maps/vermilion_pokecenter.asm" +INCLUDE "text/maps/fan_club.asm" +INCLUDE "text/maps/vermilion_mart.asm" +INCLUDE "text/maps/vermilion_gym_1.asm" - para "You appear to be" - line "very gifted as a" - cont "#MON trainer!" - - para "Go to the GYM in" - line "CERULEAN and test" - cont "your abilities!" - done - -_TM34PreReceiveText: ; 98092 (26:4092) - text "Wait! Take this" - line "with you!" - done - -_ReceivedTM34Text: ; 980ad (26:40ad) - text $52, " received" - line "TM34!@@" - -_TM34ExplanationText: ; 980c0 (26:40c0) - db $0 - para "A TM contains a" - line "technique that" - cont "can be taught to" - cont "#MON!" - - para "A TM is good only" - line "once! So when you" - cont "use one to teach" - cont "a new technique," - cont "pick the #MON" - cont "carefully!" - - para "TM34 contains" - line "BIDE!" - - para "Your #MON will" - line "absorb damage in" - cont "battle then pay" - cont "it back double!" - done - -_TM34NoRoomText: ; 981ab (26:41ab) - text "You don't have" - line "room for this!" - done - -_UnnamedText_5c4bc: ; 981c9 (26:41c9) - text "I took" - line "you for granted." - - para "As proof of your" - line "victory, here's" - cont "the BOULDERBADGE!" - - para $52, " received" - line "the BOULDERBADGE!@@" - -_UnnamedText_5c4c1: ; 98232 (26:4232) - db $0 - para "That's an official" - line "#MON LEAGUE" - cont "BADGE!" - - para "Its bearer's" - line "#MON become" - cont "more powerful!" - - para "The technique" - line "FLASH can now be" - cont "used any time!" - prompt - -_PewterGymBattleText1: ; 982ae (26:42ae) - text "Stop right there," - line "kid!" - - para "You're still light" - line "years from facing" - cont "BROCK!" - done - -_PewterGymEndBattleText1: ; 982f1 (26:42f1) - text "Darn!" - - para "Light years isn't" - line "time! It measures" - cont "distance!" - prompt - -_PewterGymAfterBattleText1: ; 98325 (26:4325) - text "You're pretty hot," - line "but not as hot" - cont "as BROCK!" - done - -_UnnamedText_5c515: ; 98351 (26:4351) - text "Hiya! I can tell" - line "you have what it" - cont "takes to become a" - cont "#MON champ!" - - para "I'm no trainer," - line "but I can tell" - cont "you how to win!" - - para "Let me take you" - line "to the top!" - done - -_UnnamedText_5c51a: ; 983dc (26:43dc) - text "All right! Let's" - line "get happening!" - prompt - -_UnnamedText_5c51f: ; 983fc (26:43fc) - text "The 1st #MON" - line "out in a match is" - cont "at the top of the" - cont "#MON LIST!" - - para "By changing the" - line "order of #MON," - cont "matches could be" - cont "made easier!" - done - -_UnnamedText_5c524: ; 98476 (26:4476) - text "It's a free" - line "service! Let's" - cont "get happening!" - prompt - -_UnnamedText_5c529: ; 9849f (26:449f) - text "Just as I thought!" - line "You're #MON" - cont "champ material!" - done - -_PewterHouse1Text1: ; 984ce (26:44ce) - text "NIDORAN: Bowbow!@@" - -_PewterHouse1Text2: ; 984e1 (26:44e1) - text "NIDORAN sit!" - done - -_PewterHouse1Text3: ; 984ef (26:44ef) - text "Our #MON's an" - line "outsider, so it's" - cont "hard to handle." - - para "An outsider is a" - line "#MON that you" - cont "get in a trade." - - para "It grows fast, but" - line "it may ignore an" - cont "unskilled trainer" - cont "in battle!" - - para "If only we had" - line "some BADGEs..." - done - -_UnnamedText_74cc6: ; 985ac (26:45ac) - text "A shady, old man" - line "got me to buy" - cont "this really weird" - cont "fish #MON!" - - para "It's totally weak" - line "and it cost ¥500!" - done - -_UnnamedText_74cd5: ; 9860c (26:460c) - text "Good things can" - line "happen if you" - cont "raise #MON" - cont "diligently, even" - cont "the weak ones!" - done - -_PewterHouse2Text1: ; 98656 (26:4656) - text "#MON learn new" - line "techniques as" - cont "they grow!" - - para "But, some moves" - line "must be taught by" - cont "the trainer!" - done - -_PewterHouse2Text2: ; 986ae (26:46ae) - text "#MON become" - line "easier to catch" - cont "when they are" - cont "hurt or asleep!" - - para "But, it's not a" - line "sure thing!" - done - -_PewterPokecenterText1: ; 98704 (26:4704) - text "What!?" - - para "TEAM ROCKET is" - line "at MT.MOON? Huh?" - cont "I'm on the phone!" - - para "Scram!" - done - -_PewterPokecenterText5: ; 98744 (26:4744) - text "JIGGLYPUFF: Puu" - line "pupuu!" - done - -_UnnamedText_1d6ab: ; 9875c (26:475c) - text "Those miserable" - line "ROCKETs!" - - para "Look what they" - line "did here!" - - para "They stole a TM" - line "for teaching" - cont "#MON how to" - cont "DIG holes!" - - para "That cost me a" - line "bundle, it did!" - done - -_UnnamedText_1d6b0: ; 987e2 (26:47e2) - text "I figure what's" - line "lost is lost!" - - para "I decided to teach" - line "DIGLETT how to" - cont "DIG without a TM!" - done - -_CeruleanHouseTrashedText2: ; 98834 (26:4834) - text "TEAM ROCKET must" - line "be trying to DIG" - cont "their way into no" - cont "good!" - done - -_CeruleanHouseTrashedText3: ; 9886f (26:486f) - text "TEAM ROCKET left" - line "a way out!" - done - -_CeruleanHouseText1: ; 9888c (26:488c) - text "My husband likes" - line "trading #MON." - - para "If you are a" - line "collector, would" - cont "you please trade" - cont "with him?" - done - -_CeruleanPokecenterText1: ; 988e5 (26:48e5) - text "That BILL!" - - para "I heard that" - line "he'll do whatever" - cont "it takes to get" - cont "rare #MON!" - done - -_CeruleanPokecenterText3: ; 9892a (26:492a) - text "Have you heard" - line "about BILL?" - - para "Everyone calls" - line "him a #MANIAC!" - - para "I think people" - line "are just jealous" - cont "of BILL, though." - - para "Who wouldn't want" - line "to boast about" - cont "their #MON?" - done - -_UnnamedText_5c7be: ; 989c1 (26:49c1) - text "Hi, you're a new" - line "face!" - - para "Trainers who want" - line "to turn pro have" - cont "to have a policy" - cont "about #MON!" - - para "What is your" - line "approach when you" - cont "catch #MON?" - - para "My policy is an" - line "all-out offensive" - cont "with water-type" - cont "#MON!" - done - -_UnnamedText_5c7c3: ; 98a7b (26:4a7b) - text "TM11 teaches" - line "BUBBLEBEAM!" - - para "Use it on an" - line "aquatic #MON!" - done - -_UnnamedText_5c7c8: ; 98ab0 (26:4ab0) - text "The CASCADEBADGE" - line "makes all #MON" - cont "up to L30 obey!" - - para "That includes" - line "even outsiders!" - - para "There's more, you" - line "can now use CUT" - cont "any time!" - - para "You can CUT down" - line "small bushes to" - cont "open new paths!" - - para "You can also have" - line "my favorite TM!" - done - -_ReceivedTM11Text: ; 98b7d (26:4b7d) - text $52, " received" - line "TM11!@@" - -_UnnamedText_5c7d3: ; 98b90 (26:4b90) - text "You better make" - line "room for this!" - done - -_UnnamedText_5c7d8: ; 98bb0 (26:4bb0) - text "Wow!" - line "You're too much!" - - para "All right!" - - para "You can have the" - line "CASCADEBADGE to" - cont "show you beat me!@@" - -_CeruleanGymBattleText1: ; 98c05 (26:4c05) - text "I'm more than good" - line "enough for you!" - - para "MISTY can wait!" - done - -_CeruleanGymEndBattleText1: ; 98c38 (26:4c38) - text "You" - line "overwhelmed me!" - prompt - -_CeruleanGymAfterBattleText1: ; 98c4d (26:4c4d) - text "You have to face" - line "other trainers to" - cont "find out how good" - cont "you really are." - done - -_CeruleanGymBattleText2: ; 98c93 (26:4c93) - text "Splash!" - - para "I'm first up!" - line "Let's do it!" - done - -_CeruleanGymEndBattleText2: ; 98cb5 (26:4cb5) - text "That" - line "can't be!" - prompt - -_CeruleanGymAfterBattleText2: ; 98cc4 (26:4cc4) - text "MISTY is going to" - line "keep improving!" - - para "She won't lose to" - line "someone like you!" - done - -_UnnamedText_5c82a: ; 98d0a (26:4d0a) - text "Yo! Champ in" - line "making!" - - para "Here's my advice!" - - para "The LEADER, MISTY," - line "is a pro who uses" - cont "water #MON!" - - para "You can drain all" - line "their water with" - cont "plant #MON!" - - para "Or, zap them with" - line "electricity!" - done - -_UnnamedText_5c82f: ; 98db0 (26:4db0) - text "You beat MISTY!" - line "What'd I tell ya?" - - para "You and me kid," - line "we make a pretty" - cont "darn good team!" - done - -_UnnamedText_1d810: ; 98e03 (26:4e03) - text "Hi! Welcome to" - line "our BIKE SHOP." - - para "Have we got just" - line "the BIKE for you!" - prompt - -_UnnamedText_1d815: ; 98e45 (26:4e45) - text "It's a cool BIKE!" - line "Do you want it?" - done - -_UnnamedText_1d81a: ; 98e67 (26:4e67) - text "Sorry! You can't" - line "afford it!" - prompt - -_UnnamedText_1d81f: ; 98e83 (26:4e83) - text "Oh, that's..." - - para "A BIKE VOUCHER!" - - para "OK! Here you go!" - prompt - -_UnnamedText_1d824: ; 98eb2 (26:4eb2) - text $52, " exchanged" - line "the BIKE VOUCHER" - cont "for a BICYCLE.@@" - -_UnnamedText_1d82a: ; 98ee0 (26:4ee0) - text "Come back again" - line "some time!" - done - -_UnnamedText_1d82f: ; 98efc (26:4efc) - text "How do you like" - line "your new BICYCLE?" - - para "You can take it" - line "on CYCLING ROAD" - cont "and in caves!" - done - -_UnnamedText_1d834: ; 98f4d (26:4f4d) - text "You better make" - line "room for this!" - done - -_UnnamedText_1d843: ; 98f6d (26:4f6d) - text "A plain city BIKE" - line "is good enough" - cont "for me!" - - para "You can't put a" - line "shopping basket" - cont "on an MTB!" - done - -_UnnamedText_1d85c: ; 98fc1 (26:4fc1) - text "These BIKEs are" - line "cool, but they're" - cont "way expensive!" - done - -_UnnamedText_1d861: ; 98ff2 (26:4ff2) - text "Wow. Your BIKE is" - line "really cool!" - done - -_CeruleanMartText2: ; 99012 (26:5012) - text "Use REPEL to keep" - line "bugs and weak" - cont "#MON away." - - para "Put your strongest" - line "#MON at the" - cont "top of the list" - cont "for best results!" - done - -_CeruleanMartText3: ; 9907f (26:507f) - text "Have you seen any" - line "RARE CANDY?" - - para "It's supposed to" - line "make #MON go" - cont "up one level!" - done - -_UnnamedText_74e77: ; 990c9 (26:50c9) - text "#MON BADGEs" - line "are owned only by" - cont "skilled trainers." - - para "I see you have" - line "at least one." - - para "Those BADGEs have" - line "amazing secrets!" - prompt - -_UnnamedText_74e7c: ; 9913a (26:513a) - text "Now then..." - - para "Which of the 8" - line "BADGEs should I" - cont "describe?" - done - -_UnnamedText_74e81: ; 99170 (26:5170) - text "Come visit me any" - line "time you wish." - done - -_UnnamedText_74e96: ; 99192 (26:5192) - text "The ATTACK of all" - line "#MON increases" - cont "a little bit." - - para "It also lets you" - line "use FLASH any" - cont "time you desire." - prompt - -_UnnamedText_74e9b: ; 991f2 (26:51f2) - text "#MON up to L30" - line "will obey you." - - para "Any higher, they" - line "become unruly!" - - para "It also lets you" - line "use CUT outside" - cont "of battle." - prompt - -_UnnamedText_74ea0: ; 9925d (26:525d) - text "The SPEED of all" - line "#MON increases" - cont "a little bit." - - para "It also lets you" - line "use FLY outside" - cont "of battle." - prompt - -_UnnamedText_74ea5: ; 992b8 (26:52b8) - text "#MON up to L50" - line "will obey you." - - para "Any higher, they" - line "become unruly!" - - para "It also lets you" - line "use STRENGTH out-" - cont "side of battle." - prompt - -_UnnamedText_74eaa: ; 9932a (26:532a) - text "The DEFENSE of all" - line "#MON increases" - cont "a little bit." - - para "It also lets you" - line "use SURF outside" - cont "of battle." - prompt - -_UnnamedText_74eaf: ; 99388 (26:5388) - text "#MON up to L70" - line "will obey you." - - para "Any higher, they" - line "become unruly!" - prompt - -_UnnamedText_74eb4: ; 993c7 (26:53c7) - text "Your #MON's" - line "SPECIAL abilities" - cont "increase a bit." - prompt - -_UnnamedText_74eb9: ; 993f5 (26:53f5) - text "All #MON will" - line "obey you!" - prompt - -_LavenderPokecenterText4: ; 9940e (26:540e) -_LavenderPokecenterText2: ; 9940e (26:540e) -_LavenderPokecenterText1: ; 9940e (26:540e) - text "TEAM ROCKET will" - line "do anything for" - cont "the sake of gold!" - done - -_LavenderPokecenterText3: ; 99442 (26:5442) - text "I saw CUBONE's" - line "mother die trying" - cont "to escape from" - cont "TEAM ROCKET!" - done - -_PokemonTower1Text1: ; 9947f (26:547f) - text "#MON TOWER was" - line "erected in the" - cont "memory of #MON" - cont "that had died." - done - -_PokemonTower1Text2: ; 994bc (26:54bc) - text "Did you come to" - line "pay respects?" - cont "Bless you!" - done - -_PokemonTower1Text3: ; 994e6 (26:54e6) - text "I came to pray" - line "for my CLEFAIRY." - - para "Sniff! I can't" - line "stop crying..." - done - -_PokemonTower1Text4: ; 99524 (26:5524) - text "My GROWLITHE..." - line "Why did you die?" - done - -_PokemonTower1Text5: ; 99546 (26:5546) - text "I am a CHANNELER!" - line "There are spirits" - cont "up to mischief!" - done - -_UnnamedText_6062d: ; 9957b (26:557b) - text $53, ": Hey," - line $52, "! What" - cont "brings you here?" - cont "Your #MON" - cont "don't look dead!" - - para "I can at least" - line "make them faint!" - cont "Let's go, pal!" - done - -_UnnamedText_60632: ; 995e5 (26:55e5) - text "What?" - line "You stinker!" - - para "I took it easy on" - line "you too!" - prompt - -_UnnamedText_60637: ; 99614 (26:5614) - text $53, ": Well," - line "look at all your" - cont "wimpy #MON!" - - para "Toughen them up a" - line "bit more!" - prompt - -_UnnamedText_6063c: ; 99657 (26:5657) - text "How's your #DEX" - line "coming, pal?" - cont "I just caught a" - cont "CUBONE!" - - para "I can't find the" - line "grown-up MAROWAK" - cont "yet!" - - para "I doubt there are" - line "any left! Well, I" - cont "better get going!" - cont "I've got a lot to" - cont "accomplish, pal!" - - para "Smell ya later!" - done - -_PokemonTower2Text2: ; 9971a (26:571a) - text "Even we could not" - line "identify the" - cont "wayward GHOSTs!" - - para "A SILPH SCOPE" - line "might be able to" - cont "unmask them." - done - -_PokemonTower3BattleText1: ; 99776 (26:5776) - text "Urrg...Awaa..." - line "Huhu...graa.." - done - -_PokemonTower3EndBattleText1: ; 99794 (26:5794) - text "Hwa!" - line "I'm saved!" - prompt - -_PokemonTower3AfterBattleText1: ; 997a4 (26:57a4) - text "The GHOSTs can be" - line "identified by the" - cont "SILPH SCOPE." - done - -_PokemonTower3BattleText2: ; 997d6 (26:57d6) - text "Kekeke...." - line "Kwaaah!" - done - -_PokemonTower3EndBattleText2: ; 997ea (26:57ea) - text "Hmm?" - line "What am I doing?" - prompt - -_PokemonTower3AfterBattleText2: ; 99801 (26:5801) - text "Sorry! I was" - line "possessed!" - done - -_PokemonTower3BattleText3: ; 9981a (26:581a) - text "Be gone!" - line "Evil spirit!" - done - -_PokemonTower3EndBattleText3: ; 99831 (26:5831) - text "Whew!" - line "The spirit left!" - prompt - -_PokemonTower3AfterBattleText3: ; 99849 (26:5849) - text "My friends were" - line "possessed too!" - done - -_PokemonTower4BattleText1: ; 99869 (26:5869) - text "GHOST! No!" - line "Kwaaah!" - done - -_PokemonTower4EndBattleText1: ; 9987d (26:587d) - text "Where" - line "is the GHOST?" - prompt - -_PokemonTower4AfterBattleText1: ; 99892 (26:5892) - text "I must have been" - line "dreaming..." - done - -_PokemonTower4BattleText2: ; 998b0 (26:58b0) - text "Be cursed with" - line "me! Kwaaah!" - done - -_PokemonTower4EndBattleText2: ; 998cc (26:58cc) - text "What!" - prompt - -_PokemonTower4AfterBattleText2: ; 998d3 (26:58d3) - text "We can't crack" - line "the identity of" - cont "the GHOSTs." - done - -_PokemonTower4BattleText3: ; 998fe (26:58fe) - text "Huhuhu..." - line "Beat me not!" - done - -_PokemonTower4EndBattleText3: ; 99916 (26:5916) - text "Huh?" - line "Who? What?" - prompt - -_PokemonTower4AfterBattleText3: ; 99927 (26:5927) - text "May the departed" - line "souls of #MON" - cont "rest in peace..." - done - -_PokemonTower5Text1: ; 99958 (26:5958) - text "Come, child! I" - line "sealed this space" - cont "with white magic!" - - para "You can rest here!" - done - -_PokemonTower5BattleText1: ; 9999f (26:599f) - text "Give...me..." - line "your...soul..." - done - -_PokemonTower5EndBattleText1: ; 999bc (26:59bc) - text "Gasp!" - prompt - -_PokemonTower5AfterBattleText1: ; 999c3 (26:59c3) - text "I was under" - line "possession!" - done - -_PokemonTower5BattleText2: ; 999dc (26:59dc) - text "You...shall..." - line "join...us..." - done - -_PokemonTower5EndBattleText2: ; 999f9 (26:59f9) - text "What" - line "a nightmare!" - prompt - -_PokemonTower5AfterBattleText2: ; 99a0c (26:5a0c) - text "I was possessed!" - done - -_PokemonTower5BattleText3: ; 99a1e (26:5a1e) - text "Zombies!" - done - -_PokemonTower5EndBattleText3: ; 99a28 (26:5a28) - text "Ha?" - prompt - -_PokemonTower5AfterBattleText3: ; 99a2d (26:5a2d) - text "I regained my" - line "senses!" - done - -_PokemonTower5BattleText4: ; 99a44 (26:5a44) - text "Urgah..." - line "Urff...." - done - -_PokemonTower5EndBattleText4: ; 99a57 (26:5a57) - text "Whoo!" - prompt - -_PokemonTower5AfterBattleText4: ; 99a5e (26:5a5e) - text "I fell to evil" - line "spirits despite" - cont "my training!" - done - -_UnnamedText_60a43: ; 99a8b (26:5a8b) - text "Entered purified," - line "protected zone!" - - para $52, "'s #MON" - line "are fully healed!" - done - -_UnnamedText_60c1f: ; 99ac8 (26:5ac8) - text "The GHOST was the" - line "restless soul of" - cont "CUBONE's mother!" - done - -_UnnamedText_60c24: ; 99afc (26:5afc) - text "The mother's soul" - line "was calmed." - - para "It departed to" - line "the afterlife!" - done - -_PokemonTower6BattleText1: ; 99b38 (26:5b38) - text "Give...me..." - line "blood..." - done - -_PokemonTower6EndBattleText1: ; 99b4f (26:5b4f) - text "Groan!" - prompt - -_PokemonTower6AfterBattleText1: ; 99b57 (26:5b57) - text "I feel anemic and" - line "weak..." - done - -_PokemonTower6BattleText2: ; 99b72 (26:5b72) - text "Urff... Kwaah!" - done - -_PokemonTower6EndBattleText2: ; 99b82 (26:5b82) - text "Some-" - line "thing fell out!" - prompt - -_PokemonTower6AfterBattleText2: ; 99b99 (26:5b99) - text "Hair didn't fall" - line "out! It was an" - cont "evil spirit!" - done - -_PokemonTower6BattleText3: ; 99bc6 (26:5bc6) - text "Ke..ke...ke..." - line "ke..ke...ke!!" - done - -_PokemonTower6EndBattleText3: ; 99be4 (26:5be4) - text "Keee!" - prompt - -_PokemonTower6AfterBattleText3: ; 99beb (26:5beb) - text "What's going on" - line "here?" - done - -_UnnamedText_60c56: ; 99c01 (26:5c01) - text "Be gone..." - line "Intruders..." - done - -_UnnamedText_60ec4: ; 99c1a (26:5c1a) - text "MR.FUJI: Heh? You" - line "came to save me?" - - para "Thank you. But, I" - line "came here of my" - cont "own free will." - - para "I came to calm" - line "the soul of" - cont "CUBONE's mother." - - para "I think MAROWAK's" - line "spirit has gone" - cont "to the afterlife." - - para "I must thank you" - line "for your kind" - cont "concern!" - - para "Follow me to my" - line "home, #MON" - cont "HOUSE at the foot" - cont "of this tower." - done - -_PokemonTower7BattleText1: ; 99d31 (26:5d31) - text "What do you want?" - line "Why are you here?" - done - -_PokemonTower7EndBattleText1: ; 99d56 (26:5d56) - text "I give up!" - prompt - -_PokemonTower7AfterBattleText1: ; 99d62 (26:5d62) - text "I'm not going to" - line "forget this!" - done - -_PokemonTower7BattleText2: ; 99d80 (26:5d80) - text "This old guy came" - line "and complained" - cont "about us harming" - cont "useless #MON!" - - para "We're talking it" - line "over as adults!" - done - -_PokemonTower7EndBattleText2: ; 99de1 (26:5de1) - text "Please!" - line "No more!" - prompt - -_PokemonTower7AfterBattleText2: ; 99df3 (26:5df3) - text "#MON are only" - line "good for making" - cont "money!" - - para "Stay out of our" - line "business!" - done - -_PokemonTower7BattleText3: ; 99e33 (26:5e33) - text "You're not saving" - line "anyone, kid!" - done - -_PokemonTower7EndBattleText3: ; 99e52 (26:5e52) - text "Don't" - line "fight us ROCKETs!" - prompt - -_PokemonTower7AfterBattleText3: ; 99e6a (26:5e6a) - text "You're not getting" - line "away with this!" - done - -_UnnamedText_1d8d1: ; 99e8d (26:5e8d) - text "That's odd, MR.FUJI" - line "isn't here." - cont "Where'd he go?" - done - -_UnnamedText_1d8d6: ; 99eba (26:5eba) - text "MR.FUJI had been" - line "praying alone for" - cont "CUBONE's mother." - done - -_UnnamedText_1d8f4: ; 99eee (26:5eee) - text "This is really" - line "MR.FUJI's house." - - para "He's really kind!" - - para "He looks after" - line "abandoned and" - cont "orphaned #MON!" - done - -_UnnamedText_1d8f9: ; 99f4b (26:5f4b) - text "It's so warm!" - line "#MON are so" - cont "nice to hug!" - done - -_LavenderHouse1Text3: ; 99f72 (26:5f72) - text "PSYDUCK: Gwappa!@@" - -_LavenderHouse1Text4: ; 99f85 (26:5f85) - text "NIDORINO: Gaoo!@@" - -_UnnamedText_1d94c: ; 99f97 (26:5f97) - text "MR.FUJI: ", $52, "." - - para "Your #DEX quest" - line "may fail without" - cont "love for your" - cont "#MON." - - para "I think this may" - line "help your quest." - prompt - -_ReceivedFluteText: ; 99ffb (26:5ffb) - text $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_FluteExplanationText: ; 9a011 (26:6011) - db $0 - para "Upon hearing #" - line "FLUTE, sleeping" - cont "#MON will" - cont "spring awake." - - para "It works on all" - line "sleeping #MON." - done - -_FluteNoRoomText: ; 9a069 (26:6069) - text "You must make" - line "room for this!" - done - -_MrFujiAfterFluteText: ; 9a087 (26:6087) - text "MR.FUJI: Has my" - line "FLUTE helped you?" - done - -_LavenderHouse1Text6: ; 9a0aa (26:60aa) - text "#MON Monthly" - line "Grand Prize" - cont "Drawing!" - - para "The application" - line "form is..." - - para "Gone! It's been" - line "clipped out!" - done - -_LavenderMartText2: ; 9a104 (26:6104) - text "I'm searching for" - line "items that raise" - cont "the abilities of" - cont "#MON during a" - cont "single battle." - - para "X ATTACK, X" - line "DEFEND, X SPEED" - cont "and X SPECIAL are" - cont "what I'm after." - - para "Do you know where" - line "I can get them?" - done - -_UnnamedText_5c953: ; 9a1b4 (26:61b4) - text "You know REVIVE?" - line "It revives any" - cont "fainted #MON!" - done - -_UnnamedText_5c958: ; 9a1e3 (26:61e3) - text "I found a NUGGET" - line "in the mountains." - - para "I thought it was" - line "useless, but it" - cont "sold for ¥5000!" - done - -_LavenderHouse2Text1: ; 9a238 (26:6238) - text "CUBONE: Kyarugoo!@@" - -_UnnamedText_1d9dc: ; 9a24c (26:624c) - text "I hate those" - line "horrible ROCKETs!" - - para "That poor CUBONE's" - line "mother..." - - para "It was killed" - line "trying to escape" - cont "from TEAM ROCKET!" - done - -_UnnamedText_1d9e1: ; 9a2b9 (26:62b9) - text "The GHOST of" - line "#MON TOWER is" - cont "gone!" - - para "Someone must have" - line "soothed its" - cont "restless soul!" - done - -_UnnamedText_1dab3: ; 9a308 (26:6308) - text "Hello, hello!" - line "I am the official" - cont "NAME RATER!" - - para "Want me to rate" - line "the nicknames of" - cont "your #MON?" - done - -_UnnamedText_1dab8: ; 9a361 (26:6361) - text "Which #MON" - line "should I look at?" - prompt - -_UnnamedText_1dabd: ; 9a37f (26:637f) - TX_RAM $cd6d - text ", is it?" - line "That is a decent" - cont "nickname!" - - para "But, would you" - line "like me to give" - cont "it a nicer name?" - - para "How about it?" - done - -_UnnamedText_1dac2: ; 9a3e5 (26:63e5) - text "Fine! What should" - line "we name it?" - prompt - -_UnnamedText_1dac7: ; 9a404 (26:6404) - text "OK! This #MON" - line "has been renamed" - cont "@" - TX_RAM $cee9 - text "!" - - para "That's a better" - line "name than before!" - done - -_UnnamedText_1dacc: ; 9a44c (26:644c) - text "Fine! Come any" - line "time you like!" - done - -_UnnamedText_1dad1: ; 9a46b (26:646b) - TX_RAM $cd6d - text ", is it?" - line "That is a truly" - cont "impeccable name!" - - para "Take good care of" - line "@" - TX_RAM $cd6d - text "!" - done - -_VermilionPokecenterText2: ; 9a4b2 (26:64b2) -_VermilionPokecenterText1: ; 9a4b2 (26:64b2) - text "Even if they are" - line "the same level," - cont "#MON can have" - cont "very different" - cont "abilities." - - para "A #MON raised" - line "by a trainer is" - cont "stronger than one" - cont "in the wild." - done - -_VermilionPokecenterText3: ; 9a539 (26:6539) - text "My #MON was" - line "poisoned! It" - cont "fainted while we" - cont "were walking!" - done - -_UnnamedText_59bb7: ; 9a572 (26:6572) - text "Won't you admire" - line "my PIKACHU's" - cont "adorable tail?" - done - -_UnnamedText_59bbc: ; 9a59e (26:659e) - text "Humph! My PIKACHU" - line "is twice as cute" - cont "as that one!" - done - -_UnnamedText_59be4: ; 9a5cf (26:65cf) - text "I just love my" - line "SEEL!" - - para "It squeals when I" - line "hug it!" - done - -_UnnamedText_59be9: ; 9a5ff (26:65ff) - text "Oh dear!" - - para "My SEEL is far" - line "more attractive!" - done - -_UnnamedText_59c00: ; 9a629 (26:6629) - text "PIKACHU: Chu!" - line "Pikachu!" - done - -_UnnamedText_59c17: ; 9a641 (26:6641) - text "SEEL: Kyuoo!" - done - -_UnnamedText_59c65: ; 9a64f (26:664f) - text "I chair the" - line "#MON Fan Club!" - - para "I have collected" - line "over 100 #MON!" - - para "I'm very fussy" - line "when it comes to" - cont "#MON!" - - para "So..." - - para "Did you come" - line "visit to hear" - cont "about my #MON?" - done - -_UnnamedText_59c6a: ; 9a6e0 (26:66e0) - text "Good!" - line "Then listen up!" - - para "My favorite" - line "RAPIDASH..." - - para "It...cute..." - line "lovely...smart..." - cont "plus...amazing..." - cont "you think so?..." - cont "oh yes...it..." - cont "stunning..." - cont "kindly..." - cont "love it!" - - para "Hug it...when..." - cont "sleeping...warm" - cont "and cuddly..." - cont "spectacular..." - cont "ravishing..." - cont "...Oops! Look at" - cont "the time! I kept" - cont "you too long!" - - para "Thanks for hearing" - line "me out! I want" - cont "you to have this!" - prompt - -_ReceivedBikeVoucherText: ; 9a82e (26:682e) - text $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_59c74: ; 9a844 (26:6844) - db $0 - para "Exchange that for" - line "a BICYCLE!" - - para "Don't worry, my" - line "FEAROW will FLY" - cont "me anywhere!" - - para "So, I don't need a" - line "BICYCLE!" - - para "I hope you like" - line "cycling!" - done - -_UnnamedText_59c79: ; 9a8c3 (26:68c3) - text "Oh. Come back" - line "when you want to" - cont "hear my story!" - done - -_UnnamedText_59c7e: ; 9a8f2 (26:68f2) - text "Hello, ", $52, "!" - - para "Did you come see" - line "me about my" - cont "#MON again?" - - para "No? Too bad!" - done - -_UnnamedText_59c83: ; 9a933 (26:6933) - text "Make room for" - line "this!" - done - -_FanClubText6: ; 9a948 (26:6948) - text "Our Chairman is" - line "very vocal about" - cont "#MON." - done - -_FanClubText7: ; 9a970 (26:6970) - text "Let's all listen" - line "politely to other" - cont "trainers!" - done - -_FanClubText8: ; 9a99d (26:699d) - text "If someone brags," - line "brag right back!" - done - -_VermilionMartText2: ; 9a9c1 (26:69c1) - text "There are evil" - line "people who will" - cont "use #MON for" - cont "criminal acts." - - para "TEAM ROCKET" - line "traffics in rare" - cont "#MON." - - para "They also abandon" - line "#MON that they" - cont "consider not to" - cont "be popular or" - cont "useful." - done - -_VermilionMartText3: ; 9aa67 (26:6a67) - text "I think #MON" - line "can be good or" - cont "evil. It depends" - cont "on the trainer." - done - -_UnnamedText_5cb6d: ; 9aaa5 (26:6aa5) - text "Hey, kid! What do" - line "you think you're" - cont "doing here?" - - para "You won't live" - line "long in combat!" - cont "That's for sure!" - - para "I tell you kid," - line "electric #MON" - cont "saved me during" - cont "the war!" - - para "They zapped my" - line "enemies into" - cont "paralysis!" - - para "The same as I'll" - line "do to you!" - done SECTION "bank27",ROMX,BANK[$27] -_UnnamedText_5cb72: ; 9c000 (27:4000) - text "A little word of" - line "advice, kid!" +INCLUDE "text/maps/vermilion_gym_2.asm" +INCLUDE "text/maps/vermilion_house.asm" +INCLUDE "text/maps/vermilion_dock.asm" +INCLUDE "text/maps/vermilion_fishing_house.asm" +INCLUDE "text/maps/celadon_dept_store_1f.asm" +INCLUDE "text/maps/celadon_dept_store_2f.asm" +INCLUDE "text/maps/celadon_dept_store_3f.asm" +INCLUDE "text/maps/celadon_dept_store_4f.asm" +INCLUDE "text/maps/celadon_dept_store_roof.asm" +INCLUDE "text/maps/celadon_mansion_1f.asm" +INCLUDE "text/maps/celadon_mansion_2f.asm" +INCLUDE "text/maps/celadon_mansion_3f.asm" +INCLUDE "text/maps/celadon_mansion_4f_outside.asm" +INCLUDE "text/maps/celadon_mansion_4f_inside.asm" +INCLUDE "text/maps/celadon_pokecenter.asm" +INCLUDE "text/maps/celadon_gym.asm" +INCLUDE "text/maps/celadon_game_corner.asm" +INCLUDE "text/maps/celadon_dept_store_5f.asm" +INCLUDE "text/maps/celadon_prize_room.asm" +INCLUDE "text/maps/celadon_diner.asm" +INCLUDE "text/maps/celadon_house.asm" +INCLUDE "text/maps/celadon_hotel.asm" +INCLUDE "text/maps/fuchsia_mart.asm" +INCLUDE "text/maps/fuchsia_house.asm" +INCLUDE "text/maps/fuchsia_pokecenter.asm" +INCLUDE "text/maps/wardens_house.asm" +INCLUDE "text/maps/safari_zone_entrance.asm" +INCLUDE "text/maps/fuchsia_gym_1.asm" - para "Electricity is" - line "sure powerful!" - - para "But, it's useless" - line "against ground-" - cont "type #MON!" - done - -_UnnamedText_5cb77: ; 9c069 (27:4069) - text "The THUNDERBADGE" - line "cranks up your" - cont "#MON's SPEED!" - - para "It also lets your" - line "#MON FLY any" - cont "time, kid!" - - para "You're special," - line "kid! Take this!" - done - -_ReceivedTM24Text: ; 9c0e0 (27:40e0) - text $52, " received " - line "@" - TX_RAM $cf4b - text "!@@" - -_TM24ExplanationText: ; 9c0f5 (27:40f5) - db $0 - para "TM24 contains" - line "THUNDERBOLT!" - - para "Teach it to an" - line "electric #MON!" - done - -_TM24NoRoomText: ; 9c130 (27:4130) - text "Yo kid, make room" - line "in your pack!" - done - -_ReceivedThunderbadgeText: ; 9c151 (27:4151) - text "Whoa!" - - para "You're the real" - line "deal, kid!" - - para "Fine then, take" - line "the THUNDERBADGE!" - prompt - -_VermilionGymBattleText1: ; 9c194 (27:4194) - text "When I was in the" - line "Army, LT.SURGE" - cont "was my strict CO!" - done - -_VermilionGymEndBattleText1: ; 9c1c8 (27:41c8) - text "Stop!" - line "You're very good!" - prompt - -_VermilionGymAfterBattleText1: ; 9c1e0 (27:41e0) - text "The door won't" - line "open?" - - para "LT.SURGE always" - line "was cautious!" - done - -_VermilionGymBattleText2: ; 9c213 (27:4213) - text "I'm a lightweight," - line "but I'm good with" - cont "electricity!" - done - -_VermilionGymEndBattleText2: ; 9c244 (27:4244) - text "Fried!" - prompt - -_VermilionGymAfterBattleText2: ; 9c24c (27:424c) - text "OK, I'll talk!" - - para "LT.SURGE said he" - line "hid door switches" - cont "inside something!" - done - -_VermilionGymBattleText3: ; 9c290 (27:4290) - text "This is no place" - line "for kids!" - done - -_VermilionGymEndBattleText3: ; 9c2ac (27:42ac) - text "Wow!" - line "Surprised me!" - prompt - -_VermilionGymAfterBattleText3: ; 9c2c0 (27:42c0) - text "LT.SURGE set up" - line "double locks!" - cont "Here's a hint!" - - para "When you open the" - line "1st lock, the 2nd" - cont "lock is right" - cont "next to it!" - done - -_UnnamedText_5cbf4: ; 9c32b (27:432b) - text "Yo! Champ in" - line "making!" - - para "LT.SURGE has a" - line "nickname. People" - cont "refer to him as" - cont "the Lightning" - cont "American!" - - para "He's an expert on" - line "electric #MON!" - - para "Birds and water" - line "#MON are at" - cont "risk! Beware of" - cont "paralysis too!" - - para "LT.SURGE is very" - line "cautious!" - - para "You'll have to" - line "break a code to" - cont "get to him!" - done - -_UnnamedText_5cbf9: ; 9c429 (27:4429) - text "Whew! That match" - line "was electric!" - done - -_VermilionHouse1Text1: ; 9c449 (27:4449) - text "I'm getting my" - line "PIDGEY to fly a" - cont "letter to SAFFRON" - cont "in the north!" - done - -_VermilionHouse1Text2: ; 9c488 (27:4488) - text "PIDGEY: Kurukkoo!@@" - -_VermilionHouse1Text3: ; 9c49c (27:449c) - text "Dear PIPPI, I hope" - line "to see you soon." - - para "I heard SAFFRON" - line "has problems with" - cont "TEAM ROCKET." - - para "VERMILION appears" - line "to be safe." - done - -_VermilionDockText1: ; 9c50e (27:450e) - db $0, $57 - -_UnnamedText_560b1: ; 9c510 (27:4510) - text "I'm the FISHING" - line "GURU!" - - para "I simply Looove" - line "fishing!" - - para "Do you like to" - line "fish?" - done - -_UnnamedText_560b6: ; 9c554 (27:4554) - text "Grand! I like" - line "your style!" - - para "Take this and" - line "fish, young one!" - - para $52, " received" - line "an @" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_560bb: ; 9c5a4 (27:45a4) - db $0 - para "Fishing is a way" - line "of life!" - - para "From the seas to" - line "rivers, go out" - cont "and land the big" - cont "one, young one!" - done - -_UnnamedText_560c0: ; 9c601 (27:4601) - text "Oh... That's so" - line "disappointing..." - done - -_UnnamedText_560c5: ; 9c622 (27:4622) - text "Hello there," - line $52, "!" - - para "How are the fish" - line "biting?" - done - -_UnnamedText_560ca: ; 9c64c (27:464c) - text "Oh no!" - - para "You have no room" - line "for my gift!" - done - -_CeladonMart1Text1: ; 9c672 (27:4672) - text "Hello! Welcome to" - line "CELADON DEPT." - cont "STORE." - - para "The board on the" - line "right describes" - cont "the store layout." - done - -_CeladonMart1Text2: ; 9c6cd (27:46cd) - text "1F: SERVICE" - line " COUNTER" - - para "2F: TRAINER'S" - line " MARKET" - - para "3F: TV GAME SHOP" - - para "4F: WISEMAN GIFTS" - - para "5F: DRUG STORE" - - para "ROOFTOP SQUARE:" - line "VENDING MACHINES" - done - -_CeladonMart1Text3: ; 9c752 (27:4752) - text "1F: SERVICE" - line " COUNTER" - done - -_CeladonMart2Text3: ; 9c76b (27:476b) - text "SUPER REPEL keeps" - line "weak #MON at" - cont "bay..." - - para "Hmm, it's a more" - line "powerful REPEL!" - done - -_CeladonMart2Text4: ; 9c7b2 (27:47b2) - text "For long outings," - line "you should buy" - cont "REVIVE." - done - -_CeladonMart2Text5: ; 9c7dc (27:47dc) - text "Top Grade Items" - line "for Trainers!" - - para "2F: TRAINER'S" - line " MARKET" - done - -_TM18PreReceiveText: ; 9c814 (27:4814) - text "Oh, hi! I finally" - line "finished #MON!" - - para "Not done yet?" - line "This might be" - cont "useful!" - prompt - -_ReceivedTM18Text: ; 9c85a (27:485a) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM18ExplanationText: ; 9c86e (27:486e) - text "TM18 is COUNTER!" - line "Not like the one" - cont "I'm leaning on," - cont "mind you!" - done - -_TM18NoRoomText: ; 9c8aa (27:48aa) - text "Your pack is full" - line "of items!" - done - -_CeladonMart3Text2: ; 9c8c7 (27:48c7) - text "Captured #MON" - line "are registered" - cont "with an ID No." - cont "and OT, the name" - cont "of the Original" - cont "Trainer that" - cont "caught it!" - done - -_CeladonMart3Text3: ; 9c92d (27:492d) - text "All right!" - - para "My buddy's going" - line "to trade me his" - cont "KANGASKHAN for my" - cont "GRAVELER!" - done - -_CeladonMart3Text4: ; 9c975 (27:4975) - text "Come on GRAVELER!" - - para "I love GRAVELER!" - line "I collect them!" - - para "Huh?" - - para "GRAVELER turned" - line "into a different" - cont "#MON!" - done - -_CeladonMart3Text5: ; 9c9d5 (27:49d5) - text "You can identify" - line "#MON you got" - cont "in trades by" - cont "their ID Numbers!" - done - -_CeladonMart3Text6: ; 9ca13 (27:4a13) - text "It's an SNES!" - done - -_CeladonMart3Text7: ; 9ca21 (27:4a21) - text "An RPG! There's" - line "no time for that!" - done - -_CeladonMart3Text9: ; 9ca43 (27:4a43) - text "A sports game!" - line "Dad'll like that!" - done - -_CeladonMart3Text11: ; 9ca64 (27:4a64) - text "A puzzle game!" - line "Looks addictive!" - done - -_CeladonMart3Text13: ; 9ca85 (27:4a85) - text "A fighting game!" - line "Looks tough!" - done - -_CeladonMart3Text14: ; 9caa4 (27:4aa4) - text "3F: TV GAME SHOP" - done - -_CeladonMart3Text15: ; 9cab6 (27:4ab6) - text "Red and Blue!" - line "Both are #MON!" - done - -_CeladonMart4Text2: ; 9cad4 (27:4ad4) - text "I'm getting a" - line "# DOLL for my" - cont "girl friend!" - done - -_CeladonMart4Text3: ; 9cafd (27:4afd) - text "I heard something" - line "useful." - - para "You can run from" - line "wild #MON by" - cont "distracting them" - cont "with a # DOLL!" - done - -_CeladonMart4Text4: ; 9cb56 (27:4b56) - text "Express yourself" - line "with gifts!" - - para "4F: WISEMAN GIFTS" - - para "Evolution Special!" - line "Element STONEs on" - cont "sale now!" - done - -_UnnamedText_484ee: ; 9cbb5 (27:4bb5) - text "Give her which" - line "drink?" - done - -_UnnamedText_484f3: ; 9cbcc (27:4bcc) - text "Yay!" - - para "FRESH WATER!" - - para "Thank you!" - - para "You can have this" - line "from me!@@" - -_UnnamedText_484f9: ; 9cc06 (27:4c06) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_484fe: ; 9cc1a (27:4c1a) - db $0 - para "@" - TX_RAM $cf4b - text " contains" - line "ICE BEAM!" - - para "It can freeze the" - line "target sometimes!@@" - -_UnnamedText_48504: ; 9cc5a (27:4c5a) - text "Yay!" - - para "SODA POP!" - - para "Thank you!" - - para "You can have this" - line "from me!@@" - -_UnnamedText_4850a: ; 9cc91 (27:4c91) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_4850f: ; 9cca5 (27:4ca5) - db $0 - para "@" - TX_RAM $cf4b - text " contains" - line "ROCK SLIDE!" - - para "It can spook the" - line "target sometimes!@@" - -_UnnamedText_48515: ; 9cce6 (27:4ce6) - text "Yay!" - - para "LEMONADE!" - - para "Thank you!" - - para "You can have this" - line "from me!@@" - -_ReceivedTM49Text: ; 9cd1d (27:4d1d) - text $52, " received" - line "TM49!@@" - -_UnnamedText_48520: ; 9cd30 (27:4d30) - db $0 - para "TM49 contains" - line "TRI ATTACK!@@" - -_UnnamedText_48526: ; 9cd4d (27:4d4d) - text "You don't have" - line "space for this!@@" - -_UnnamedText_4852c: ; 9cd6d (27:4d6d) - text "No thank you!" - line "I'm not thirsty" - cont "after all!@@" - -_CeladonMartRoofText1: ; 9cd97 (27:4d97) - text "My sister is a" - line "trainer, believe" - cont "it or not." - - para "But, she's so" - line "immature, she" - cont "drives me nuts!" - done - -_UnnamedText_48598: ; 9cdee (27:4dee) - text "I'm thirsty!" - line "I want something" - cont "to drink!" - done - -_CeladonMartRoofText4: ; 9ce16 (27:4e16) - text "I'm thirsty!" - line "I want something" - cont "to drink!" - - para "Give her a drink?" - done - -_CeladonMartRoofText6: ; 9ce50 (27:4e50) - text "ROOFTOP SQUARE:" - line "VENDING MACHINES" - done - -_VendingMachineText1: ; 9ce72 (27:4e72) - text "A vending machine!" - line "Here's the menu!" - prompt - -_VendingMachineText4: ; 9ce96 (27:4e96) - text "Oops, not enough" - line "money!" - done - -_VendingMachineText5: ; 9ceaf (27:4eaf) - TX_RAM $cf4b - db $0 - line "popped out!" - done - -_VendingMachineText6: ; 9cec0 (27:4ec0) - text "There's no more" - line "room for stuff!" - done - -_VendingMachineText7: ; 9cee0 (27:4ee0) - text "Not thirsty!" - done - -_CeladonMansion1Text1: ; 9ceee (27:4eee) - text "MEOWTH: Meow!@@" - -_CeladonMansion1Text2: ; 9cefe (27:4efe) - text "My dear #MON" - line "keep me company." - - para "MEOWTH even brings" - line "money home!" - done - -_CeladonMansion1Text3: ; 9cf3c (27:4f3c) - text "CLEFAIRY: Pi" - line "pippippi!@@" - -_CeladonMansion1Text4: ; 9cf55 (27:4f55) - text "NIDORAN: Kya" - line "kyaoo!@@" - -_CeladonMansion1Text5: ; 9cf6b (27:4f6b) - text "CELADON MANSION" - line "Manager's Suite" - done - -_CeladonMansion2Text1: ; 9cf8b (27:4f8b) - text "GAME FREAK" - line "Meeting Room" - done - -_ProgrammerText: ; 9cfa4 (27:4fa4) - text "Me? I'm the" - line "programmer!" - done - -_GraphicArtistText: ; 9cfbc (27:4fbc) - text "I'm the graphic" - line "artist!" - cont "I drew you!" - done - -_WriterText: ; 9cfe0 (27:4fe0) - text "I wrote the story!" - line "Isn't ERIKA cute?" - - para "I like MISTY a" - line "lot too!" - - para "Oh, and SABRINA," - line "I like her!" - done - -_GameDesignerText: ; 9d03a (27:503a) - text "Is that right?" - - para "I'm the game" - line "designer!" - - para "Filling up your" - line "#DEX is tough," - cont "but don't quit!" - - para "When you finish," - line "come tell me!" - done - -_CompletedDexText: ; 9d0ad (27:50ad) - text "Wow! Excellent!" - line "You completed" - cont "your #DEX!" - cont "Congratulations!" - cont "...@@" - -_CeladonMansion3Text5: ; 9d0ed (27:50ed) - text "It's the game" - line "program! Messing" - cont "with it could bug" - cont "out the game!" - done - -_CeladonMansion3Text6: ; 9d12c (27:512c) - text "Someone's playing" - line "a game instead of" - cont "working!" - done - -_CeladonMansion3Text7: ; 9d159 (27:5159) - text "It's the script!" - line "Better not look" - cont "at the ending!" - done - -_CeladonMansion3Text8: ; 9d189 (27:5189) - text "GAME FREAK" - line "Development Room" - done - -_CeladonMansion4Text1: ; 9d1a6 (27:51a6) - text "I KNOW EVERYTHING!" - done - -_CeladonMansion5Text1: ; 9d1ba (27:51ba) - text "I know everything" - line "about the world" - cont "of #MON in" - cont "your GAME BOY!" - - para "Get together with" - line "your friends and" - cont "trade #MON!" - done - -_CeladonPokecenterText2: ; 9d226 (27:5226) - text "# FLUTE awakens" - line "#MON with a" - cont "sound that only" - cont "they can hear!" - done - -_CeladonPokecenterText3: ; 9d262 (27:5262) - text "I rode uphill on" - line "CYCLING ROAD from" - cont "FUCHSIA!" - done - -_UnnamedText_48a5e: ; 9d28f (27:528f) - text "Hello. Lovely" - line "weather isn't it?" - cont "It's so pleasant." - - para "...Oh dear..." - line "I must have dozed" - cont "off. Welcome." - - para "My name is ERIKA." - line "I am the LEADER" - cont "of CELADON GYM." - - para "I teach the art of" - line "flower arranging." - cont "My #MON are of" - cont "the grass-type." - - para "Oh, I'm sorry, I" - line "had no idea that" - cont "you wished to" - cont "challenge me." - - para "Very well, but I" - line "shall not lose." - done - -_UnnamedText_48a63: ; 9d3c2 (27:53c2) - text "Oh!" - line "I concede defeat." - - para "You are remarkably" - line "strong." - - para "I must confer you" - line "the RAINBOWBADGE." - prompt - -_UnnamedText_48a68: ; 9d418 (27:5418) - text "You are cataloging" - line "#MON? I must" - cont "say I'm impressed." - - para "I would never" - line "collect #MON" - cont "if they were" - cont "unattractive." - done - -_UnnamedText_48a6d: ; 9d481 (27:5481) - text "The RAINBOWBADGE" - line "will make #MON" - cont "up to L50 obey." - - para "It also allows" - line "#MON to use" - cont "STRENGTH in and" - cont "out of battle." - - para "Please also take" - line "this with you." - done - -_ReceivedTM21Text: ; 9d50c (27:550c) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM21ExplanationText: ; 9d520 (27:5520) - db $0 - para "TM21 contains" - line "MEGA DRAIN." - - para "Half the damage" - line "it inflicts is" - cont "drained to heal" - cont "your #MON!" - done - -_TM21NoRoomText: ; 9d576 (27:5576) - text "You should make" - line "room for this." - done - -_CeladonGymBattleText2: ; 9d596 (27:5596) - text "Hey!" - - para "You are not" - line "allowed in here!" - done - -_CeladonGymEndBattleText2: ; 9d5b9 (27:55b9) - text "You're" - line "too rough!" - prompt - -_CeladonGymAfterBattleText2: ; 9d5cb (27:55cb) - text "Bleaah!" - line "I hope ERIKA" - cont "wipes you out!" - done - -_CeladonGymBattleText3: ; 9d5f0 (27:55f0) - text "I was getting" - line "bored." - done - -_CeladonGymEndBattleText3: ; 9d606 (27:5606) - text "My" - line "makeup!" - prompt - -_CeladonGymAfterBattleText3: ; 9d612 (27:5612) - text "Grass-type #MON" - line "are tough against" - cont "the water-type!" - - para "They also have an" - line "edge on rock and" - cont "ground #MON!" - done - -_CeladonGymBattleText4: ; 9d675 (27:5675) - text "Aren't you the" - line "peeping Tom?" - done - -_CeladonGymEndBattleText4: ; 9d691 (27:5691) - text "I'm" - line "in shock!" - prompt - -_CeladonGymAfterBattleText4: ; 9d69f (27:569f) - text "Oh, you weren't" - line "peeping? We get a" - cont "lot of gawkers!" - done - -_CeladonGymBattleText5: ; 9d6d1 (27:56d1) - text "Look at my grass" - line "#MON!" - - para "They're so easy" - line "to raise!" - done - -_CeladonGymEndBattleText5: ; 9d702 (27:5702) - text "No!" - prompt - -_CeladonGymAfterBattleText5: ; 9d707 (27:5707) - text "We only use grass-" - line "type #MON at" - cont "our GYM!" - - para "We also use them" - line "for making flower" - cont "arrangements!" - done - -_CeladonGymBattleText6: ; 9d762 (27:5762) - text "Don't bring any" - line "bugs or fire" - cont "#MON in here!" - done - -_CeladonGymEndBattleText6: ; 9d78d (27:578d) - text "Oh!" - line "You!" - prompt - -_CeladonGymAfterBattleText6: ; 9d797 (27:5797) - text "Our LEADER, ERIKA," - line "might be quiet," - cont "but she's also" - cont "very skilled!" - done - -_CeladonGymBattleText7: ; 9d7d7 (27:57d7) - text "Pleased to meet" - line "you. My hobby is" - cont "#MON training." - done - -_CeladonGymEndBattleText7: ; 9d808 (27:5808) - text "Oh!" - line "Splendid!" - prompt - -_CeladonGymAfterBattleText7: ; 9d817 (27:5817) - text "I have a blind" - line "date coming up." - cont "I have to learn" - cont "to be polite." - done - -_CeladonGymBattleText8: ; 9d855 (27:5855) - text "Welcome to" - line "CELADON GYM!" - - para "You better not" - line "underestimate" - cont "girl power!" - done - -_CeladonGymEndBattleText8: ; 9d897 (27:5897) - text "Oh!" - line "Beaten!" - prompt - -_CeladonGymAfterBattleText8: ; 9d8a4 (27:58a4) - text "I didn't bring my" - line "best #MON!" - - para "Wait 'til next" - line "time!" - done - -_CeladonGameCornerText1: ; 9d8d5 (27:58d5) - text "Welcome!" - - para "You can exchange" - line "your coins for" - cont "fabulous prizes" - cont "next door." - done - -_UnnamedText_48d22: ; 9d91a (27:591a) - text "Welcome to ROCKET" - line "GAME CORNER!" - - para "Do you need some" - line "game coins?" - - para "It's ¥1000 for 50" - line "coins. Would you" - cont "like some?" - done - -_UnnamedText_48d27: ; 9d984 (27:5984) - text "Thanks! Here are" - line "your 50 coins!" - done - -_UnnamedText_48d2c: ; 9d9a5 (27:59a5) - text "No? Please come" - line "play sometime!" - done - -_UnnamedText_48d31: ; 9d9c5 (27:59c5) - text "You can't afford" - line "the coins!" - done - -_UnnamedText_48d36: ; 9d9e1 (27:59e1) - text "Oops! Your COIN" - line "CASE is full." - done - -_UnnamedText_48d3b: ; 9da00 (27:5a00) - text "You don't have a" - line "COIN CASE!" - done - -_CeladonGameCornerText3: ; 9da1c (27:5a1c) - text "Keep this quiet." - - para "It's rumored that" - line "this place is run" - cont "by TEAM ROCKET." - done - -_CeladonGameCornerText4: ; 9da61 (27:5a61) - text "I think these" - line "machines have" - cont "different odds." - done - -_UnnamedText_48d9c: ; 9da8e (27:5a8e) - text "Kid, do you want" - line "to play?" - prompt - -_Received10CoinsText: ; 9daa9 (27:5aa9) - text $52, " received" - line "10 coins!@@" - -_UnnamedText_48da7: ; 9dac0 (27:5ac0) - text "You don't need my" - line "coins!" - done - -_UnnamedText_48dac: ; 9dad9 (27:5ad9) - text "Wins seem to come" - line "and go." - done - -_CeladonGameCornerText6: ; 9daf4 (27:5af4) - text "I'm having a" - line "wonderful time!" - done - -_UnnamedText_48dca: ; 9db11 (27:5b11) - text "Hey!" - - para "You have better" - line "things to do," - cont "champ in making!" - - para "CELADON GYM's" - line "LEADER is ERIKA!" - cont "She uses grass-" - cont "type #MON!" - - para "She might appear" - line "docile, but don't" - cont "be fooled!" - done - -_UnnamedText_48dcf: ; 9dbac (27:5bac) - text "They offer rare" - line "#MON that can" - cont "be exchanged for" - cont "your coins." - - para "But, I just can't" - line "seem to win!" - done - -_CeladonGameCornerText8: ; 9dc06 (27:5c06) - text "Games are scary!" - line "It's so easy to" - cont "get hooked!" - done - -_UnnamedText_48e26: ; 9dc33 (27:5c33) - text "What's up? Want" - line "some coins?" - prompt - -_Received20CoinsText: ; 9dc4f (27:5c4f) - text $52, " received" - line "20 coins!@@" - -_UnnamedText_48e31: ; 9dc66 (27:5c66) - text "You have lots of" - line "coins!" - done - -_UnnamedText_48e36: ; 9dc7f (27:5c7f) - text "Darn! I need more" - line "coins for the" - cont "#MON I want!" - done - -_UnnamedText_48e88: ; 9dcad (27:5cad) - text "Hey, what? You're" - line "throwing me off!" - cont "Here are some" - cont "coins, shoo!" - prompt - -_UnnamedText_48e8d: ; 9dceb (27:5ceb) - text $52, " received" - line "20 coins!@@" - -_UnnamedText_48e93: ; 9dd02 (27:5d02) - text "You've got your" - line "own coins!" - done - -_UnnamedText_48e98: ; 9dd1d (27:5d1d) - text "The trick is to" - line "watch the reels" - cont "closely!" - done - -_UnnamedText_48ece: ; 9dd47 (27:5d47) - text "I'm guarding this" - line "poster!" - cont "Go away, or else!" - done - -_UnnamedText_48ed3: ; 9dd73 (27:5d73) - text "Dang!" - prompt - -_UnnamedText_48ed8: ; 9dd7a (27:5d7a) - text "Our hideout might" - line "be discovered! I" - cont "better tell BOSS!" - done - -_UnnamedText_48f09: ; 9ddb0 (27:5db0) - text "Hey!" - - para "A switch behind" - line "the poster!?" - cont "Let's push it!@@" - -_UnnamedText_48f19: ; 9dde2 (27:5de2) - text "Oops! Forgot the" - line "COIN CASE!" - done - -_CeladonMart5Text1: ; 9ddff (27:5dff) - text "#MON ability" - line "enhancers can be" - cont "bought only here." - - para "Use CALCIUM to" - line "increase SPECIAL" - cont "abilities." - - para "Use CARBOS to" - line "increase SPEED." - done - -_CeladonMart5Text2: ; 9de79 (27:5e79) - text "I'm here for" - line "#MON ability" - cont "enhancers." - - para "PROTEIN increases" - line "ATTACK power." - - para "IRON increases" - line "DEFENSE!" - done - -_CeladonMart5Text5: ; 9ded6 (27:5ed6) - text "5F: DRUG STORE" - done - -_CeladonPrizeRoomText1: ; 9dee6 (27:5ee6) - text "I sure do fancy" - line "that PORYGON!" - - para "But, it's hard to" - line "win at slots!" - done - -_CeladonPrizeRoomText2: ; 9df24 (27:5f24) - text "I had a major" - line "haul today!" - done - -_CeladonDinerText1: ; 9df3f (27:5f3f) - text "Hi!" - - para "We're taking a" - line "break now." - done - -_CeladonDinerText2: ; 9df5d (27:5f5d) - text "My #MON are" - line "weak, so I often" - cont "have to go to the" - cont "DRUG STORE." - done - -_CeladonDinerText3: ; 9df99 (27:5f99) - text "Psst! There's a" - line "basement under" - cont "the GAME CORNER." - done - -_CeladonDinerText4: ; 9dfc9 (27:5fc9) - text "Munch..." - - para "The man at that" - line "table lost it all" - cont "at the slots." - done - -_UnnamedText_491a7: ; 9e003 (27:6003) - text "Go ahead! Laugh!" - - para "I'm flat out" - line "busted!" - - para "No more slots for" - line "me! I'm going" - cont "straight!" - - para "Here! I won't be" - line "needing this any-" - cont "more!" - prompt - -_ReceivedCoinCaseText: ; 9e07a (27:607a) - text $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_CoinCaseNoRoomText: ; 9e090 (27:6090) - text "Make room for" - line "this!" - done - -_UnnamedText_491b7: ; 9e0a5 (27:60a5) - text "I always thought" - line "I was going to" - cont "win it back..." - done - -_CeladonHouseText1: ; 9e0d5 (27:60d5) - text "Hehehe! The slots" - line "just reel in the" - cont "dough, big time!" - done - -_CeladonHouseText2: ; 9e10a (27:610a) - text "CHIEF!" - - para "We just shipped" - line "2000 #MON as" - cont "slot prizes!" - done - -_CeladonHouseText3: ; 9e13c (27:613c) - text "Don't touch the" - line "poster at the" - cont "GAME CORNER!" - - para "There's no secret" - line "switch behind it!" - done - -_CeladonHotelText1: ; 9e18a (27:618a) - text "#MON? No, this" - line "is a hotel for" - cont "people." - - para "We're full up." - done - -_CeladonHotelText2: ; 9e1bf (27:61bf) - text "I'm on vacation" - line "with my brother" - cont "and boy friend." - - para "CELADON is such a" - line "pretty city!" - done - -_CeladonHotelText3: ; 9e20e (27:620e) - text "Why did she bring" - line "her brother?" - done - -_FuchsiaMartText2: ; 9e22e (27:622e) - text "Do you have a" - line "SAFARI ZONE flag?" - - para "What about cards" - line "or calendars?" - done - -_FuchsiaMartText3: ; 9e26e (27:626e) - text "Did you try X" - line "SPEED? It speeds" - cont "up a #MON in" - cont "battle!" - done - -_FuchsiaHouse1Text1: ; 9e2a3 (27:62a3) - text "SAFARI ZONE's" - line "WARDEN is old," - cont "but still active!" - - para "All his teeth are" - line "false, though." - done - -_FuchsiaHouse1Text2: ; 9e2f3 (27:62f3) - text "Hmm? You've met" - line "BILL?" - - para "He's my grandson!" - - para "He always liked" - line "collecting things" - cont "even as a child!" - done - -_FuchsiaHouse1Text3: ; 9e34d (27:634d) - text "BILL files his" - line "own #MON data" - cont "on his PC!" - - para "Did he show you?" - done - -_FuchsiaPokecenterText1: ; 9e387 (27:6387) - text "You can't win" - line "with just one" - cont "strong #MON." - - para "It's tough, but" - line "you have to raise" - cont "them evenly." - done - -_FuchsiaPokecenterText3: ; 9e3de (27:63de) - text "There's a narrow" - line "trail west of" - cont "VIRIDIAN CITY." - - para "It goes to #MON" - line "LEAGUE HQ." - cont "The HQ governs" - cont "all trainers." - done - -_WardenGibberishText1: ; 9e444 (27:6444) - text "WARDEN: Hif fuff" - line "hefifoo!" - - para "Ha lof ha feef ee" - line "hafahi ho. Heff" - cont "hee fwee!" - done - -_WardenGibberishText2: ; 9e48b (27:648b) - text "Ah howhee ho hoo!" - line "Eef ee hafahi ho!" - done - -_WardenGibberishText3: ; 9e4b0 (27:64b0) - text "Ha? He ohay heh" - line "ha hoo ee haheh!" - done - -_WardenTeethText1: ; 9e4d2 (27:64d2) - text $52, " gave the" - line "GOLD TEETH to the" - cont "WARDEN!@@" - -_WardenTeethText2: ; 9e4f9 (27:64f9) - db $0 - para "The WARDEN popped" - line "in his teeth!" - prompt - -_WardenThankYouText: ; 9e51b (27:651b) - text "WARDEN: Thanks," - line "kid! No one could" - cont "understand a word" - cont "that I said." - - para "I couldn't work" - line "that way." - cont "Let me give you" - cont "something for" - cont "your trouble." - prompt - -_ReceivedHM04Text: ; 9e5a2 (27:65a2) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_HM04ExplanationText: ; 9e5b6 (27:65b6) - text "WARDEN: HM04" - line "teaches STRENGTH!" - - para "It lets #MON" - line "move boulders" - cont "when you're out-" - cont "side of battle." - - para "Oh yes, did you" - line "find SECRET HOUSE" - cont "in SAFARI ZONE?" - - para "If you do, you" - line "win an HM!" - - para "I hear it's the" - line "rare SURF HM." - done - -_HM04NoRoomText: ; 9e67a (27:667a) - text "Your pack is" - line "stuffed full!" - done - -_UnnamedText_75176: ; 9e696 (27:6696) - text "#MON photos" - line "and fossils." - done - -_UnnamedText_7517b: ; 9e6b0 (27:66b0) - text "Old #MON" - line "merchandise." - done - -_SafariZoneEntranceText1: ; 9e6c7 (27:66c7) - text "Welcome to the" - line "SAFARI ZONE!" - done - -UnnamedText_9e6e4: ; 9e6e4 (27:66e4) - text "For just ¥500," - line "you can catch all" - cont "the #MON you" - cont "want in the park!" - - para "Would you like to" - line "join the hunt?@@" - -UnnamedText_9e747: ; 9e747 (27:6747) - text "That'll be ¥500" - line "please!" - - para "We only use a" - line "special # BALL" - cont "here." - - para $52, " received" - line "30 SAFARI BALLs!@@" - -_UnnamedText_75360: ; 9e79f (27:679f) - db $0 - para "We'll call you on" - line "the PA when you" - cont "run out of time" - cont "or SAFARI BALLs!" - done - -_UnnamedText_75365: ; 9e7e3 (27:67e3) - text "OK! Please come" - line "again!" - done - -_UnnamedText_7536a: ; 9e7fb (27:67fb) - text "Oops! Not enough" - line "money!" - done - -UnnamedText_9e814: ; 9e814 (27:6814) - text "Leaving early?@@" - -_UnnamedText_753bb: ; 9e825 (27:6825) - text "Please return any" - line "SAFARI BALLs you" - cont "have left." - done - -_UnnamedText_753c0: ; 9e854 (27:6854) - text "Good Luck!" - done - -_UnnamedText_753c5: ; 9e860 (27:6860) - text "Did you get a" - line "good haul?" - cont "Come again!" - done - -_UnnamedText_753e6: ; 9e886 (27:6886) - text "Hi! Is it your" - line "first time here?" - done - -_UnnamedText_753eb: ; 9e8a7 (27:68a7) - text "SAFARI ZONE has 4" - line "zones in it." - - para "Each zone has" - line "different kinds" - cont "of #MON. Use" - cont "SAFARI BALLs to" - cont "catch them!" - - para "When you run out" - line "of time or SAFARI" - cont "BALLs, it's game" - cont "over for you!" - - para "Before you go," - line "open an unused" - cont "#MON BOX so" - cont "there's room for" - cont "new #MON!" - done - -_UnnamedText_753f0: ; 9e993 (27:6993) - text "Sorry, you're a" - line "regular here!" - done - -_UnnamedText_75581: ; 9e9b1 (27:69b1) - text "KOGA: Fwahahaha!" - - para "A mere child like" - line "you dares to" - cont "challenge me?" - - para "Very well, I" - line "shall show you" - cont "true terror as a" - cont "ninja master!" - - para "You shall feel" - line "the despair of" - cont "poison and sleep" - cont "techniques!" - done - -_UnnamedText_75586: ; 9ea66 (27:6a66) - text "Humph!" - line "You have proven" - cont "your worth!" - - para "Here! Take the" - line "SOULBADGE!" - prompt SECTION "bank28",ROMX,BANK[$28] -_UnnamedText_7558b: ; a0000 (28:4000) - text "When afflicted by" - line "TOXIC, #MON" - cont "suffer more and" - cont "more as battle" - cont "progresses!" - - para "It will surely" - line "terrorize foes!" - done - -_UnnamedText_75590: ; a0069 (28:4069) - text "Now that you have" - line "the SOULBADGE," - cont "the DEFENSE of" - cont "your #MON" - cont "increases!" - - para "It also lets you" - line "SURF outside of" - cont "battle!" - - para "Ah! Take this" - line "too!" - done - -_ReceivedTM06Text: ; a00eb (28:40eb) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM06ExplanationText: ; a00ff (28:40ff) - db $0 - para "TM06 contains" - line "TOXIC!" - - para "It is a secret" - line "technique over" - cont "400 years old!" - done - -_TM06NoRoomText: ; a0143 (28:4143) - text "Make space for" - line "this, child!" - done - -_FuchsiaGymBattleText1: ; a0160 (28:4160) - text "Strength isn't" - line "the key for" - cont "#MON!" - - para "It's strategy!" - - para "I'll show you how" - line "strategy can beat" - cont "brute strength!" - done - -_FuchsiaGymEndBattleText1: ; a01c2 (28:41c2) - text "What?" - line "Extraordinary!" - prompt - -_FuchsiaGymAfterBattleText1: ; a01d8 (28:41d8) - text "So, you mix brawn" - line "with brains?" - cont "Good strategy!" - done - -_FuchsiaGymBattleText2: ; a0207 (28:4207) - text "I wanted to become" - line "a ninja, so I" - cont "joined this GYM!" - done - -_FuchsiaGymEndBattleText2: ; a023a (28:423a) - text "I'm done" - line "for!" - prompt - -_FuchsiaGymAfterBattleText2: ; a0248 (28:4248) - text "I will keep on" - line "training under" - cont "KOGA, my ninja" - cont "master!" - done - -_FuchsiaGymBattleText3: ; a027e (28:427e) - text "Let's see you" - line "beat my special" - cont "techniques!" - done - -_FuchsiaGymEndBattleText3: ; a02a8 (28:42a8) - text "You" - line "had me fooled!" - prompt - -_FuchsiaGymAfterBattleText3: ; a02bc (28:42bc) - text "I like poison and" - line "sleep techniques," - cont "as they linger" - cont "after battle!" - done - -_FuchsiaGymBattleText4: ; a02fe (28:42fe) - text "Stop right there!" - - para "Our invisible" - line "walls have you" - cont "frustrated?" - done - -_FuchsiaGymEndBattleText4: ; a033a (28:433a) - text "Whoa!" - line "He's got it!" - prompt - -_FuchsiaGymAfterBattleText4: ; a034d (28:434d) - text "You impressed me!" - line "Here's a hint!" - - para "Look very closely" - line "for gaps in the" - cont "invisible walls!" - done - -_FuchsiaGymBattleText5: ; a03a1 (28:43a1) - text "I also study the" - line "way of the ninja" - cont "with master KOGA!" - - para "Ninja have a long" - line "history of using" - cont "animals!" - done - -_FuchsiaGymEndBattleText5: ; a0402 (28:4402) - text "Awoo!" - prompt - -_FuchsiaGymAfterBattleText5: ; a0409 (28:4409) - text "I still have much" - line "to learn!" - done - -_FuchsiaGymBattleText6: ; a0426 (28:4426) - text "Master KOGA comes" - line "from a long line" - cont "of ninjas!" - - para "What did you" - line "descend from?" - done - -_FuchsiaGymEndBattleText6: ; a0470 (28:4470) - text "Dropped" - line "my balls!" - prompt - -_FuchsiaGymAfterBattleText6: ; a0483 (28:4483) - text "Where there is" - line "light, there is" - cont "shadow!" - - para "Light and shadow!" - line "Which do you" - cont "choose?" - done - -_UnnamedText_7564e: ; a04d2 (28:44d2) - text "Yo! Champ in" - line "making!" - - para "FUCHSIA GYM is" - line "riddled with" - cont "invisible walls!" - - para "KOGA might appear" - line "close, but he's" - cont "blocked off!" - - para "You have to find" - line "gaps in the walls" - cont "to reach him!" - done - -_UnnamedText_75653: ; a0574 (28:4574) - text "It's amazing how" - line "ninja can terrify" - cont "even now!" - done - -_FuchsiaMeetingRoomText1: ; a05a1 (28:45a1) - text "We nicknamed the" - line "WARDEN SLOWPOKE." - - para "He and SLOWPOKE" - line "both look vacant!" - done - -_FuchsiaMeetingRoomText2: ; a05e6 (28:45e6) - text "SLOWPOKE is very" - line "knowledgeable" - cont "about #MON!" - - para "He even has some" - line "fossils of rare," - cont "extinct #MON!" - done - -_FuchsiaMeetingRoomText3: ; a0642 (28:4642) - text "SLOWPOKE came in," - line "but I couldn't" - cont "understand him." - - para "I think he's got" - line "a speech problem!" - done - -_UnnamedText_561bd: ; a0695 (28:4695) - text "I'm the FISHING" - line "GURU's older" - cont "brother!" - - para "I simply Looove" - line "fishing!" - - para "Do you like to" - line "fish?" - done - -_UnnamedText_561c2: ; a06e8 (28:46e8) - text "Grand! I like" - line "your style!" - - para "Take this and" - line "fish, young one!" - - para $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_56212: ; a0737 (28:4737) - text "Oh... That's so" - line "disappointing..." - done - -_UnnamedText_56217: ; a0758 (28:4758) - text "Hello there," - line $52, "!" - - para "How are the fish" - line "biting?" - done - -_UnnamedText_5621c: ; a0782 (28:4782) - text "Oh no!" - - para "You have no room" - line "for my gift!" - done - -_Mansion1BattleText2: ; a07a8 (28:47a8) - text "Who are you? There" - line "shouldn't be" - cont "anyone here." - done - -_Mansion1EndBattleText2: ; a07d5 (28:47d5) - text "Ouch!" - prompt - -_Mansion1AfterBattleText2: ; a07dc (28:47dc) - text "A key? I don't" - line "know what you're" - cont "talking about." - done - -_MansionSwitchText: ; a080a (28:480a) - text "A secret switch!" - - para "Press it?" - done - -_MansionSwitchPressedText: ; a0826 (28:4826) - text "Who wouldn't?" - prompt - -_MansionSwitchNotPressedText: ; a0834 (28:4834) - text "Not quite yet!" - done - -_BlaineBattleText: ; a0844 (28:4844) - text "Hah!" - - para "I am BLAINE! I" - line "am the LEADER of" - cont "CINNABAR GYM!" - - para "My fiery #MON" - line "will incinerate" - cont "all challengers!" - - para "Hah! You better" - line "have BURN HEAL!" - done - -_BlaineEndBattleText: ; a08c7 (28:48c7) - text "I have" - line "burnt out!" - - para "You have earned" - line "the VOLCANOBADGE!@@" - -_BlaineFireBlastText: ; a08fd (28:48fd) - text "FIRE BLAST is the" - line "ultimate fire" - cont "technique!" - - para "Don't waste it on" - line "water #MON!" - done - -_BlaineBadgeText: ; a0946 (28:4946) - text "Hah!" - - para "The VOLCANOBADGE" - line "heightens the" - cont "SPECIAL abilities" - cont "of your #MON!" - - para "Here, you can" - line "have this too!" - done - -_ReceivedTM38Text: ; a09a8 (28:49a8) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM38ExplanationText: ; a09bc (28:49bc) - db $0 - para "TM38 contains" - line "FIRE BLAST!" - - para "Teach it to fire-" - line "type #MON!" - - para "CHARMELEON or" - line "PONYTA would be" - cont "good bets!" - done - -_TM38NoRoomText: ; a0a1e (28:4a1e) - text "Make room for my" - line "gift!" - done - -_UnnamedText_7595f: ; a0a36 (28:4a36) - text "Do you know how" - line "hot #MON fire" - cont "breath can get?" - done - -_UnnamedText_75964: ; a0a65 (28:4a65) - text "Yow!" - line "Hot, hot, hot!" - prompt - -_UnnamedText_75969: ; a0a7a (28:4a7a) - text "Fire, or to be" - line "more precise," - cont "combustion..." - - para "Blah, blah, blah," - line "blah..." - done - -_UnnamedText_75994: ; a0ac0 (28:4ac0) - text "I was a thief, but" - line "I became straight" - cont "as a trainer!" - done - -_UnnamedText_75999: ; a0af4 (28:4af4) - text "I" - line "surrender!" - prompt - -_UnnamedText_7599e: ; a0b02 (28:4b02) - text "I can't help" - line "stealing other" - cont "people's #MON!" - done - -_UnnamedText_759c9: ; a0b2c (28:4b2c) - text "You can't win!" - line "I have studied" - cont "#MON totally!" - done - -_UnnamedText_759ce: ; a0b58 (28:4b58) - text "Waah!" - line "My studies!" - prompt - -_UnnamedText_759d3: ; a0b6b (28:4b6b) - text "My theories are" - line "too complicated" - cont "for you!" - done - -_UnnamedText_759fe: ; a0b95 (28:4b95) - text "I just like using" - line "fire #MON!" - done - -_UnnamedText_75a03: ; a0bb3 (28:4bb3) - text "Too hot" - line "to handle!" - prompt - -_UnnamedText_75a08: ; a0bc7 (28:4bc7) - text "I wish there was" - line "a thief #MON!" - cont "I'd use that!" - done - -_UnnamedText_75a33: ; a0bf4 (28:4bf4) - text "I know why BLAINE" - line "became a trainer!" - done - -_UnnamedText_75a38: ; a0c19 (28:4c19) - text "Ow!" - prompt - -_UnnamedText_75a3d: ; a0c1e (28:4c1e) - text "BLAINE was lost" - line "in the mountains" - cont "when a fiery bird" - cont "#MON appeared." - - para "Its light enabled" - line "BLAINE to find" - cont "his way down!" - done - -_UnnamedText_75a68: ; a0c90 (28:4c90) - text "I've been to many" - line "GYMs, but this is" - cont "my favorite!" - done - -_UnnamedText_75a6d: ; a0cc1 (28:4cc1) - text "Yowza!" - line "Too hot!" - prompt - -_UnnamedText_75a72: ; a0cd2 (28:4cd2) - text "Us fire #MON" - line "fans like PONYTA" - cont "and NINETALES!" - done - -_UnnamedText_75a9d: ; a0d00 (28:4d00) - text "Fire is weak" - line "against H2O!" - done - -_UnnamedText_75aa2: ; a0d1b (28:4d1b) - text "Oh!" - line "Snuffed out!" - prompt - -_UnnamedText_75aa7: ; a0d2d (28:4d2d) - text "Water beats fire!" - line "But, fire melts" - cont "ice #MON!" - done - -_UnnamedText_75ac2: ; a0d5a (28:4d5a) - text "Yo! Champ in" - line "making!" - - para "The hot-headed" - line "BLAINE is a fire" - cont "#MON pro!" - - para "Douse his spirits" - line "with water!" - - para "You better take" - line "some BURN HEALs!" - done - -_UnnamedText_75ac7: ; a0dd9 (28:4dd9) - text $52, "! You beat" - line "that fire brand!" - done - -_Lab1Text1: ; a0df7 (28:4df7) - text "We study #MON" - line "extensively here." - - para "People often bring" - line "us rare #MON" - cont "for examination." - done - -_Lab1Text2: ; a0e49 (28:4e49) - text "A photo of the" - line "LAB's founder," - cont "DR.FUJI!" - done - -_Lab1Text3: ; a0e70 (28:4e70) - text "#MON LAB" - line "Meeting Room" - done - -_Lab1Text4: ; a0e87 (28:4e87) - text "#MON LAB" - line "R-and-D Room" - done - -_Lab1Text5: ; a0e9e (28:4e9e) - text "#MON LAB" - line "Testing Room" - done - -_Lab2Text1: ; a0eb5 (28:4eb5) - text "I found this very" - line "strange fossil in" - cont "MT.MOON!" - - para "I think it's a" - line "rare, prehistoric" - cont "#MON!" - done - -_TM35PreReceiveText: ; a0f09 (28:4f09) - text "Tch-tch-tch!" - line "I made a cool TM!" - - para "It can cause all" - line "kinds of fun!" - prompt - -_ReceivedTM35Text: ; a0f48 (28:4f48) - text $52, " received " - line "@" - TX_RAM $cf4b - text "!@@" - -_TM35ExplanationText: ; a0f5d (28:4f5d) - text "Tch-tch-tch!" - line "That's the sound" - cont "of a METRONOME!" - - para "It tweaks your" - line "#MON's brain" - cont "into using moves" - cont "it doesn't know!" - done - -_TM35NoRoomText: ; a0fc7 (28:4fc7) - text "Your pack is" - line "crammed full!" - done - -_Lab3Text2: ; a0fe3 (28:4fe3) - text "EEVEE can evolve" - line "into 1 of 3 kinds" - cont "of #MON." - done - -_Lab3Text3: ; a1010 (28:5010) - text "There's an e-mail" - line "message!" - - para "..." - - para "The 3 legendary" - line "bird #MON are" - cont "ARTICUNO, ZAPDOS" - cont "and MOLTRES." - - para "Their whereabouts" - line "are unknown." - - para "We plan to explore" - line "the cavern close" - cont "to CERULEAN." - - para "From: #MON" - line "RESEARCH TEAM" - - para "..." - done - -_Lab3Text5: ; a10d8 (28:50d8) - text "An amber pipe!" - done - -_UnnamedText_75dc6: ; a10e8 (28:50e8) - text "Hiya!" - - para "I am important" - line "doctor!" - - para "I study here rare" - line "#MON fossils!" - - para "You! Have you a" - line "fossil for me?" - prompt - -_UnnamedText_75dcb: ; a1145 (28:5145) - text "No! Is too bad!" - done - -_UnnamedText_75dd0: ; a1156 (28:5156) - text "I take a little" - line "time!" - - para "You go for walk a" - line "little while!" - done - -_UnnamedText_75dd5: ; a118d (28:518d) - text "Where were you?" - - para "Your fossil is" - line "back to life!" - - para "It was @" - TX_RAM $cf4b - db $0 - line "like I think!" - prompt - -_UnnamedText_610ae: ; a11d6 (28:51d6) - text "Oh! That is" - line "@" - TX_RAM $cd6d - text "!" - - para "It is fossil of" - line "@" - TX_RAM $cf4b - text ", a" - cont "#MON that is" - cont "already extinct!" - - para "My Resurrection" - line "Machine will make" - cont "that #MON live" - cont "again!" - done - -_UnnamedText_610b3: ; a1259 (28:5259) - text "So! You hurry and" - line "give me that!" - - para $52, " handed" - line "over @" - TX_RAM $cd6d - text "!" - prompt - -_UnnamedText_610b8: ; a128f (28:528f) - text "I take a little" - line "time!" - - para "You go for walk a" - line "little while!" - done - -_UnnamedText_610bd: ; a12c6 (28:52c6) - text "Aiyah! You come" - line "again!" - done - -_CinnabarPokecenterText2: ; a12de (28:52de) -_CinnabarPokecenterText1: ; a12de (28:52de) - text "You can cancel" - line "evolution." - - para "When a #MON is" - line "evolving, you can" - cont "stop it and leave" - cont "it the way it is." - done - -_CinnabarPokecenterText3: ; a133e (28:533e) - text "Do you have any" - line "friends?" - - para "#MON you get" - line "in trades grow" - cont "very quickly." - - para "I think it's" - line "worth a try!" - done - -_CinnabarMartText2: ; a139b (28:539b) - text "Don't they have X" - line "ATTACK? It's good" - cont "for battles!" - done - -_CinnabarMartText3: ; a13cb (28:53cb) - text "It never hurts to" - line "have extra items!" - done - -_IndigoPlateauLobbyText1: ; a13f0 (28:53f0) - text "Yo! Champ in" - line "making!" - - para "At #MON LEAGUE," - line "you have to face" - cont "the ELITE FOUR in" - cont "succession." - - para "If you lose, you" - line "have to start all" - cont "over again! This" - cont "is it! Go for it!" - done - -_IndigoPlateauLobbyText3: ; a148b (28:548b) - text "From here on, you" - line "face the ELITE" - cont "FOUR one by one!" - - para "If you win, a" - line "door opens to the" - cont "next trainer!" - cont "Good luck!" - done - -_CopycatsHouseF1Text1: ; a14f7 (28:54f7) - text "My daughter is so" - line "self-centered." - cont "She only has a" - cont "few friends." - done - -_CopycatsHouseF1Text2: ; a1535 (28:5535) - text "My daughter likes" - line "to mimic people." - - para "Her mimicry has" - line "earned her the" - cont "nickname COPYCAT" - cont "around here!" - done - -_CopycatsHouseF1Text3: ; a1596 (28:5596) - text "CHANSEY: Chaan!" - line "Sii!@@" - -_UnnamedText_5ccd4: ; a15ad (28:55ad) - text $52, ": Hi! Do" - line "you like #MON?" - - para $52, ": Uh no, I" - line "just asked you." - - para $52, ": Huh?" - line "You're strange!" - - para "COPYCAT: Hmm?" - line "Quit mimicking?" - - para "But, that's my" - line "favorite hobby!" - prompt - -_TM31PreReceiveText: ; a1636 (28:5636) - text "Oh wow!" - line "A # DOLL!" - - para "For me?" - line "Thank you!" - - para "You can have" - line "this, then!" - prompt - -_ReceivedTM31Text: ; a1675 (28:5675) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM31ExplanationText1: ; a1689 (28:5689) - db $0 - para "TM31 contains my" - line "favorite, MIMIC!" - - para "Use it on a good" - line "#MON!@@" - -_TM31ExplanationText2: ; a16c5 (28:56c5) - text $52, ": Hi!" - line "Thanks for TM31!" - - para $52, ": Pardon?" - - para $52, ": Is it" - line "that fun to mimic" - cont "my every move?" - - para "COPYCAT: You bet!" - line "It's a scream!" - done - -_TM31NoRoomText: ; a1733 (28:5733) - text "Don't you want" - line "this?@@" - -_CopycatsHouseF2Text2: ; a1749 (28:5749) - text "DODUO: Giiih!" - - para "MIRROR MIRROR ON" - line "THE WALL, WHO IS" - cont "THE FAIREST ONE" - cont "OF ALL?" - done - -_CopycatsHouseF2Text3: ; a1792 (28:5792) - text "This is a rare" - line "#MON! Huh?" - cont "It's only a doll!" - done - -_CopycatsHouseF2Text6: ; a17be (28:57be) - text "A game with MARIO" - line "wearing a bucket" - cont "on his head!" - done - -_UnnamedText_5cd17: ; a17ef (28:57ef) - text "..." - - para "My Secrets!" - - para "Skill: Mimicry!" - line "Hobby: Collecting" - cont "dolls!" - cont "Favorite #MON:" - cont "CLEFAIRY!" - done - -_UnnamedText_5cd1c: ; a1842 (28:5842) - text "Huh? Can't see!" - done - -_UnnamedText_5ce8e: ; a1852 (28:5852) - text "Grunt!" - - para "I am the KARATE" - line "MASTER! I am the" - cont "LEADER here!" - - para "You wish to" - line "challenge us?" - cont "Expect no mercy!" - - para "Fwaaa!" - done - -_UnnamedText_5ce93: ; a18ba (28:58ba) - text "Hwa!" - line "Arrgh! Beaten!" - prompt - -_UnnamedText_5ce98: ; a18cf (28:58cf) - text "Indeed, I have" - line "lost!" - - para "But, I beseech" - line "you, do not take" - cont "our emblem as" - cont "your trophy!" - - para "In return, I will" - line "give you a prized" - cont "fighting #MON!" - - para "Choose whichever" - line "one you like!" - done - -_UnnamedText_5ce9d: ; a1972 (28:5972) - text "Ho!" - - para "Stay and train at" - line "Karate with us!" - done - -_FightingDojoBattleText1: ; a1999 (28:5999) - text "Hoargh! Take your" - line "shoes off!" - done - -_FightingDojoEndBattleText1: ; a19b7 (28:59b7) - text "I give" - line "up!" - prompt - -_FightingDojoAfterBattleText1: ; a19c3 (28:59c3) - text "You wait 'til you" - line "see our Master!" - - para "I'm a small fry" - line "compared to him!" - done - -_FightingDojoBattleText2: ; a1a05 (28:5a05) - text "I hear you're" - line "good! Show me!" - done - -_FightingDojoEndBattleText2: ; a1a22 (28:5a22) - text "Judge!" - line "1 point!" - prompt - -_FightingDojoAfterBattleText2: ; a1a33 (28:5a33) - text "Our Master is a" - line "pro fighter!" - done - -_FightingDojoBattleText3: ; a1a51 (28:5a51) - text "Nothing tough" - line "frightens me!" - - para "I break boulders" - line "for training!" - done - -_FightingDojoEndBattleText3: ; a1a8d (28:5a8d) - text "Yow!" - line "Stubbed fingers!" - prompt - -_FightingDojoAfterBattleText3: ; a1aa4 (28:5aa4) - text "The only thing" - line "that frightens us" - cont "is psychic power!" - done - -_FightingDojoBattleText4: ; a1ad8 (28:5ad8) - text "Hoohah!" - - para "You're trespassing" - line "in our FIGHTING" - cont "DOJO!" - done - -_FightingDojoEndBattleText4: ; a1b09 (28:5b09) - text "Oof!" - line "I give up!" - prompt - -_FightingDojoAfterBattleText4: ; a1b1a (28:5b1a) - text "The prime fighters" - line "across the land" - cont "train here." - done - -_WantHitmonleeText: ; a1b4a (28:5b4a) - text "You want the" - line "hard kicking" - cont "HITMONLEE?" - done - -_WantHitmonchanText: ; a1b70 (28:5b70) - text "You want the" - line "piston punching" - cont "HITMONCHAN?" - done - -_OtherHitmonText: ; a1b9a (28:5b9a) - text "Better not get" - line "greedy..." - done - -_UnnamedText_5d162: ; a1bb4 (28:5bb4) - text "I had a vision of" - line "your arrival!" - - para "I have had psychic" - line "powers since I" - cont "was a child." - - para "I first learned" - line "to bend spoons" - cont "with my mind." - - para "I dislike fight-" - line "ing, but if you" - cont "wish, I will show" - cont "you my powers!" - done - -_UnnamedText_5d167: ; a1c73 (28:5c73) - text "I'm" - line "shocked!" - cont "But, a loss is a" - cont "loss." - - para "I admit I didn't" - line "work hard enough" - cont "to win!" - - para "You earned the" - line "MARSHBADGE!@@" - -_UnnamedText_5d16e: ; a1cdc (28:5cdc) - text "Everyone has" - line "psychic power!" - cont "People just don't" - cont "realize it!" - done - -_UnnamedText_5d173: ; a1d16 (28:5d16) - text "The MARSHBADGE" - line "makes #MON up" - cont "to L70 obey you!" - - para "Stronger #MON" - line "will become wild," - cont "ignoring your" - cont "orders in battle!" - - para "Just don't raise" - line "your #MON too" - cont "much!" - - para "Wait, please take" - line "this TM with you!" - done - -ReceivedTM46Text: ; a1dcd (28:5dcd) - text $52, " received" - line "TM46!@@" - -_TM46ExplanationText: ; a1de0 (28:5de0) - db $0 - para "TM46 is PSYWAVE!" - line "It uses powerful" - cont "psychic waves to" - cont "inflict damage!" - done - -_TM46NoRoomText: ; a1e25 (28:5e25) - text "Your pack is full" - line "of other items!" - done - -_UnnamedText_5d1e6: ; a1e48 (28:5e48) - text "Yo! Champ in" - line "making!" - - para "SABRINA's #MON" - line "use psychic power" - cont "instead of force!" - - para "Fighting #MON" - line "are weak against" - cont "psychic #MON!" - - para "They get creamed" - line "before they can" - cont "even aim a punch!" - done - -_UnnamedText_5d1eb: ; a1ef0 (28:5ef0) - text "Psychic power," - line "huh?" - - para "If I had that," - line "I'd make a bundle" - cont "at the slots!" - done - -_SaffronGymBattleText1: ; a1f33 (28:5f33) - text "SABRINA is younger" - line "than I, but I" - cont "respect her!" - done - -_SaffronGymEndBattleText1: ; a1f62 (28:5f62) - text "Not" - line "good enough!" - prompt - -_SaffronGymAfterBattleText1: ; a1f74 (28:5f74) - text "In a battle of" - line "equals, the one" - cont "with the stronger" - cont "will wins!" - - para "If you wish" - line "to beat SABRINA," - cont "focus on winning!" - done - -_SaffronGymBattleText2: ; a1fe0 (28:5fe0) - text "Does our unseen" - line "power scare you?" - done - -_SaffronGymEndBattleText2: ; a2002 (28:6002) - text "I never" - line "foresaw this!" - prompt - -_SaffronGymAfterBattleText2: ; a2019 (28:6019) - text "Psychic #MON" - line "fear only ghosts" - cont "and bugs!" - done - -_SaffronGymBattleText3: ; a2042 (28:6042) - text "#MON take on" - line "the appearance of" - cont "their trainers." - - para "Your #MON must" - line "be tough, then!" - done - -_SaffronGymEndBattleText3: ; a2091 (28:6091) - text "I knew" - line "it!" - prompt - -_SaffronGymAfterBattleText3: ; a209d (28:609d) - text "I must teach" - line "better techniques" - cont "to my #MON!" - done - -_SaffronGymBattleText4: ; a20c9 (28:60c9) - text "You know that" - line "power alone isn't" - cont "enough!" - done - -_SaffronGymEndBattleText4: ; a20f1 (28:60f1) - text "I don't" - line "believe this!" - prompt - -_SaffronGymAfterBattleText4: ; a2107 (28:6107) - text "SABRINA just wiped" - line "out the KARATE" - cont "MASTER next door!" - done - -_SaffronGymBattleText5: ; a213c (28:613c) - text "You and I, our" - line "#MON shall" - cont "fight!" - done - -_SaffronGymEndBattleText5: ; a215e (28:615e) - text "I lost" - line "after all!" - prompt - -_SaffronGymAfterBattleText5: ; a2171 (28:6171) - text "I knew that this" - line "was going to take" - cont "place." - done - -_SaffronGymBattleText6: ; a219c (28:619c) - text "SABRINA is young," - line "but she's also" - cont "our LEADER!" - - para "You won't reach" - line "her easily!" - done - -_SaffronGymEndBattleText6: ; a21e4 (28:61e4) - text "I lost" - line "my concentration!" - prompt - -_SaffronGymAfterBattleText6: ; a21fe (28:61fe) - text "There used to be" - line "2 #MON GYMs in" - cont "SAFFRON." - - para "The FIGHTING DOJO" - line "next door lost" - cont "its GYM status" - cont "when we went and" - cont "creamed them!" - done - -_SaffronGymBattleText7: ; a2277 (28:6277) - text "SAFFRON #MON" - line "GYM is famous for" - cont "its psychics!" - - para "You want to see" - line "SABRINA!" - cont "I can tell!" - done - -_SaffronGymEndBattleText7: ; a22ca (28:62ca) - text "Arrrgh!" - prompt - -_SaffronGymAfterBattleText7: ; a22d3 (28:62d3) - text "That's right! I" - line "used telepathy to" - cont "read your mind!" - done - -_SaffronHouse1Text1: ; a2305 (28:6305) - text "Thank you for" - line "writing. I hope" - cont "to see you soon!" - - para "Hey! Don't look" - line "at my letter!" - done - -_SaffronHouse1Text2: ; a2352 (28:6352) - text "PIDGEY: Kurukkoo!@@" - -_SaffronHouse1Text3: ; a2366 (28:6366) - text "The COPYCAT is" - line "cute! I'm getting" - cont "her a # DOLL!" - done - -_SaffronHouse1Text4: ; a2395 (28:6395) - text "I was given a PP" - line "UP as a gift." - - para "It's used for" - line "increasing the PP" - cont "of techniques!" - done - -_SaffronMartText2: ; a23e3 (28:63e3) - text "MAX REPEL lasts" - line "longer than SUPER" - cont "REPEL for keeping" - cont "weaker #MON" - cont "away!" - done - -_SaffronMartText3: ; a242a (28:642a) - text "REVIVE is costly," - line "but it revives" - cont "fainted #MON!" - done - +INCLUDE "text/maps/fuchsia_gym_2.asm" +INCLUDE "text/maps/fuchsia_meeting_room.asm" +INCLUDE "text/maps/fuchsia_fishing_house.asm" +INCLUDE "text/maps/mansion_1f.asm" +INCLUDE "text/maps/cinnabar_gym.asm" +INCLUDE "text/maps/cinnabar_lab.asm" +INCLUDE "text/maps/cinnabar_lab_trade_room.asm" +INCLUDE "text/maps/cinnabar_lab_metronome_room.asm" +INCLUDE "text/maps/cinnabar_lab_fossil_room.asm" +INCLUDE "text/maps/cinnabar_pokecenter.asm" +INCLUDE "text/maps/cinnabar_mart.asm" +INCLUDE "text/maps/indigo_plateau_lobby.asm" +INCLUDE "text/maps/copycats_house_1f.asm" +INCLUDE "text/maps/copycats_house_2f.asm" +INCLUDE "text/maps/fighting_dojo.asm" +INCLUDE "text/maps/saffron_gym.asm" +INCLUDE "text/maps/saffron_house.asm" +INCLUDE "text/maps/saffron_mart.asm" INCLUDE "text/maps/silph_co_1f.asm" - -_SaffronPokecenterText1: ; a248e (28:648e) - text "#MON growth" - line "rates differ from" - cont "specie to specie." - done - -_SaffronPokecenterText3: ; a24bf (28:64bf) - text "SILPH CO. is very" - line "famous. That's" - cont "why it attracted" - cont "TEAM ROCKET!" - done - -_TM29PreReceiveText: ; a24fe (28:64fe) - text "...Wait! Don't" - line "say a word!" - - para "You wanted this!" - prompt - -_ReceivedTM29Text: ; a252a (28:652a) - text $52, " received" - line "@" - TX_RAM $cf4b - text "!@@" - -_TM29ExplanationText: ; a253e (28:653e) - text "TM29 is PSYCHIC!" - - para "It can lower the" - line "target's SPECIAL" - cont "abilities." - done - -_TM29NoRoomText: ; a257c (28:657c) - text "Where do you plan" - line "to put this?" - done +INCLUDE "text/maps/saffron_pokecenter.asm" +INCLUDE "text/maps/mr_psychics_house.asm" _PokemartGreetingText: ; a259c (28:659c) text "Hi there!" diff --git a/text/maps/bike_shop.asm b/text/maps/bike_shop.asm new file mode 100644 index 00000000..4449639b --- /dev/null +++ b/text/maps/bike_shop.asm @@ -0,0 +1,71 @@ +_UnnamedText_1d810: ; 98e03 (26:4e03) + text "Hi! Welcome to" + line "our BIKE SHOP." + + para "Have we got just" + line "the BIKE for you!" + prompt + +_UnnamedText_1d815: ; 98e45 (26:4e45) + text "It's a cool BIKE!" + line "Do you want it?" + done + +_UnnamedText_1d81a: ; 98e67 (26:4e67) + text "Sorry! You can't" + line "afford it!" + prompt + +_UnnamedText_1d81f: ; 98e83 (26:4e83) + text "Oh, that's..." + + para "A BIKE VOUCHER!" + + para "OK! Here you go!" + prompt + +_UnnamedText_1d824: ; 98eb2 (26:4eb2) + text $52, " exchanged" + line "the BIKE VOUCHER" + cont "for a BICYCLE.@@" + +_UnnamedText_1d82a: ; 98ee0 (26:4ee0) + text "Come back again" + line "some time!" + done + +_UnnamedText_1d82f: ; 98efc (26:4efc) + text "How do you like" + line "your new BICYCLE?" + + para "You can take it" + line "on CYCLING ROAD" + cont "and in caves!" + done + +_UnnamedText_1d834: ; 98f4d (26:4f4d) + text "You better make" + line "room for this!" + done + +_UnnamedText_1d843: ; 98f6d (26:4f6d) + text "A plain city BIKE" + line "is good enough" + cont "for me!" + + para "You can't put a" + line "shopping basket" + cont "on an MTB!" + done + +_UnnamedText_1d85c: ; 98fc1 (26:4fc1) + text "These BIKEs are" + line "cool, but they're" + cont "way expensive!" + done + +_UnnamedText_1d861: ; 98ff2 (26:4ff2) + text "Wow. Your BIKE is" + line "really cool!" + done + diff --git a/text/maps/celadon_dept_store_1f.asm b/text/maps/celadon_dept_store_1f.asm new file mode 100644 index 00000000..46f7d4ed --- /dev/null +++ b/text/maps/celadon_dept_store_1f.asm @@ -0,0 +1,32 @@ +_CeladonMart1Text1: ; 9c672 (27:4672) + text "Hello! Welcome to" + line "CELADON DEPT." + cont "STORE." + + para "The board on the" + line "right describes" + cont "the store layout." + done + +_CeladonMart1Text2: ; 9c6cd (27:46cd) + text "1F: SERVICE" + line " COUNTER" + + para "2F: TRAINER'S" + line " MARKET" + + para "3F: TV GAME SHOP" + + para "4F: WISEMAN GIFTS" + + para "5F: DRUG STORE" + + para "ROOFTOP SQUARE:" + line "VENDING MACHINES" + done + +_CeladonMart1Text3: ; 9c752 (27:4752) + text "1F: SERVICE" + line " COUNTER" + done + diff --git a/text/maps/celadon_dept_store_2f.asm b/text/maps/celadon_dept_store_2f.asm new file mode 100644 index 00000000..19d03ab9 --- /dev/null +++ b/text/maps/celadon_dept_store_2f.asm @@ -0,0 +1,23 @@ +_CeladonMart2Text3: ; 9c76b (27:476b) + text "SUPER REPEL keeps" + line "weak #MON at" + cont "bay..." + + para "Hmm, it's a more" + line "powerful REPEL!" + done + +_CeladonMart2Text4: ; 9c7b2 (27:47b2) + text "For long outings," + line "you should buy" + cont "REVIVE." + done + +_CeladonMart2Text5: ; 9c7dc (27:47dc) + text "Top Grade Items" + line "for Trainers!" + + para "2F: TRAINER'S" + line " MARKET" + done + diff --git a/text/maps/celadon_dept_store_3f.asm b/text/maps/celadon_dept_store_3f.asm new file mode 100644 index 00000000..bbae683c --- /dev/null +++ b/text/maps/celadon_dept_store_3f.asm @@ -0,0 +1,99 @@ +_TM18PreReceiveText: ; 9c814 (27:4814) + text "Oh, hi! I finally" + line "finished #MON!" + + para "Not done yet?" + line "This might be" + cont "useful!" + prompt + +_ReceivedTM18Text: ; 9c85a (27:485a) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM18ExplanationText: ; 9c86e (27:486e) + text "TM18 is COUNTER!" + line "Not like the one" + cont "I'm leaning on," + cont "mind you!" + done + +_TM18NoRoomText: ; 9c8aa (27:48aa) + text "Your pack is full" + line "of items!" + done + +_CeladonMart3Text2: ; 9c8c7 (27:48c7) + text "Captured #MON" + line "are registered" + cont "with an ID No." + cont "and OT, the name" + cont "of the Original" + cont "Trainer that" + cont "caught it!" + done + +_CeladonMart3Text3: ; 9c92d (27:492d) + text "All right!" + + para "My buddy's going" + line "to trade me his" + cont "KANGASKHAN for my" + cont "GRAVELER!" + done + +_CeladonMart3Text4: ; 9c975 (27:4975) + text "Come on GRAVELER!" + + para "I love GRAVELER!" + line "I collect them!" + + para "Huh?" + + para "GRAVELER turned" + line "into a different" + cont "#MON!" + done + +_CeladonMart3Text5: ; 9c9d5 (27:49d5) + text "You can identify" + line "#MON you got" + cont "in trades by" + cont "their ID Numbers!" + done + +_CeladonMart3Text6: ; 9ca13 (27:4a13) + text "It's an SNES!" + done + +_CeladonMart3Text7: ; 9ca21 (27:4a21) + text "An RPG! There's" + line "no time for that!" + done + +_CeladonMart3Text9: ; 9ca43 (27:4a43) + text "A sports game!" + line "Dad'll like that!" + done + +_CeladonMart3Text11: ; 9ca64 (27:4a64) + text "A puzzle game!" + line "Looks addictive!" + done + +_CeladonMart3Text13: ; 9ca85 (27:4a85) + text "A fighting game!" + line "Looks tough!" + done + +_CeladonMart3Text14: ; 9caa4 (27:4aa4) + text "3F: TV GAME SHOP" + done + +_CeladonMart3Text15: ; 9cab6 (27:4ab6) + text "Red and Blue!" + line "Both are #MON!" + done + diff --git a/text/maps/celadon_dept_store_4f.asm b/text/maps/celadon_dept_store_4f.asm new file mode 100644 index 00000000..40415160 --- /dev/null +++ b/text/maps/celadon_dept_store_4f.asm @@ -0,0 +1,27 @@ +_CeladonMart4Text2: ; 9cad4 (27:4ad4) + text "I'm getting a" + line "# DOLL for my" + cont "girl friend!" + done + +_CeladonMart4Text3: ; 9cafd (27:4afd) + text "I heard something" + line "useful." + + para "You can run from" + line "wild #MON by" + cont "distracting them" + cont "with a # DOLL!" + done + +_CeladonMart4Text4: ; 9cb56 (27:4b56) + text "Express yourself" + line "with gifts!" + + para "4F: WISEMAN GIFTS" + + para "Evolution Special!" + line "Element STONEs on" + cont "sale now!" + done + diff --git a/text/maps/celadon_dept_store_5f.asm b/text/maps/celadon_dept_store_5f.asm new file mode 100644 index 00000000..304a7b2e --- /dev/null +++ b/text/maps/celadon_dept_store_5f.asm @@ -0,0 +1,29 @@ +_CeladonMart5Text1: ; 9ddff (27:5dff) + text "#MON ability" + line "enhancers can be" + cont "bought only here." + + para "Use CALCIUM to" + line "increase SPECIAL" + cont "abilities." + + para "Use CARBOS to" + line "increase SPEED." + done + +_CeladonMart5Text2: ; 9de79 (27:5e79) + text "I'm here for" + line "#MON ability" + cont "enhancers." + + para "PROTEIN increases" + line "ATTACK power." + + para "IRON increases" + line "DEFENSE!" + done + +_CeladonMart5Text5: ; 9ded6 (27:5ed6) + text "5F: DRUG STORE" + done + diff --git a/text/maps/celadon_dept_store_roof.asm b/text/maps/celadon_dept_store_roof.asm new file mode 100644 index 00000000..b24248e4 --- /dev/null +++ b/text/maps/celadon_dept_store_roof.asm @@ -0,0 +1,139 @@ +_UnnamedText_484ee: ; 9cbb5 (27:4bb5) + text "Give her which" + line "drink?" + done + +_UnnamedText_484f3: ; 9cbcc (27:4bcc) + text "Yay!" + + para "FRESH WATER!" + + para "Thank you!" + + para "You can have this" + line "from me!@@" + +_UnnamedText_484f9: ; 9cc06 (27:4c06) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_484fe: ; 9cc1a (27:4c1a) + db $0 + para "@" + TX_RAM $cf4b + text " contains" + line "ICE BEAM!" + + para "It can freeze the" + line "target sometimes!@@" + +_UnnamedText_48504: ; 9cc5a (27:4c5a) + text "Yay!" + + para "SODA POP!" + + para "Thank you!" + + para "You can have this" + line "from me!@@" + +_UnnamedText_4850a: ; 9cc91 (27:4c91) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_4850f: ; 9cca5 (27:4ca5) + db $0 + para "@" + TX_RAM $cf4b + text " contains" + line "ROCK SLIDE!" + + para "It can spook the" + line "target sometimes!@@" + +_UnnamedText_48515: ; 9cce6 (27:4ce6) + text "Yay!" + + para "LEMONADE!" + + para "Thank you!" + + para "You can have this" + line "from me!@@" + +_ReceivedTM49Text: ; 9cd1d (27:4d1d) + text $52, " received" + line "TM49!@@" + +_UnnamedText_48520: ; 9cd30 (27:4d30) + db $0 + para "TM49 contains" + line "TRI ATTACK!@@" + +_UnnamedText_48526: ; 9cd4d (27:4d4d) + text "You don't have" + line "space for this!@@" + +_UnnamedText_4852c: ; 9cd6d (27:4d6d) + text "No thank you!" + line "I'm not thirsty" + cont "after all!@@" + +_CeladonMartRoofText1: ; 9cd97 (27:4d97) + text "My sister is a" + line "trainer, believe" + cont "it or not." + + para "But, she's so" + line "immature, she" + cont "drives me nuts!" + done + +_UnnamedText_48598: ; 9cdee (27:4dee) + text "I'm thirsty!" + line "I want something" + cont "to drink!" + done + +_CeladonMartRoofText4: ; 9ce16 (27:4e16) + text "I'm thirsty!" + line "I want something" + cont "to drink!" + + para "Give her a drink?" + done + +_CeladonMartRoofText6: ; 9ce50 (27:4e50) + text "ROOFTOP SQUARE:" + line "VENDING MACHINES" + done + +_VendingMachineText1: ; 9ce72 (27:4e72) + text "A vending machine!" + line "Here's the menu!" + prompt + +_VendingMachineText4: ; 9ce96 (27:4e96) + text "Oops, not enough" + line "money!" + done + +_VendingMachineText5: ; 9ceaf (27:4eaf) + TX_RAM $cf4b + db $0 + line "popped out!" + done + +_VendingMachineText6: ; 9cec0 (27:4ec0) + text "There's no more" + line "room for stuff!" + done + +_VendingMachineText7: ; 9cee0 (27:4ee0) + text "Not thirsty!" + done + diff --git a/text/maps/celadon_diner.asm b/text/maps/celadon_diner.asm new file mode 100644 index 00000000..cce1200a --- /dev/null +++ b/text/maps/celadon_diner.asm @@ -0,0 +1,60 @@ +_CeladonDinerText1: ; 9df3f (27:5f3f) + text "Hi!" + + para "We're taking a" + line "break now." + done + +_CeladonDinerText2: ; 9df5d (27:5f5d) + text "My #MON are" + line "weak, so I often" + cont "have to go to the" + cont "DRUG STORE." + done + +_CeladonDinerText3: ; 9df99 (27:5f99) + text "Psst! There's a" + line "basement under" + cont "the GAME CORNER." + done + +_CeladonDinerText4: ; 9dfc9 (27:5fc9) + text "Munch..." + + para "The man at that" + line "table lost it all" + cont "at the slots." + done + +_UnnamedText_491a7: ; 9e003 (27:6003) + text "Go ahead! Laugh!" + + para "I'm flat out" + line "busted!" + + para "No more slots for" + line "me! I'm going" + cont "straight!" + + para "Here! I won't be" + line "needing this any-" + cont "more!" + prompt + +_ReceivedCoinCaseText: ; 9e07a (27:607a) + text $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_CoinCaseNoRoomText: ; 9e090 (27:6090) + text "Make room for" + line "this!" + done + +_UnnamedText_491b7: ; 9e0a5 (27:60a5) + text "I always thought" + line "I was going to" + cont "win it back..." + done + diff --git a/text/maps/celadon_game_corner.asm b/text/maps/celadon_game_corner.asm new file mode 100644 index 00000000..2768d7f4 --- /dev/null +++ b/text/maps/celadon_game_corner.asm @@ -0,0 +1,187 @@ +_CeladonGameCornerText1: ; 9d8d5 (27:58d5) + text "Welcome!" + + para "You can exchange" + line "your coins for" + cont "fabulous prizes" + cont "next door." + done + +_UnnamedText_48d22: ; 9d91a (27:591a) + text "Welcome to ROCKET" + line "GAME CORNER!" + + para "Do you need some" + line "game coins?" + + para "It's ¥1000 for 50" + line "coins. Would you" + cont "like some?" + done + +_UnnamedText_48d27: ; 9d984 (27:5984) + text "Thanks! Here are" + line "your 50 coins!" + done + +_UnnamedText_48d2c: ; 9d9a5 (27:59a5) + text "No? Please come" + line "play sometime!" + done + +_UnnamedText_48d31: ; 9d9c5 (27:59c5) + text "You can't afford" + line "the coins!" + done + +_UnnamedText_48d36: ; 9d9e1 (27:59e1) + text "Oops! Your COIN" + line "CASE is full." + done + +_UnnamedText_48d3b: ; 9da00 (27:5a00) + text "You don't have a" + line "COIN CASE!" + done + +_CeladonGameCornerText3: ; 9da1c (27:5a1c) + text "Keep this quiet." + + para "It's rumored that" + line "this place is run" + cont "by TEAM ROCKET." + done + +_CeladonGameCornerText4: ; 9da61 (27:5a61) + text "I think these" + line "machines have" + cont "different odds." + done + +_UnnamedText_48d9c: ; 9da8e (27:5a8e) + text "Kid, do you want" + line "to play?" + prompt + +_Received10CoinsText: ; 9daa9 (27:5aa9) + text $52, " received" + line "10 coins!@@" + +_UnnamedText_48da7: ; 9dac0 (27:5ac0) + text "You don't need my" + line "coins!" + done + +_UnnamedText_48dac: ; 9dad9 (27:5ad9) + text "Wins seem to come" + line "and go." + done + +_CeladonGameCornerText6: ; 9daf4 (27:5af4) + text "I'm having a" + line "wonderful time!" + done + +_UnnamedText_48dca: ; 9db11 (27:5b11) + text "Hey!" + + para "You have better" + line "things to do," + cont "champ in making!" + + para "CELADON GYM's" + line "LEADER is ERIKA!" + cont "She uses grass-" + cont "type #MON!" + + para "She might appear" + line "docile, but don't" + cont "be fooled!" + done + +_UnnamedText_48dcf: ; 9dbac (27:5bac) + text "They offer rare" + line "#MON that can" + cont "be exchanged for" + cont "your coins." + + para "But, I just can't" + line "seem to win!" + done + +_CeladonGameCornerText8: ; 9dc06 (27:5c06) + text "Games are scary!" + line "It's so easy to" + cont "get hooked!" + done + +_UnnamedText_48e26: ; 9dc33 (27:5c33) + text "What's up? Want" + line "some coins?" + prompt + +_Received20CoinsText: ; 9dc4f (27:5c4f) + text $52, " received" + line "20 coins!@@" + +_UnnamedText_48e31: ; 9dc66 (27:5c66) + text "You have lots of" + line "coins!" + done + +_UnnamedText_48e36: ; 9dc7f (27:5c7f) + text "Darn! I need more" + line "coins for the" + cont "#MON I want!" + done + +_UnnamedText_48e88: ; 9dcad (27:5cad) + text "Hey, what? You're" + line "throwing me off!" + cont "Here are some" + cont "coins, shoo!" + prompt + +_UnnamedText_48e8d: ; 9dceb (27:5ceb) + text $52, " received" + line "20 coins!@@" + +_UnnamedText_48e93: ; 9dd02 (27:5d02) + text "You've got your" + line "own coins!" + done + +_UnnamedText_48e98: ; 9dd1d (27:5d1d) + text "The trick is to" + line "watch the reels" + cont "closely!" + done + +_UnnamedText_48ece: ; 9dd47 (27:5d47) + text "I'm guarding this" + line "poster!" + cont "Go away, or else!" + done + +_UnnamedText_48ed3: ; 9dd73 (27:5d73) + text "Dang!" + prompt + +_UnnamedText_48ed8: ; 9dd7a (27:5d7a) + text "Our hideout might" + line "be discovered! I" + cont "better tell BOSS!" + done + +_UnnamedText_48f09: ; 9ddb0 (27:5db0) + text "Hey!" + + para "A switch behind" + line "the poster!?" + cont "Let's push it!@@" + +_UnnamedText_48f19: ; 9dde2 (27:5de2) + text "Oops! Forgot the" + line "COIN CASE!" + done + diff --git a/text/maps/celadon_gym.asm b/text/maps/celadon_gym.asm new file mode 100644 index 00000000..dc3fe606 --- /dev/null +++ b/text/maps/celadon_gym.asm @@ -0,0 +1,219 @@ +_UnnamedText_48a5e: ; 9d28f (27:528f) + text "Hello. Lovely" + line "weather isn't it?" + cont "It's so pleasant." + + para "...Oh dear..." + line "I must have dozed" + cont "off. Welcome." + + para "My name is ERIKA." + line "I am the LEADER" + cont "of CELADON GYM." + + para "I teach the art of" + line "flower arranging." + cont "My #MON are of" + cont "the grass-type." + + para "Oh, I'm sorry, I" + line "had no idea that" + cont "you wished to" + cont "challenge me." + + para "Very well, but I" + line "shall not lose." + done + +_UnnamedText_48a63: ; 9d3c2 (27:53c2) + text "Oh!" + line "I concede defeat." + + para "You are remarkably" + line "strong." + + para "I must confer you" + line "the RAINBOWBADGE." + prompt + +_UnnamedText_48a68: ; 9d418 (27:5418) + text "You are cataloging" + line "#MON? I must" + cont "say I'm impressed." + + para "I would never" + line "collect #MON" + cont "if they were" + cont "unattractive." + done + +_UnnamedText_48a6d: ; 9d481 (27:5481) + text "The RAINBOWBADGE" + line "will make #MON" + cont "up to L50 obey." + + para "It also allows" + line "#MON to use" + cont "STRENGTH in and" + cont "out of battle." + + para "Please also take" + line "this with you." + done + +_ReceivedTM21Text: ; 9d50c (27:550c) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM21ExplanationText: ; 9d520 (27:5520) + db $0 + para "TM21 contains" + line "MEGA DRAIN." + + para "Half the damage" + line "it inflicts is" + cont "drained to heal" + cont "your #MON!" + done + +_TM21NoRoomText: ; 9d576 (27:5576) + text "You should make" + line "room for this." + done + +_CeladonGymBattleText2: ; 9d596 (27:5596) + text "Hey!" + + para "You are not" + line "allowed in here!" + done + +_CeladonGymEndBattleText2: ; 9d5b9 (27:55b9) + text "You're" + line "too rough!" + prompt + +_CeladonGymAfterBattleText2: ; 9d5cb (27:55cb) + text "Bleaah!" + line "I hope ERIKA" + cont "wipes you out!" + done + +_CeladonGymBattleText3: ; 9d5f0 (27:55f0) + text "I was getting" + line "bored." + done + +_CeladonGymEndBattleText3: ; 9d606 (27:5606) + text "My" + line "makeup!" + prompt + +_CeladonGymAfterBattleText3: ; 9d612 (27:5612) + text "Grass-type #MON" + line "are tough against" + cont "the water-type!" + + para "They also have an" + line "edge on rock and" + cont "ground #MON!" + done + +_CeladonGymBattleText4: ; 9d675 (27:5675) + text "Aren't you the" + line "peeping Tom?" + done + +_CeladonGymEndBattleText4: ; 9d691 (27:5691) + text "I'm" + line "in shock!" + prompt + +_CeladonGymAfterBattleText4: ; 9d69f (27:569f) + text "Oh, you weren't" + line "peeping? We get a" + cont "lot of gawkers!" + done + +_CeladonGymBattleText5: ; 9d6d1 (27:56d1) + text "Look at my grass" + line "#MON!" + + para "They're so easy" + line "to raise!" + done + +_CeladonGymEndBattleText5: ; 9d702 (27:5702) + text "No!" + prompt + +_CeladonGymAfterBattleText5: ; 9d707 (27:5707) + text "We only use grass-" + line "type #MON at" + cont "our GYM!" + + para "We also use them" + line "for making flower" + cont "arrangements!" + done + +_CeladonGymBattleText6: ; 9d762 (27:5762) + text "Don't bring any" + line "bugs or fire" + cont "#MON in here!" + done + +_CeladonGymEndBattleText6: ; 9d78d (27:578d) + text "Oh!" + line "You!" + prompt + +_CeladonGymAfterBattleText6: ; 9d797 (27:5797) + text "Our LEADER, ERIKA," + line "might be quiet," + cont "but she's also" + cont "very skilled!" + done + +_CeladonGymBattleText7: ; 9d7d7 (27:57d7) + text "Pleased to meet" + line "you. My hobby is" + cont "#MON training." + done + +_CeladonGymEndBattleText7: ; 9d808 (27:5808) + text "Oh!" + line "Splendid!" + prompt + +_CeladonGymAfterBattleText7: ; 9d817 (27:5817) + text "I have a blind" + line "date coming up." + cont "I have to learn" + cont "to be polite." + done + +_CeladonGymBattleText8: ; 9d855 (27:5855) + text "Welcome to" + line "CELADON GYM!" + + para "You better not" + line "underestimate" + cont "girl power!" + done + +_CeladonGymEndBattleText8: ; 9d897 (27:5897) + text "Oh!" + line "Beaten!" + prompt + +_CeladonGymAfterBattleText8: ; 9d8a4 (27:58a4) + text "I didn't bring my" + line "best #MON!" + + para "Wait 'til next" + line "time!" + done + diff --git a/text/maps/celadon_hotel.asm b/text/maps/celadon_hotel.asm new file mode 100644 index 00000000..ef187d3c --- /dev/null +++ b/text/maps/celadon_hotel.asm @@ -0,0 +1,22 @@ +_CeladonHotelText1: ; 9e18a (27:618a) + text "#MON? No, this" + line "is a hotel for" + cont "people." + + para "We're full up." + done + +_CeladonHotelText2: ; 9e1bf (27:61bf) + text "I'm on vacation" + line "with my brother" + cont "and boy friend." + + para "CELADON is such a" + line "pretty city!" + done + +_CeladonHotelText3: ; 9e20e (27:620e) + text "Why did she bring" + line "her brother?" + done + diff --git a/text/maps/celadon_house.asm b/text/maps/celadon_house.asm new file mode 100644 index 00000000..4889d0ac --- /dev/null +++ b/text/maps/celadon_house.asm @@ -0,0 +1,23 @@ +_CeladonHouseText1: ; 9e0d5 (27:60d5) + text "Hehehe! The slots" + line "just reel in the" + cont "dough, big time!" + done + +_CeladonHouseText2: ; 9e10a (27:610a) + text "CHIEF!" + + para "We just shipped" + line "2000 #MON as" + cont "slot prizes!" + done + +_CeladonHouseText3: ; 9e13c (27:613c) + text "Don't touch the" + line "poster at the" + cont "GAME CORNER!" + + para "There's no secret" + line "switch behind it!" + done + diff --git a/text/maps/celadon_mansion_1f.asm b/text/maps/celadon_mansion_1f.asm new file mode 100644 index 00000000..39252dd0 --- /dev/null +++ b/text/maps/celadon_mansion_1f.asm @@ -0,0 +1,24 @@ +_CeladonMansion1Text1: ; 9ceee (27:4eee) + text "MEOWTH: Meow!@@" + +_CeladonMansion1Text2: ; 9cefe (27:4efe) + text "My dear #MON" + line "keep me company." + + para "MEOWTH even brings" + line "money home!" + done + +_CeladonMansion1Text3: ; 9cf3c (27:4f3c) + text "CLEFAIRY: Pi" + line "pippippi!@@" + +_CeladonMansion1Text4: ; 9cf55 (27:4f55) + text "NIDORAN: Kya" + line "kyaoo!@@" + +_CeladonMansion1Text5: ; 9cf6b (27:4f6b) + text "CELADON MANSION" + line "Manager's Suite" + done + diff --git a/text/maps/celadon_mansion_2f.asm b/text/maps/celadon_mansion_2f.asm new file mode 100644 index 00000000..eda71373 --- /dev/null +++ b/text/maps/celadon_mansion_2f.asm @@ -0,0 +1,5 @@ +_CeladonMansion2Text1: ; 9cf8b (27:4f8b) + text "GAME FREAK" + line "Meeting Room" + done + diff --git a/text/maps/celadon_mansion_3f.asm b/text/maps/celadon_mansion_3f.asm new file mode 100644 index 00000000..d404c52e --- /dev/null +++ b/text/maps/celadon_mansion_3f.asm @@ -0,0 +1,67 @@ +_ProgrammerText: ; 9cfa4 (27:4fa4) + text "Me? I'm the" + line "programmer!" + done + +_GraphicArtistText: ; 9cfbc (27:4fbc) + text "I'm the graphic" + line "artist!" + cont "I drew you!" + done + +_WriterText: ; 9cfe0 (27:4fe0) + text "I wrote the story!" + line "Isn't ERIKA cute?" + + para "I like MISTY a" + line "lot too!" + + para "Oh, and SABRINA," + line "I like her!" + done + +_GameDesignerText: ; 9d03a (27:503a) + text "Is that right?" + + para "I'm the game" + line "designer!" + + para "Filling up your" + line "#DEX is tough," + cont "but don't quit!" + + para "When you finish," + line "come tell me!" + done + +_CompletedDexText: ; 9d0ad (27:50ad) + text "Wow! Excellent!" + line "You completed" + cont "your #DEX!" + cont "Congratulations!" + cont "...@@" + +_CeladonMansion3Text5: ; 9d0ed (27:50ed) + text "It's the game" + line "program! Messing" + cont "with it could bug" + cont "out the game!" + done + +_CeladonMansion3Text6: ; 9d12c (27:512c) + text "Someone's playing" + line "a game instead of" + cont "working!" + done + +_CeladonMansion3Text7: ; 9d159 (27:5159) + text "It's the script!" + line "Better not look" + cont "at the ending!" + done + +_CeladonMansion3Text8: ; 9d189 (27:5189) + text "GAME FREAK" + line "Development Room" + done + diff --git a/text/maps/celadon_mansion_4f_inside.asm b/text/maps/celadon_mansion_4f_inside.asm new file mode 100644 index 00000000..e794a33f --- /dev/null +++ b/text/maps/celadon_mansion_4f_inside.asm @@ -0,0 +1,11 @@ +_CeladonMansion5Text1: ; 9d1ba (27:51ba) + text "I know everything" + line "about the world" + cont "of #MON in" + cont "your GAME BOY!" + + para "Get together with" + line "your friends and" + cont "trade #MON!" + done + diff --git a/text/maps/celadon_mansion_4f_outside.asm b/text/maps/celadon_mansion_4f_outside.asm new file mode 100644 index 00000000..635c45e8 --- /dev/null +++ b/text/maps/celadon_mansion_4f_outside.asm @@ -0,0 +1,4 @@ +_CeladonMansion4Text1: ; 9d1a6 (27:51a6) + text "I KNOW EVERYTHING!" + done + diff --git a/text/maps/celadon_pokecenter.asm b/text/maps/celadon_pokecenter.asm new file mode 100644 index 00000000..eb15586f --- /dev/null +++ b/text/maps/celadon_pokecenter.asm @@ -0,0 +1,13 @@ +_CeladonPokecenterText2: ; 9d226 (27:5226) + text "# FLUTE awakens" + line "#MON with a" + cont "sound that only" + cont "they can hear!" + done + +_CeladonPokecenterText3: ; 9d262 (27:5262) + text "I rode uphill on" + line "CYCLING ROAD from" + cont "FUCHSIA!" + done + diff --git a/text/maps/celadon_prize_room.asm b/text/maps/celadon_prize_room.asm new file mode 100644 index 00000000..9c466089 --- /dev/null +++ b/text/maps/celadon_prize_room.asm @@ -0,0 +1,13 @@ +_CeladonPrizeRoomText1: ; 9dee6 (27:5ee6) + text "I sure do fancy" + line "that PORYGON!" + + para "But, it's hard to" + line "win at slots!" + done + +_CeladonPrizeRoomText2: ; 9df24 (27:5f24) + text "I had a major" + line "haul today!" + done + diff --git a/text/maps/cerulean_badge_house.asm b/text/maps/cerulean_badge_house.asm new file mode 100644 index 00000000..afd96843 --- /dev/null +++ b/text/maps/cerulean_badge_house.asm @@ -0,0 +1,98 @@ +_UnnamedText_74e77: ; 990c9 (26:50c9) + text "#MON BADGEs" + line "are owned only by" + cont "skilled trainers." + + para "I see you have" + line "at least one." + + para "Those BADGEs have" + line "amazing secrets!" + prompt + +_UnnamedText_74e7c: ; 9913a (26:513a) + text "Now then..." + + para "Which of the 8" + line "BADGEs should I" + cont "describe?" + done + +_UnnamedText_74e81: ; 99170 (26:5170) + text "Come visit me any" + line "time you wish." + done + +_UnnamedText_74e96: ; 99192 (26:5192) + text "The ATTACK of all" + line "#MON increases" + cont "a little bit." + + para "It also lets you" + line "use FLASH any" + cont "time you desire." + prompt + +_UnnamedText_74e9b: ; 991f2 (26:51f2) + text "#MON up to L30" + line "will obey you." + + para "Any higher, they" + line "become unruly!" + + para "It also lets you" + line "use CUT outside" + cont "of battle." + prompt + +_UnnamedText_74ea0: ; 9925d (26:525d) + text "The SPEED of all" + line "#MON increases" + cont "a little bit." + + para "It also lets you" + line "use FLY outside" + cont "of battle." + prompt + +_UnnamedText_74ea5: ; 992b8 (26:52b8) + text "#MON up to L50" + line "will obey you." + + para "Any higher, they" + line "become unruly!" + + para "It also lets you" + line "use STRENGTH out-" + cont "side of battle." + prompt + +_UnnamedText_74eaa: ; 9932a (26:532a) + text "The DEFENSE of all" + line "#MON increases" + cont "a little bit." + + para "It also lets you" + line "use SURF outside" + cont "of battle." + prompt + +_UnnamedText_74eaf: ; 99388 (26:5388) + text "#MON up to L70" + line "will obey you." + + para "Any higher, they" + line "become unruly!" + prompt + +_UnnamedText_74eb4: ; 993c7 (26:53c7) + text "Your #MON's" + line "SPECIAL abilities" + cont "increase a bit." + prompt + +_UnnamedText_74eb9: ; 993f5 (26:53f5) + text "All #MON will" + line "obey you!" + prompt + diff --git a/text/maps/cerulean_gym.asm b/text/maps/cerulean_gym.asm new file mode 100644 index 00000000..637e5453 --- /dev/null +++ b/text/maps/cerulean_gym.asm @@ -0,0 +1,132 @@ +_UnnamedText_5c7be: ; 989c1 (26:49c1) + text "Hi, you're a new" + line "face!" + + para "Trainers who want" + line "to turn pro have" + cont "to have a policy" + cont "about #MON!" + + para "What is your" + line "approach when you" + cont "catch #MON?" + + para "My policy is an" + line "all-out offensive" + cont "with water-type" + cont "#MON!" + done + +_UnnamedText_5c7c3: ; 98a7b (26:4a7b) + text "TM11 teaches" + line "BUBBLEBEAM!" + + para "Use it on an" + line "aquatic #MON!" + done + +_UnnamedText_5c7c8: ; 98ab0 (26:4ab0) + text "The CASCADEBADGE" + line "makes all #MON" + cont "up to L30 obey!" + + para "That includes" + line "even outsiders!" + + para "There's more, you" + line "can now use CUT" + cont "any time!" + + para "You can CUT down" + line "small bushes to" + cont "open new paths!" + + para "You can also have" + line "my favorite TM!" + done + +_ReceivedTM11Text: ; 98b7d (26:4b7d) + text $52, " received" + line "TM11!@@" + +_UnnamedText_5c7d3: ; 98b90 (26:4b90) + text "You better make" + line "room for this!" + done + +_UnnamedText_5c7d8: ; 98bb0 (26:4bb0) + text "Wow!" + line "You're too much!" + + para "All right!" + + para "You can have the" + line "CASCADEBADGE to" + cont "show you beat me!@@" + +_CeruleanGymBattleText1: ; 98c05 (26:4c05) + text "I'm more than good" + line "enough for you!" + + para "MISTY can wait!" + done + +_CeruleanGymEndBattleText1: ; 98c38 (26:4c38) + text "You" + line "overwhelmed me!" + prompt + +_CeruleanGymAfterBattleText1: ; 98c4d (26:4c4d) + text "You have to face" + line "other trainers to" + cont "find out how good" + cont "you really are." + done + +_CeruleanGymBattleText2: ; 98c93 (26:4c93) + text "Splash!" + + para "I'm first up!" + line "Let's do it!" + done + +_CeruleanGymEndBattleText2: ; 98cb5 (26:4cb5) + text "That" + line "can't be!" + prompt + +_CeruleanGymAfterBattleText2: ; 98cc4 (26:4cc4) + text "MISTY is going to" + line "keep improving!" + + para "She won't lose to" + line "someone like you!" + done + +_UnnamedText_5c82a: ; 98d0a (26:4d0a) + text "Yo! Champ in" + line "making!" + + para "Here's my advice!" + + para "The LEADER, MISTY," + line "is a pro who uses" + cont "water #MON!" + + para "You can drain all" + line "their water with" + cont "plant #MON!" + + para "Or, zap them with" + line "electricity!" + done + +_UnnamedText_5c82f: ; 98db0 (26:4db0) + text "You beat MISTY!" + line "What'd I tell ya?" + + para "You and me kid," + line "we make a pretty" + cont "darn good team!" + done + diff --git a/text/maps/cerulean_mart.asm b/text/maps/cerulean_mart.asm new file mode 100644 index 00000000..d9fa3310 --- /dev/null +++ b/text/maps/cerulean_mart.asm @@ -0,0 +1,20 @@ +_CeruleanMartText2: ; 99012 (26:5012) + text "Use REPEL to keep" + line "bugs and weak" + cont "#MON away." + + para "Put your strongest" + line "#MON at the" + cont "top of the list" + cont "for best results!" + done + +_CeruleanMartText3: ; 9907f (26:507f) + text "Have you seen any" + line "RARE CANDY?" + + para "It's supposed to" + line "make #MON go" + cont "up one level!" + done + diff --git a/text/maps/cerulean_pokecenter.asm b/text/maps/cerulean_pokecenter.asm new file mode 100644 index 00000000..d2574ed1 --- /dev/null +++ b/text/maps/cerulean_pokecenter.asm @@ -0,0 +1,25 @@ +_CeruleanPokecenterText1: ; 988e5 (26:48e5) + text "That BILL!" + + para "I heard that" + line "he'll do whatever" + cont "it takes to get" + cont "rare #MON!" + done + +_CeruleanPokecenterText3: ; 9892a (26:492a) + text "Have you heard" + line "about BILL?" + + para "Everyone calls" + line "him a #MANIAC!" + + para "I think people" + line "are just jealous" + cont "of BILL, though." + + para "Who wouldn't want" + line "to boast about" + cont "their #MON?" + done + diff --git a/text/maps/cerulean_trade_house.asm b/text/maps/cerulean_trade_house.asm new file mode 100644 index 00000000..98aaf5fb --- /dev/null +++ b/text/maps/cerulean_trade_house.asm @@ -0,0 +1,10 @@ +_CeruleanHouseText1: ; 9888c (26:488c) + text "My husband likes" + line "trading #MON." + + para "If you are a" + line "collector, would" + cont "you please trade" + cont "with him?" + done + diff --git a/text/maps/cerulean_trashed_house.asm b/text/maps/cerulean_trashed_house.asm new file mode 100644 index 00000000..bc10251e --- /dev/null +++ b/text/maps/cerulean_trashed_house.asm @@ -0,0 +1,37 @@ +_UnnamedText_1d6ab: ; 9875c (26:475c) + text "Those miserable" + line "ROCKETs!" + + para "Look what they" + line "did here!" + + para "They stole a TM" + line "for teaching" + cont "#MON how to" + cont "DIG holes!" + + para "That cost me a" + line "bundle, it did!" + done + +_UnnamedText_1d6b0: ; 987e2 (26:47e2) + text "I figure what's" + line "lost is lost!" + + para "I decided to teach" + line "DIGLETT how to" + cont "DIG without a TM!" + done + +_CeruleanHouseTrashedText2: ; 98834 (26:4834) + text "TEAM ROCKET must" + line "be trying to DIG" + cont "their way into no" + cont "good!" + done + +_CeruleanHouseTrashedText3: ; 9886f (26:486f) + text "TEAM ROCKET left" + line "a way out!" + done + diff --git a/text/maps/cinnabar_gym.asm b/text/maps/cinnabar_gym.asm new file mode 100644 index 00000000..91fd1fab --- /dev/null +++ b/text/maps/cinnabar_gym.asm @@ -0,0 +1,210 @@ +_BlaineBattleText: ; a0844 (28:4844) + text "Hah!" + + para "I am BLAINE! I" + line "am the LEADER of" + cont "CINNABAR GYM!" + + para "My fiery #MON" + line "will incinerate" + cont "all challengers!" + + para "Hah! You better" + line "have BURN HEAL!" + done + +_BlaineEndBattleText: ; a08c7 (28:48c7) + text "I have" + line "burnt out!" + + para "You have earned" + line "the VOLCANOBADGE!@@" + +_BlaineFireBlastText: ; a08fd (28:48fd) + text "FIRE BLAST is the" + line "ultimate fire" + cont "technique!" + + para "Don't waste it on" + line "water #MON!" + done + +_BlaineBadgeText: ; a0946 (28:4946) + text "Hah!" + + para "The VOLCANOBADGE" + line "heightens the" + cont "SPECIAL abilities" + cont "of your #MON!" + + para "Here, you can" + line "have this too!" + done + +_ReceivedTM38Text: ; a09a8 (28:49a8) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM38ExplanationText: ; a09bc (28:49bc) + db $0 + para "TM38 contains" + line "FIRE BLAST!" + + para "Teach it to fire-" + line "type #MON!" + + para "CHARMELEON or" + line "PONYTA would be" + cont "good bets!" + done + +_TM38NoRoomText: ; a0a1e (28:4a1e) + text "Make room for my" + line "gift!" + done + +_UnnamedText_7595f: ; a0a36 (28:4a36) + text "Do you know how" + line "hot #MON fire" + cont "breath can get?" + done + +_UnnamedText_75964: ; a0a65 (28:4a65) + text "Yow!" + line "Hot, hot, hot!" + prompt + +_UnnamedText_75969: ; a0a7a (28:4a7a) + text "Fire, or to be" + line "more precise," + cont "combustion..." + + para "Blah, blah, blah," + line "blah..." + done + +_UnnamedText_75994: ; a0ac0 (28:4ac0) + text "I was a thief, but" + line "I became straight" + cont "as a trainer!" + done + +_UnnamedText_75999: ; a0af4 (28:4af4) + text "I" + line "surrender!" + prompt + +_UnnamedText_7599e: ; a0b02 (28:4b02) + text "I can't help" + line "stealing other" + cont "people's #MON!" + done + +_UnnamedText_759c9: ; a0b2c (28:4b2c) + text "You can't win!" + line "I have studied" + cont "#MON totally!" + done + +_UnnamedText_759ce: ; a0b58 (28:4b58) + text "Waah!" + line "My studies!" + prompt + +_UnnamedText_759d3: ; a0b6b (28:4b6b) + text "My theories are" + line "too complicated" + cont "for you!" + done + +_UnnamedText_759fe: ; a0b95 (28:4b95) + text "I just like using" + line "fire #MON!" + done + +_UnnamedText_75a03: ; a0bb3 (28:4bb3) + text "Too hot" + line "to handle!" + prompt + +_UnnamedText_75a08: ; a0bc7 (28:4bc7) + text "I wish there was" + line "a thief #MON!" + cont "I'd use that!" + done + +_UnnamedText_75a33: ; a0bf4 (28:4bf4) + text "I know why BLAINE" + line "became a trainer!" + done + +_UnnamedText_75a38: ; a0c19 (28:4c19) + text "Ow!" + prompt + +_UnnamedText_75a3d: ; a0c1e (28:4c1e) + text "BLAINE was lost" + line "in the mountains" + cont "when a fiery bird" + cont "#MON appeared." + + para "Its light enabled" + line "BLAINE to find" + cont "his way down!" + done + +_UnnamedText_75a68: ; a0c90 (28:4c90) + text "I've been to many" + line "GYMs, but this is" + cont "my favorite!" + done + +_UnnamedText_75a6d: ; a0cc1 (28:4cc1) + text "Yowza!" + line "Too hot!" + prompt + +_UnnamedText_75a72: ; a0cd2 (28:4cd2) + text "Us fire #MON" + line "fans like PONYTA" + cont "and NINETALES!" + done + +_UnnamedText_75a9d: ; a0d00 (28:4d00) + text "Fire is weak" + line "against H2O!" + done + +_UnnamedText_75aa2: ; a0d1b (28:4d1b) + text "Oh!" + line "Snuffed out!" + prompt + +_UnnamedText_75aa7: ; a0d2d (28:4d2d) + text "Water beats fire!" + line "But, fire melts" + cont "ice #MON!" + done + +_UnnamedText_75ac2: ; a0d5a (28:4d5a) + text "Yo! Champ in" + line "making!" + + para "The hot-headed" + line "BLAINE is a fire" + cont "#MON pro!" + + para "Douse his spirits" + line "with water!" + + para "You better take" + line "some BURN HEALs!" + done + +_UnnamedText_75ac7: ; a0dd9 (28:4dd9) + text $52, "! You beat" + line "that fire brand!" + done + diff --git a/text/maps/cinnabar_lab.asm b/text/maps/cinnabar_lab.asm new file mode 100644 index 00000000..c71b4484 --- /dev/null +++ b/text/maps/cinnabar_lab.asm @@ -0,0 +1,30 @@ +_Lab1Text1: ; a0df7 (28:4df7) + text "We study #MON" + line "extensively here." + + para "People often bring" + line "us rare #MON" + cont "for examination." + done + +_Lab1Text2: ; a0e49 (28:4e49) + text "A photo of the" + line "LAB's founder," + cont "DR.FUJI!" + done + +_Lab1Text3: ; a0e70 (28:4e70) + text "#MON LAB" + line "Meeting Room" + done + +_Lab1Text4: ; a0e87 (28:4e87) + text "#MON LAB" + line "R-and-D Room" + done + +_Lab1Text5: ; a0e9e (28:4e9e) + text "#MON LAB" + line "Testing Room" + done + diff --git a/text/maps/cinnabar_lab_fossil_room.asm b/text/maps/cinnabar_lab_fossil_room.asm new file mode 100644 index 00000000..73392da3 --- /dev/null +++ b/text/maps/cinnabar_lab_fossil_room.asm @@ -0,0 +1,79 @@ +_UnnamedText_75dc6: ; a10e8 (28:50e8) + text "Hiya!" + + para "I am important" + line "doctor!" + + para "I study here rare" + line "#MON fossils!" + + para "You! Have you a" + line "fossil for me?" + prompt + +_UnnamedText_75dcb: ; a1145 (28:5145) + text "No! Is too bad!" + done + +_UnnamedText_75dd0: ; a1156 (28:5156) + text "I take a little" + line "time!" + + para "You go for walk a" + line "little while!" + done + +_UnnamedText_75dd5: ; a118d (28:518d) + text "Where were you?" + + para "Your fossil is" + line "back to life!" + + para "It was @" + TX_RAM $cf4b + db $0 + line "like I think!" + prompt + +_UnnamedText_610ae: ; a11d6 (28:51d6) + text "Oh! That is" + line "@" + TX_RAM $cd6d + text "!" + + para "It is fossil of" + line "@" + TX_RAM $cf4b + text ", a" + cont "#MON that is" + cont "already extinct!" + + para "My Resurrection" + line "Machine will make" + cont "that #MON live" + cont "again!" + done + +_UnnamedText_610b3: ; a1259 (28:5259) + text "So! You hurry and" + line "give me that!" + + para $52, " handed" + line "over @" + TX_RAM $cd6d + text "!" + prompt + +_UnnamedText_610b8: ; a128f (28:528f) + text "I take a little" + line "time!" + + para "You go for walk a" + line "little while!" + done + +_UnnamedText_610bd: ; a12c6 (28:52c6) + text "Aiyah! You come" + line "again!" + done + diff --git a/text/maps/cinnabar_lab_metronome_room.asm b/text/maps/cinnabar_lab_metronome_room.asm new file mode 100644 index 00000000..4daff374 --- /dev/null +++ b/text/maps/cinnabar_lab_metronome_room.asm @@ -0,0 +1,64 @@ +_TM35PreReceiveText: ; a0f09 (28:4f09) + text "Tch-tch-tch!" + line "I made a cool TM!" + + para "It can cause all" + line "kinds of fun!" + prompt + +_ReceivedTM35Text: ; a0f48 (28:4f48) + text $52, " received " + line "@" + TX_RAM $cf4b + text "!@@" + +_TM35ExplanationText: ; a0f5d (28:4f5d) + text "Tch-tch-tch!" + line "That's the sound" + cont "of a METRONOME!" + + para "It tweaks your" + line "#MON's brain" + cont "into using moves" + cont "it doesn't know!" + done + +_TM35NoRoomText: ; a0fc7 (28:4fc7) + text "Your pack is" + line "crammed full!" + done + +_Lab3Text2: ; a0fe3 (28:4fe3) + text "EEVEE can evolve" + line "into 1 of 3 kinds" + cont "of #MON." + done + +_Lab3Text3: ; a1010 (28:5010) + text "There's an e-mail" + line "message!" + + para "..." + + para "The 3 legendary" + line "bird #MON are" + cont "ARTICUNO, ZAPDOS" + cont "and MOLTRES." + + para "Their whereabouts" + line "are unknown." + + para "We plan to explore" + line "the cavern close" + cont "to CERULEAN." + + para "From: #MON" + line "RESEARCH TEAM" + + para "..." + done + +_Lab3Text5: ; a10d8 (28:50d8) + text "An amber pipe!" + done + diff --git a/text/maps/cinnabar_lab_trade_room.asm b/text/maps/cinnabar_lab_trade_room.asm new file mode 100644 index 00000000..065158d2 --- /dev/null +++ b/text/maps/cinnabar_lab_trade_room.asm @@ -0,0 +1,10 @@ +_Lab2Text1: ; a0eb5 (28:4eb5) + text "I found this very" + line "strange fossil in" + cont "MT.MOON!" + + para "I think it's a" + line "rare, prehistoric" + cont "#MON!" + done + diff --git a/text/maps/cinnabar_mart.asm b/text/maps/cinnabar_mart.asm new file mode 100644 index 00000000..bc358fdc --- /dev/null +++ b/text/maps/cinnabar_mart.asm @@ -0,0 +1,11 @@ +_CinnabarMartText2: ; a139b (28:539b) + text "Don't they have X" + line "ATTACK? It's good" + cont "for battles!" + done + +_CinnabarMartText3: ; a13cb (28:53cb) + text "It never hurts to" + line "have extra items!" + done + diff --git a/text/maps/cinnabar_pokecenter.asm b/text/maps/cinnabar_pokecenter.asm new file mode 100644 index 00000000..e91da9ef --- /dev/null +++ b/text/maps/cinnabar_pokecenter.asm @@ -0,0 +1,23 @@ +_CinnabarPokecenterText2: ; a12de (28:52de) +_CinnabarPokecenterText1: ; a12de (28:52de) + text "You can cancel" + line "evolution." + + para "When a #MON is" + line "evolving, you can" + cont "stop it and leave" + cont "it the way it is." + done + +_CinnabarPokecenterText3: ; a133e (28:533e) + text "Do you have any" + line "friends?" + + para "#MON you get" + line "in trades grow" + cont "very quickly." + + para "I think it's" + line "worth a try!" + done + diff --git a/text/maps/copycats_house_1f.asm b/text/maps/copycats_house_1f.asm new file mode 100644 index 00000000..9e555cfe --- /dev/null +++ b/text/maps/copycats_house_1f.asm @@ -0,0 +1,21 @@ +_CopycatsHouseF1Text1: ; a14f7 (28:54f7) + text "My daughter is so" + line "self-centered." + cont "She only has a" + cont "few friends." + done + +_CopycatsHouseF1Text2: ; a1535 (28:5535) + text "My daughter likes" + line "to mimic people." + + para "Her mimicry has" + line "earned her the" + cont "nickname COPYCAT" + cont "around here!" + done + +_CopycatsHouseF1Text3: ; a1596 (28:5596) + text "CHANSEY: Chaan!" + line "Sii!@@" + diff --git a/text/maps/copycats_house_2f.asm b/text/maps/copycats_house_2f.asm new file mode 100644 index 00000000..8abb7874 --- /dev/null +++ b/text/maps/copycats_house_2f.asm @@ -0,0 +1,97 @@ +_UnnamedText_5ccd4: ; a15ad (28:55ad) + text $52, ": Hi! Do" + line "you like #MON?" + + para $52, ": Uh no, I" + line "just asked you." + + para $52, ": Huh?" + line "You're strange!" + + para "COPYCAT: Hmm?" + line "Quit mimicking?" + + para "But, that's my" + line "favorite hobby!" + prompt + +_TM31PreReceiveText: ; a1636 (28:5636) + text "Oh wow!" + line "A # DOLL!" + + para "For me?" + line "Thank you!" + + para "You can have" + line "this, then!" + prompt + +_ReceivedTM31Text: ; a1675 (28:5675) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM31ExplanationText1: ; a1689 (28:5689) + db $0 + para "TM31 contains my" + line "favorite, MIMIC!" + + para "Use it on a good" + line "#MON!@@" + +_TM31ExplanationText2: ; a16c5 (28:56c5) + text $52, ": Hi!" + line "Thanks for TM31!" + + para $52, ": Pardon?" + + para $52, ": Is it" + line "that fun to mimic" + cont "my every move?" + + para "COPYCAT: You bet!" + line "It's a scream!" + done + +_TM31NoRoomText: ; a1733 (28:5733) + text "Don't you want" + line "this?@@" + +_CopycatsHouseF2Text2: ; a1749 (28:5749) + text "DODUO: Giiih!" + + para "MIRROR MIRROR ON" + line "THE WALL, WHO IS" + cont "THE FAIREST ONE" + cont "OF ALL?" + done + +_CopycatsHouseF2Text3: ; a1792 (28:5792) + text "This is a rare" + line "#MON! Huh?" + cont "It's only a doll!" + done + +_CopycatsHouseF2Text6: ; a17be (28:57be) + text "A game with MARIO" + line "wearing a bucket" + cont "on his head!" + done + +_UnnamedText_5cd17: ; a17ef (28:57ef) + text "..." + + para "My Secrets!" + + para "Skill: Mimicry!" + line "Hobby: Collecting" + cont "dolls!" + cont "Favorite #MON:" + cont "CLEFAIRY!" + done + +_UnnamedText_5cd1c: ; a1842 (28:5842) + text "Huh? Can't see!" + done + diff --git a/text/maps/digletts_cave_route_2_entrance.asm b/text/maps/digletts_cave_route_2_entrance.asm new file mode 100644 index 00000000..240d1e8b --- /dev/null +++ b/text/maps/digletts_cave_route_2_entrance.asm @@ -0,0 +1,10 @@ +_DiglettsCaveRoute2Text1: ; 8a6a7 (22:66a7) + text "I went to ROCK" + line "TUNNEL, but it's" + cont "dark and scary." + + para "If a #MON's" + line "FLASH could light" + cont "it up..." + done + diff --git a/text/maps/fan_club.asm b/text/maps/fan_club.asm new file mode 100644 index 00000000..7b564a35 --- /dev/null +++ b/text/maps/fan_club.asm @@ -0,0 +1,144 @@ +_UnnamedText_59bb7: ; 9a572 (26:6572) + text "Won't you admire" + line "my PIKACHU's" + cont "adorable tail?" + done + +_UnnamedText_59bbc: ; 9a59e (26:659e) + text "Humph! My PIKACHU" + line "is twice as cute" + cont "as that one!" + done + +_UnnamedText_59be4: ; 9a5cf (26:65cf) + text "I just love my" + line "SEEL!" + + para "It squeals when I" + line "hug it!" + done + +_UnnamedText_59be9: ; 9a5ff (26:65ff) + text "Oh dear!" + + para "My SEEL is far" + line "more attractive!" + done + +_UnnamedText_59c00: ; 9a629 (26:6629) + text "PIKACHU: Chu!" + line "Pikachu!" + done + +_UnnamedText_59c17: ; 9a641 (26:6641) + text "SEEL: Kyuoo!" + done + +_UnnamedText_59c65: ; 9a64f (26:664f) + text "I chair the" + line "#MON Fan Club!" + + para "I have collected" + line "over 100 #MON!" + + para "I'm very fussy" + line "when it comes to" + cont "#MON!" + + para "So..." + + para "Did you come" + line "visit to hear" + cont "about my #MON?" + done + +_UnnamedText_59c6a: ; 9a6e0 (26:66e0) + text "Good!" + line "Then listen up!" + + para "My favorite" + line "RAPIDASH..." + + para "It...cute..." + line "lovely...smart..." + cont "plus...amazing..." + cont "you think so?..." + cont "oh yes...it..." + cont "stunning..." + cont "kindly..." + cont "love it!" + + para "Hug it...when..." + cont "sleeping...warm" + cont "and cuddly..." + cont "spectacular..." + cont "ravishing..." + cont "...Oops! Look at" + cont "the time! I kept" + cont "you too long!" + + para "Thanks for hearing" + line "me out! I want" + cont "you to have this!" + prompt + +_ReceivedBikeVoucherText: ; 9a82e (26:682e) + text $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_59c74: ; 9a844 (26:6844) + db $0 + para "Exchange that for" + line "a BICYCLE!" + + para "Don't worry, my" + line "FEAROW will FLY" + cont "me anywhere!" + + para "So, I don't need a" + line "BICYCLE!" + + para "I hope you like" + line "cycling!" + done + +_UnnamedText_59c79: ; 9a8c3 (26:68c3) + text "Oh. Come back" + line "when you want to" + cont "hear my story!" + done + +_UnnamedText_59c7e: ; 9a8f2 (26:68f2) + text "Hello, ", $52, "!" + + para "Did you come see" + line "me about my" + cont "#MON again?" + + para "No? Too bad!" + done + +_UnnamedText_59c83: ; 9a933 (26:6933) + text "Make room for" + line "this!" + done + +_FanClubText6: ; 9a948 (26:6948) + text "Our Chairman is" + line "very vocal about" + cont "#MON." + done + +_FanClubText7: ; 9a970 (26:6970) + text "Let's all listen" + line "politely to other" + cont "trainers!" + done + +_FanClubText8: ; 9a99d (26:699d) + text "If someone brags," + line "brag right back!" + done + diff --git a/text/maps/fighting_dojo.asm b/text/maps/fighting_dojo.asm new file mode 100644 index 00000000..6c8a4436 --- /dev/null +++ b/text/maps/fighting_dojo.asm @@ -0,0 +1,131 @@ +_UnnamedText_5ce8e: ; a1852 (28:5852) + text "Grunt!" + + para "I am the KARATE" + line "MASTER! I am the" + cont "LEADER here!" + + para "You wish to" + line "challenge us?" + cont "Expect no mercy!" + + para "Fwaaa!" + done + +_UnnamedText_5ce93: ; a18ba (28:58ba) + text "Hwa!" + line "Arrgh! Beaten!" + prompt + +_UnnamedText_5ce98: ; a18cf (28:58cf) + text "Indeed, I have" + line "lost!" + + para "But, I beseech" + line "you, do not take" + cont "our emblem as" + cont "your trophy!" + + para "In return, I will" + line "give you a prized" + cont "fighting #MON!" + + para "Choose whichever" + line "one you like!" + done + +_UnnamedText_5ce9d: ; a1972 (28:5972) + text "Ho!" + + para "Stay and train at" + line "Karate with us!" + done + +_FightingDojoBattleText1: ; a1999 (28:5999) + text "Hoargh! Take your" + line "shoes off!" + done + +_FightingDojoEndBattleText1: ; a19b7 (28:59b7) + text "I give" + line "up!" + prompt + +_FightingDojoAfterBattleText1: ; a19c3 (28:59c3) + text "You wait 'til you" + line "see our Master!" + + para "I'm a small fry" + line "compared to him!" + done + +_FightingDojoBattleText2: ; a1a05 (28:5a05) + text "I hear you're" + line "good! Show me!" + done + +_FightingDojoEndBattleText2: ; a1a22 (28:5a22) + text "Judge!" + line "1 point!" + prompt + +_FightingDojoAfterBattleText2: ; a1a33 (28:5a33) + text "Our Master is a" + line "pro fighter!" + done + +_FightingDojoBattleText3: ; a1a51 (28:5a51) + text "Nothing tough" + line "frightens me!" + + para "I break boulders" + line "for training!" + done + +_FightingDojoEndBattleText3: ; a1a8d (28:5a8d) + text "Yow!" + line "Stubbed fingers!" + prompt + +_FightingDojoAfterBattleText3: ; a1aa4 (28:5aa4) + text "The only thing" + line "that frightens us" + cont "is psychic power!" + done + +_FightingDojoBattleText4: ; a1ad8 (28:5ad8) + text "Hoohah!" + + para "You're trespassing" + line "in our FIGHTING" + cont "DOJO!" + done + +_FightingDojoEndBattleText4: ; a1b09 (28:5b09) + text "Oof!" + line "I give up!" + prompt + +_FightingDojoAfterBattleText4: ; a1b1a (28:5b1a) + text "The prime fighters" + line "across the land" + cont "train here." + done + +_WantHitmonleeText: ; a1b4a (28:5b4a) + text "You want the" + line "hard kicking" + cont "HITMONLEE?" + done + +_WantHitmonchanText: ; a1b70 (28:5b70) + text "You want the" + line "piston punching" + cont "HITMONCHAN?" + done + +_OtherHitmonText: ; a1b9a (28:5b9a) + text "Better not get" + line "greedy..." + done + diff --git a/text/maps/fuchsia_fishing_house.asm b/text/maps/fuchsia_fishing_house.asm new file mode 100644 index 00000000..9f99fc81 --- /dev/null +++ b/text/maps/fuchsia_fishing_house.asm @@ -0,0 +1,44 @@ +_UnnamedText_561bd: ; a0695 (28:4695) + text "I'm the FISHING" + line "GURU's older" + cont "brother!" + + para "I simply Looove" + line "fishing!" + + para "Do you like to" + line "fish?" + done + +_UnnamedText_561c2: ; a06e8 (28:46e8) + text "Grand! I like" + line "your style!" + + para "Take this and" + line "fish, young one!" + + para $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_56212: ; a0737 (28:4737) + text "Oh... That's so" + line "disappointing..." + done + +_UnnamedText_56217: ; a0758 (28:4758) + text "Hello there," + line $52, "!" + + para "How are the fish" + line "biting?" + done + +_UnnamedText_5621c: ; a0782 (28:4782) + text "Oh no!" + + para "You have no room" + line "for my gift!" + done + diff --git a/text/maps/fuchsia_gym_1.asm b/text/maps/fuchsia_gym_1.asm new file mode 100644 index 00000000..18f5a46e --- /dev/null +++ b/text/maps/fuchsia_gym_1.asm @@ -0,0 +1,27 @@ +_UnnamedText_75581: ; 9e9b1 (27:69b1) + text "KOGA: Fwahahaha!" + + para "A mere child like" + line "you dares to" + cont "challenge me?" + + para "Very well, I" + line "shall show you" + cont "true terror as a" + cont "ninja master!" + + para "You shall feel" + line "the despair of" + cont "poison and sleep" + cont "techniques!" + done + +_UnnamedText_75586: ; 9ea66 (27:6a66) + text "Humph!" + line "You have proven" + cont "your worth!" + + para "Here! Take the" + line "SOULBADGE!" + prompt + diff --git a/text/maps/fuchsia_gym_2.asm b/text/maps/fuchsia_gym_2.asm new file mode 100644 index 00000000..c4e862fd --- /dev/null +++ b/text/maps/fuchsia_gym_2.asm @@ -0,0 +1,194 @@ +_UnnamedText_7558b: ; a0000 (28:4000) + text "When afflicted by" + line "TOXIC, #MON" + cont "suffer more and" + cont "more as battle" + cont "progresses!" + + para "It will surely" + line "terrorize foes!" + done + +_UnnamedText_75590: ; a0069 (28:4069) + text "Now that you have" + line "the SOULBADGE," + cont "the DEFENSE of" + cont "your #MON" + cont "increases!" + + para "It also lets you" + line "SURF outside of" + cont "battle!" + + para "Ah! Take this" + line "too!" + done + +_ReceivedTM06Text: ; a00eb (28:40eb) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM06ExplanationText: ; a00ff (28:40ff) + db $0 + para "TM06 contains" + line "TOXIC!" + + para "It is a secret" + line "technique over" + cont "400 years old!" + done + +_TM06NoRoomText: ; a0143 (28:4143) + text "Make space for" + line "this, child!" + done + +_FuchsiaGymBattleText1: ; a0160 (28:4160) + text "Strength isn't" + line "the key for" + cont "#MON!" + + para "It's strategy!" + + para "I'll show you how" + line "strategy can beat" + cont "brute strength!" + done + +_FuchsiaGymEndBattleText1: ; a01c2 (28:41c2) + text "What?" + line "Extraordinary!" + prompt + +_FuchsiaGymAfterBattleText1: ; a01d8 (28:41d8) + text "So, you mix brawn" + line "with brains?" + cont "Good strategy!" + done + +_FuchsiaGymBattleText2: ; a0207 (28:4207) + text "I wanted to become" + line "a ninja, so I" + cont "joined this GYM!" + done + +_FuchsiaGymEndBattleText2: ; a023a (28:423a) + text "I'm done" + line "for!" + prompt + +_FuchsiaGymAfterBattleText2: ; a0248 (28:4248) + text "I will keep on" + line "training under" + cont "KOGA, my ninja" + cont "master!" + done + +_FuchsiaGymBattleText3: ; a027e (28:427e) + text "Let's see you" + line "beat my special" + cont "techniques!" + done + +_FuchsiaGymEndBattleText3: ; a02a8 (28:42a8) + text "You" + line "had me fooled!" + prompt + +_FuchsiaGymAfterBattleText3: ; a02bc (28:42bc) + text "I like poison and" + line "sleep techniques," + cont "as they linger" + cont "after battle!" + done + +_FuchsiaGymBattleText4: ; a02fe (28:42fe) + text "Stop right there!" + + para "Our invisible" + line "walls have you" + cont "frustrated?" + done + +_FuchsiaGymEndBattleText4: ; a033a (28:433a) + text "Whoa!" + line "He's got it!" + prompt + +_FuchsiaGymAfterBattleText4: ; a034d (28:434d) + text "You impressed me!" + line "Here's a hint!" + + para "Look very closely" + line "for gaps in the" + cont "invisible walls!" + done + +_FuchsiaGymBattleText5: ; a03a1 (28:43a1) + text "I also study the" + line "way of the ninja" + cont "with master KOGA!" + + para "Ninja have a long" + line "history of using" + cont "animals!" + done + +_FuchsiaGymEndBattleText5: ; a0402 (28:4402) + text "Awoo!" + prompt + +_FuchsiaGymAfterBattleText5: ; a0409 (28:4409) + text "I still have much" + line "to learn!" + done + +_FuchsiaGymBattleText6: ; a0426 (28:4426) + text "Master KOGA comes" + line "from a long line" + cont "of ninjas!" + + para "What did you" + line "descend from?" + done + +_FuchsiaGymEndBattleText6: ; a0470 (28:4470) + text "Dropped" + line "my balls!" + prompt + +_FuchsiaGymAfterBattleText6: ; a0483 (28:4483) + text "Where there is" + line "light, there is" + cont "shadow!" + + para "Light and shadow!" + line "Which do you" + cont "choose?" + done + +_UnnamedText_7564e: ; a04d2 (28:44d2) + text "Yo! Champ in" + line "making!" + + para "FUCHSIA GYM is" + line "riddled with" + cont "invisible walls!" + + para "KOGA might appear" + line "close, but he's" + cont "blocked off!" + + para "You have to find" + line "gaps in the walls" + cont "to reach him!" + done + +_UnnamedText_75653: ; a0574 (28:4574) + text "It's amazing how" + line "ninja can terrify" + cont "even now!" + done + diff --git a/text/maps/fuchsia_house.asm b/text/maps/fuchsia_house.asm new file mode 100644 index 00000000..01994c35 --- /dev/null +++ b/text/maps/fuchsia_house.asm @@ -0,0 +1,28 @@ +_FuchsiaHouse1Text1: ; 9e2a3 (27:62a3) + text "SAFARI ZONE's" + line "WARDEN is old," + cont "but still active!" + + para "All his teeth are" + line "false, though." + done + +_FuchsiaHouse1Text2: ; 9e2f3 (27:62f3) + text "Hmm? You've met" + line "BILL?" + + para "He's my grandson!" + + para "He always liked" + line "collecting things" + cont "even as a child!" + done + +_FuchsiaHouse1Text3: ; 9e34d (27:634d) + text "BILL files his" + line "own #MON data" + cont "on his PC!" + + para "Did he show you?" + done + diff --git a/text/maps/fuchsia_mart.asm b/text/maps/fuchsia_mart.asm new file mode 100644 index 00000000..f53b5984 --- /dev/null +++ b/text/maps/fuchsia_mart.asm @@ -0,0 +1,15 @@ +_FuchsiaMartText2: ; 9e22e (27:622e) + text "Do you have a" + line "SAFARI ZONE flag?" + + para "What about cards" + line "or calendars?" + done + +_FuchsiaMartText3: ; 9e26e (27:626e) + text "Did you try X" + line "SPEED? It speeds" + cont "up a #MON in" + cont "battle!" + done + diff --git a/text/maps/fuchsia_meeting_room.asm b/text/maps/fuchsia_meeting_room.asm new file mode 100644 index 00000000..32e98129 --- /dev/null +++ b/text/maps/fuchsia_meeting_room.asm @@ -0,0 +1,27 @@ +_FuchsiaMeetingRoomText1: ; a05a1 (28:45a1) + text "We nicknamed the" + line "WARDEN SLOWPOKE." + + para "He and SLOWPOKE" + line "both look vacant!" + done + +_FuchsiaMeetingRoomText2: ; a05e6 (28:45e6) + text "SLOWPOKE is very" + line "knowledgeable" + cont "about #MON!" + + para "He even has some" + line "fossils of rare," + cont "extinct #MON!" + done + +_FuchsiaMeetingRoomText3: ; a0642 (28:4642) + text "SLOWPOKE came in," + line "but I couldn't" + cont "understand him." + + para "I think he's got" + line "a speech problem!" + done + diff --git a/text/maps/fuchsia_pokecenter.asm b/text/maps/fuchsia_pokecenter.asm new file mode 100644 index 00000000..afda3ae4 --- /dev/null +++ b/text/maps/fuchsia_pokecenter.asm @@ -0,0 +1,21 @@ +_FuchsiaPokecenterText1: ; 9e387 (27:6387) + text "You can't win" + line "with just one" + cont "strong #MON." + + para "It's tough, but" + line "you have to raise" + cont "them evenly." + done + +_FuchsiaPokecenterText3: ; 9e3de (27:63de) + text "There's a narrow" + line "trail west of" + cont "VIRIDIAN CITY." + + para "It goes to #MON" + line "LEAGUE HQ." + cont "The HQ governs" + cont "all trainers." + done + diff --git a/text/maps/fujis_house.asm b/text/maps/fujis_house.asm new file mode 100644 index 00000000..aed2d9b3 --- /dev/null +++ b/text/maps/fujis_house.asm @@ -0,0 +1,86 @@ +_UnnamedText_1d8d1: ; 99e8d (26:5e8d) + text "That's odd, MR.FUJI" + line "isn't here." + cont "Where'd he go?" + done + +_UnnamedText_1d8d6: ; 99eba (26:5eba) + text "MR.FUJI had been" + line "praying alone for" + cont "CUBONE's mother." + done + +_UnnamedText_1d8f4: ; 99eee (26:5eee) + text "This is really" + line "MR.FUJI's house." + + para "He's really kind!" + + para "He looks after" + line "abandoned and" + cont "orphaned #MON!" + done + +_UnnamedText_1d8f9: ; 99f4b (26:5f4b) + text "It's so warm!" + line "#MON are so" + cont "nice to hug!" + done + +_LavenderHouse1Text3: ; 99f72 (26:5f72) + text "PSYDUCK: Gwappa!@@" + +_LavenderHouse1Text4: ; 99f85 (26:5f85) + text "NIDORINO: Gaoo!@@" + +_UnnamedText_1d94c: ; 99f97 (26:5f97) + text "MR.FUJI: ", $52, "." + + para "Your #DEX quest" + line "may fail without" + cont "love for your" + cont "#MON." + + para "I think this may" + line "help your quest." + prompt + +_ReceivedFluteText: ; 99ffb (26:5ffb) + text $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_FluteExplanationText: ; 9a011 (26:6011) + db $0 + para "Upon hearing #" + line "FLUTE, sleeping" + cont "#MON will" + cont "spring awake." + + para "It works on all" + line "sleeping #MON." + done + +_FluteNoRoomText: ; 9a069 (26:6069) + text "You must make" + line "room for this!" + done + +_MrFujiAfterFluteText: ; 9a087 (26:6087) + text "MR.FUJI: Has my" + line "FLUTE helped you?" + done + +_LavenderHouse1Text6: ; 9a0aa (26:60aa) + text "#MON Monthly" + line "Grand Prize" + cont "Drawing!" + + para "The application" + line "form is..." + + para "Gone! It's been" + line "clipped out!" + done + diff --git a/text/maps/indigo_plateau_lobby.asm b/text/maps/indigo_plateau_lobby.asm new file mode 100644 index 00000000..435d473a --- /dev/null +++ b/text/maps/indigo_plateau_lobby.asm @@ -0,0 +1,26 @@ +_IndigoPlateauLobbyText1: ; a13f0 (28:53f0) + text "Yo! Champ in" + line "making!" + + para "At #MON LEAGUE," + line "you have to face" + cont "the ELITE FOUR in" + cont "succession." + + para "If you lose, you" + line "have to start all" + cont "over again! This" + cont "is it! Go for it!" + done + +_IndigoPlateauLobbyText3: ; a148b (28:548b) + text "From here on, you" + line "face the ELITE" + cont "FOUR one by one!" + + para "If you win, a" + line "door opens to the" + cont "next trainer!" + cont "Good luck!" + done + diff --git a/text/maps/lavender_house.asm b/text/maps/lavender_house.asm new file mode 100644 index 00000000..a6f8cb0a --- /dev/null +++ b/text/maps/lavender_house.asm @@ -0,0 +1,25 @@ +_LavenderHouse2Text1: ; 9a238 (26:6238) + text "CUBONE: Kyarugoo!@@" + +_UnnamedText_1d9dc: ; 9a24c (26:624c) + text "I hate those" + line "horrible ROCKETs!" + + para "That poor CUBONE's" + line "mother..." + + para "It was killed" + line "trying to escape" + cont "from TEAM ROCKET!" + done + +_UnnamedText_1d9e1: ; 9a2b9 (26:62b9) + text "The GHOST of" + line "#MON TOWER is" + cont "gone!" + + para "Someone must have" + line "soothed its" + cont "restless soul!" + done + diff --git a/text/maps/lavender_mart.asm b/text/maps/lavender_mart.asm new file mode 100644 index 00000000..d610a8b9 --- /dev/null +++ b/text/maps/lavender_mart.asm @@ -0,0 +1,31 @@ +_LavenderMartText2: ; 9a104 (26:6104) + text "I'm searching for" + line "items that raise" + cont "the abilities of" + cont "#MON during a" + cont "single battle." + + para "X ATTACK, X" + line "DEFEND, X SPEED" + cont "and X SPECIAL are" + cont "what I'm after." + + para "Do you know where" + line "I can get them?" + done + +_UnnamedText_5c953: ; 9a1b4 (26:61b4) + text "You know REVIVE?" + line "It revives any" + cont "fainted #MON!" + done + +_UnnamedText_5c958: ; 9a1e3 (26:61e3) + text "I found a NUGGET" + line "in the mountains." + + para "I thought it was" + line "useless, but it" + cont "sold for ¥5000!" + done + diff --git a/text/maps/lavender_pokecenter.asm b/text/maps/lavender_pokecenter.asm new file mode 100644 index 00000000..4abb31ae --- /dev/null +++ b/text/maps/lavender_pokecenter.asm @@ -0,0 +1,15 @@ +_LavenderPokecenterText4: ; 9940e (26:540e) +_LavenderPokecenterText2: ; 9940e (26:540e) +_LavenderPokecenterText1: ; 9940e (26:540e) + text "TEAM ROCKET will" + line "do anything for" + cont "the sake of gold!" + done + +_LavenderPokecenterText3: ; 99442 (26:5442) + text "I saw CUBONE's" + line "mother die trying" + cont "to escape from" + cont "TEAM ROCKET!" + done + diff --git a/text/maps/mansion_1f.asm b/text/maps/mansion_1f.asm new file mode 100644 index 00000000..b5b2a7d2 --- /dev/null +++ b/text/maps/mansion_1f.asm @@ -0,0 +1,30 @@ +_Mansion1BattleText2: ; a07a8 (28:47a8) + text "Who are you? There" + line "shouldn't be" + cont "anyone here." + done + +_Mansion1EndBattleText2: ; a07d5 (28:47d5) + text "Ouch!" + prompt + +_Mansion1AfterBattleText2: ; a07dc (28:47dc) + text "A key? I don't" + line "know what you're" + cont "talking about." + done + +_MansionSwitchText: ; a080a (28:480a) + text "A secret switch!" + + para "Press it?" + done + +_MansionSwitchPressedText: ; a0826 (28:4826) + text "Who wouldn't?" + prompt + +_MansionSwitchNotPressedText: ; a0834 (28:4834) + text "Not quite yet!" + done + diff --git a/text/maps/mr_psychics_house.asm b/text/maps/mr_psychics_house.asm new file mode 100644 index 00000000..40e613f3 --- /dev/null +++ b/text/maps/mr_psychics_house.asm @@ -0,0 +1,26 @@ +_TM29PreReceiveText: ; a24fe (28:64fe) + text "...Wait! Don't" + line "say a word!" + + para "You wanted this!" + prompt + +_ReceivedTM29Text: ; a252a (28:652a) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_TM29ExplanationText: ; a253e (28:653e) + text "TM29 is PSYCHIC!" + + para "It can lower the" + line "target's SPECIAL" + cont "abilities." + done + +_TM29NoRoomText: ; a257c (28:657c) + text "Where do you plan" + line "to put this?" + done + diff --git a/text/maps/mt_moon_pokecenter.asm b/text/maps/mt_moon_pokecenter.asm new file mode 100644 index 00000000..01ed9bcc --- /dev/null +++ b/text/maps/mt_moon_pokecenter.asm @@ -0,0 +1,49 @@ +_MtMoonPokecenterText1: ; 8a8eb (22:68eb) + text "I've 6 # BALLs" + line "set in my belt." + + para "At most, you can" + line "carry 6 #MON." + done + +_MtMoonPokecenterText3: ; 8a929 (22:6929) + text "TEAM ROCKET" + line "attacks CERULEAN" + cont "citizens..." + + para "TEAM ROCKET is" + line "always in the" + cont "news!" + done + +_UnnamedText_4935c: ; 8a976 (22:6976) + text "MAN: Hello, there!" + line "Have I got a deal" + cont "just for you!" + + para "I'll let you have" + line "a swell MAGIKARP" + cont "for just ¥500!" + cont "What do you say?" + done + +_UnnamedText_49361: ; 8a9ec (22:69ec) + text "No? I'm only" + line "doing this as a" + cont "favor to you!" + done + +_UnnamedText_49366: ; 8aa17 (22:6a17) + text "You'll need more" + line "money than that!" + done + +_UnnamedText_4936b: ; 8aa39 (22:6a39) + text "MAN: Well, I don't" + line "give refunds!" + done + +_MtMoonPokecenterText5: ; 8aa5a (22:6a5a) + db $0 + done + diff --git a/text/maps/name_rater.asm b/text/maps/name_rater.asm new file mode 100644 index 00000000..4f47270c --- /dev/null +++ b/text/maps/name_rater.asm @@ -0,0 +1,61 @@ +_UnnamedText_1dab3: ; 9a308 (26:6308) + text "Hello, hello!" + line "I am the official" + cont "NAME RATER!" + + para "Want me to rate" + line "the nicknames of" + cont "your #MON?" + done + +_UnnamedText_1dab8: ; 9a361 (26:6361) + text "Which #MON" + line "should I look at?" + prompt + +_UnnamedText_1dabd: ; 9a37f (26:637f) + TX_RAM $cd6d + text ", is it?" + line "That is a decent" + cont "nickname!" + + para "But, would you" + line "like me to give" + cont "it a nicer name?" + + para "How about it?" + done + +_UnnamedText_1dac2: ; 9a3e5 (26:63e5) + text "Fine! What should" + line "we name it?" + prompt + +_UnnamedText_1dac7: ; 9a404 (26:6404) + text "OK! This #MON" + line "has been renamed" + cont "@" + TX_RAM $cee9 + text "!" + + para "That's a better" + line "name than before!" + done + +_UnnamedText_1dacc: ; 9a44c (26:644c) + text "Fine! Come any" + line "time you like!" + done + +_UnnamedText_1dad1: ; 9a46b (26:646b) + TX_RAM $cd6d + text ", is it?" + line "That is a truly" + cont "impeccable name!" + + para "Take good care of" + line "@" + TX_RAM $cd6d + text "!" + done + diff --git a/text/maps/pewter_gym_1.asm b/text/maps/pewter_gym_1.asm new file mode 100644 index 00000000..550ad9df --- /dev/null +++ b/text/maps/pewter_gym_1.asm @@ -0,0 +1,19 @@ +_UnnamedText_5c49e: ; 9697a (25:697a) + text "I'm BROCK!" + line "I'm PEWTER's GYM" + cont "LEADER!" + + para "I believe in rock" + line "hard defense and" + cont "determination!" + + para "That's why my" + line "#MON are all" + cont "the rock-type!" + + para "Do you still want" + line "to challenge me?" + cont "Fine then! Show" + cont "me your best!" + done + diff --git a/text/maps/pewter_gym_2.asm b/text/maps/pewter_gym_2.asm new file mode 100644 index 00000000..a051a71f --- /dev/null +++ b/text/maps/pewter_gym_2.asm @@ -0,0 +1,143 @@ +_UnnamedText_5c4a3: ; 98000 (26:4000) + text "There are all" + line "kinds of trainers" + cont "in the world!" + + para "You appear to be" + line "very gifted as a" + cont "#MON trainer!" + + para "Go to the GYM in" + line "CERULEAN and test" + cont "your abilities!" + done + +_TM34PreReceiveText: ; 98092 (26:4092) + text "Wait! Take this" + line "with you!" + done + +_ReceivedTM34Text: ; 980ad (26:40ad) + text $52, " received" + line "TM34!@@" + +_TM34ExplanationText: ; 980c0 (26:40c0) + db $0 + para "A TM contains a" + line "technique that" + cont "can be taught to" + cont "#MON!" + + para "A TM is good only" + line "once! So when you" + cont "use one to teach" + cont "a new technique," + cont "pick the #MON" + cont "carefully!" + + para "TM34 contains" + line "BIDE!" + + para "Your #MON will" + line "absorb damage in" + cont "battle then pay" + cont "it back double!" + done + +_TM34NoRoomText: ; 981ab (26:41ab) + text "You don't have" + line "room for this!" + done + +_UnnamedText_5c4bc: ; 981c9 (26:41c9) + text "I took" + line "you for granted." + + para "As proof of your" + line "victory, here's" + cont "the BOULDERBADGE!" + + para $52, " received" + line "the BOULDERBADGE!@@" + +_UnnamedText_5c4c1: ; 98232 (26:4232) + db $0 + para "That's an official" + line "#MON LEAGUE" + cont "BADGE!" + + para "Its bearer's" + line "#MON become" + cont "more powerful!" + + para "The technique" + line "FLASH can now be" + cont "used any time!" + prompt + +_PewterGymBattleText1: ; 982ae (26:42ae) + text "Stop right there," + line "kid!" + + para "You're still light" + line "years from facing" + cont "BROCK!" + done + +_PewterGymEndBattleText1: ; 982f1 (26:42f1) + text "Darn!" + + para "Light years isn't" + line "time! It measures" + cont "distance!" + prompt + +_PewterGymAfterBattleText1: ; 98325 (26:4325) + text "You're pretty hot," + line "but not as hot" + cont "as BROCK!" + done + +_UnnamedText_5c515: ; 98351 (26:4351) + text "Hiya! I can tell" + line "you have what it" + cont "takes to become a" + cont "#MON champ!" + + para "I'm no trainer," + line "but I can tell" + cont "you how to win!" + + para "Let me take you" + line "to the top!" + done + +_UnnamedText_5c51a: ; 983dc (26:43dc) + text "All right! Let's" + line "get happening!" + prompt + +_UnnamedText_5c51f: ; 983fc (26:43fc) + text "The 1st #MON" + line "out in a match is" + cont "at the top of the" + cont "#MON LIST!" + + para "By changing the" + line "order of #MON," + cont "matches could be" + cont "made easier!" + done + +_UnnamedText_5c524: ; 98476 (26:4476) + text "It's a free" + line "service! Let's" + cont "get happening!" + prompt + +_UnnamedText_5c529: ; 9849f (26:449f) + text "Just as I thought!" + line "You're #MON" + cont "champ material!" + done + diff --git a/text/maps/pewter_house_1.asm b/text/maps/pewter_house_1.asm new file mode 100644 index 00000000..ee9207f3 --- /dev/null +++ b/text/maps/pewter_house_1.asm @@ -0,0 +1,25 @@ +_PewterHouse1Text1: ; 984ce (26:44ce) + text "NIDORAN: Bowbow!@@" + +_PewterHouse1Text2: ; 984e1 (26:44e1) + text "NIDORAN sit!" + done + +_PewterHouse1Text3: ; 984ef (26:44ef) + text "Our #MON's an" + line "outsider, so it's" + cont "hard to handle." + + para "An outsider is a" + line "#MON that you" + cont "get in a trade." + + para "It grows fast, but" + line "it may ignore an" + cont "unskilled trainer" + cont "in battle!" + + para "If only we had" + line "some BADGEs..." + done + diff --git a/text/maps/pewter_house_2.asm b/text/maps/pewter_house_2.asm new file mode 100644 index 00000000..b24d9d10 --- /dev/null +++ b/text/maps/pewter_house_2.asm @@ -0,0 +1,20 @@ +_PewterHouse2Text1: ; 98656 (26:4656) + text "#MON learn new" + line "techniques as" + cont "they grow!" + + para "But, some moves" + line "must be taught by" + cont "the trainer!" + done + +_PewterHouse2Text2: ; 986ae (26:46ae) + text "#MON become" + line "easier to catch" + cont "when they are" + cont "hurt or asleep!" + + para "But, it's not a" + line "sure thing!" + done + diff --git a/text/maps/pewter_mart.asm b/text/maps/pewter_mart.asm new file mode 100644 index 00000000..40e6be10 --- /dev/null +++ b/text/maps/pewter_mart.asm @@ -0,0 +1,18 @@ +_UnnamedText_74cc6: ; 985ac (26:45ac) + text "A shady, old man" + line "got me to buy" + cont "this really weird" + cont "fish #MON!" + + para "It's totally weak" + line "and it cost ¥500!" + done + +_UnnamedText_74cd5: ; 9860c (26:460c) + text "Good things can" + line "happen if you" + cont "raise #MON" + cont "diligently, even" + cont "the weak ones!" + done + diff --git a/text/maps/pewter_pokecenter.asm b/text/maps/pewter_pokecenter.asm new file mode 100644 index 00000000..4f988ca5 --- /dev/null +++ b/text/maps/pewter_pokecenter.asm @@ -0,0 +1,15 @@ +_PewterPokecenterText1: ; 98704 (26:4704) + text "What!?" + + para "TEAM ROCKET is" + line "at MT.MOON? Huh?" + cont "I'm on the phone!" + + para "Scram!" + done + +_PewterPokecenterText5: ; 98744 (26:4744) + text "JIGGLYPUFF: Puu" + line "pupuu!" + done + diff --git a/text/maps/pokemon_tower_1f.asm b/text/maps/pokemon_tower_1f.asm new file mode 100644 index 00000000..4780b01e --- /dev/null +++ b/text/maps/pokemon_tower_1f.asm @@ -0,0 +1,32 @@ +_PokemonTower1Text1: ; 9947f (26:547f) + text "#MON TOWER was" + line "erected in the" + cont "memory of #MON" + cont "that had died." + done + +_PokemonTower1Text2: ; 994bc (26:54bc) + text "Did you come to" + line "pay respects?" + cont "Bless you!" + done + +_PokemonTower1Text3: ; 994e6 (26:54e6) + text "I came to pray" + line "for my CLEFAIRY." + + para "Sniff! I can't" + line "stop crying..." + done + +_PokemonTower1Text4: ; 99524 (26:5524) + text "My GROWLITHE..." + line "Why did you die?" + done + +_PokemonTower1Text5: ; 99546 (26:5546) + text "I am a CHANNELER!" + line "There are spirits" + cont "up to mischief!" + done + diff --git a/text/maps/pokemon_tower_2f.asm b/text/maps/pokemon_tower_2f.asm new file mode 100644 index 00000000..52734431 --- /dev/null +++ b/text/maps/pokemon_tower_2f.asm @@ -0,0 +1,58 @@ +_UnnamedText_6062d: ; 9957b (26:557b) + text $53, ": Hey," + line $52, "! What" + cont "brings you here?" + cont "Your #MON" + cont "don't look dead!" + + para "I can at least" + line "make them faint!" + cont "Let's go, pal!" + done + +_UnnamedText_60632: ; 995e5 (26:55e5) + text "What?" + line "You stinker!" + + para "I took it easy on" + line "you too!" + prompt + +_UnnamedText_60637: ; 99614 (26:5614) + text $53, ": Well," + line "look at all your" + cont "wimpy #MON!" + + para "Toughen them up a" + line "bit more!" + prompt + +_UnnamedText_6063c: ; 99657 (26:5657) + text "How's your #DEX" + line "coming, pal?" + cont "I just caught a" + cont "CUBONE!" + + para "I can't find the" + line "grown-up MAROWAK" + cont "yet!" + + para "I doubt there are" + line "any left! Well, I" + cont "better get going!" + cont "I've got a lot to" + cont "accomplish, pal!" + + para "Smell ya later!" + done + +_PokemonTower2Text2: ; 9971a (26:571a) + text "Even we could not" + line "identify the" + cont "wayward GHOSTs!" + + para "A SILPH SCOPE" + line "might be able to" + cont "unmask them." + done + diff --git a/text/maps/pokemon_tower_3f.asm b/text/maps/pokemon_tower_3f.asm new file mode 100644 index 00000000..66fab59d --- /dev/null +++ b/text/maps/pokemon_tower_3f.asm @@ -0,0 +1,46 @@ +_PokemonTower3BattleText1: ; 99776 (26:5776) + text "Urrg...Awaa..." + line "Huhu...graa.." + done + +_PokemonTower3EndBattleText1: ; 99794 (26:5794) + text "Hwa!" + line "I'm saved!" + prompt + +_PokemonTower3AfterBattleText1: ; 997a4 (26:57a4) + text "The GHOSTs can be" + line "identified by the" + cont "SILPH SCOPE." + done + +_PokemonTower3BattleText2: ; 997d6 (26:57d6) + text "Kekeke...." + line "Kwaaah!" + done + +_PokemonTower3EndBattleText2: ; 997ea (26:57ea) + text "Hmm?" + line "What am I doing?" + prompt + +_PokemonTower3AfterBattleText2: ; 99801 (26:5801) + text "Sorry! I was" + line "possessed!" + done + +_PokemonTower3BattleText3: ; 9981a (26:581a) + text "Be gone!" + line "Evil spirit!" + done + +_PokemonTower3EndBattleText3: ; 99831 (26:5831) + text "Whew!" + line "The spirit left!" + prompt + +_PokemonTower3AfterBattleText3: ; 99849 (26:5849) + text "My friends were" + line "possessed too!" + done + diff --git a/text/maps/pokemon_tower_4f.asm b/text/maps/pokemon_tower_4f.asm new file mode 100644 index 00000000..5a9f5254 --- /dev/null +++ b/text/maps/pokemon_tower_4f.asm @@ -0,0 +1,46 @@ +_PokemonTower4BattleText1: ; 99869 (26:5869) + text "GHOST! No!" + line "Kwaaah!" + done + +_PokemonTower4EndBattleText1: ; 9987d (26:587d) + text "Where" + line "is the GHOST?" + prompt + +_PokemonTower4AfterBattleText1: ; 99892 (26:5892) + text "I must have been" + line "dreaming..." + done + +_PokemonTower4BattleText2: ; 998b0 (26:58b0) + text "Be cursed with" + line "me! Kwaaah!" + done + +_PokemonTower4EndBattleText2: ; 998cc (26:58cc) + text "What!" + prompt + +_PokemonTower4AfterBattleText2: ; 998d3 (26:58d3) + text "We can't crack" + line "the identity of" + cont "the GHOSTs." + done + +_PokemonTower4BattleText3: ; 998fe (26:58fe) + text "Huhuhu..." + line "Beat me not!" + done + +_PokemonTower4EndBattleText3: ; 99916 (26:5916) + text "Huh?" + line "Who? What?" + prompt + +_PokemonTower4AfterBattleText3: ; 99927 (26:5927) + text "May the departed" + line "souls of #MON" + cont "rest in peace..." + done + diff --git a/text/maps/pokemon_tower_5f.asm b/text/maps/pokemon_tower_5f.asm new file mode 100644 index 00000000..62719173 --- /dev/null +++ b/text/maps/pokemon_tower_5f.asm @@ -0,0 +1,72 @@ +_PokemonTower5Text1: ; 99958 (26:5958) + text "Come, child! I" + line "sealed this space" + cont "with white magic!" + + para "You can rest here!" + done + +_PokemonTower5BattleText1: ; 9999f (26:599f) + text "Give...me..." + line "your...soul..." + done + +_PokemonTower5EndBattleText1: ; 999bc (26:59bc) + text "Gasp!" + prompt + +_PokemonTower5AfterBattleText1: ; 999c3 (26:59c3) + text "I was under" + line "possession!" + done + +_PokemonTower5BattleText2: ; 999dc (26:59dc) + text "You...shall..." + line "join...us..." + done + +_PokemonTower5EndBattleText2: ; 999f9 (26:59f9) + text "What" + line "a nightmare!" + prompt + +_PokemonTower5AfterBattleText2: ; 99a0c (26:5a0c) + text "I was possessed!" + done + +_PokemonTower5BattleText3: ; 99a1e (26:5a1e) + text "Zombies!" + done + +_PokemonTower5EndBattleText3: ; 99a28 (26:5a28) + text "Ha?" + prompt + +_PokemonTower5AfterBattleText3: ; 99a2d (26:5a2d) + text "I regained my" + line "senses!" + done + +_PokemonTower5BattleText4: ; 99a44 (26:5a44) + text "Urgah..." + line "Urff...." + done + +_PokemonTower5EndBattleText4: ; 99a57 (26:5a57) + text "Whoo!" + prompt + +_PokemonTower5AfterBattleText4: ; 99a5e (26:5a5e) + text "I fell to evil" + line "spirits despite" + cont "my training!" + done + +_UnnamedText_60a43: ; 99a8b (26:5a8b) + text "Entered purified," + line "protected zone!" + + para $52, "'s #MON" + line "are fully healed!" + done + diff --git a/text/maps/pokemon_tower_6f.asm b/text/maps/pokemon_tower_6f.asm new file mode 100644 index 00000000..a3efd5f0 --- /dev/null +++ b/text/maps/pokemon_tower_6f.asm @@ -0,0 +1,62 @@ +_UnnamedText_60c1f: ; 99ac8 (26:5ac8) + text "The GHOST was the" + line "restless soul of" + cont "CUBONE's mother!" + done + +_UnnamedText_60c24: ; 99afc (26:5afc) + text "The mother's soul" + line "was calmed." + + para "It departed to" + line "the afterlife!" + done + +_PokemonTower6BattleText1: ; 99b38 (26:5b38) + text "Give...me..." + line "blood..." + done + +_PokemonTower6EndBattleText1: ; 99b4f (26:5b4f) + text "Groan!" + prompt + +_PokemonTower6AfterBattleText1: ; 99b57 (26:5b57) + text "I feel anemic and" + line "weak..." + done + +_PokemonTower6BattleText2: ; 99b72 (26:5b72) + text "Urff... Kwaah!" + done + +_PokemonTower6EndBattleText2: ; 99b82 (26:5b82) + text "Some-" + line "thing fell out!" + prompt + +_PokemonTower6AfterBattleText2: ; 99b99 (26:5b99) + text "Hair didn't fall" + line "out! It was an" + cont "evil spirit!" + done + +_PokemonTower6BattleText3: ; 99bc6 (26:5bc6) + text "Ke..ke...ke..." + line "ke..ke...ke!!" + done + +_PokemonTower6EndBattleText3: ; 99be4 (26:5be4) + text "Keee!" + prompt + +_PokemonTower6AfterBattleText3: ; 99beb (26:5beb) + text "What's going on" + line "here?" + done + +_UnnamedText_60c56: ; 99c01 (26:5c01) + text "Be gone..." + line "Intruders..." + done + diff --git a/text/maps/pokemon_tower_7f.asm b/text/maps/pokemon_tower_7f.asm new file mode 100644 index 00000000..e613a329 --- /dev/null +++ b/text/maps/pokemon_tower_7f.asm @@ -0,0 +1,79 @@ +_UnnamedText_60ec4: ; 99c1a (26:5c1a) + text "MR.FUJI: Heh? You" + line "came to save me?" + + para "Thank you. But, I" + line "came here of my" + cont "own free will." + + para "I came to calm" + line "the soul of" + cont "CUBONE's mother." + + para "I think MAROWAK's" + line "spirit has gone" + cont "to the afterlife." + + para "I must thank you" + line "for your kind" + cont "concern!" + + para "Follow me to my" + line "home, #MON" + cont "HOUSE at the foot" + cont "of this tower." + done + +_PokemonTower7BattleText1: ; 99d31 (26:5d31) + text "What do you want?" + line "Why are you here?" + done + +_PokemonTower7EndBattleText1: ; 99d56 (26:5d56) + text "I give up!" + prompt + +_PokemonTower7AfterBattleText1: ; 99d62 (26:5d62) + text "I'm not going to" + line "forget this!" + done + +_PokemonTower7BattleText2: ; 99d80 (26:5d80) + text "This old guy came" + line "and complained" + cont "about us harming" + cont "useless #MON!" + + para "We're talking it" + line "over as adults!" + done + +_PokemonTower7EndBattleText2: ; 99de1 (26:5de1) + text "Please!" + line "No more!" + prompt + +_PokemonTower7AfterBattleText2: ; 99df3 (26:5df3) + text "#MON are only" + line "good for making" + cont "money!" + + para "Stay out of our" + line "business!" + done + +_PokemonTower7BattleText3: ; 99e33 (26:5e33) + text "You're not saving" + line "anyone, kid!" + done + +_PokemonTower7EndBattleText3: ; 99e52 (26:5e52) + text "Don't" + line "fight us ROCKETs!" + prompt + +_PokemonTower7AfterBattleText3: ; 99e6a (26:5e6a) + text "You're not getting" + line "away with this!" + done + diff --git a/text/maps/route_2_gate.asm b/text/maps/route_2_gate.asm new file mode 100644 index 00000000..4abc4a09 --- /dev/null +++ b/text/maps/route_2_gate.asm @@ -0,0 +1,13 @@ +_UnnamedText_5d616: ; 8a7fc (22:67fc) + text "The HM FLASH" + line "lights even the" + cont "darkest dungeons." + done + +_Route2GateText2: ; 8a82c (22:682c) + text "Once a #MON" + line "learns FLASH, you" + cont "can get through" + cont "ROCK TUNNEL." + done + diff --git a/text/maps/route_2_house.asm b/text/maps/route_2_house.asm new file mode 100644 index 00000000..9fe78c6a --- /dev/null +++ b/text/maps/route_2_house.asm @@ -0,0 +1,7 @@ +_Route2HouseText1: ; 8a7b8 (22:67b8) + text "A fainted #MON" + line "can't fight. But, " + cont "it can still use " + cont "moves like CUT!" + done + diff --git a/text/maps/safari_zone_entrance.asm b/text/maps/safari_zone_entrance.asm new file mode 100644 index 00000000..f748745e --- /dev/null +++ b/text/maps/safari_zone_entrance.asm @@ -0,0 +1,94 @@ +_SafariZoneEntranceText1: ; 9e6c7 (27:66c7) + text "Welcome to the" + line "SAFARI ZONE!" + done + +UnnamedText_9e6e4: ; 9e6e4 (27:66e4) + text "For just ¥500," + line "you can catch all" + cont "the #MON you" + cont "want in the park!" + + para "Would you like to" + line "join the hunt?@@" + +UnnamedText_9e747: ; 9e747 (27:6747) + text "That'll be ¥500" + line "please!" + + para "We only use a" + line "special # BALL" + cont "here." + + para $52, " received" + line "30 SAFARI BALLs!@@" + +_UnnamedText_75360: ; 9e79f (27:679f) + db $0 + para "We'll call you on" + line "the PA when you" + cont "run out of time" + cont "or SAFARI BALLs!" + done + +_UnnamedText_75365: ; 9e7e3 (27:67e3) + text "OK! Please come" + line "again!" + done + +_UnnamedText_7536a: ; 9e7fb (27:67fb) + text "Oops! Not enough" + line "money!" + done + +UnnamedText_9e814: ; 9e814 (27:6814) + text "Leaving early?@@" + +_UnnamedText_753bb: ; 9e825 (27:6825) + text "Please return any" + line "SAFARI BALLs you" + cont "have left." + done + +_UnnamedText_753c0: ; 9e854 (27:6854) + text "Good Luck!" + done + +_UnnamedText_753c5: ; 9e860 (27:6860) + text "Did you get a" + line "good haul?" + cont "Come again!" + done + +_UnnamedText_753e6: ; 9e886 (27:6886) + text "Hi! Is it your" + line "first time here?" + done + +_UnnamedText_753eb: ; 9e8a7 (27:68a7) + text "SAFARI ZONE has 4" + line "zones in it." + + para "Each zone has" + line "different kinds" + cont "of #MON. Use" + cont "SAFARI BALLs to" + cont "catch them!" + + para "When you run out" + line "of time or SAFARI" + cont "BALLs, it's game" + cont "over for you!" + + para "Before you go," + line "open an unused" + cont "#MON BOX so" + cont "there's room for" + cont "new #MON!" + done + +_UnnamedText_753f0: ; 9e993 (27:6993) + text "Sorry, you're a" + line "regular here!" + done + diff --git a/text/maps/saffron_gym.asm b/text/maps/saffron_gym.asm new file mode 100644 index 00000000..b5ab4634 --- /dev/null +++ b/text/maps/saffron_gym.asm @@ -0,0 +1,237 @@ +_UnnamedText_5d162: ; a1bb4 (28:5bb4) + text "I had a vision of" + line "your arrival!" + + para "I have had psychic" + line "powers since I" + cont "was a child." + + para "I first learned" + line "to bend spoons" + cont "with my mind." + + para "I dislike fight-" + line "ing, but if you" + cont "wish, I will show" + cont "you my powers!" + done + +_UnnamedText_5d167: ; a1c73 (28:5c73) + text "I'm" + line "shocked!" + cont "But, a loss is a" + cont "loss." + + para "I admit I didn't" + line "work hard enough" + cont "to win!" + + para "You earned the" + line "MARSHBADGE!@@" + +_UnnamedText_5d16e: ; a1cdc (28:5cdc) + text "Everyone has" + line "psychic power!" + cont "People just don't" + cont "realize it!" + done + +_UnnamedText_5d173: ; a1d16 (28:5d16) + text "The MARSHBADGE" + line "makes #MON up" + cont "to L70 obey you!" + + para "Stronger #MON" + line "will become wild," + cont "ignoring your" + cont "orders in battle!" + + para "Just don't raise" + line "your #MON too" + cont "much!" + + para "Wait, please take" + line "this TM with you!" + done + +ReceivedTM46Text: ; a1dcd (28:5dcd) + text $52, " received" + line "TM46!@@" + +_TM46ExplanationText: ; a1de0 (28:5de0) + db $0 + para "TM46 is PSYWAVE!" + line "It uses powerful" + cont "psychic waves to" + cont "inflict damage!" + done + +_TM46NoRoomText: ; a1e25 (28:5e25) + text "Your pack is full" + line "of other items!" + done + +_UnnamedText_5d1e6: ; a1e48 (28:5e48) + text "Yo! Champ in" + line "making!" + + para "SABRINA's #MON" + line "use psychic power" + cont "instead of force!" + + para "Fighting #MON" + line "are weak against" + cont "psychic #MON!" + + para "They get creamed" + line "before they can" + cont "even aim a punch!" + done + +_UnnamedText_5d1eb: ; a1ef0 (28:5ef0) + text "Psychic power," + line "huh?" + + para "If I had that," + line "I'd make a bundle" + cont "at the slots!" + done + +_SaffronGymBattleText1: ; a1f33 (28:5f33) + text "SABRINA is younger" + line "than I, but I" + cont "respect her!" + done + +_SaffronGymEndBattleText1: ; a1f62 (28:5f62) + text "Not" + line "good enough!" + prompt + +_SaffronGymAfterBattleText1: ; a1f74 (28:5f74) + text "In a battle of" + line "equals, the one" + cont "with the stronger" + cont "will wins!" + + para "If you wish" + line "to beat SABRINA," + cont "focus on winning!" + done + +_SaffronGymBattleText2: ; a1fe0 (28:5fe0) + text "Does our unseen" + line "power scare you?" + done + +_SaffronGymEndBattleText2: ; a2002 (28:6002) + text "I never" + line "foresaw this!" + prompt + +_SaffronGymAfterBattleText2: ; a2019 (28:6019) + text "Psychic #MON" + line "fear only ghosts" + cont "and bugs!" + done + +_SaffronGymBattleText3: ; a2042 (28:6042) + text "#MON take on" + line "the appearance of" + cont "their trainers." + + para "Your #MON must" + line "be tough, then!" + done + +_SaffronGymEndBattleText3: ; a2091 (28:6091) + text "I knew" + line "it!" + prompt + +_SaffronGymAfterBattleText3: ; a209d (28:609d) + text "I must teach" + line "better techniques" + cont "to my #MON!" + done + +_SaffronGymBattleText4: ; a20c9 (28:60c9) + text "You know that" + line "power alone isn't" + cont "enough!" + done + +_SaffronGymEndBattleText4: ; a20f1 (28:60f1) + text "I don't" + line "believe this!" + prompt + +_SaffronGymAfterBattleText4: ; a2107 (28:6107) + text "SABRINA just wiped" + line "out the KARATE" + cont "MASTER next door!" + done + +_SaffronGymBattleText5: ; a213c (28:613c) + text "You and I, our" + line "#MON shall" + cont "fight!" + done + +_SaffronGymEndBattleText5: ; a215e (28:615e) + text "I lost" + line "after all!" + prompt + +_SaffronGymAfterBattleText5: ; a2171 (28:6171) + text "I knew that this" + line "was going to take" + cont "place." + done + +_SaffronGymBattleText6: ; a219c (28:619c) + text "SABRINA is young," + line "but she's also" + cont "our LEADER!" + + para "You won't reach" + line "her easily!" + done + +_SaffronGymEndBattleText6: ; a21e4 (28:61e4) + text "I lost" + line "my concentration!" + prompt + +_SaffronGymAfterBattleText6: ; a21fe (28:61fe) + text "There used to be" + line "2 #MON GYMs in" + cont "SAFFRON." + + para "The FIGHTING DOJO" + line "next door lost" + cont "its GYM status" + cont "when we went and" + cont "creamed them!" + done + +_SaffronGymBattleText7: ; a2277 (28:6277) + text "SAFFRON #MON" + line "GYM is famous for" + cont "its psychics!" + + para "You want to see" + line "SABRINA!" + cont "I can tell!" + done + +_SaffronGymEndBattleText7: ; a22ca (28:62ca) + text "Arrrgh!" + prompt + +_SaffronGymAfterBattleText7: ; a22d3 (28:62d3) + text "That's right! I" + line "used telepathy to" + cont "read your mind!" + done + diff --git a/text/maps/saffron_house.asm b/text/maps/saffron_house.asm new file mode 100644 index 00000000..0aa44b1d --- /dev/null +++ b/text/maps/saffron_house.asm @@ -0,0 +1,27 @@ +_SaffronHouse1Text1: ; a2305 (28:6305) + text "Thank you for" + line "writing. I hope" + cont "to see you soon!" + + para "Hey! Don't look" + line "at my letter!" + done + +_SaffronHouse1Text2: ; a2352 (28:6352) + text "PIDGEY: Kurukkoo!@@" + +_SaffronHouse1Text3: ; a2366 (28:6366) + text "The COPYCAT is" + line "cute! I'm getting" + cont "her a # DOLL!" + done + +_SaffronHouse1Text4: ; a2395 (28:6395) + text "I was given a PP" + line "UP as a gift." + + para "It's used for" + line "increasing the PP" + cont "of techniques!" + done + diff --git a/text/maps/saffron_mart.asm b/text/maps/saffron_mart.asm new file mode 100644 index 00000000..16017a6a --- /dev/null +++ b/text/maps/saffron_mart.asm @@ -0,0 +1,14 @@ +_SaffronMartText2: ; a23e3 (28:63e3) + text "MAX REPEL lasts" + line "longer than SUPER" + cont "REPEL for keeping" + cont "weaker #MON" + cont "away!" + done + +_SaffronMartText3: ; a242a (28:642a) + text "REVIVE is costly," + line "but it revives" + cont "fainted #MON!" + done + diff --git a/text/maps/saffron_pokecenter.asm b/text/maps/saffron_pokecenter.asm new file mode 100644 index 00000000..c17f534c --- /dev/null +++ b/text/maps/saffron_pokecenter.asm @@ -0,0 +1,13 @@ +_SaffronPokecenterText1: ; a248e (28:648e) + text "#MON growth" + line "rates differ from" + cont "specie to specie." + done + +_SaffronPokecenterText3: ; a24bf (28:64bf) + text "SILPH CO. is very" + line "famous. That's" + cont "why it attracted" + cont "TEAM ROCKET!" + done + diff --git a/text/maps/vermilion_dock.asm b/text/maps/vermilion_dock.asm new file mode 100644 index 00000000..9df9a92d --- /dev/null +++ b/text/maps/vermilion_dock.asm @@ -0,0 +1,3 @@ +_VermilionDockText1: ; 9c50e (27:450e) + db $0, $57 + diff --git a/text/maps/vermilion_fishing_house.asm b/text/maps/vermilion_fishing_house.asm new file mode 100644 index 00000000..095a0076 --- /dev/null +++ b/text/maps/vermilion_fishing_house.asm @@ -0,0 +1,54 @@ +_UnnamedText_560b1: ; 9c510 (27:4510) + text "I'm the FISHING" + line "GURU!" + + para "I simply Looove" + line "fishing!" + + para "Do you like to" + line "fish?" + done + +_UnnamedText_560b6: ; 9c554 (27:4554) + text "Grand! I like" + line "your style!" + + para "Take this and" + line "fish, young one!" + + para $52, " received" + line "an @" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_560bb: ; 9c5a4 (27:45a4) + db $0 + para "Fishing is a way" + line "of life!" + + para "From the seas to" + line "rivers, go out" + cont "and land the big" + cont "one, young one!" + done + +_UnnamedText_560c0: ; 9c601 (27:4601) + text "Oh... That's so" + line "disappointing..." + done + +_UnnamedText_560c5: ; 9c622 (27:4622) + text "Hello there," + line $52, "!" + + para "How are the fish" + line "biting?" + done + +_UnnamedText_560ca: ; 9c64c (27:464c) + text "Oh no!" + + para "You have no room" + line "for my gift!" + done + diff --git a/text/maps/vermilion_gym_1.asm b/text/maps/vermilion_gym_1.asm new file mode 100644 index 00000000..255ee6e8 --- /dev/null +++ b/text/maps/vermilion_gym_1.asm @@ -0,0 +1,22 @@ +_UnnamedText_5cb6d: ; 9aaa5 (26:6aa5) + text "Hey, kid! What do" + line "you think you're" + cont "doing here?" + + para "You won't live" + line "long in combat!" + cont "That's for sure!" + + para "I tell you kid," + line "electric #MON" + cont "saved me during" + cont "the war!" + + para "They zapped my" + line "enemies into" + cont "paralysis!" + + para "The same as I'll" + line "do to you!" + done + diff --git a/text/maps/vermilion_gym_2.asm b/text/maps/vermilion_gym_2.asm new file mode 100644 index 00000000..74735675 --- /dev/null +++ b/text/maps/vermilion_gym_2.asm @@ -0,0 +1,144 @@ +_UnnamedText_5cb72: ; 9c000 (27:4000) + text "A little word of" + line "advice, kid!" + + para "Electricity is" + line "sure powerful!" + + para "But, it's useless" + line "against ground-" + cont "type #MON!" + done + +_UnnamedText_5cb77: ; 9c069 (27:4069) + text "The THUNDERBADGE" + line "cranks up your" + cont "#MON's SPEED!" + + para "It also lets your" + line "#MON FLY any" + cont "time, kid!" + + para "You're special," + line "kid! Take this!" + done + +_ReceivedTM24Text: ; 9c0e0 (27:40e0) + text $52, " received " + line "@" + TX_RAM $cf4b + text "!@@" + +_TM24ExplanationText: ; 9c0f5 (27:40f5) + db $0 + para "TM24 contains" + line "THUNDERBOLT!" + + para "Teach it to an" + line "electric #MON!" + done + +_TM24NoRoomText: ; 9c130 (27:4130) + text "Yo kid, make room" + line "in your pack!" + done + +_ReceivedThunderbadgeText: ; 9c151 (27:4151) + text "Whoa!" + + para "You're the real" + line "deal, kid!" + + para "Fine then, take" + line "the THUNDERBADGE!" + prompt + +_VermilionGymBattleText1: ; 9c194 (27:4194) + text "When I was in the" + line "Army, LT.SURGE" + cont "was my strict CO!" + done + +_VermilionGymEndBattleText1: ; 9c1c8 (27:41c8) + text "Stop!" + line "You're very good!" + prompt + +_VermilionGymAfterBattleText1: ; 9c1e0 (27:41e0) + text "The door won't" + line "open?" + + para "LT.SURGE always" + line "was cautious!" + done + +_VermilionGymBattleText2: ; 9c213 (27:4213) + text "I'm a lightweight," + line "but I'm good with" + cont "electricity!" + done + +_VermilionGymEndBattleText2: ; 9c244 (27:4244) + text "Fried!" + prompt + +_VermilionGymAfterBattleText2: ; 9c24c (27:424c) + text "OK, I'll talk!" + + para "LT.SURGE said he" + line "hid door switches" + cont "inside something!" + done + +_VermilionGymBattleText3: ; 9c290 (27:4290) + text "This is no place" + line "for kids!" + done + +_VermilionGymEndBattleText3: ; 9c2ac (27:42ac) + text "Wow!" + line "Surprised me!" + prompt + +_VermilionGymAfterBattleText3: ; 9c2c0 (27:42c0) + text "LT.SURGE set up" + line "double locks!" + cont "Here's a hint!" + + para "When you open the" + line "1st lock, the 2nd" + cont "lock is right" + cont "next to it!" + done + +_UnnamedText_5cbf4: ; 9c32b (27:432b) + text "Yo! Champ in" + line "making!" + + para "LT.SURGE has a" + line "nickname. People" + cont "refer to him as" + cont "the Lightning" + cont "American!" + + para "He's an expert on" + line "electric #MON!" + + para "Birds and water" + line "#MON are at" + cont "risk! Beware of" + cont "paralysis too!" + + para "LT.SURGE is very" + line "cautious!" + + para "You'll have to" + line "break a code to" + cont "get to him!" + done + +_UnnamedText_5cbf9: ; 9c429 (27:4429) + text "Whew! That match" + line "was electric!" + done + diff --git a/text/maps/vermilion_house.asm b/text/maps/vermilion_house.asm new file mode 100644 index 00000000..b7f80490 --- /dev/null +++ b/text/maps/vermilion_house.asm @@ -0,0 +1,22 @@ +_VermilionHouse1Text1: ; 9c449 (27:4449) + text "I'm getting my" + line "PIDGEY to fly a" + cont "letter to SAFFRON" + cont "in the north!" + done + +_VermilionHouse1Text2: ; 9c488 (27:4488) + text "PIDGEY: Kurukkoo!@@" + +_VermilionHouse1Text3: ; 9c49c (27:449c) + text "Dear PIPPI, I hope" + line "to see you soon." + + para "I heard SAFFRON" + line "has problems with" + cont "TEAM ROCKET." + + para "VERMILION appears" + line "to be safe." + done + diff --git a/text/maps/vermilion_mart.asm b/text/maps/vermilion_mart.asm new file mode 100644 index 00000000..fbbca10a --- /dev/null +++ b/text/maps/vermilion_mart.asm @@ -0,0 +1,24 @@ +_VermilionMartText2: ; 9a9c1 (26:69c1) + text "There are evil" + line "people who will" + cont "use #MON for" + cont "criminal acts." + + para "TEAM ROCKET" + line "traffics in rare" + cont "#MON." + + para "They also abandon" + line "#MON that they" + cont "consider not to" + cont "be popular or" + cont "useful." + done + +_VermilionMartText3: ; 9aa67 (26:6a67) + text "I think #MON" + line "can be good or" + cont "evil. It depends" + cont "on the trainer." + done + diff --git a/text/maps/vermilion_pokecenter.asm b/text/maps/vermilion_pokecenter.asm new file mode 100644 index 00000000..667885f0 --- /dev/null +++ b/text/maps/vermilion_pokecenter.asm @@ -0,0 +1,21 @@ +_VermilionPokecenterText2: ; 9a4b2 (26:64b2) +_VermilionPokecenterText1: ; 9a4b2 (26:64b2) + text "Even if they are" + line "the same level," + cont "#MON can have" + cont "very different" + cont "abilities." + + para "A #MON raised" + line "by a trainer is" + cont "stronger than one" + cont "in the wild." + done + +_VermilionPokecenterText3: ; 9a539 (26:6539) + text "My #MON was" + line "poisoned! It" + cont "fainted while we" + cont "were walking!" + done + diff --git a/text/maps/viridian_forest_entrance.asm b/text/maps/viridian_forest_entrance.asm new file mode 100644 index 00000000..b50c12aa --- /dev/null +++ b/text/maps/viridian_forest_entrance.asm @@ -0,0 +1,14 @@ +_ViridianForestEntranceText1: ; 8a868 (22:6868) + text "Are you going to" + line "VIRIDIAN FOREST?" + cont "Be careful, it's" + cont "a natural maze!" + done + +_ViridianForestEntranceText2: ; 8a8ab (22:68ab) + text "RATTATA may be" + line "small, but its" + cont "bite is wicked!" + cont "Did you get one?" + done + diff --git a/text/maps/viridian_forest_exit.asm b/text/maps/viridian_forest_exit.asm new file mode 100644 index 00000000..23e13e4e --- /dev/null +++ b/text/maps/viridian_forest_exit.asm @@ -0,0 +1,20 @@ +_ViridianForestexitText1: ; 8a6fd (22:66fd) + text "Many #MON live" + line "only in forests " + cont "and caves." + + para "You need to look" + line "everywhere to get" + cont "different kinds!" + done + +_ViridianForestexitText2: ; 8a75d (22:675d) + text "Have you noticed" + line "the bushes on the" + cont "roadside?" + + para "They can be cut" + line "down by a special" + cont "#MON move." + done + diff --git a/text/maps/wardens_house.asm b/text/maps/wardens_house.asm new file mode 100644 index 00000000..40e368a1 --- /dev/null +++ b/text/maps/wardens_house.asm @@ -0,0 +1,84 @@ +_WardenGibberishText1: ; 9e444 (27:6444) + text "WARDEN: Hif fuff" + line "hefifoo!" + + para "Ha lof ha feef ee" + line "hafahi ho. Heff" + cont "hee fwee!" + done + +_WardenGibberishText2: ; 9e48b (27:648b) + text "Ah howhee ho hoo!" + line "Eef ee hafahi ho!" + done + +_WardenGibberishText3: ; 9e4b0 (27:64b0) + text "Ha? He ohay heh" + line "ha hoo ee haheh!" + done + +_WardenTeethText1: ; 9e4d2 (27:64d2) + text $52, " gave the" + line "GOLD TEETH to the" + cont "WARDEN!@@" + +_WardenTeethText2: ; 9e4f9 (27:64f9) + db $0 + para "The WARDEN popped" + line "in his teeth!" + prompt + +_WardenThankYouText: ; 9e51b (27:651b) + text "WARDEN: Thanks," + line "kid! No one could" + cont "understand a word" + cont "that I said." + + para "I couldn't work" + line "that way." + cont "Let me give you" + cont "something for" + cont "your trouble." + prompt + +_ReceivedHM04Text: ; 9e5a2 (27:65a2) + text $52, " received" + line "@" + TX_RAM $cf4b + text "!@@" + +_HM04ExplanationText: ; 9e5b6 (27:65b6) + text "WARDEN: HM04" + line "teaches STRENGTH!" + + para "It lets #MON" + line "move boulders" + cont "when you're out-" + cont "side of battle." + + para "Oh yes, did you" + line "find SECRET HOUSE" + cont "in SAFARI ZONE?" + + para "If you do, you" + line "win an HM!" + + para "I hear it's the" + line "rare SURF HM." + done + +_HM04NoRoomText: ; 9e67a (27:667a) + text "Your pack is" + line "stuffed full!" + done + +_UnnamedText_75176: ; 9e696 (27:6696) + text "#MON photos" + line "and fossils." + done + +_UnnamedText_7517b: ; 9e6b0 (27:66b0) + text "Old #MON" + line "merchandise." + done + From 7762afaf993396df6221d3e06a5c76eb63325d46 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 00:22:31 -0500 Subject: [PATCH 28/41] Split out route text --- main.asm | 2912 +------------------------------------- text/maps/route_1.asm | 50 + text/maps/route_10.asm | 110 ++ text/maps/route_11_1.asm | 135 ++ text/maps/route_11_2.asm | 29 + text/maps/route_12.asm | 140 ++ text/maps/route_13.asm | 180 +++ text/maps/route_14.asm | 174 +++ text/maps/route_15.asm | 172 +++ text/maps/route_16.asm | 121 ++ text/maps/route_17.asm | 196 +++ text/maps/route_18.asm | 59 + text/maps/route_19.asm | 158 +++ text/maps/route_2.asm | 10 + text/maps/route_20.asm | 157 ++ text/maps/route_21.asm | 138 ++ text/maps/route_22.asm | 105 ++ text/maps/route_23.asm | 39 + text/maps/route_24_1.asm | 65 + text/maps/route_24_2.asm | 91 ++ text/maps/route_25.asm | 157 ++ text/maps/route_3.asm | 146 ++ text/maps/route_4.asm | 36 + text/maps/route_5.asm | 6 + text/maps/route_6.asm | 98 ++ text/maps/route_7.asm | 6 + text/maps/route_8.asm | 155 ++ text/maps/route_9.asm | 158 +++ 28 files changed, 2918 insertions(+), 2885 deletions(-) create mode 100644 text/maps/route_1.asm create mode 100644 text/maps/route_10.asm create mode 100644 text/maps/route_11_1.asm create mode 100644 text/maps/route_11_2.asm create mode 100644 text/maps/route_12.asm create mode 100644 text/maps/route_13.asm create mode 100644 text/maps/route_14.asm create mode 100644 text/maps/route_15.asm create mode 100644 text/maps/route_16.asm create mode 100644 text/maps/route_17.asm create mode 100644 text/maps/route_18.asm create mode 100644 text/maps/route_19.asm create mode 100644 text/maps/route_2.asm create mode 100644 text/maps/route_20.asm create mode 100644 text/maps/route_21.asm create mode 100644 text/maps/route_22.asm create mode 100644 text/maps/route_23.asm create mode 100644 text/maps/route_24_1.asm create mode 100644 text/maps/route_24_2.asm create mode 100644 text/maps/route_25.asm create mode 100644 text/maps/route_3.asm create mode 100644 text/maps/route_4.asm create mode 100644 text/maps/route_5.asm create mode 100644 text/maps/route_6.asm create mode 100644 text/maps/route_7.asm create mode 100644 text/maps/route_8.asm create mode 100644 text/maps/route_9.asm diff --git a/main.asm b/main.asm index 1bc3375c..8f4a2489 100644 --- a/main.asm +++ b/main.asm @@ -118395,2899 +118395,41 @@ _UnnamedText_1e8da: ; 8d57f (23:557f) cont "#MON on my PC!" done -_Route1ViridianMartSampleText: ; 8d5bf (23:55bf) - text "Hi! I work at a" - line "#MON MART." +INCLUDE "text/maps/route_1.asm" +INCLUDE "text/maps/route_2.asm" +INCLUDE "text/maps/route_3.asm" +INCLUDE "text/maps/route_4.asm" +INCLUDE "text/maps/route_5.asm" +INCLUDE "text/maps/route_6.asm" +INCLUDE "text/maps/route_7.asm" +INCLUDE "text/maps/route_8.asm" +INCLUDE "text/maps/route_9.asm" +INCLUDE "text/maps/route_10.asm" +INCLUDE "text/maps/route_11_1.asm" - para "It's a convenient" - line "shop, so please" - cont "visit us in" - cont "VIRIDIAN CITY." - - para "I know, I'll give" - line "you a sample!" - cont "Here you go!" - prompt - -_UnnamedText_1cae8: ; 8d643 (23:5643) - text $52, " got" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_1caee: ; 8d652 (23:5652) - text "We also carry" - line "# BALLs for" - cont "catching #MON!" - done - -_UnnamedText_1caf3: ; 8d67c (23:567c) - text "You have too much" - line "stuff with you!" - done - -_Route1Text2: ; 8d69f (23:569f) - text "See those ledges" - line "along the road?" - - para "It's a bit scary," - line "but you can jump" - cont "from them." - - para "You can get back" - line "to PALLET TOWN" - cont "quicker that way." - done - -_Route1Text3: ; 8d720 (23:5720) - text "ROUTE 1" - line "PALLET TOWN -" - cont "VIRIDIAN CITY" - done - -_Route2Text3: ; 8d745 (23:5745) - text "ROUTE 2" - line "VIRIDIAN CITY -" - cont "PEWTER CITY" - done - -_Route2Text4: ; 8d76a (23:576a) - text "DIGLETT's CAVE" - done - -_Route3Text1: ; 8d779 (23:5779) - text "Whew... I better" - line "take a rest..." - cont "Groan..." - - para "That tunnel from" - line "CERULEAN takes a" - cont "lot out of you!" - done - -_Route3BattleText1: ; 8d7d5 (23:57d5) - text "Hey! I met you in" - line "VIRIDIAN FOREST!" - done - -_Route3EndBattleText1: ; 8d7f9 (23:57f9) - text "You" - line "beat me again!" - prompt - -_Route3AfterBattleText1: ; 8d80d (23:580d) - text "There are other" - line "kinds of #MON" - cont "than those found" - cont "in the forest!" - done - -_Route3BattleText2: ; 8d84c (23:584c) - text "Hi! I like shorts!" - line "They're comfy and" - cont "easy to wear!" - done - -_Route3EndBattleText2: ; 8d87f (23:587f) - text "I don't" - line "believe it!" - prompt - -_Route3AfterBattleText2: ; 8d893 (23:5893) - text "Are you storing" - line "your #MON on" - cont "PC? Each BOX can" - cont "hold 20 #MON!" - done - -_Route3BattleText3: ; 8d8d0 (23:58d0) - text "You looked at me," - line "didn't you?" - done - -_Route3EndBattleText3: ; 8d8ee (23:58ee) - text "You're" - line "mean!" - prompt - -_Route3AfterBattleText3: ; 8d8fb (23:58fb) - text "Quit staring if" - line "you don't want to" - cont "fight!" - done - -_Route3BattleText4: ; 8d924 (23:5924) - text "Are you a trainer?" - line "Let's fight!" - done - -_Route3EndBattleText4: ; 8d944 (23:5944) - text "If I" - line "had new #MON I" - cont "would've won!" - prompt - -_Route3AfterBattleText4: ; 8d966 (23:5966) - text "If a #MON BOX" - line "on the PC gets" - cont "full, just switch" - cont "to another BOX!" - done - -_Route3BattleText5: ; 8d9a6 (23:59a6) - text "That look you" - line "gave me, it's so" - cont "intriguing!" - done - -_Route3EndBattleText5: ; 8d9d1 (23:59d1) - text "Be nice!" - prompt - -_Route3AfterBattleText5: ; 8d9db (23:59db) - text "Avoid fights by" - line "not letting" - cont "people see you!" - done - -_Route3BattleText6: ; 8da08 (23:5a08) - text "Hey! You're not" - line "wearing shorts!" - done - -_Route3EndBattleText6: ; 8da28 (23:5a28) - text "Lost!" - line "Lost! Lost!" - prompt - -_Route3AfterBattleText6: ; 8da3b (23:5a3b) - text "I always wear" - line "shorts, even in" - cont "winter!" - done - -_Route3BattleText7: ; 8da62 (23:5a62) - text "You can fight my" - line "new #MON!" - done - -_Route3EndBattleText7: ; 8da7e (23:5a7e) - text "Done" - line "like dinner!" - prompt - -_Route3AfterBattleText7: ; 8da91 (23:5a91) - text "Trained #MON" - line "are stronger than" - cont "the wild ones!" - done - -_Route3BattleText8: ; 8dac0 (23:5ac0) - text "Eek! Did you" - line "touch me?" - done - -_Route3EndBattleText8: ; 8dad8 (23:5ad8) - text "That's it?" - prompt - -_Route3AfterBattleText8: ; 8dae3 (23:5ae3) - text "ROUTE 4 is at the" - line "foot of MT.MOON." - done - -_Route3Text10: ; 8db07 (23:5b07) - text "ROUTE 3" - line "MT.MOON AHEAD" - done - -_Route4Text1: ; 8db1e (23:5b1e) - text "Ouch! I tripped" - line "over a rocky" - cont "#MON, GEODUDE!" - done - -_Route4BattleText1: ; 8db4b (23:5b4b) - text "I came to get my" - line "mushroom #MON!" - done - -_Route4EndBattleText1: ; 8db6c (23:5b6c) - text "Oh! My cute" - line "mushroom #MON!" - prompt - -_Route4AfterBattleText1: ; 8db88 (23:5b88) - text "There might not" - line "be any more" - cont "mushrooms here." - - para "I think I got" - line "them all." - done - -_Route4Text5: ; 8dbcd (23:5bcd) - text "MT.MOON" - line "Tunnel Entrance" - done - -_Route4Text6: ; 8dbe6 (23:5be6) - text "ROUTE 4" - line "MT.MOON -" - cont "CERULEAN CITY" - done - -_Route5Text1: ; 8dc07 (23:5c07) - text "UNDERGROUND PATH" - line "CERULEAN CITY -" - cont "VERMILION CITY" - done - -_Route6BattleText1: ; 8dc38 (23:5c38) - text "Who's there?" - line "Quit listening in" - cont "on us!" - done - -_Route6EndBattleText1: ; 8dc5e (23:5c5e) - text "I" - line "just can't win!" - prompt - -_Route6AfterBattleText1: ; 8dc70 (23:5c70) - text "Whisper..." - line "whisper..." - done - -_Route6BattleText2: ; 8dc87 (23:5c87) - text "Excuse me! This" - line "is a private" - cont "conversation!" - done - -_Route6EndBattleText2: ; 8dcb3 (23:5cb3) - text "Ugh!" - line "I hate losing!" - prompt - -_Route6BattleText3: ; 8dcc8 (23:5cc8) - text "There aren't many" - line "bugs out here." - done - -_Route6EndBattleText3: ; 8dce9 (23:5ce9) - text "No!" - line "You're kidding!" - prompt - -_Route6AfterBattleText3: ; 8dcfd (23:5cfd) - text "I like bugs, so" - line "I'm going back to" - cont "VIRIDIAN FOREST." - done - -_Route6BattleText4: ; 8dd30 (23:5d30) - text "Huh? You want" - line "to talk to me?" - done - -_Route6EndBattleText4: ; 8dd4e (23:5d4e) - text "I" - line "didn't start it!" - prompt - -_Route6AfterBattleText4: ; 8dd61 (23:5d61) - text "I should carry" - line "more #MON with" - cont "me for safety." - done - -_Route6BattleText5: ; 8dd8f (23:5d8f) - text "Me? Well, OK." - line "I'll play!" - done - -_Route6EndBattleText5: ; 8dda8 (23:5da8) - text "Just" - line "didn't work!" - prompt - -_Route6AfterBattleText5: ; 8ddba (23:5dba) - text "I want to get" - line "stronger! What's" - cont "your secret?" - done - -_Route6BattleText6: ; 8dde6 (23:5de6) - text "I've never seen" - line "you around!" - cont "Are you good?" - done - -_Route6EndBattleText6: ; 8de10 (23:5e10) - text "You" - line "are too good!" - prompt - -_Route6AfterBattleText6: ; 8de23 (23:5e23) - text "Are my #MON" - line "weak? Or, am I" - cont "just bad?" - done - -_Route6Text7: ; 8de49 (23:5e49) - text "UNDERGROUND PATH" - line "CERULEAN CITY -" - cont "VERMILION CITY" - done - -_Route7Text1: ; 8de7a (23:5e7a) - text "UNDERGROUND PATH" - line "CELADON CITY -" - cont "LAVENDER TOWN" - done - -_Route8BattleText1: ; 8dea9 (23:5ea9) - text "You look good at" - line "#MON, but" - cont "how's your chem?" - done - -_Route8EndBattleText1: ; 8ded5 (23:5ed5) - text "Ow!" - line "Meltdown!" - prompt - -_Route8AfterBattleText1: ; 8dee4 (23:5ee4) - text "I am better at" - line "school than this!" - done - -_Route8BattleText2: ; 8df06 (23:5f06) - text "All right! Let's" - line "roll the dice!" - done - -_Route8EndBattleText2: ; 8df26 (23:5f26) - text "Drat!" - line "Came up short!" - prompt - -_Route8AfterBattleText2: ; 8df3c (23:5f3c) - text "Lady Luck's not" - line "with me today!" - done - -_Route8BattleText3: ; 8df5b (23:5f5b) - text "You need strategy" - line "to win at this!" - done - -_Route8EndBattleText3: ; 8df7e (23:5f7e) - text "It's" - line "not logical!" - prompt - -_Route8AfterBattleText3: ; 8df90 (23:5f90) - text "Go with GRIMER" - line "first...and..." - cont "...and...then..." - done - -_Route8BattleText4: ; 8dfc0 (23:5fc0) - text "I like NIDORAN, so" - line "I collect them!" - done - -_Route8EndBattleText4: ; 8dfe4 (23:5fe4) - text "Why? Why??" - prompt - -_Route8AfterBattleText4: ; 8dff0 (23:5ff0) - text "When #MON grow" - line "up they get ugly!" - cont "They shouldn't" - cont "evolve!" - done - -_Route8BattleText5: ; 8e028 (23:6028) - text "School is fun, but" - line "so are #MON." - done - -_Route8EndBattleText5: ; 8e049 (23:6049) - text "I'll" - line "stay with school." - prompt - -_Route8AfterBattleText5: ; 8e060 (23:6060) - text "We're stuck here" - line "because of the" - cont "gates at SAFFRON." - done - -_Route8BattleText6: ; 8e092 (23:6092) - text "MEOWTH is so cute," - line "meow, meow, meow!" - done - -_Route8EndBattleText6: ; 8e0b8 (23:60b8) - text "Meow!" - prompt - -_Route8AfterBattleText6: ; 8e0bf (23:60bf) - text "I think PIDGEY" - line "and RATTATA" - cont "are cute too!" - done - -_Route8BattleText7: ; 8e0e9 (23:60e9) - text "We must look" - line "silly standing" - cont "here like this!" - done - -_Route8EndBattleText7: ; 8e116 (23:6116) - text "Look what" - line "you did!" - prompt - -_Route8AfterBattleText7: ; 8e12a (23:612a) - text "SAFFRON's gate" - line "keeper won't let" - cont "us through." - cont "He's so mean!" - done - -_Route8BattleText8: ; 8e162 (23:6162) - text "I'm a rambling," - line "gambling dude!" - done - -_Route8EndBattleText8: ; 8e181 (23:6181) - text "Missed" - line "the big score!" - prompt - -_Route8AfterBattleText8: ; 8e198 (23:6198) - text "Gambling and" - line "#MON are like" - cont "eating peanuts!" - cont "Just can't stop!" - done - -_Route8BattleText9: ; 8e1d4 (23:61d4) - text "What's a cute," - line "round and fluffy" - cont "#MON?" - done - -_Route8EndBattleText9: ; 8e1fa (23:61fa) - text "Stop!" - - para "Don't be so mean" - line "to my CLEFAIRY!" - prompt - -_Route8AfterBattleText9: ; 8e221 (23:6221) - text "I heard that" - line "CLEFAIRY evolves" - cont "when it's exposed" - cont "to a MOON STONE." - done - -_Route8Text10: ; 8e262 (23:6262) - text "UNDERGROUND PATH" - line "CELADON CITY -" - cont "LAVENDER TOWN" - done - -_Route9BattleText1: ; 8e291 (23:6291) - text "You have #MON" - line "with you!" - cont "You're mine!" - done - -_Route9EndBattleText1: ; 8e2b6 (23:62b6) - text "You" - line "deceived me!" - prompt - -_Route9AfterBattleText1: ; 8e2c8 (23:62c8) - text "You need light to" - line "get through that" - cont "dark tunnel ahead." - done - -_Route9BattleText2: ; 8e2ff (23:62ff) - text "Who's that walking" - line "with those good" - cont "looking #MON?" - done - -_Route9EndBattleText2: ; 8e330 (23:6330) - text "Out" - line "like a light!" - prompt - -_Route9AfterBattleText2: ; 8e343 (23:6343) - text "Keep walking!" - done - -_Route9BattleText3: ; 8e352 (23:6352) - text "I'm taking ROCK" - line "TUNNEL to go to" - cont "LAVENDER..." - done - -_Route9EndBattleText3: ; 8e37e (23:637e) - text "Can't" - line "measure up!" - prompt - -_Route9AfterBattleText3: ; 8e390 (23:6390) - text "Are you off to" - line "ROCK TUNNEL too?" - done - -_Route9BattleText4: ; 8e3b1 (23:63b1) - text "Don't you dare" - line "condescend me!" - done - -_Route9EndBattleText4: ; 8e3cf (23:63cf) - text "No!" - line "You're too much!" - prompt - -_Route9AfterBattleText4: ; 8e3e4 (23:63e4) - text "You're obviously" - line "talented! Good" - cont "luck to you!" - done - -_Route9BattleText5: ; 8e411 (23:6411) - text "Bwahaha!" - line "Great! I was" - cont "bored, eh!" - done - -_Route9EndBattleText5: ; 8e433 (23:6433) - text "Keep it" - line "coming, eh!" - - para "Oh wait. I'm out" - line "of #MON!" - prompt - -_Route9AfterBattleText5: ; 8e461 (23:6461) - text "You sure had guts" - line "standing up to me" - cont "there, eh?" - done - -_Route9BattleText6: ; 8e491 (23:6491) - text "Hahaha!" - line "Aren't you a" - cont "little toughie!" - done - -_Route9EndBattleText6: ; 8e4b6 (23:64b6) - text "What's" - line "that?" - prompt - -_Route9AfterBattleText6: ; 8e4c3 (23:64c3) - text "Hahaha! Kids" - line "should be tough!" - done - -_Route9BattleText7: ; 8e4e2 (23:64e2) - text "I got up early" - line "every day to" - cont "raise my #MON" - cont "from cocoons!" - done - -_Route9EndBattleText7: ; 8e51b (23:651b) - text "WHAT?" - - para "What a total" - line "waste of time!" - prompt - -_Route9AfterBattleText7: ; 8e53e (23:653e) - text "I have to collect" - line "more than bugs to" - cont "get stronger..." - done - -_Route9BattleText8: ; 8e573 (23:6573) - text "Hahahaha!" - line "Come on, dude!" - done - -_Route9EndBattleText8: ; 8e58d (23:658d) - text "Hahahaha!" - line "You beat me fair!" - prompt - -_Route9AfterBattleText8: ; 8e5aa (23:65aa) - text "Hahahaha!" - line "Us hearty guys" - cont "always laugh!" - done - -_Route9BattleText9: ; 8e5d2 (23:65d2) - text "Go, my super bug" - line "#MON!" - done - -_Route9EndBattleText9: ; 8e5ea (23:65ea) - text "My" - line "bugs..." - prompt - -_Route9AfterBattleText9: ; 8e5f6 (23:65f6) - text "If you don't like" - line "bug #MON, you" - cont "bug me!" - done - -_Route9Text11: ; 8e61e (23:661e) - text "ROUTE 9" - line "CERULEAN CITY-" - cont "ROCK TUNNEL" - done - -_Route10BattleText1: ; 8e642 (23:6642) - text "Wow, are you a" - line "#MANIAC too?" - cont "Want to see my" - cont "collection?" - done - -_Route10EndBattleText1: ; 8e67a (23:667a) - text "Humph." - line "I'm not angry!" - prompt - -_Route10AfterBattleText1: ; 8e690 (23:6690) - text "I have more rare" - line "#MON at home!" - done - -_Route10BattleText2: ; 8e6b0 (23:66b0) - text "Ha-hahah-ah-ha!" - done - -_Route10EndBattleText2: ; 8e6c1 (23:66c1) - text "Ha-haha!" - line "Not laughing!" - cont "Ha-hay fever!" - cont "Haha-ha-choo!" - prompt - -_Route10AfterBattleText2: ; 8e6f5 (23:66f5) - text "Haha-ha-choo!" - line "Ha-choo!" - cont "Snort! Snivel!" - done - -_Route10BattleText3: ; 8e71c (23:671c) - text "Hi kid, want to" - line "see my #MON?" - done - -_Route10EndBattleText3: ; 8e73a (23:673a) - text "Oh no!" - line "My #MON!" - prompt - -_Route10AfterBattleText3: ; 8e74b (23:674b) - text "I don't like you" - line "for beating me!" - done - -_Route10BattleText4: ; 8e76c (23:676c) - text "I've been to a" - line "#MON GYM a few" - cont "times. But, I" - cont "lost each time." - done - -_Route10EndBattleText4: ; 8e7a8 (23:67a8) - text "Ohh!" - line "Blew it again!" - prompt - -_Route10AfterBattleText4: ; 8e7bd (23:67bd) - text "I noticed some" - line "#MANIACs" - cont "prowling around." - done - -_Route10BattleText5: ; 8e7e7 (23:67e7) - text "Ah! This mountain" - line "air is delicious!" - done - -_Route10EndBattleText5: ; 8e80c (23:680c) - text "That" - line "cleared my head!" - prompt - -_Route10AfterBattleText5: ; 8e823 (23:6823) - text "I feel bloated on" - line "mountain air!" - done - -_Route10BattleText6: ; 8e844 (23:6844) - text "I'm feeling a bit" - line "faint from this" - cont "tough hike." - done - -_Route10EndBattleText6: ; 8e872 (23:6872) - text "I'm" - line "not up to it!" - prompt - -_Route10AfterBattleText6: ; 8e884 (23:6884) - text "The #MON here" - line "are so chunky!" - cont "There should be a" - cont "pink one with a" - cont "floral pattern!" - done - -_Route10Text9: ; 8e8d4 (23:68d4) -_Route10Text7: ; 8e8d4 (23:68d4) - text "ROCK TUNNEL" - done - -_Route10Text10: ; 8e8e1 (23:68e1) - text "POWER PLANT" - done - -_Route11BattleText1: ; 8e8ee (23:68ee) - text "Win, lose or draw!" - done - -_Route11EndBattleText1: ; 8e902 (23:6902) - text "Atcha!" - line "Didn't go my way!" - prompt - -_Route11AfterBattleText1: ; 8e91b (23:691b) - text "#MON is life!" - line "And to live is to" - cont "gamble!" - done - -_Route11BattleText2: ; 8e944 (23:6944) - text "Competition! I" - line "can't get enough!" - done - -_Route11EndBattleText2: ; 8e965 (23:6965) - text "I had" - line "a chance!" - prompt - -_Route11AfterBattleText2: ; 8e976 (23:6976) - text "You can't be a" - line "coward in the" - cont "world of #MON!" - done - -_Route11BattleText3: ; 8e9a2 (23:69a2) - text "Let's go, but" - line "don't cheat!" - done - -_Route11EndBattleText3: ; 8e9bc (23:69bc) - text "Huh?" - line "That's not right!" - prompt - -_Route11AfterBattleText3: ; 8e9d3 (23:69d3) - text "I did my best! I" - line "have no regrets!" - done - -_Route11BattleText4: ; 8e9f6 (23:69f6) - text "Careful!" - line "I'm laying down" - cont "some cables!" - done - -_Route11EndBattleText4: ; 8ea1c (23:6a1c) - text "That" - line "was electric!" - prompt - -_Route11AfterBattleText4: ; 8ea30 (23:6a30) - text "Spread the word" - line "to save energy!" - done - -_Route11BattleText5: ; 8ea51 (23:6a51) - text "I just became a" - line "trainer! But, I" - cont "think I can win!" - done - -_Route11EndBattleText5: ; 8ea83 (23:6a83) - text "My" - line "#MON couldn't!" - prompt - -_Route11AfterBattleText5: ; 8ea95 (23:6a95) - text "What do you want?" - line "Leave me alone!" - done - -_Route11BattleText6: ; 8eab8 (23:6ab8) - text "Fwahaha! I have" - line "never lost!" - done - -_Route11EndBattleText6: ; 8ead5 (23:6ad5) - text "My" - line "first loss!" - prompt - -_Route11AfterBattleText6: ; 8eae5 (23:6ae5) - text "Luck of the draw!" - line "Just luck!" - done - -_Route11BattleText7: ; 8eb03 (23:6b03) - text "I have never won" - line "before..." - done - -_Route11EndBattleText7: ; 8eb1f (23:6b1f) - text "I saw" - line "this coming..." - prompt - -_Route11AfterBattleText7: ; 8eb35 (23:6b35) - text "It's just luck." - line "Luck of the draw." - done - -_Route11BattleText8: ; 8eb57 (23:6b57) - text "I'm the best in" - line "my class!" - done - -_Route11EndBattleText8: ; 8eb71 (23:6b71) - text "Darn!" - line "I need to make my" - cont "#MON stronger!" - prompt - -_Route11AfterBattleText8: ; 8eb99 (23:6b99) - text "There's a fat" - line "#MON that" - cont "comes down from" - cont "the mountains." - - para "It's strong if" - line "you can get it." - done - -_Route11BattleText9: ; 8ebee (23:6bee) - text "Watch out for" - line "live wires!" - done SECTION "bank24",ROMX,BANK[$24] -_Route11EndBattleText9: ; 90000 (24:4000) - text "Whoa!" - line "You spark plug!" - prompt +INCLUDE "text/maps/route_11_2.asm" +INCLUDE "text/maps/route_12.asm" +INCLUDE "text/maps/route_13.asm" +INCLUDE "text/maps/route_14.asm" +INCLUDE "text/maps/route_15.asm" +INCLUDE "text/maps/route_16.asm" +INCLUDE "text/maps/route_17.asm" +INCLUDE "text/maps/route_18.asm" +INCLUDE "text/maps/route_19.asm" +INCLUDE "text/maps/route_20.asm" +INCLUDE "text/maps/route_21.asm" +INCLUDE "text/maps/route_22.asm" +INCLUDE "text/maps/route_23.asm" +INCLUDE "text/maps/route_24_1.asm" -_Route11AfterBattleText9: ; 90017 (24:4017) - text "Well, better get" - line "back to work." - done - -_Route11BattleText10: ; 90037 (24:4037) - text "My #MON should" - line "be ready by now!" - done - -_Route11EndBattleText10: ; 90058 (24:4058) - text "Too" - line "much, too young!" - prompt - -_Route11AfterBattleText10: ; 9006e (24:406e) - text "I better go find" - line "stronger ones!" - done - -_Route11Text11: ; 9008f (24:408f) - text "DIGLETT's CAVE" - done - -_Route12Text1: ; 9009e (24:409e) - text "A sleeping #MON" - line "blocks the way!" - done - -_UnnamedText_596eb: ; 900bf (24:40bf) - text "SNORLAX woke up!" - - para "It attacked in a" - line "grumpy rage!" - done - -_UnnamedText_596f0: ; 900ef (24:40ef) - text "SNORLAX calmed" - line "down! With a big" - cont "yawn, it returned" - cont "to the mountains!" - done - -_Route12BattleText1: ; 90134 (24:4134) - text "Yeah! I got a" - line "bite, here!" - done - -_Route12EndBattleText1: ; 9014f (24:414f) - text "Tch!" - line "Just a small fry!" - prompt - -_Route12AfterBattleText1: ; 90167 (24:4167) - text "Hang on! My line's" - line "snagged!" - done - -_Route12BattleText2: ; 90183 (24:4183) - text "Be patient!" - line "Fishing is a" - cont "waiting game!" - done - -_Route12EndBattleText2: ; 901ab (24:41ab) - text "That" - line "one got away!" - prompt - -_Route12AfterBattleText2: ; 901bf (24:41bf) - text "With a better ROD," - line "I could catch" - cont "better #MON!" - done - -_Route12BattleText3: ; 901ee (24:41ee) - text "Have you found a" - line "MOON STONE?" - done - -_Route12EndBattleText3: ; 9020c (24:420c) - text "Oww!" - prompt - -_Route12AfterBattleText3: ; 90212 (24:4212) - text "I could have made" - line "my #MON evolve" - cont "with MOON STONE!" - done - -_Route12BattleText4: ; 90245 (24:4245) - text "Electricity is my" - line "specialty!" - done - -_Route12EndBattleText4: ; 90263 (24:4263) - text "Unplugged!" - prompt - -_Route12AfterBattleText4: ; 9026f (24:426f) - text "Water conducts" - line "electricity, so" - cont "you should zap" - cont "sea #MON!" - done - -_Route12BattleText5: ; 902a8 (24:42a8) - text "The FISHING FOOL" - line "vs. #MON KID!" - done - -_Route12EndBattleText5: ; 902c8 (24:42c8) - text "Too" - line "much!" - prompt - -_Route12AfterBattleText5: ; 902d3 (24:42d3) - text "You beat me at" - line "#MON, but I'm" - cont "good at fishing!" - done - -_Route12BattleText6: ; 90301 (24:4301) - text "I'd rather be" - line "working!" - done - -_Route12EndBattleText6: ; 90318 (24:4318) - text "It's" - line "not easy..." - prompt - -_Route12AfterBattleText6: ; 90329 (24:4329) - text "It's all right." - line "Losing doesn't" - cont "bug me any more." - done - -_Route12BattleText7: ; 90358 (24:4358) - text "You never know" - line "what you could" - cont "catch!" - done - -_Route12EndBattleText7: ; 9037e (24:437e) - text "Lost" - line "it!" - prompt - -_Route12AfterBattleText7: ; 90388 (24:4388) - text "I catch MAGIKARP" - line "all the time, but" - cont "they're so weak!" - done - -_Route12Text11: ; 903bc (24:43bc) - text "ROUTE 12 " - line "North to LAVENDER" - done - -_Route12Text12: ; 903d9 (24:43d9) - text "SPORT FISHING AREA" - done - -_Route13BattleText2: ; 903ed (24:43ed) - text "My bird #MON" - line "want to scrap!" - done - -_Route13EndBattleText2: ; 9040a (24:440a) - text "My" - line "bird combo lost?" - prompt - -_Route13AfterBattleText2: ; 9041f (24:441f) - text "My #MON look" - line "happy even though" - cont "they lost." - done - -_Route13BattleText3: ; 9044a (24:444a) - text "I'm told I'm good" - line "for a kid!" - done - -_Route13EndBattleText3: ; 90466 (24:4466) - text "Ohh!" - line "I lost!" - prompt - -_Route13AfterBattleText3: ; 90474 (24:4474) - text "I want to become" - line "a good trainer." - cont "I'll train hard." - done - -_Route13BattleText4: ; 904a6 (24:44a6) - text "Wow! Your BADGEs" - line "are too cool!" - done - -_Route13EndBattleText4: ; 904c6 (24:44c6) - text "Not" - line "enough!" - prompt - -_Route13AfterBattleText4: ; 904d3 (24:44d3) - text "You got those" - line "BADGEs from GYM" - cont "LEADERs. I know!" - done - -_Route13BattleText5: ; 90503 (24:4503) - text "My cute #MON" - line "wish to make your" - cont "acquaintance." - done - -_Route13EndBattleText5: ; 90531 (24:4531) - text "Wow!" - line "You totally won!" - prompt - -_Route13AfterBattleText5: ; 90548 (24:4548) - text "You have to make" - line "#MON fight to" - cont "toughen them up!" - done - -_Route13BattleText6: ; 90579 (24:4579) - text "I found CARBOS in" - line "a cave once." - done - -_Route13EndBattleText6: ; 90599 (24:4599) - text "Just" - line "messed up!" - prompt - -_Route13AfterBattleText6: ; 905aa (24:45aa) - text "CARBOS boosted" - line "the SPEED of my" - cont "#MON." - done - -_Route13BattleText7: ; 905d0 (24:45d0) - text "The wind's blowing" - line "my way!" - done - -_Route13EndBattleText7: ; 905eb (24:45eb) - text "The" - line "wind turned!" - prompt - -_Route13AfterBattleText7: ; 905fd (24:45fd) - text "I'm beat. I guess" - line "I'll FLY home." - done - -_Route13BattleText8: ; 9061d (24:461d) - text "Sure, I'll play" - line "with you!" - done - -_Route13EndBattleText8: ; 90637 (24:4637) - text "Oh!" - line "You little brute!" - prompt - -_Route13AfterBattleText8: ; 9064e (24:464e) - text "I wonder which is" - line "stronger, male or" - cont "female #MON?" - done - -_Route13BattleText9: ; 90680 (24:4680) - text "Do you want to" - line "#MON with me?" - done - -_Route13EndBattleText9: ; 9069e (24:469e) - text "It's over" - line "already?" - prompt - -_Route13AfterBattleText9: ; 906b1 (24:46b1) - text "I don't know" - line "anything about" - cont "#MON. I just" - cont "like cool ones!" - done - -_Route13BattleText10: ; 906ea (24:46ea) - text "What're you" - line "lookin' at?" - done - -_Route13EndBattleText10: ; 90702 (24:4702) - text "Dang!" - line "Stripped gears!" - prompt - -_Route13AfterBattleText10: ; 90719 (24:4719) - text "Get lost!" - done - -_Route13BattleText11: ; 90724 (24:4724) - text "I always go with" - line "bird #MON!" - done - -_Route13EndBattleText11: ; 90741 (24:4741) - text "Out" - line "of power!" - prompt - -_Route13AfterBattleText11: ; 90750 (24:4750) - text "I wish I could" - line "fly like PIDGEY" - cont "and PIDGEOTTO..." - done - -_Route13Text11: ; 90781 (24:4781) - text "TRAINER TIPS" - - para "Look to the left" - line "of that post!" - done - -_Route13Text12: ; 907ae (24:47ae) - text "TRAINER TIPS" - - para "Use SELECT to" - line "switch items in" - cont "the ITEM window!" - done - -_Route13Text13: ; 907eb (24:47eb) - text "ROUTE 13" - line "North to SILENCE" - cont "BRIDGE" - done - -_Route14BattleText1: ; 9080d (24:480d) - text "You need to use" - line "TMs to teach good" - cont "moves to #MON!" - done - -_Route14EndBattleText1: ; 9083f (24:483f) - text "Not" - line "good enough!" - prompt - -_Route14AfterBattleText1: ; 90851 (24:4851) - text "You have some HMs" - line "right? #MON" - cont "can't ever forget" - cont "those moves." - done - -_Route14BattleText2: ; 9088e (24:488e) - text "My bird #MON" - line "should be ready" - cont "for battle." - done - -_Route14EndBattleText2: ; 908b8 (24:48b8) - text "Not" - line "ready yet!" - prompt - -_Route14AfterBattleText2: ; 908c8 (24:48c8) - text "They need to learn" - line "better moves." - done - -_Route14BattleText3: ; 908ea (24:48ea) - text "TMs are on sale" - line "in CELADON!" - cont "But, only a few" - cont "people have HMs!" - done - -_Route14EndBattleText3: ; 90928 (24:4928) - text "Aww," - line "bummer!" - prompt - -_Route14AfterBattleText3: ; 90936 (24:4936) - text "Teach #MON" - line "moves of the same" - cont "element type for" - cont "more power." - done - -_Route14BattleText4: ; 90971 (24:4971) - text "Have you taught" - line "your bird #MON" - cont "how to FLY?" - done - -_Route14EndBattleText4: ; 9099d (24:499d) - text "Shot" - line "down in flames!" - prompt - -_Route14AfterBattleText4: ; 909b3 (24:49b3) - text "Bird #MON are" - line "my true love!" - done - -_Route14BattleText5: ; 909d0 (24:49d0) - text "Have you heard of" - line "the legendary" - cont "#MON?" - done - -_Route14EndBattleText5: ; 909f7 (24:49f7) - text "Why?" - line "Why'd I lose?" - prompt - -_Route14AfterBattleText5: ; 90a0a (24:4a0a) - text "The 3 legendary" - line "#MON are all" - cont "birds of prey." - done - -_Route14BattleText6: ; 90a37 (24:4a37) - text "I'm not into it," - line "but OK! Let's go!" - done - -_Route14EndBattleText6: ; 90a59 (24:4a59) - text "I" - line "knew it!" - prompt - -_Route14AfterBattleText6: ; 90a65 (24:4a65) - text "Winning, losing," - line "it doesn't matter" - cont "in the long run!" - done - -_Route14BattleText7: ; 90a99 (24:4a99) - text "C'mon, c'mon." - line "Let's go, let's" - cont "go, let's go!" - done - -_Route14EndBattleText7: ; 90ac1 (24:4ac1) - text "Arrg!" - line "Lost! Get lost!" - prompt - -_Route14AfterBattleText7: ; 90ad8 (24:4ad8) - text "What, what, what?" - line "What do you want?" - done - -_Route14BattleText8: ; 90afd (24:4afd) - text "Perfect! I need to" - line "burn some time!" - done - -_Route14EndBattleText8: ; 90b21 (24:4b21) - text "What?" - line "You!?" - prompt - -_Route14AfterBattleText8: ; 90b2e (24:4b2e) - text "Raising #MON" - line "is a drag, man." - done - -_Route14BattleText9: ; 90b4c (24:4b4c) - text "We ride out here" - line "because there's" - cont "more room!" - done - -_Route14EndBattleText9: ; 90b78 (24:4b78) - text "Wipe out!" - prompt - -_Route14AfterBattleText9: ; 90b83 (24:4b83) - text "It's cool you" - line "made your #MON" - cont "so strong!" - - para "Might is right!" - line "And you know it!" - done - -_Route14BattleText10: ; 90bcc (24:4bcc) - text "#MON fight?" - line "Cool! Rumble!" - done - -_Route14EndBattleText10: ; 90be7 (24:4be7) - text "Blown" - line "away!" - prompt - -_Route14AfterBattleText10: ; 90bf4 (24:4bf4) - text "You know who'd" - line "win, you and me" - cont "one on one!" - done - -_Route14Text11: ; 90c1f (24:4c1f) - text "ROUTE 14" - line "West to FUCHSIA" - cont "CITY" - done - -_Route15BattleText1: ; 90c3e (24:4c3e) - text "Let me try out the" - line "#MON I just" - cont "got in a trade!" - done - -_Route15EndBattleText1: ; 90c6e (24:4c6e) - text "Not" - line "good enough!" - prompt - -_Route15AfterBattleText1: ; 90c80 (24:4c80) - text "You can't change" - line "the nickname of" - cont "any #MON you" - cont "get in a trade." - - para "Only the Original" - line "Trainer can." - done - -_Route15BattleText2: ; 90cdd (24:4cdd) - text "You look gentle," - line "so I think I can" - cont "beat you!" - done - -_Route15EndBattleText2: ; 90d0a (24:4d0a) - text "No," - line "wrong!" - prompt - -_Route15AfterBattleText2: ; 90d16 (24:4d16) - text "I'm afraid of" - line "BIKERs, they look" - cont "so ugly and mean!" - done - -_Route15BattleText3: ; 90d48 (24:4d48) - text "When I whistle, I" - line "can summon bird" - cont "#MON!" - done - -_Route15EndBattleText3: ; 90d71 (24:4d71) - text "Ow!" - line "That's tragic!" - prompt - -_Route15AfterBattleText3: ; 90d84 (24:4d84) - text "Maybe I'm not cut" - line "out for battles." - done - -_Route15BattleText4: ; 90da7 (24:4da7) - text "Hmm? My birds are" - line "shivering! You're" - cont "good, aren't you?" - done - -_Route15EndBattleText4: ; 90ddc (24:4ddc) - text "Just" - line "as I thought!" - prompt - -_Route15AfterBattleText4: ; 90df0 (24:4df0) - text "Did you know moves" - line "like EARTHQUAKE" - cont "don't have any" - cont "effect on birds?" - done - -_Route15BattleText5: ; 90e33 (24:4e33) - text "Oh, you're a" - line "little cutie!" - done - -_Route15EndBattleText5: ; 90e4e (24:4e4e) - text "You looked" - line "so cute too!" - prompt - -_Route15AfterBattleText5: ; 90e67 (24:4e67) - text "I forgive you!" - line "I can take it!" - done - -_Route15BattleText6: ; 90e86 (24:4e86) - text "I raise #MON" - line "because I live" - cont "alone!" - done - -_Route15EndBattleText6: ; 90eaa (24:4eaa) - text "I didn't" - line "ask for this!" - prompt - -_Route15AfterBattleText6: ; 90ec1 (24:4ec1) - text "I just like going" - line "home to be with" - cont "my #MON!" - done - -_Route15BattleText7: ; 90eed (24:4eed) - text "Hey kid! C'mon!" - line "I just got these!" - done - -_Route15EndBattleText7: ; 90f0f (24:4f0f) - text "Why" - line "not?" - prompt - -_Route15AfterBattleText7: ; 90f19 (24:4f19) - text "You only live" - line "once, so I live" - cont "as an outlaw!" - cont "TEAM ROCKET RULES!" - done - -_Route15BattleText8: ; 90f59 (24:4f59) - text "Fork over all your" - line "cash when you" - cont "lose to me, kid!" - done - -_Route15EndBattleText8: ; 90f8c (24:4f8c) - text "That" - line "can't be true!" - prompt - -_Route15AfterBattleText8: ; 90fa0 (24:4fa0) - text "I was just joking" - line "about the money!" - done - -_Route15BattleText9: ; 90fc4 (24:4fc4) - text "What's cool?" - line "Trading #MON!" - done - -_Route15EndBattleText9: ; 90fdf (24:4fdf) - text "I" - line "said trade!" - prompt - -_Route15AfterBattleText9: ; 90fee (24:4fee) - text "I trade #MON" - line "with my friends!" - done - -_Route15BattleText10: ; 9100d (24:500d) - text "Want to play with" - line "my #MON?" - done - -_Route15EndBattleText10: ; 91029 (24:5029) - text "I was" - line "too impatient!" - prompt - -_Route15AfterBattleText10: ; 9103f (24:503f) - text "I'll go train with" - line "weaker people.@@" - -_Route15Text12: ; 91062 (24:5062) - text "ROUTE 15" - line "West to FUCHSIA" - cont "CITY" - done - -_Route16BattleText1: ; 91081 (24:5081) - text "What do you want?" - done - -_Route16EndBattleText1: ; 91094 (24:5094) - text "Don't you" - line "dare laugh!" - prompt - -_Route16AfterBattleText1: ; 910aa (24:50aa) - text "We like just" - line "hanging here," - cont "what's it to you?" - done - -_Route16BattleText2: ; 910d7 (24:50d7) - text "Nice BIKE!" - line "Hand it over!" - done - -_Route16EndBattleText2: ; 910f1 (24:50f1) - text "Knock" - line "out!" - prompt - -_Route16AfterBattleText2: ; 910fd (24:50fd) - text "Forget it, who" - line "needs your BIKE!" - done - -_Route16BattleText3: ; 9111e (24:511e) - text "Come out and play," - line "little mouse!" - done - -_Route16EndBattleText3: ; 91140 (24:5140) - text "You" - line "little rat!" - prompt - -_Route16AfterBattleText3: ; 91151 (24:5151) - text "I hate losing!" - line "Get away from me!" - done - -_Route16BattleText4: ; 91173 (24:5173) - text "Hey, you just" - line "bumped me!" - done - -_Route16EndBattleText4: ; 9118d (24:518d) - text "Kaboom!" - prompt - -_Route16AfterBattleText4: ; 91196 (24:5196) - text "You can also get" - line "to FUCHSIA from" - cont "VERMILION using a" - cont "coastal road." - done - -_Route16BattleText5: ; 911d8 (24:51d8) - text "I'm feeling" - line "hungry and mean!" - done - -_Route16EndBattleText5: ; 911f5 (24:51f5) - text "Bad," - line "bad, bad!" - prompt - -_Route16AfterBattleText5: ; 91205 (24:5205) - text "I like my #MON" - line "ferocious! They" - cont "tear up enemies!" - done - -_Route16BattleText6: ; 91236 (24:5236) - text "Sure, I'll go!" - done - -_Route16EndBattleText6: ; 91245 (24:5245) - text "Don't make" - line "me mad!" - prompt - -_Route16AfterBattleText6: ; 91258 (24:5258) - text "I like harassing" - line "people with my" - cont "vicious #MON!" - done - -_Route16Text7: ; 91287 (24:5287) - text "A sleeping #MON" - line "blocks the way!" - done - -_UnnamedText_59ab3: ; 912a8 (24:52a8) - text "SNORLAX woke up!" - - para "It attacked in a" - line "grumpy rage!" - done - -_UnnamedText_59ab8: ; 912d8 (24:52d8) - text "With a big yawn," - line "SNORLAX returned" - cont "to the mountains!" - done - -_Route16Text8: ; 9130d (24:530d) - text "Enjoy the slope!" - line "CYCLING ROAD" - done - -_Route16Text9: ; 9132c (24:532c) - text "ROUTE 16" - line "CELADON CITY -" - cont "FUCHSIA CITY" - done - -_Route17BattleText1: ; 91352 (24:5352) - text "There's no money" - line "in fighting kids!" - done - -_Route17EndBattleText1: ; 91375 (24:5375) - text "Burned" - line "out!" - prompt - -_Route17AfterBattleText1: ; 91382 (24:5382) - text "Good stuff is" - line "lying around on" - cont "CYCLING ROAD!" - done - -_Route17BattleText2: ; 913af (24:53af) - text "What do you want," - line "kiddo?" - done - -_Route17EndBattleText2: ; 913c9 (24:53c9) - text "Whoo!" - prompt - -_Route17AfterBattleText2: ; 913d0 (24:53d0) - text "I could belly-" - line "bump you outta" - cont "here!" - done - -_Route17BattleText3: ; 913f5 (24:53f5) - text "You heading to" - line "FUCHSIA?" - done - -_Route17EndBattleText3: ; 9140e (24:540e) - text "Crash and" - line "burn!" - prompt - -_Route17AfterBattleText3: ; 9141f (24:541f) - text "I love racing" - line "downhill!" - done - -_Route17BattleText4: ; 91438 (24:5438) - text "We're BIKERs!" - line "Highway stars!" - done - -_Route17EndBattleText4: ; 91455 (24:5455) - text "Smoked!" - prompt - -_Route17AfterBattleText4: ; 9145e (24:545e) - text "Are you looking" - line "for adventure?" - done - -_Route17BattleText5: ; 9147e (24:547e) - text "Let VOLTORB" - line "electrify you!" - done - -_Route17EndBattleText5: ; 9149a (24:549a) - text "Grounded" - line "out!" - prompt - -_Route17AfterBattleText5: ; 914a9 (24:54a9) - text "I got my VOLTORB" - line "at the abandoned" - cont "POWER PLANT." - done - -_Route17BattleText6: ; 914d9 (24:54d9) - text "My #MON won't" - line "evolve! Why?" - done - -_Route17EndBattleText6: ; 914f4 (24:54f4) - text "Why," - line "you!" - prompt - -_Route17AfterBattleText6: ; 914ff (24:54ff) - text "Maybe some #MON" - line "need element" - cont "STONEs to evolve." - done - -_Route17BattleText7: ; 9152f (24:552f) - text "I need a little" - line "exercise!" - done - -_Route17EndBattleText7: ; 9154a (24:554a) - text "Whew!" - line "Good workout!" - prompt - -_Route17AfterBattleText7: ; 9155f (24:555f) - text "I'm sure I lost" - line "weight there!" - done - -_Route17BattleText8: ; 9157d (24:557d) - text "Be a rebel!" - done - -_Route17EndBattleText8: ; 9158a (24:558a) - text "Aaaargh!" - prompt - -_Route17AfterBattleText8: ; 91594 (24:5594) - text "Be ready to fight" - line "for your beliefs!" - done - -_Route17BattleText9: ; 915b9 (24:55b9) - text "Nice BIKE!" - line "How's it handle?" - done - -_Route17EndBattleText9: ; 915d5 (24:55d5) - text "Shoot!" - prompt - -_Route17AfterBattleText9: ; 915dd (24:55dd) - text "The slope makes" - line "it hard to steer!" - done - -_Route17BattleText10: ; 91600 (24:5600) - text "Get lost kid!" - line "I'm bushed!" - done - -_Route17EndBattleText10: ; 9161a (24:561a) - text "Are you" - line "satisfied?" - prompt - -_Route17AfterBattleText10: ; 9162e (24:562e) - text "I need to catch" - line "a few Zs!" - done - -_Route17Text11: ; 91649 (24:5649) - text "It's a notice!" - - para "Watch out for" - line "discarded items!" - done - -_Route17Text12: ; 91677 (24:5677) - text "TRAINER TIPS" - - para "All #MON are" - line "unique." - - para "Even #MON of" - line "the same type and" - cont "level grow at" - cont "different rates." - done - -_Route17Text13: ; 916d8 (24:56d8) - text "TRAINER TIPS" - - para "Press the A or B" - line "Button to stay in" - cont "place while on a" - cont "slope." - done - -_Route17Text14: ; 91721 (24:5721) - text "ROUTE 17" - line "CELADON CITY -" - cont "FUCHSIA CITY" - done - -_Route17Text15: ; 91747 (24:5747) - text "It's a notice!" - - para "Don't throw the" - line "game, throw #" - cont "BALLs instead!" - done - -_Route17Text16: ; 91782 (24:5782) - text "CYCLING ROAD" - line "Slope ends here!" - done - -_Route18BattleText1: ; 917a1 (24:57a1) - text "I always check" - line "every grassy area" - cont "for new #MON." - done - -_Route18EndBattleText1: ; 917d1 (24:57d1) - text "Tch!" - prompt - -_Route18AfterBattleText1: ; 917d7 (24:57d7) - text "I wish I had a" - line "BIKE!" - done - -_Route18BattleText2: ; 917ed (24:57ed) - text "Kurukkoo!" - line "How do you like" - cont "my bird call?" - done - -_Route18EndBattleText2: ; 91816 (24:5816) - text "I" - line "had to bug you!" - prompt - -_Route18AfterBattleText2: ; 91829 (24:5829) - text "I also collect sea" - line "#MON on" - cont "weekends!" - done - -_Route18BattleText3: ; 9184f (24:584f) - text "This is my turf!" - line "Get out of here!" - done - -_Route18EndBattleText3: ; 91872 (24:5872) - text "Darn!" - prompt - -_Route18AfterBattleText3: ; 91879 (24:5879) - text "This is my fave" - line "#MON hunting" - cont "area!" - done - -_Route18Text4: ; 9189d (24:589d) - text "ROUTE 18" - line "CELADON CITY -" - cont "FUCHSIA CITY" - done - -_Route18Text5: ; 918c3 (24:58c3) - text "CYCLING ROAD" - line "No pedestrians" - cont "permitted!" - done - -_Route19BattleText1: ; 918eb (24:58eb) - text "Have to warm up" - line "before my swim!" - done - -_Route19EndBattleText1: ; 9190c (24:590c) - text "All" - line "warmed up!" - prompt - -_Route19AfterBattleText1: ; 9191c (24:591c) - text "Thanks, kid! I'm" - line "ready for a swim!" - done - -_Route19BattleText2: ; 9193f (24:593f) - text "Wait! You'll have" - line "a heart attack!" - done - -_Route19EndBattleText2: ; 91961 (24:5961) - text "Ooh!" - line "That's chilly!" - prompt - -_Route19AfterBattleText2: ; 91975 (24:5975) - text "Watch out for" - line "TENTACOOL!" - done - -_Route19BattleText3: ; 9198f (24:598f) - text "I love swimming!" - line "What about you?" - done - -_Route19EndBattleText3: ; 919b1 (24:59b1) - text "Belly" - line "flop!" - prompt - -_Route19AfterBattleText3: ; 919be (24:59be) - text "I can beat #MON" - line "at swimming!" - done - -_Route19BattleText4: ; 919dc (24:59dc) - text "What's beyond the" - line "horizon?" - done - -_Route19EndBattleText4: ; 919f7 (24:59f7) - text "Glub!" - prompt - -_Route19AfterBattleText4: ; 919fe (24:59fe) - text "I see a couple of" - line "islands!" - done - -_Route19BattleText5: ; 91a1a (24:5a1a) - text "I tried diving" - line "for #MON, but" - cont "it was a no go!" - done - -_Route19EndBattleText5: ; 91a48 (24:5a48) - text "Help!" - prompt - -_Route19AfterBattleText5: ; 91a4f (24:5a4f) - text "You have to fish" - line "for sea #MON!" - done - -_Route19BattleText6: ; 91a6f (24:5a6f) - text "I look at the" - line "sea to forget!" - done - -_Route19EndBattleText6: ; 91a8d (24:5a8d) - text "Ooh!" - line "Traumatic!" - prompt - -_Route19AfterBattleText6: ; 91a9e (24:5a9e) - text "I'm looking at the" - line "sea to forget!" - done - -_Route19BattleText7: ; 91ac0 (24:5ac0) - text "Oh, I just love" - line "your ride! Can I" - cont "have it if I win?" - done - -_Route19EndBattleText7: ; 91af4 (24:5af4) - text "Oh!" - line "I lost!" - prompt - -_Route19AfterBattleText7: ; 91b01 (24:5b01) - text "It's still a long" - line "way to go to" - cont "SEAFOAM ISLANDS." - done - -_Route19BattleText8: ; 91b31 (24:5b31) - text "Swimming's great!" - line "Sunburns aren't!" - done - -_Route19EndBattleText8: ; 91b53 (24:5b53) - text "Shocker!" - prompt - -_Route19AfterBattleText8: ; 91b5d (24:5b5d) - text "My boy friend" - line "wanted to swim to" - cont "SEAFOAM ISLANDS." - done - -_Route19BattleText9: ; 91b8f (24:5b8f) - text "These waters are" - line "treacherous!" - done - -_Route19EndBattleText9: ; 91bae (24:5bae) - text "Ooh!" - line "Dangerous!" - prompt - -_Route19AfterBattleText9: ; 91bbf (24:5bbf) - text "I got a cramp!" - line "Glub, glub..." - done - -_Route19BattleText10: ; 91bdd (24:5bdd) - text "I swam here, but" - line "I'm tired." - done - -_Route19EndBattleText10: ; 91bf9 (24:5bf9) - text "I'm" - line "exhausted..." - prompt - -_Route19AfterBattleText10: ; 91c0a (24:5c0a) - text "LAPRAS is so big," - line "it must keep you" - cont "dry on water." - done - -_Route19Text11: ; 91c3c (24:5c3c) - text "SEA ROUTE 19" - line "FUCHSIA CITY -" - cont "SEAFOAM ISLANDS" - done - -_Route20BattleText1: ; 91c69 (24:5c69) - text "The water is" - line "shallow here." - done - -_Route20EndBattleText1: ; 91c85 (24:5c85) - text "Splash!" - prompt - -_Route20AfterBattleText1: ; 91c8e (24:5c8e) - text "I wish I could" - line "ride my #MON." - done - -_Route20BattleText2: ; 91cac (24:5cac) - text "SEAFOAM is a" - line "quiet getaway!" - done - -_Route20EndBattleText2: ; 91cc9 (24:5cc9) - text "Quit it!" - prompt - -_Route20AfterBattleText2: ; 91cd3 (24:5cd3) - text "There's a huge" - line "cavern underneath" - cont "this island." - done - -_Route20BattleText3: ; 91d01 (24:5d01) - text "I love floating" - line "with the fishes!" - done - -_Route20EndBattleText3: ; 91d23 (24:5d23) - text "Yowch!" - prompt - -_Route20AfterBattleText3: ; 91d2b (24:5d2b) - text "Want to float" - line "with me?" - done - -_Route20BattleText4: ; 91d43 (24:5d43) - text "Are you on" - line "vacation too?" - done - -_Route20EndBattleText4: ; 91d5d (24:5d5d) - text "No" - line "mercy at all!" - prompt - -_Route20AfterBattleText4: ; 91d6f (24:5d6f) - text "SEAFOAM used to" - line "be one island!" - done - -_Route20BattleText5: ; 91d8f (24:5d8f) - text "Check out my buff" - line "physique!" - done - -_Route20EndBattleText5: ; 91dac (24:5dac) - text "Wimpy!" - prompt - -_Route20AfterBattleText5: ; 91db4 (24:5db4) - text "I should've been" - line "buffing up my" - cont "#MON, not me!" - done - -_Route20BattleText6: ; 91de1 (24:5de1) - text "Why are you" - line "riding a #MON?" - cont "Can't you swim?" - done - -_Route20EndBattleText6: ; 91e0c (24:5e0c) - text "Ouch!" - line "Torpedoed!" - prompt - -_Route20AfterBattleText6: ; 91e1e (24:5e1e) - text "Riding a #MON" - line "sure looks fun!" - done - -_Route20BattleText7: ; 91e3d (24:5e3d) - text "I rode my bird" - line "#MON here!" - done - -_Route20EndBattleText7: ; 91e58 (24:5e58) - text "Oh" - line "no!" - prompt - -_Route20AfterBattleText7: ; 91e60 (24:5e60) - text "My birds can't" - line "FLY me back!" - done - -_Route20BattleText8: ; 91e7c (24:5e7c) - text "My boy friend gave" - line "me big pearls!" - done - -_Route20EndBattleText8: ; 91e9f (24:5e9f) - text "Don't" - line "touch my pearls!" - prompt - -_Route20AfterBattleText8: ; 91eb6 (24:5eb6) - text "Will my pearls" - line "grow bigger" - cont "inside CLOYSTER?" - done - -_Route20BattleText9: ; 91ee3 (24:5ee3) - text "I swam here from" - line "CINNABAR ISLAND!" - done - -_Route20EndBattleText9: ; 91f06 (24:5f06) - text "I'm" - line "so disappointed!" - prompt - -_Route20AfterBattleText9: ; 91f1b (24:5f1b) - text "#MON have" - line "taken over an" - cont "abandoned mansion" - cont "on CINNABAR!" - done - -_Route20BattleText10: ; 91f53 (24:5f53) - text "CINNABAR, in the" - line "west, has a LAB" - cont "for #MON." - done - -_Route20EndBattleText10: ; 91f7f (24:5f7f) - text "Wait!" - prompt - -_Route20AfterBattleText10: ; 91f86 (24:5f86) - text "CINNABAR is a " - line "volcanic island!" - done - -_Route20Text12: ; 91fa7 (24:5fa7) -_Route20Text11: ; 91fa7 (24:5fa7) - text "SEAFOAM ISLANDS" - done - -_Route21BattleText1: ; 91fb8 (24:5fb8) - text "You want to know" - line "if the fish are" - cont "biting?" - done - -_Route21EndBattleText1: ; 91fe2 (24:5fe2) - text "Dang!" - prompt - -_Route21AfterBattleText1: ; 91fe9 (24:5fe9) - text "I can't catch" - line "anything good!" - done - -_Route21BattleText2: ; 92006 (24:6006) - text "I got a big haul!" - line "Wanna go for it?" - done - -_Route21EndBattleText2: ; 9202a (24:602a) - text "Darn" - line "MAGIKARP!" - prompt - -_Route21AfterBattleText2: ; 9203a (24:603a) - text "I seem to only" - line "catch MAGIKARP!" - done - -_Route21BattleText3: ; 9205a (24:605a) - text "The sea cleanses" - line "my body and soul!" - done - -_Route21EndBattleText3: ; 9207e (24:607e) - text "Ayah!" - prompt - -_Route21AfterBattleText3: ; 92085 (24:6085) - text "I like the" - line "mountains too!" - done - -_Route21BattleText4: ; 920a0 (24:60a0) - text "What's wrong with" - line "me swimming?" - done - -_Route21EndBattleText4: ; 920bf (24:60bf) - text "Cheap" - line "shot!" - prompt - -_Route21AfterBattleText4: ; 920cc (24:60cc) - text "I look like what?" - line "A studded inner" - cont "tube? Get lost!" - done - -_Route21BattleText5: ; 920ff (24:60ff) - text "I caught all my" - line "#MON at sea!" - done - -_Route21EndBattleText5: ; 9211d (24:611d) - text "Diver!!" - line "Down!!" - prompt - -_Route21AfterBattleText5: ; 9212d (24:612d) - text "Where'd you catch" - line "your #MON?" - done - -_Route21BattleText6: ; 9214a (24:614a) - text "Right now, I'm in" - line "a triathlon meet!" - done - -_Route21EndBattleText6: ; 9216e (24:616e) - text "Pant..." - line "pant...pant..." - prompt - -_Route21AfterBattleText6: ; 92186 (24:6186) - text "I'm beat!" - line "But, I still have" - cont "the bike race and" - cont "marathon left!" - done - -_Route21BattleText7: ; 921c3 (24:61c3) - text "Ahh! Feel the sun" - line "and the wind!" - done - -_Route21EndBattleText7: ; 921e4 (24:61e4) - text "Yow!" - line "I lost!" - prompt - -_Route21AfterBattleText7: ; 921f2 (24:61f2) - text "I'm sunburnt to a" - line "crisp!" - done - -_Route21BattleText8: ; 9220b (24:620b) - text "Hey, don't scare" - line "away the fish!" - done - -_Route21EndBattleText8: ; 9222b (24:622b) - text "Sorry!" - line "I didn't mean it!" - prompt - -_Route21AfterBattleText8: ; 92244 (24:6244) - text "I was just angry" - line "that I couldn't" - cont "catch anything." - done - -_Route21BattleText9: ; 92275 (24:6275) - text "Keep me company" - line "'til I get a hit!" - done - -_Route21EndBattleText9: ; 92297 (24:6297) - text "That" - line "burned some time." - prompt - -_Route21AfterBattleText9: ; 922af (24:62af) - text "Oh wait! I got a" - line "bite! Yeah!" - done - -_UnnamedText_511ad: ; 922cd (24:62cd) - text $53, ": Hey!" - line $52, "!" - - para "You're going to" - line "#MON LEAGUE?" - - para "Forget it! You" - line "probably don't" - cont "have any BADGEs!" - - para "The guard won't" - line "let you through!" - - para "By the way, did" - line "your #MON" - cont "get any stronger?" - done - -_UnnamedText_511b2: ; 9236f (24:636f) - text "I heard #MON" - line "LEAGUE has many" - cont "tough trainers!" - - para "I have to figure" - line "out how to get" - cont "past them!" - - para "You should quit" - line "dawdling and get" - cont "a move on!" - done - -_UnnamedText_511b7: ; 923f4 (24:63f4) - text "Awww!" - line "You just lucked" - cont "out!" - prompt - -_UnnamedText_511bc: ; 92410 (24:6410) - text $53, ": What?" - line "Why do I have 2" - cont "#MON?" - - para "You should catch" - cont "some more too!" - prompt - -_UnnamedText_511c1: ; 92450 (24:6450) - text $53, ": What?" - line $52, "! What a" - cont "surprise to see" - cont "you here!" - - para "So you're going to" - line "#MON LEAGUE?" - - para "You collected all" - line "the BADGEs too?" - cont "That's cool!" - - para "Then I'll whip you" - line $52, " as a" - cont "warm up for" - cont "#MON LEAGUE!" - - para "Come on!" - done - -_UnnamedText_511c6: ; 92506 (24:6506) - text "That loosened me" - line "up! I'm ready for" - cont "#MON LEAGUE!" - - para $52, ", you need" - line "more practice!" - - para "But hey, you know" - line "that! I'm out of" - cont "here. Smell ya!" - done - -_UnnamedText_511cb: ; 92583 (24:6583) - text "What!?" - - para "I was just" - line "careless!" - prompt - -_UnnamedText_511d0: ; 925a0 (24:65a0) - text $53, ": Hahaha!" - line $52, "! That's" - cont "your best? You're" - cont "nowhere near as" - cont "good as me, pal!" - - para "Go train some" - line "more! You loser!" - prompt - -_Route22Text3: ; 92606 (24:6606) - text "#MON LEAGUE" - line "Front Gate" - done - -_VictoryRoadGuardText1: ; 9261e (24:661e) - text "You can pass here" - line "only if you have" - cont "the @" - TX_RAM $cd6d - text "!" - - para "You don't have the" - line "@" - TX_RAM $cd6d - text " yet!" - - para "You have to have" - line "it to get to" - cont "#MON LEAGUE!@@" - -_VictoryRoadGuardText2: ; 92696 (24:6696) - text "You can pass here" - line "only if you have" - cont "the @" - TX_RAM $cd6d - text "!" - - para "Oh! That is the" - line "@" - TX_RAM $cd6d - text "!@@" - -_UnnamedText_513a3: ; 926dd (24:66dd) - db $0 - para "OK then! Please," - line "go right ahead!" - done - -_Route23Text8: ; 92700 (24:6700) - text "VICTORY ROAD GATE" - line "- #MON LEAGUE" - done - -_UnnamedText_51510: ; 92721 (24:6721) - text "Congratulations!" - line "You beat our 5" - cont "contest trainers!@@" - -_UnnamedText_51515: ; 92755 (24:6755) - db $0 - para "You just earned a" - line "fabulous prize!" - prompt - -_UnnamedText_5151a: ; 92779 (24:6779) - text $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_51521: ; 9278f (24:678f) - text "You don't have" - line "any room!" - done - -_UnnamedText_51526: ; 927a8 (24:67a8) - text "By the way, would" - line "you like to join" - cont "TEAM ROCKET?" - - para "We're a group" - line "dedicated to evil" - cont "using #MON!" - - para "Want to join?" - - para "Are you sure?" - - para "Come on, join us!" - - para "I'm telling you" - line "to join!" - - para "OK, you need" - line "convincing!" - - para "I'll make you an" - line "offer you can't" - cont "refuse!" - done - -_UnnamedText_5152b: ; 9288a (24:688a) - text "Arrgh!" - line "You are good!" - prompt - -_UnnamedText_51530: ; 928a0 (24:68a0) - text "With your ability," - line "you could become" - cont "a top leader in" - cont "TEAM ROCKET!" - done - -_Route24BattleText1: ; 928e2 (24:68e2) - text "I saw your feat" - line "from the grass!" - done SECTION "bank25",ROMX,BANK[$25] -_Route24EndBattleText1: ; 94000 (25:4000) - text "I" - line "thought not!" - prompt - -_Route24AfterBattleText1: ; 94010 (25:4010) - text "I hid because the" - line "people on the" - cont "bridge scared me!" - done - -_Route24BattleText2: ; 94043 (25:4043) - text "OK! I'm No. 5!" - line "I'll stomp you!" - done - -_Route24EndBattleText2: ; 94061 (25:4061) - text "Whoa!" - line "Too much!" - prompt - -_Route24AfterBattleText2: ; 94072 (25:4072) - text "I did my best, I" - line "have no regrets!" - done - -_Route24BattleText3: ; 94095 (25:4095) - text "I'm No. 4!" - line "Getting tired?" - done - -_Route24EndBattleText3: ; 940af (25:40af) - text "I lost" - line "too!" - prompt - -_Route24AfterBattleText3: ; 940bc (25:40bc) - text "I did my best, so" - line "I've no regrets!" - done - -_Route24BattleText4: ; 940df (25:40df) - text "Here's No. 3!" - line "I won't be easy!" - done - -_Route24EndBattleText4: ; 940fd (25:40fd) - text "Ow!" - line "Stomped flat!" - prompt - -_Route24AfterBattleText4: ; 94110 (25:4110) - text "I did my best, I" - line "have no regrets!" - done - -_Route24BattleText5: ; 94133 (25:4133) - text "I'm second!" - line "Now it's serious!" - done - -_Route24EndBattleText5: ; 94150 (25:4150) - text "How could I" - line "lose?" - prompt - -_Route24AfterBattleText5: ; 94163 (25:4163) - text "I did my best, I" - line "have no regrets!" - done - -_Route24BattleText6: ; 94186 (25:4186) - text "This is NUGGET" - line "BRIDGE! Beat us 5" - cont "trainers and win" - cont "a fabulous prize!" - - para "Think you got" - line "what it takes?" - done - -_Route24EndBattleText6: ; 941e8 (25:41e8) - text "Whoo!" - line "Good stuff!" - prompt - -_Route24AfterBattleText6: ; 941fb (25:41fb) - text "I did my best, I" - line "have no regrets!" - done - -_Route25BattleText1: ; 9421e (25:421e) - text "Local trainers" - line "come here to" - cont "practice!" - done - -_Route25EndBattleText1: ; 94245 (25:4245) - text "You're" - line "decent." - prompt - -_Route25AfterBattleText1: ; 94254 (25:4254) - text "All #MON have" - line "weaknesses. It's" - cont "best to raise" - cont "different kinds." - done - -_Route25BattleText2: ; 94292 (25:4292) - text "Dad took me to a" - line "great party on" - cont "S.S.ANNE at" - cont "VERMILION CITY!" - done - -_Route25EndBattleText2: ; 942cf (25:42cf) - text "I'm" - line "not mad!" - prompt - -_Route25AfterBattleText2: ; 942dc (25:42dc) - text "On S.S.ANNE, I" - line "saw trainers from" - cont "around the world." - done - -_Route25BattleText3: ; 94310 (25:4310) - text "I'm a cool guy." - line "I've got a girl" - cont "friend!" - done - -_Route25EndBattleText3: ; 94337 (25:4337) - text "Aww," - line "darn..." - prompt - -_Route25AfterBattleText3: ; 94345 (25:4345) - text "Oh well. My girl" - line "will cheer me up." - done - -_Route25BattleText4: ; 94369 (25:4369) - text "Hi! My boy" - line "friend is cool!" - done - -_Route25EndBattleText4: ; 94385 (25:4385) - text "I was in" - line "bad condition!" - prompt - -_Route25AfterBattleText4: ; 9439e (25:439e) - text "I wish my guy was" - line "as good as you!" - done - -_Route25BattleText5: ; 943c1 (25:43c1) - text "I knew I had to" - line "fight you!" - done - -_Route25EndBattleText5: ; 943dd (25:43dd) - text "I knew" - line "I'd lose too!" - prompt - -_Route25AfterBattleText5: ; 943f2 (25:43f2) - text "If your #MON" - line "gets confused or" - cont "falls asleep," - cont "switch it!" - done - -_Route25BattleText6: ; 9442a (25:442a) - text "My friend has a" - line "cute #MON." - cont "I'm so jealous!" - done - -_Route25EndBattleText6: ; 94455 (25:4455) - text "I'm" - line "not so jealous!" - prompt - -_Route25AfterBattleText6: ; 94469 (25:4469) - text "You came from MT." - line "MOON? May I have" - cont "a CLEFAIRY?" - done - -_Route25BattleText7: ; 94499 (25:4499) - text "I just got down" - line "from MT.MOON," - cont "but I'm ready!" - done - -_Route25EndBattleText7: ; 944c6 (25:44c6) - text "You" - line "worked hard!" - prompt - -_Route25AfterBattleText7: ; 944d8 (25:44d8) - text "Drat!" - line "A ZUBAT bit me" - cont "back in there." - done - -_Route25BattleText8: ; 944fd (25:44fd) - text "I'm off to see a" - line "#MON collector" - cont "at the cape!" - done - -_Route25EndBattleText8: ; 9452a (25:452a) - text "You" - line "got me." - prompt - -_Route25AfterBattleText8: ; 94537 (25:4537) - text "The collector has" - line "many rare kinds" - cont "of #MON." - done - -_Route25BattleText9: ; 94563 (25:4563) - text "You're going to" - line "see BILL? First," - cont "let's fight!" - done - -_Route25EndBattleText9: ; 94590 (25:4590) - text "You're" - line "something." - prompt - -_Route25AfterBattleText9: ; 945a2 (25:45a2) - text "The trail below" - line "is a shortcut to" - cont "CERULEAN CITY." - done - -_Route25Text11: ; 945d3 (25:45d3) - text "SEA COTTAGE" - line "BILL lives here!" - done +INCLUDE "text/maps/route_24_2.asm" +INCLUDE "text/maps/route_25.asm" _FileDataDestroyedText: ; 945f1 (25:45f1) text "The file data is" diff --git a/text/maps/route_1.asm b/text/maps/route_1.asm new file mode 100644 index 00000000..c262bf7d --- /dev/null +++ b/text/maps/route_1.asm @@ -0,0 +1,50 @@ +_Route1ViridianMartSampleText: ; 8d5bf (23:55bf) + text "Hi! I work at a" + line "#MON MART." + + para "It's a convenient" + line "shop, so please" + cont "visit us in" + cont "VIRIDIAN CITY." + + para "I know, I'll give" + line "you a sample!" + cont "Here you go!" + prompt + +_UnnamedText_1cae8: ; 8d643 (23:5643) + text $52, " got" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_1caee: ; 8d652 (23:5652) + text "We also carry" + line "# BALLs for" + cont "catching #MON!" + done + +_UnnamedText_1caf3: ; 8d67c (23:567c) + text "You have too much" + line "stuff with you!" + done + +_Route1Text2: ; 8d69f (23:569f) + text "See those ledges" + line "along the road?" + + para "It's a bit scary," + line "but you can jump" + cont "from them." + + para "You can get back" + line "to PALLET TOWN" + cont "quicker that way." + done + +_Route1Text3: ; 8d720 (23:5720) + text "ROUTE 1" + line "PALLET TOWN -" + cont "VIRIDIAN CITY" + done + diff --git a/text/maps/route_10.asm b/text/maps/route_10.asm new file mode 100644 index 00000000..677e6827 --- /dev/null +++ b/text/maps/route_10.asm @@ -0,0 +1,110 @@ +_Route10BattleText1: ; 8e642 (23:6642) + text "Wow, are you a" + line "#MANIAC too?" + cont "Want to see my" + cont "collection?" + done + +_Route10EndBattleText1: ; 8e67a (23:667a) + text "Humph." + line "I'm not angry!" + prompt + +_Route10AfterBattleText1: ; 8e690 (23:6690) + text "I have more rare" + line "#MON at home!" + done + +_Route10BattleText2: ; 8e6b0 (23:66b0) + text "Ha-hahah-ah-ha!" + done + +_Route10EndBattleText2: ; 8e6c1 (23:66c1) + text "Ha-haha!" + line "Not laughing!" + cont "Ha-hay fever!" + cont "Haha-ha-choo!" + prompt + +_Route10AfterBattleText2: ; 8e6f5 (23:66f5) + text "Haha-ha-choo!" + line "Ha-choo!" + cont "Snort! Snivel!" + done + +_Route10BattleText3: ; 8e71c (23:671c) + text "Hi kid, want to" + line "see my #MON?" + done + +_Route10EndBattleText3: ; 8e73a (23:673a) + text "Oh no!" + line "My #MON!" + prompt + +_Route10AfterBattleText3: ; 8e74b (23:674b) + text "I don't like you" + line "for beating me!" + done + +_Route10BattleText4: ; 8e76c (23:676c) + text "I've been to a" + line "#MON GYM a few" + cont "times. But, I" + cont "lost each time." + done + +_Route10EndBattleText4: ; 8e7a8 (23:67a8) + text "Ohh!" + line "Blew it again!" + prompt + +_Route10AfterBattleText4: ; 8e7bd (23:67bd) + text "I noticed some" + line "#MANIACs" + cont "prowling around." + done + +_Route10BattleText5: ; 8e7e7 (23:67e7) + text "Ah! This mountain" + line "air is delicious!" + done + +_Route10EndBattleText5: ; 8e80c (23:680c) + text "That" + line "cleared my head!" + prompt + +_Route10AfterBattleText5: ; 8e823 (23:6823) + text "I feel bloated on" + line "mountain air!" + done + +_Route10BattleText6: ; 8e844 (23:6844) + text "I'm feeling a bit" + line "faint from this" + cont "tough hike." + done + +_Route10EndBattleText6: ; 8e872 (23:6872) + text "I'm" + line "not up to it!" + prompt + +_Route10AfterBattleText6: ; 8e884 (23:6884) + text "The #MON here" + line "are so chunky!" + cont "There should be a" + cont "pink one with a" + cont "floral pattern!" + done + +_Route10Text9: ; 8e8d4 (23:68d4) +_Route10Text7: ; 8e8d4 (23:68d4) + text "ROCK TUNNEL" + done + +_Route10Text10: ; 8e8e1 (23:68e1) + text "POWER PLANT" + done + diff --git a/text/maps/route_11_1.asm b/text/maps/route_11_1.asm new file mode 100644 index 00000000..04c4e5f1 --- /dev/null +++ b/text/maps/route_11_1.asm @@ -0,0 +1,135 @@ +_Route11BattleText1: ; 8e8ee (23:68ee) + text "Win, lose or draw!" + done + +_Route11EndBattleText1: ; 8e902 (23:6902) + text "Atcha!" + line "Didn't go my way!" + prompt + +_Route11AfterBattleText1: ; 8e91b (23:691b) + text "#MON is life!" + line "And to live is to" + cont "gamble!" + done + +_Route11BattleText2: ; 8e944 (23:6944) + text "Competition! I" + line "can't get enough!" + done + +_Route11EndBattleText2: ; 8e965 (23:6965) + text "I had" + line "a chance!" + prompt + +_Route11AfterBattleText2: ; 8e976 (23:6976) + text "You can't be a" + line "coward in the" + cont "world of #MON!" + done + +_Route11BattleText3: ; 8e9a2 (23:69a2) + text "Let's go, but" + line "don't cheat!" + done + +_Route11EndBattleText3: ; 8e9bc (23:69bc) + text "Huh?" + line "That's not right!" + prompt + +_Route11AfterBattleText3: ; 8e9d3 (23:69d3) + text "I did my best! I" + line "have no regrets!" + done + +_Route11BattleText4: ; 8e9f6 (23:69f6) + text "Careful!" + line "I'm laying down" + cont "some cables!" + done + +_Route11EndBattleText4: ; 8ea1c (23:6a1c) + text "That" + line "was electric!" + prompt + +_Route11AfterBattleText4: ; 8ea30 (23:6a30) + text "Spread the word" + line "to save energy!" + done + +_Route11BattleText5: ; 8ea51 (23:6a51) + text "I just became a" + line "trainer! But, I" + cont "think I can win!" + done + +_Route11EndBattleText5: ; 8ea83 (23:6a83) + text "My" + line "#MON couldn't!" + prompt + +_Route11AfterBattleText5: ; 8ea95 (23:6a95) + text "What do you want?" + line "Leave me alone!" + done + +_Route11BattleText6: ; 8eab8 (23:6ab8) + text "Fwahaha! I have" + line "never lost!" + done + +_Route11EndBattleText6: ; 8ead5 (23:6ad5) + text "My" + line "first loss!" + prompt + +_Route11AfterBattleText6: ; 8eae5 (23:6ae5) + text "Luck of the draw!" + line "Just luck!" + done + +_Route11BattleText7: ; 8eb03 (23:6b03) + text "I have never won" + line "before..." + done + +_Route11EndBattleText7: ; 8eb1f (23:6b1f) + text "I saw" + line "this coming..." + prompt + +_Route11AfterBattleText7: ; 8eb35 (23:6b35) + text "It's just luck." + line "Luck of the draw." + done + +_Route11BattleText8: ; 8eb57 (23:6b57) + text "I'm the best in" + line "my class!" + done + +_Route11EndBattleText8: ; 8eb71 (23:6b71) + text "Darn!" + line "I need to make my" + cont "#MON stronger!" + prompt + +_Route11AfterBattleText8: ; 8eb99 (23:6b99) + text "There's a fat" + line "#MON that" + cont "comes down from" + cont "the mountains." + + para "It's strong if" + line "you can get it." + done + +_Route11BattleText9: ; 8ebee (23:6bee) + text "Watch out for" + line "live wires!" + done + + diff --git a/text/maps/route_11_2.asm b/text/maps/route_11_2.asm new file mode 100644 index 00000000..810add6a --- /dev/null +++ b/text/maps/route_11_2.asm @@ -0,0 +1,29 @@ +_Route11EndBattleText9: ; 90000 (24:4000) + text "Whoa!" + line "You spark plug!" + prompt + +_Route11AfterBattleText9: ; 90017 (24:4017) + text "Well, better get" + line "back to work." + done + +_Route11BattleText10: ; 90037 (24:4037) + text "My #MON should" + line "be ready by now!" + done + +_Route11EndBattleText10: ; 90058 (24:4058) + text "Too" + line "much, too young!" + prompt + +_Route11AfterBattleText10: ; 9006e (24:406e) + text "I better go find" + line "stronger ones!" + done + +_Route11Text11: ; 9008f (24:408f) + text "DIGLETT's CAVE" + done + diff --git a/text/maps/route_12.asm b/text/maps/route_12.asm new file mode 100644 index 00000000..54ff39fb --- /dev/null +++ b/text/maps/route_12.asm @@ -0,0 +1,140 @@ +_Route12Text1: ; 9009e (24:409e) + text "A sleeping #MON" + line "blocks the way!" + done + +_UnnamedText_596eb: ; 900bf (24:40bf) + text "SNORLAX woke up!" + + para "It attacked in a" + line "grumpy rage!" + done + +_UnnamedText_596f0: ; 900ef (24:40ef) + text "SNORLAX calmed" + line "down! With a big" + cont "yawn, it returned" + cont "to the mountains!" + done + +_Route12BattleText1: ; 90134 (24:4134) + text "Yeah! I got a" + line "bite, here!" + done + +_Route12EndBattleText1: ; 9014f (24:414f) + text "Tch!" + line "Just a small fry!" + prompt + +_Route12AfterBattleText1: ; 90167 (24:4167) + text "Hang on! My line's" + line "snagged!" + done + +_Route12BattleText2: ; 90183 (24:4183) + text "Be patient!" + line "Fishing is a" + cont "waiting game!" + done + +_Route12EndBattleText2: ; 901ab (24:41ab) + text "That" + line "one got away!" + prompt + +_Route12AfterBattleText2: ; 901bf (24:41bf) + text "With a better ROD," + line "I could catch" + cont "better #MON!" + done + +_Route12BattleText3: ; 901ee (24:41ee) + text "Have you found a" + line "MOON STONE?" + done + +_Route12EndBattleText3: ; 9020c (24:420c) + text "Oww!" + prompt + +_Route12AfterBattleText3: ; 90212 (24:4212) + text "I could have made" + line "my #MON evolve" + cont "with MOON STONE!" + done + +_Route12BattleText4: ; 90245 (24:4245) + text "Electricity is my" + line "specialty!" + done + +_Route12EndBattleText4: ; 90263 (24:4263) + text "Unplugged!" + prompt + +_Route12AfterBattleText4: ; 9026f (24:426f) + text "Water conducts" + line "electricity, so" + cont "you should zap" + cont "sea #MON!" + done + +_Route12BattleText5: ; 902a8 (24:42a8) + text "The FISHING FOOL" + line "vs. #MON KID!" + done + +_Route12EndBattleText5: ; 902c8 (24:42c8) + text "Too" + line "much!" + prompt + +_Route12AfterBattleText5: ; 902d3 (24:42d3) + text "You beat me at" + line "#MON, but I'm" + cont "good at fishing!" + done + +_Route12BattleText6: ; 90301 (24:4301) + text "I'd rather be" + line "working!" + done + +_Route12EndBattleText6: ; 90318 (24:4318) + text "It's" + line "not easy..." + prompt + +_Route12AfterBattleText6: ; 90329 (24:4329) + text "It's all right." + line "Losing doesn't" + cont "bug me any more." + done + +_Route12BattleText7: ; 90358 (24:4358) + text "You never know" + line "what you could" + cont "catch!" + done + +_Route12EndBattleText7: ; 9037e (24:437e) + text "Lost" + line "it!" + prompt + +_Route12AfterBattleText7: ; 90388 (24:4388) + text "I catch MAGIKARP" + line "all the time, but" + cont "they're so weak!" + done + +_Route12Text11: ; 903bc (24:43bc) + text "ROUTE 12 " + line "North to LAVENDER" + done + +_Route12Text12: ; 903d9 (24:43d9) + text "SPORT FISHING AREA" + done + diff --git a/text/maps/route_13.asm b/text/maps/route_13.asm new file mode 100644 index 00000000..37e459c1 --- /dev/null +++ b/text/maps/route_13.asm @@ -0,0 +1,180 @@ +_Route13BattleText2: ; 903ed (24:43ed) + text "My bird #MON" + line "want to scrap!" + done + +_Route13EndBattleText2: ; 9040a (24:440a) + text "My" + line "bird combo lost?" + prompt + +_Route13AfterBattleText2: ; 9041f (24:441f) + text "My #MON look" + line "happy even though" + cont "they lost." + done + +_Route13BattleText3: ; 9044a (24:444a) + text "I'm told I'm good" + line "for a kid!" + done + +_Route13EndBattleText3: ; 90466 (24:4466) + text "Ohh!" + line "I lost!" + prompt + +_Route13AfterBattleText3: ; 90474 (24:4474) + text "I want to become" + line "a good trainer." + cont "I'll train hard." + done + +_Route13BattleText4: ; 904a6 (24:44a6) + text "Wow! Your BADGEs" + line "are too cool!" + done + +_Route13EndBattleText4: ; 904c6 (24:44c6) + text "Not" + line "enough!" + prompt + +_Route13AfterBattleText4: ; 904d3 (24:44d3) + text "You got those" + line "BADGEs from GYM" + cont "LEADERs. I know!" + done + +_Route13BattleText5: ; 90503 (24:4503) + text "My cute #MON" + line "wish to make your" + cont "acquaintance." + done + +_Route13EndBattleText5: ; 90531 (24:4531) + text "Wow!" + line "You totally won!" + prompt + +_Route13AfterBattleText5: ; 90548 (24:4548) + text "You have to make" + line "#MON fight to" + cont "toughen them up!" + done + +_Route13BattleText6: ; 90579 (24:4579) + text "I found CARBOS in" + line "a cave once." + done + +_Route13EndBattleText6: ; 90599 (24:4599) + text "Just" + line "messed up!" + prompt + +_Route13AfterBattleText6: ; 905aa (24:45aa) + text "CARBOS boosted" + line "the SPEED of my" + cont "#MON." + done + +_Route13BattleText7: ; 905d0 (24:45d0) + text "The wind's blowing" + line "my way!" + done + +_Route13EndBattleText7: ; 905eb (24:45eb) + text "The" + line "wind turned!" + prompt + +_Route13AfterBattleText7: ; 905fd (24:45fd) + text "I'm beat. I guess" + line "I'll FLY home." + done + +_Route13BattleText8: ; 9061d (24:461d) + text "Sure, I'll play" + line "with you!" + done + +_Route13EndBattleText8: ; 90637 (24:4637) + text "Oh!" + line "You little brute!" + prompt + +_Route13AfterBattleText8: ; 9064e (24:464e) + text "I wonder which is" + line "stronger, male or" + cont "female #MON?" + done + +_Route13BattleText9: ; 90680 (24:4680) + text "Do you want to" + line "#MON with me?" + done + +_Route13EndBattleText9: ; 9069e (24:469e) + text "It's over" + line "already?" + prompt + +_Route13AfterBattleText9: ; 906b1 (24:46b1) + text "I don't know" + line "anything about" + cont "#MON. I just" + cont "like cool ones!" + done + +_Route13BattleText10: ; 906ea (24:46ea) + text "What're you" + line "lookin' at?" + done + +_Route13EndBattleText10: ; 90702 (24:4702) + text "Dang!" + line "Stripped gears!" + prompt + +_Route13AfterBattleText10: ; 90719 (24:4719) + text "Get lost!" + done + +_Route13BattleText11: ; 90724 (24:4724) + text "I always go with" + line "bird #MON!" + done + +_Route13EndBattleText11: ; 90741 (24:4741) + text "Out" + line "of power!" + prompt + +_Route13AfterBattleText11: ; 90750 (24:4750) + text "I wish I could" + line "fly like PIDGEY" + cont "and PIDGEOTTO..." + done + +_Route13Text11: ; 90781 (24:4781) + text "TRAINER TIPS" + + para "Look to the left" + line "of that post!" + done + +_Route13Text12: ; 907ae (24:47ae) + text "TRAINER TIPS" + + para "Use SELECT to" + line "switch items in" + cont "the ITEM window!" + done + +_Route13Text13: ; 907eb (24:47eb) + text "ROUTE 13" + line "North to SILENCE" + cont "BRIDGE" + done + diff --git a/text/maps/route_14.asm b/text/maps/route_14.asm new file mode 100644 index 00000000..a22ef095 --- /dev/null +++ b/text/maps/route_14.asm @@ -0,0 +1,174 @@ +_Route14BattleText1: ; 9080d (24:480d) + text "You need to use" + line "TMs to teach good" + cont "moves to #MON!" + done + +_Route14EndBattleText1: ; 9083f (24:483f) + text "Not" + line "good enough!" + prompt + +_Route14AfterBattleText1: ; 90851 (24:4851) + text "You have some HMs" + line "right? #MON" + cont "can't ever forget" + cont "those moves." + done + +_Route14BattleText2: ; 9088e (24:488e) + text "My bird #MON" + line "should be ready" + cont "for battle." + done + +_Route14EndBattleText2: ; 908b8 (24:48b8) + text "Not" + line "ready yet!" + prompt + +_Route14AfterBattleText2: ; 908c8 (24:48c8) + text "They need to learn" + line "better moves." + done + +_Route14BattleText3: ; 908ea (24:48ea) + text "TMs are on sale" + line "in CELADON!" + cont "But, only a few" + cont "people have HMs!" + done + +_Route14EndBattleText3: ; 90928 (24:4928) + text "Aww," + line "bummer!" + prompt + +_Route14AfterBattleText3: ; 90936 (24:4936) + text "Teach #MON" + line "moves of the same" + cont "element type for" + cont "more power." + done + +_Route14BattleText4: ; 90971 (24:4971) + text "Have you taught" + line "your bird #MON" + cont "how to FLY?" + done + +_Route14EndBattleText4: ; 9099d (24:499d) + text "Shot" + line "down in flames!" + prompt + +_Route14AfterBattleText4: ; 909b3 (24:49b3) + text "Bird #MON are" + line "my true love!" + done + +_Route14BattleText5: ; 909d0 (24:49d0) + text "Have you heard of" + line "the legendary" + cont "#MON?" + done + +_Route14EndBattleText5: ; 909f7 (24:49f7) + text "Why?" + line "Why'd I lose?" + prompt + +_Route14AfterBattleText5: ; 90a0a (24:4a0a) + text "The 3 legendary" + line "#MON are all" + cont "birds of prey." + done + +_Route14BattleText6: ; 90a37 (24:4a37) + text "I'm not into it," + line "but OK! Let's go!" + done + +_Route14EndBattleText6: ; 90a59 (24:4a59) + text "I" + line "knew it!" + prompt + +_Route14AfterBattleText6: ; 90a65 (24:4a65) + text "Winning, losing," + line "it doesn't matter" + cont "in the long run!" + done + +_Route14BattleText7: ; 90a99 (24:4a99) + text "C'mon, c'mon." + line "Let's go, let's" + cont "go, let's go!" + done + +_Route14EndBattleText7: ; 90ac1 (24:4ac1) + text "Arrg!" + line "Lost! Get lost!" + prompt + +_Route14AfterBattleText7: ; 90ad8 (24:4ad8) + text "What, what, what?" + line "What do you want?" + done + +_Route14BattleText8: ; 90afd (24:4afd) + text "Perfect! I need to" + line "burn some time!" + done + +_Route14EndBattleText8: ; 90b21 (24:4b21) + text "What?" + line "You!?" + prompt + +_Route14AfterBattleText8: ; 90b2e (24:4b2e) + text "Raising #MON" + line "is a drag, man." + done + +_Route14BattleText9: ; 90b4c (24:4b4c) + text "We ride out here" + line "because there's" + cont "more room!" + done + +_Route14EndBattleText9: ; 90b78 (24:4b78) + text "Wipe out!" + prompt + +_Route14AfterBattleText9: ; 90b83 (24:4b83) + text "It's cool you" + line "made your #MON" + cont "so strong!" + + para "Might is right!" + line "And you know it!" + done + +_Route14BattleText10: ; 90bcc (24:4bcc) + text "#MON fight?" + line "Cool! Rumble!" + done + +_Route14EndBattleText10: ; 90be7 (24:4be7) + text "Blown" + line "away!" + prompt + +_Route14AfterBattleText10: ; 90bf4 (24:4bf4) + text "You know who'd" + line "win, you and me" + cont "one on one!" + done + +_Route14Text11: ; 90c1f (24:4c1f) + text "ROUTE 14" + line "West to FUCHSIA" + cont "CITY" + done + diff --git a/text/maps/route_15.asm b/text/maps/route_15.asm new file mode 100644 index 00000000..5d5aa1db --- /dev/null +++ b/text/maps/route_15.asm @@ -0,0 +1,172 @@ +_Route15BattleText1: ; 90c3e (24:4c3e) + text "Let me try out the" + line "#MON I just" + cont "got in a trade!" + done + +_Route15EndBattleText1: ; 90c6e (24:4c6e) + text "Not" + line "good enough!" + prompt + +_Route15AfterBattleText1: ; 90c80 (24:4c80) + text "You can't change" + line "the nickname of" + cont "any #MON you" + cont "get in a trade." + + para "Only the Original" + line "Trainer can." + done + +_Route15BattleText2: ; 90cdd (24:4cdd) + text "You look gentle," + line "so I think I can" + cont "beat you!" + done + +_Route15EndBattleText2: ; 90d0a (24:4d0a) + text "No," + line "wrong!" + prompt + +_Route15AfterBattleText2: ; 90d16 (24:4d16) + text "I'm afraid of" + line "BIKERs, they look" + cont "so ugly and mean!" + done + +_Route15BattleText3: ; 90d48 (24:4d48) + text "When I whistle, I" + line "can summon bird" + cont "#MON!" + done + +_Route15EndBattleText3: ; 90d71 (24:4d71) + text "Ow!" + line "That's tragic!" + prompt + +_Route15AfterBattleText3: ; 90d84 (24:4d84) + text "Maybe I'm not cut" + line "out for battles." + done + +_Route15BattleText4: ; 90da7 (24:4da7) + text "Hmm? My birds are" + line "shivering! You're" + cont "good, aren't you?" + done + +_Route15EndBattleText4: ; 90ddc (24:4ddc) + text "Just" + line "as I thought!" + prompt + +_Route15AfterBattleText4: ; 90df0 (24:4df0) + text "Did you know moves" + line "like EARTHQUAKE" + cont "don't have any" + cont "effect on birds?" + done + +_Route15BattleText5: ; 90e33 (24:4e33) + text "Oh, you're a" + line "little cutie!" + done + +_Route15EndBattleText5: ; 90e4e (24:4e4e) + text "You looked" + line "so cute too!" + prompt + +_Route15AfterBattleText5: ; 90e67 (24:4e67) + text "I forgive you!" + line "I can take it!" + done + +_Route15BattleText6: ; 90e86 (24:4e86) + text "I raise #MON" + line "because I live" + cont "alone!" + done + +_Route15EndBattleText6: ; 90eaa (24:4eaa) + text "I didn't" + line "ask for this!" + prompt + +_Route15AfterBattleText6: ; 90ec1 (24:4ec1) + text "I just like going" + line "home to be with" + cont "my #MON!" + done + +_Route15BattleText7: ; 90eed (24:4eed) + text "Hey kid! C'mon!" + line "I just got these!" + done + +_Route15EndBattleText7: ; 90f0f (24:4f0f) + text "Why" + line "not?" + prompt + +_Route15AfterBattleText7: ; 90f19 (24:4f19) + text "You only live" + line "once, so I live" + cont "as an outlaw!" + cont "TEAM ROCKET RULES!" + done + +_Route15BattleText8: ; 90f59 (24:4f59) + text "Fork over all your" + line "cash when you" + cont "lose to me, kid!" + done + +_Route15EndBattleText8: ; 90f8c (24:4f8c) + text "That" + line "can't be true!" + prompt + +_Route15AfterBattleText8: ; 90fa0 (24:4fa0) + text "I was just joking" + line "about the money!" + done + +_Route15BattleText9: ; 90fc4 (24:4fc4) + text "What's cool?" + line "Trading #MON!" + done + +_Route15EndBattleText9: ; 90fdf (24:4fdf) + text "I" + line "said trade!" + prompt + +_Route15AfterBattleText9: ; 90fee (24:4fee) + text "I trade #MON" + line "with my friends!" + done + +_Route15BattleText10: ; 9100d (24:500d) + text "Want to play with" + line "my #MON?" + done + +_Route15EndBattleText10: ; 91029 (24:5029) + text "I was" + line "too impatient!" + prompt + +_Route15AfterBattleText10: ; 9103f (24:503f) + text "I'll go train with" + line "weaker people.@@" + +_Route15Text12: ; 91062 (24:5062) + text "ROUTE 15" + line "West to FUCHSIA" + cont "CITY" + done + diff --git a/text/maps/route_16.asm b/text/maps/route_16.asm new file mode 100644 index 00000000..2ba31765 --- /dev/null +++ b/text/maps/route_16.asm @@ -0,0 +1,121 @@ +_Route16BattleText1: ; 91081 (24:5081) + text "What do you want?" + done + +_Route16EndBattleText1: ; 91094 (24:5094) + text "Don't you" + line "dare laugh!" + prompt + +_Route16AfterBattleText1: ; 910aa (24:50aa) + text "We like just" + line "hanging here," + cont "what's it to you?" + done + +_Route16BattleText2: ; 910d7 (24:50d7) + text "Nice BIKE!" + line "Hand it over!" + done + +_Route16EndBattleText2: ; 910f1 (24:50f1) + text "Knock" + line "out!" + prompt + +_Route16AfterBattleText2: ; 910fd (24:50fd) + text "Forget it, who" + line "needs your BIKE!" + done + +_Route16BattleText3: ; 9111e (24:511e) + text "Come out and play," + line "little mouse!" + done + +_Route16EndBattleText3: ; 91140 (24:5140) + text "You" + line "little rat!" + prompt + +_Route16AfterBattleText3: ; 91151 (24:5151) + text "I hate losing!" + line "Get away from me!" + done + +_Route16BattleText4: ; 91173 (24:5173) + text "Hey, you just" + line "bumped me!" + done + +_Route16EndBattleText4: ; 9118d (24:518d) + text "Kaboom!" + prompt + +_Route16AfterBattleText4: ; 91196 (24:5196) + text "You can also get" + line "to FUCHSIA from" + cont "VERMILION using a" + cont "coastal road." + done + +_Route16BattleText5: ; 911d8 (24:51d8) + text "I'm feeling" + line "hungry and mean!" + done + +_Route16EndBattleText5: ; 911f5 (24:51f5) + text "Bad," + line "bad, bad!" + prompt + +_Route16AfterBattleText5: ; 91205 (24:5205) + text "I like my #MON" + line "ferocious! They" + cont "tear up enemies!" + done + +_Route16BattleText6: ; 91236 (24:5236) + text "Sure, I'll go!" + done + +_Route16EndBattleText6: ; 91245 (24:5245) + text "Don't make" + line "me mad!" + prompt + +_Route16AfterBattleText6: ; 91258 (24:5258) + text "I like harassing" + line "people with my" + cont "vicious #MON!" + done + +_Route16Text7: ; 91287 (24:5287) + text "A sleeping #MON" + line "blocks the way!" + done + +_UnnamedText_59ab3: ; 912a8 (24:52a8) + text "SNORLAX woke up!" + + para "It attacked in a" + line "grumpy rage!" + done + +_UnnamedText_59ab8: ; 912d8 (24:52d8) + text "With a big yawn," + line "SNORLAX returned" + cont "to the mountains!" + done + +_Route16Text8: ; 9130d (24:530d) + text "Enjoy the slope!" + line "CYCLING ROAD" + done + +_Route16Text9: ; 9132c (24:532c) + text "ROUTE 16" + line "CELADON CITY -" + cont "FUCHSIA CITY" + done + diff --git a/text/maps/route_17.asm b/text/maps/route_17.asm new file mode 100644 index 00000000..4b30cc55 --- /dev/null +++ b/text/maps/route_17.asm @@ -0,0 +1,196 @@ +_Route17BattleText1: ; 91352 (24:5352) + text "There's no money" + line "in fighting kids!" + done + +_Route17EndBattleText1: ; 91375 (24:5375) + text "Burned" + line "out!" + prompt + +_Route17AfterBattleText1: ; 91382 (24:5382) + text "Good stuff is" + line "lying around on" + cont "CYCLING ROAD!" + done + +_Route17BattleText2: ; 913af (24:53af) + text "What do you want," + line "kiddo?" + done + +_Route17EndBattleText2: ; 913c9 (24:53c9) + text "Whoo!" + prompt + +_Route17AfterBattleText2: ; 913d0 (24:53d0) + text "I could belly-" + line "bump you outta" + cont "here!" + done + +_Route17BattleText3: ; 913f5 (24:53f5) + text "You heading to" + line "FUCHSIA?" + done + +_Route17EndBattleText3: ; 9140e (24:540e) + text "Crash and" + line "burn!" + prompt + +_Route17AfterBattleText3: ; 9141f (24:541f) + text "I love racing" + line "downhill!" + done + +_Route17BattleText4: ; 91438 (24:5438) + text "We're BIKERs!" + line "Highway stars!" + done + +_Route17EndBattleText4: ; 91455 (24:5455) + text "Smoked!" + prompt + +_Route17AfterBattleText4: ; 9145e (24:545e) + text "Are you looking" + line "for adventure?" + done + +_Route17BattleText5: ; 9147e (24:547e) + text "Let VOLTORB" + line "electrify you!" + done + +_Route17EndBattleText5: ; 9149a (24:549a) + text "Grounded" + line "out!" + prompt + +_Route17AfterBattleText5: ; 914a9 (24:54a9) + text "I got my VOLTORB" + line "at the abandoned" + cont "POWER PLANT." + done + +_Route17BattleText6: ; 914d9 (24:54d9) + text "My #MON won't" + line "evolve! Why?" + done + +_Route17EndBattleText6: ; 914f4 (24:54f4) + text "Why," + line "you!" + prompt + +_Route17AfterBattleText6: ; 914ff (24:54ff) + text "Maybe some #MON" + line "need element" + cont "STONEs to evolve." + done + +_Route17BattleText7: ; 9152f (24:552f) + text "I need a little" + line "exercise!" + done + +_Route17EndBattleText7: ; 9154a (24:554a) + text "Whew!" + line "Good workout!" + prompt + +_Route17AfterBattleText7: ; 9155f (24:555f) + text "I'm sure I lost" + line "weight there!" + done + +_Route17BattleText8: ; 9157d (24:557d) + text "Be a rebel!" + done + +_Route17EndBattleText8: ; 9158a (24:558a) + text "Aaaargh!" + prompt + +_Route17AfterBattleText8: ; 91594 (24:5594) + text "Be ready to fight" + line "for your beliefs!" + done + +_Route17BattleText9: ; 915b9 (24:55b9) + text "Nice BIKE!" + line "How's it handle?" + done + +_Route17EndBattleText9: ; 915d5 (24:55d5) + text "Shoot!" + prompt + +_Route17AfterBattleText9: ; 915dd (24:55dd) + text "The slope makes" + line "it hard to steer!" + done + +_Route17BattleText10: ; 91600 (24:5600) + text "Get lost kid!" + line "I'm bushed!" + done + +_Route17EndBattleText10: ; 9161a (24:561a) + text "Are you" + line "satisfied?" + prompt + +_Route17AfterBattleText10: ; 9162e (24:562e) + text "I need to catch" + line "a few Zs!" + done + +_Route17Text11: ; 91649 (24:5649) + text "It's a notice!" + + para "Watch out for" + line "discarded items!" + done + +_Route17Text12: ; 91677 (24:5677) + text "TRAINER TIPS" + + para "All #MON are" + line "unique." + + para "Even #MON of" + line "the same type and" + cont "level grow at" + cont "different rates." + done + +_Route17Text13: ; 916d8 (24:56d8) + text "TRAINER TIPS" + + para "Press the A or B" + line "Button to stay in" + cont "place while on a" + cont "slope." + done + +_Route17Text14: ; 91721 (24:5721) + text "ROUTE 17" + line "CELADON CITY -" + cont "FUCHSIA CITY" + done + +_Route17Text15: ; 91747 (24:5747) + text "It's a notice!" + + para "Don't throw the" + line "game, throw #" + cont "BALLs instead!" + done + +_Route17Text16: ; 91782 (24:5782) + text "CYCLING ROAD" + line "Slope ends here!" + done + diff --git a/text/maps/route_18.asm b/text/maps/route_18.asm new file mode 100644 index 00000000..f2e5306d --- /dev/null +++ b/text/maps/route_18.asm @@ -0,0 +1,59 @@ +_Route18BattleText1: ; 917a1 (24:57a1) + text "I always check" + line "every grassy area" + cont "for new #MON." + done + +_Route18EndBattleText1: ; 917d1 (24:57d1) + text "Tch!" + prompt + +_Route18AfterBattleText1: ; 917d7 (24:57d7) + text "I wish I had a" + line "BIKE!" + done + +_Route18BattleText2: ; 917ed (24:57ed) + text "Kurukkoo!" + line "How do you like" + cont "my bird call?" + done + +_Route18EndBattleText2: ; 91816 (24:5816) + text "I" + line "had to bug you!" + prompt + +_Route18AfterBattleText2: ; 91829 (24:5829) + text "I also collect sea" + line "#MON on" + cont "weekends!" + done + +_Route18BattleText3: ; 9184f (24:584f) + text "This is my turf!" + line "Get out of here!" + done + +_Route18EndBattleText3: ; 91872 (24:5872) + text "Darn!" + prompt + +_Route18AfterBattleText3: ; 91879 (24:5879) + text "This is my fave" + line "#MON hunting" + cont "area!" + done + +_Route18Text4: ; 9189d (24:589d) + text "ROUTE 18" + line "CELADON CITY -" + cont "FUCHSIA CITY" + done + +_Route18Text5: ; 918c3 (24:58c3) + text "CYCLING ROAD" + line "No pedestrians" + cont "permitted!" + done + diff --git a/text/maps/route_19.asm b/text/maps/route_19.asm new file mode 100644 index 00000000..06e1aaf5 --- /dev/null +++ b/text/maps/route_19.asm @@ -0,0 +1,158 @@ +_Route19BattleText1: ; 918eb (24:58eb) + text "Have to warm up" + line "before my swim!" + done + +_Route19EndBattleText1: ; 9190c (24:590c) + text "All" + line "warmed up!" + prompt + +_Route19AfterBattleText1: ; 9191c (24:591c) + text "Thanks, kid! I'm" + line "ready for a swim!" + done + +_Route19BattleText2: ; 9193f (24:593f) + text "Wait! You'll have" + line "a heart attack!" + done + +_Route19EndBattleText2: ; 91961 (24:5961) + text "Ooh!" + line "That's chilly!" + prompt + +_Route19AfterBattleText2: ; 91975 (24:5975) + text "Watch out for" + line "TENTACOOL!" + done + +_Route19BattleText3: ; 9198f (24:598f) + text "I love swimming!" + line "What about you?" + done + +_Route19EndBattleText3: ; 919b1 (24:59b1) + text "Belly" + line "flop!" + prompt + +_Route19AfterBattleText3: ; 919be (24:59be) + text "I can beat #MON" + line "at swimming!" + done + +_Route19BattleText4: ; 919dc (24:59dc) + text "What's beyond the" + line "horizon?" + done + +_Route19EndBattleText4: ; 919f7 (24:59f7) + text "Glub!" + prompt + +_Route19AfterBattleText4: ; 919fe (24:59fe) + text "I see a couple of" + line "islands!" + done + +_Route19BattleText5: ; 91a1a (24:5a1a) + text "I tried diving" + line "for #MON, but" + cont "it was a no go!" + done + +_Route19EndBattleText5: ; 91a48 (24:5a48) + text "Help!" + prompt + +_Route19AfterBattleText5: ; 91a4f (24:5a4f) + text "You have to fish" + line "for sea #MON!" + done + +_Route19BattleText6: ; 91a6f (24:5a6f) + text "I look at the" + line "sea to forget!" + done + +_Route19EndBattleText6: ; 91a8d (24:5a8d) + text "Ooh!" + line "Traumatic!" + prompt + +_Route19AfterBattleText6: ; 91a9e (24:5a9e) + text "I'm looking at the" + line "sea to forget!" + done + +_Route19BattleText7: ; 91ac0 (24:5ac0) + text "Oh, I just love" + line "your ride! Can I" + cont "have it if I win?" + done + +_Route19EndBattleText7: ; 91af4 (24:5af4) + text "Oh!" + line "I lost!" + prompt + +_Route19AfterBattleText7: ; 91b01 (24:5b01) + text "It's still a long" + line "way to go to" + cont "SEAFOAM ISLANDS." + done + +_Route19BattleText8: ; 91b31 (24:5b31) + text "Swimming's great!" + line "Sunburns aren't!" + done + +_Route19EndBattleText8: ; 91b53 (24:5b53) + text "Shocker!" + prompt + +_Route19AfterBattleText8: ; 91b5d (24:5b5d) + text "My boy friend" + line "wanted to swim to" + cont "SEAFOAM ISLANDS." + done + +_Route19BattleText9: ; 91b8f (24:5b8f) + text "These waters are" + line "treacherous!" + done + +_Route19EndBattleText9: ; 91bae (24:5bae) + text "Ooh!" + line "Dangerous!" + prompt + +_Route19AfterBattleText9: ; 91bbf (24:5bbf) + text "I got a cramp!" + line "Glub, glub..." + done + +_Route19BattleText10: ; 91bdd (24:5bdd) + text "I swam here, but" + line "I'm tired." + done + +_Route19EndBattleText10: ; 91bf9 (24:5bf9) + text "I'm" + line "exhausted..." + prompt + +_Route19AfterBattleText10: ; 91c0a (24:5c0a) + text "LAPRAS is so big," + line "it must keep you" + cont "dry on water." + done + +_Route19Text11: ; 91c3c (24:5c3c) + text "SEA ROUTE 19" + line "FUCHSIA CITY -" + cont "SEAFOAM ISLANDS" + done + diff --git a/text/maps/route_2.asm b/text/maps/route_2.asm new file mode 100644 index 00000000..d718fb94 --- /dev/null +++ b/text/maps/route_2.asm @@ -0,0 +1,10 @@ +_Route2Text3: ; 8d745 (23:5745) + text "ROUTE 2" + line "VIRIDIAN CITY -" + cont "PEWTER CITY" + done + +_Route2Text4: ; 8d76a (23:576a) + text "DIGLETT's CAVE" + done + diff --git a/text/maps/route_20.asm b/text/maps/route_20.asm new file mode 100644 index 00000000..94ebb73b --- /dev/null +++ b/text/maps/route_20.asm @@ -0,0 +1,157 @@ +_Route20BattleText1: ; 91c69 (24:5c69) + text "The water is" + line "shallow here." + done + +_Route20EndBattleText1: ; 91c85 (24:5c85) + text "Splash!" + prompt + +_Route20AfterBattleText1: ; 91c8e (24:5c8e) + text "I wish I could" + line "ride my #MON." + done + +_Route20BattleText2: ; 91cac (24:5cac) + text "SEAFOAM is a" + line "quiet getaway!" + done + +_Route20EndBattleText2: ; 91cc9 (24:5cc9) + text "Quit it!" + prompt + +_Route20AfterBattleText2: ; 91cd3 (24:5cd3) + text "There's a huge" + line "cavern underneath" + cont "this island." + done + +_Route20BattleText3: ; 91d01 (24:5d01) + text "I love floating" + line "with the fishes!" + done + +_Route20EndBattleText3: ; 91d23 (24:5d23) + text "Yowch!" + prompt + +_Route20AfterBattleText3: ; 91d2b (24:5d2b) + text "Want to float" + line "with me?" + done + +_Route20BattleText4: ; 91d43 (24:5d43) + text "Are you on" + line "vacation too?" + done + +_Route20EndBattleText4: ; 91d5d (24:5d5d) + text "No" + line "mercy at all!" + prompt + +_Route20AfterBattleText4: ; 91d6f (24:5d6f) + text "SEAFOAM used to" + line "be one island!" + done + +_Route20BattleText5: ; 91d8f (24:5d8f) + text "Check out my buff" + line "physique!" + done + +_Route20EndBattleText5: ; 91dac (24:5dac) + text "Wimpy!" + prompt + +_Route20AfterBattleText5: ; 91db4 (24:5db4) + text "I should've been" + line "buffing up my" + cont "#MON, not me!" + done + +_Route20BattleText6: ; 91de1 (24:5de1) + text "Why are you" + line "riding a #MON?" + cont "Can't you swim?" + done + +_Route20EndBattleText6: ; 91e0c (24:5e0c) + text "Ouch!" + line "Torpedoed!" + prompt + +_Route20AfterBattleText6: ; 91e1e (24:5e1e) + text "Riding a #MON" + line "sure looks fun!" + done + +_Route20BattleText7: ; 91e3d (24:5e3d) + text "I rode my bird" + line "#MON here!" + done + +_Route20EndBattleText7: ; 91e58 (24:5e58) + text "Oh" + line "no!" + prompt + +_Route20AfterBattleText7: ; 91e60 (24:5e60) + text "My birds can't" + line "FLY me back!" + done + +_Route20BattleText8: ; 91e7c (24:5e7c) + text "My boy friend gave" + line "me big pearls!" + done + +_Route20EndBattleText8: ; 91e9f (24:5e9f) + text "Don't" + line "touch my pearls!" + prompt + +_Route20AfterBattleText8: ; 91eb6 (24:5eb6) + text "Will my pearls" + line "grow bigger" + cont "inside CLOYSTER?" + done + +_Route20BattleText9: ; 91ee3 (24:5ee3) + text "I swam here from" + line "CINNABAR ISLAND!" + done + +_Route20EndBattleText9: ; 91f06 (24:5f06) + text "I'm" + line "so disappointed!" + prompt + +_Route20AfterBattleText9: ; 91f1b (24:5f1b) + text "#MON have" + line "taken over an" + cont "abandoned mansion" + cont "on CINNABAR!" + done + +_Route20BattleText10: ; 91f53 (24:5f53) + text "CINNABAR, in the" + line "west, has a LAB" + cont "for #MON." + done + +_Route20EndBattleText10: ; 91f7f (24:5f7f) + text "Wait!" + prompt + +_Route20AfterBattleText10: ; 91f86 (24:5f86) + text "CINNABAR is a " + line "volcanic island!" + done + +_Route20Text12: ; 91fa7 (24:5fa7) +_Route20Text11: ; 91fa7 (24:5fa7) + text "SEAFOAM ISLANDS" + done + diff --git a/text/maps/route_21.asm b/text/maps/route_21.asm new file mode 100644 index 00000000..c7a9ef55 --- /dev/null +++ b/text/maps/route_21.asm @@ -0,0 +1,138 @@ +_Route21BattleText1: ; 91fb8 (24:5fb8) + text "You want to know" + line "if the fish are" + cont "biting?" + done + +_Route21EndBattleText1: ; 91fe2 (24:5fe2) + text "Dang!" + prompt + +_Route21AfterBattleText1: ; 91fe9 (24:5fe9) + text "I can't catch" + line "anything good!" + done + +_Route21BattleText2: ; 92006 (24:6006) + text "I got a big haul!" + line "Wanna go for it?" + done + +_Route21EndBattleText2: ; 9202a (24:602a) + text "Darn" + line "MAGIKARP!" + prompt + +_Route21AfterBattleText2: ; 9203a (24:603a) + text "I seem to only" + line "catch MAGIKARP!" + done + +_Route21BattleText3: ; 9205a (24:605a) + text "The sea cleanses" + line "my body and soul!" + done + +_Route21EndBattleText3: ; 9207e (24:607e) + text "Ayah!" + prompt + +_Route21AfterBattleText3: ; 92085 (24:6085) + text "I like the" + line "mountains too!" + done + +_Route21BattleText4: ; 920a0 (24:60a0) + text "What's wrong with" + line "me swimming?" + done + +_Route21EndBattleText4: ; 920bf (24:60bf) + text "Cheap" + line "shot!" + prompt + +_Route21AfterBattleText4: ; 920cc (24:60cc) + text "I look like what?" + line "A studded inner" + cont "tube? Get lost!" + done + +_Route21BattleText5: ; 920ff (24:60ff) + text "I caught all my" + line "#MON at sea!" + done + +_Route21EndBattleText5: ; 9211d (24:611d) + text "Diver!!" + line "Down!!" + prompt + +_Route21AfterBattleText5: ; 9212d (24:612d) + text "Where'd you catch" + line "your #MON?" + done + +_Route21BattleText6: ; 9214a (24:614a) + text "Right now, I'm in" + line "a triathlon meet!" + done + +_Route21EndBattleText6: ; 9216e (24:616e) + text "Pant..." + line "pant...pant..." + prompt + +_Route21AfterBattleText6: ; 92186 (24:6186) + text "I'm beat!" + line "But, I still have" + cont "the bike race and" + cont "marathon left!" + done + +_Route21BattleText7: ; 921c3 (24:61c3) + text "Ahh! Feel the sun" + line "and the wind!" + done + +_Route21EndBattleText7: ; 921e4 (24:61e4) + text "Yow!" + line "I lost!" + prompt + +_Route21AfterBattleText7: ; 921f2 (24:61f2) + text "I'm sunburnt to a" + line "crisp!" + done + +_Route21BattleText8: ; 9220b (24:620b) + text "Hey, don't scare" + line "away the fish!" + done + +_Route21EndBattleText8: ; 9222b (24:622b) + text "Sorry!" + line "I didn't mean it!" + prompt + +_Route21AfterBattleText8: ; 92244 (24:6244) + text "I was just angry" + line "that I couldn't" + cont "catch anything." + done + +_Route21BattleText9: ; 92275 (24:6275) + text "Keep me company" + line "'til I get a hit!" + done + +_Route21EndBattleText9: ; 92297 (24:6297) + text "That" + line "burned some time." + prompt + +_Route21AfterBattleText9: ; 922af (24:62af) + text "Oh wait! I got a" + line "bite! Yeah!" + done + diff --git a/text/maps/route_22.asm b/text/maps/route_22.asm new file mode 100644 index 00000000..25be0279 --- /dev/null +++ b/text/maps/route_22.asm @@ -0,0 +1,105 @@ +_UnnamedText_511ad: ; 922cd (24:62cd) + text $53, ": Hey!" + line $52, "!" + + para "You're going to" + line "#MON LEAGUE?" + + para "Forget it! You" + line "probably don't" + cont "have any BADGEs!" + + para "The guard won't" + line "let you through!" + + para "By the way, did" + line "your #MON" + cont "get any stronger?" + done + +_UnnamedText_511b2: ; 9236f (24:636f) + text "I heard #MON" + line "LEAGUE has many" + cont "tough trainers!" + + para "I have to figure" + line "out how to get" + cont "past them!" + + para "You should quit" + line "dawdling and get" + cont "a move on!" + done + +_UnnamedText_511b7: ; 923f4 (24:63f4) + text "Awww!" + line "You just lucked" + cont "out!" + prompt + +_UnnamedText_511bc: ; 92410 (24:6410) + text $53, ": What?" + line "Why do I have 2" + cont "#MON?" + + para "You should catch" + cont "some more too!" + prompt + +_UnnamedText_511c1: ; 92450 (24:6450) + text $53, ": What?" + line $52, "! What a" + cont "surprise to see" + cont "you here!" + + para "So you're going to" + line "#MON LEAGUE?" + + para "You collected all" + line "the BADGEs too?" + cont "That's cool!" + + para "Then I'll whip you" + line $52, " as a" + cont "warm up for" + cont "#MON LEAGUE!" + + para "Come on!" + done + +_UnnamedText_511c6: ; 92506 (24:6506) + text "That loosened me" + line "up! I'm ready for" + cont "#MON LEAGUE!" + + para $52, ", you need" + line "more practice!" + + para "But hey, you know" + line "that! I'm out of" + cont "here. Smell ya!" + done + +_UnnamedText_511cb: ; 92583 (24:6583) + text "What!?" + + para "I was just" + line "careless!" + prompt + +_UnnamedText_511d0: ; 925a0 (24:65a0) + text $53, ": Hahaha!" + line $52, "! That's" + cont "your best? You're" + cont "nowhere near as" + cont "good as me, pal!" + + para "Go train some" + line "more! You loser!" + prompt + +_Route22Text3: ; 92606 (24:6606) + text "#MON LEAGUE" + line "Front Gate" + done + diff --git a/text/maps/route_23.asm b/text/maps/route_23.asm new file mode 100644 index 00000000..8d341d57 --- /dev/null +++ b/text/maps/route_23.asm @@ -0,0 +1,39 @@ +_VictoryRoadGuardText1: ; 9261e (24:661e) + text "You can pass here" + line "only if you have" + cont "the @" + TX_RAM $cd6d + text "!" + + para "You don't have the" + line "@" + TX_RAM $cd6d + text " yet!" + + para "You have to have" + line "it to get to" + cont "#MON LEAGUE!@@" + +_VictoryRoadGuardText2: ; 92696 (24:6696) + text "You can pass here" + line "only if you have" + cont "the @" + TX_RAM $cd6d + text "!" + + para "Oh! That is the" + line "@" + TX_RAM $cd6d + text "!@@" + +_UnnamedText_513a3: ; 926dd (24:66dd) + db $0 + para "OK then! Please," + line "go right ahead!" + done + +_Route23Text8: ; 92700 (24:6700) + text "VICTORY ROAD GATE" + line "- #MON LEAGUE" + done + diff --git a/text/maps/route_24_1.asm b/text/maps/route_24_1.asm new file mode 100644 index 00000000..fd4e378f --- /dev/null +++ b/text/maps/route_24_1.asm @@ -0,0 +1,65 @@ +_UnnamedText_51510: ; 92721 (24:6721) + text "Congratulations!" + line "You beat our 5" + cont "contest trainers!@@" + +_UnnamedText_51515: ; 92755 (24:6755) + db $0 + para "You just earned a" + line "fabulous prize!" + prompt + +_UnnamedText_5151a: ; 92779 (24:6779) + text $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_51521: ; 9278f (24:678f) + text "You don't have" + line "any room!" + done + +_UnnamedText_51526: ; 927a8 (24:67a8) + text "By the way, would" + line "you like to join" + cont "TEAM ROCKET?" + + para "We're a group" + line "dedicated to evil" + cont "using #MON!" + + para "Want to join?" + + para "Are you sure?" + + para "Come on, join us!" + + para "I'm telling you" + line "to join!" + + para "OK, you need" + line "convincing!" + + para "I'll make you an" + line "offer you can't" + cont "refuse!" + done + +_UnnamedText_5152b: ; 9288a (24:688a) + text "Arrgh!" + line "You are good!" + prompt + +_UnnamedText_51530: ; 928a0 (24:68a0) + text "With your ability," + line "you could become" + cont "a top leader in" + cont "TEAM ROCKET!" + done + +_Route24BattleText1: ; 928e2 (24:68e2) + text "I saw your feat" + line "from the grass!" + done + diff --git a/text/maps/route_24_2.asm b/text/maps/route_24_2.asm new file mode 100644 index 00000000..abf38c71 --- /dev/null +++ b/text/maps/route_24_2.asm @@ -0,0 +1,91 @@ +_Route24EndBattleText1: ; 94000 (25:4000) + text "I" + line "thought not!" + prompt + +_Route24AfterBattleText1: ; 94010 (25:4010) + text "I hid because the" + line "people on the" + cont "bridge scared me!" + done + +_Route24BattleText2: ; 94043 (25:4043) + text "OK! I'm No. 5!" + line "I'll stomp you!" + done + +_Route24EndBattleText2: ; 94061 (25:4061) + text "Whoa!" + line "Too much!" + prompt + +_Route24AfterBattleText2: ; 94072 (25:4072) + text "I did my best, I" + line "have no regrets!" + done + +_Route24BattleText3: ; 94095 (25:4095) + text "I'm No. 4!" + line "Getting tired?" + done + +_Route24EndBattleText3: ; 940af (25:40af) + text "I lost" + line "too!" + prompt + +_Route24AfterBattleText3: ; 940bc (25:40bc) + text "I did my best, so" + line "I've no regrets!" + done + +_Route24BattleText4: ; 940df (25:40df) + text "Here's No. 3!" + line "I won't be easy!" + done + +_Route24EndBattleText4: ; 940fd (25:40fd) + text "Ow!" + line "Stomped flat!" + prompt + +_Route24AfterBattleText4: ; 94110 (25:4110) + text "I did my best, I" + line "have no regrets!" + done + +_Route24BattleText5: ; 94133 (25:4133) + text "I'm second!" + line "Now it's serious!" + done + +_Route24EndBattleText5: ; 94150 (25:4150) + text "How could I" + line "lose?" + prompt + +_Route24AfterBattleText5: ; 94163 (25:4163) + text "I did my best, I" + line "have no regrets!" + done + +_Route24BattleText6: ; 94186 (25:4186) + text "This is NUGGET" + line "BRIDGE! Beat us 5" + cont "trainers and win" + cont "a fabulous prize!" + + para "Think you got" + line "what it takes?" + done + +_Route24EndBattleText6: ; 941e8 (25:41e8) + text "Whoo!" + line "Good stuff!" + prompt + +_Route24AfterBattleText6: ; 941fb (25:41fb) + text "I did my best, I" + line "have no regrets!" + done + diff --git a/text/maps/route_25.asm b/text/maps/route_25.asm new file mode 100644 index 00000000..2f44dbea --- /dev/null +++ b/text/maps/route_25.asm @@ -0,0 +1,157 @@ +_Route25BattleText1: ; 9421e (25:421e) + text "Local trainers" + line "come here to" + cont "practice!" + done + +_Route25EndBattleText1: ; 94245 (25:4245) + text "You're" + line "decent." + prompt + +_Route25AfterBattleText1: ; 94254 (25:4254) + text "All #MON have" + line "weaknesses. It's" + cont "best to raise" + cont "different kinds." + done + +_Route25BattleText2: ; 94292 (25:4292) + text "Dad took me to a" + line "great party on" + cont "S.S.ANNE at" + cont "VERMILION CITY!" + done + +_Route25EndBattleText2: ; 942cf (25:42cf) + text "I'm" + line "not mad!" + prompt + +_Route25AfterBattleText2: ; 942dc (25:42dc) + text "On S.S.ANNE, I" + line "saw trainers from" + cont "around the world." + done + +_Route25BattleText3: ; 94310 (25:4310) + text "I'm a cool guy." + line "I've got a girl" + cont "friend!" + done + +_Route25EndBattleText3: ; 94337 (25:4337) + text "Aww," + line "darn..." + prompt + +_Route25AfterBattleText3: ; 94345 (25:4345) + text "Oh well. My girl" + line "will cheer me up." + done + +_Route25BattleText4: ; 94369 (25:4369) + text "Hi! My boy" + line "friend is cool!" + done + +_Route25EndBattleText4: ; 94385 (25:4385) + text "I was in" + line "bad condition!" + prompt + +_Route25AfterBattleText4: ; 9439e (25:439e) + text "I wish my guy was" + line "as good as you!" + done + +_Route25BattleText5: ; 943c1 (25:43c1) + text "I knew I had to" + line "fight you!" + done + +_Route25EndBattleText5: ; 943dd (25:43dd) + text "I knew" + line "I'd lose too!" + prompt + +_Route25AfterBattleText5: ; 943f2 (25:43f2) + text "If your #MON" + line "gets confused or" + cont "falls asleep," + cont "switch it!" + done + +_Route25BattleText6: ; 9442a (25:442a) + text "My friend has a" + line "cute #MON." + cont "I'm so jealous!" + done + +_Route25EndBattleText6: ; 94455 (25:4455) + text "I'm" + line "not so jealous!" + prompt + +_Route25AfterBattleText6: ; 94469 (25:4469) + text "You came from MT." + line "MOON? May I have" + cont "a CLEFAIRY?" + done + +_Route25BattleText7: ; 94499 (25:4499) + text "I just got down" + line "from MT.MOON," + cont "but I'm ready!" + done + +_Route25EndBattleText7: ; 944c6 (25:44c6) + text "You" + line "worked hard!" + prompt + +_Route25AfterBattleText7: ; 944d8 (25:44d8) + text "Drat!" + line "A ZUBAT bit me" + cont "back in there." + done + +_Route25BattleText8: ; 944fd (25:44fd) + text "I'm off to see a" + line "#MON collector" + cont "at the cape!" + done + +_Route25EndBattleText8: ; 9452a (25:452a) + text "You" + line "got me." + prompt + +_Route25AfterBattleText8: ; 94537 (25:4537) + text "The collector has" + line "many rare kinds" + cont "of #MON." + done + +_Route25BattleText9: ; 94563 (25:4563) + text "You're going to" + line "see BILL? First," + cont "let's fight!" + done + +_Route25EndBattleText9: ; 94590 (25:4590) + text "You're" + line "something." + prompt + +_Route25AfterBattleText9: ; 945a2 (25:45a2) + text "The trail below" + line "is a shortcut to" + cont "CERULEAN CITY." + done + +_Route25Text11: ; 945d3 (25:45d3) + text "SEA COTTAGE" + line "BILL lives here!" + done + diff --git a/text/maps/route_3.asm b/text/maps/route_3.asm new file mode 100644 index 00000000..bec337de --- /dev/null +++ b/text/maps/route_3.asm @@ -0,0 +1,146 @@ +_Route3Text1: ; 8d779 (23:5779) + text "Whew... I better" + line "take a rest..." + cont "Groan..." + + para "That tunnel from" + line "CERULEAN takes a" + cont "lot out of you!" + done + +_Route3BattleText1: ; 8d7d5 (23:57d5) + text "Hey! I met you in" + line "VIRIDIAN FOREST!" + done + +_Route3EndBattleText1: ; 8d7f9 (23:57f9) + text "You" + line "beat me again!" + prompt + +_Route3AfterBattleText1: ; 8d80d (23:580d) + text "There are other" + line "kinds of #MON" + cont "than those found" + cont "in the forest!" + done + +_Route3BattleText2: ; 8d84c (23:584c) + text "Hi! I like shorts!" + line "They're comfy and" + cont "easy to wear!" + done + +_Route3EndBattleText2: ; 8d87f (23:587f) + text "I don't" + line "believe it!" + prompt + +_Route3AfterBattleText2: ; 8d893 (23:5893) + text "Are you storing" + line "your #MON on" + cont "PC? Each BOX can" + cont "hold 20 #MON!" + done + +_Route3BattleText3: ; 8d8d0 (23:58d0) + text "You looked at me," + line "didn't you?" + done + +_Route3EndBattleText3: ; 8d8ee (23:58ee) + text "You're" + line "mean!" + prompt + +_Route3AfterBattleText3: ; 8d8fb (23:58fb) + text "Quit staring if" + line "you don't want to" + cont "fight!" + done + +_Route3BattleText4: ; 8d924 (23:5924) + text "Are you a trainer?" + line "Let's fight!" + done + +_Route3EndBattleText4: ; 8d944 (23:5944) + text "If I" + line "had new #MON I" + cont "would've won!" + prompt + +_Route3AfterBattleText4: ; 8d966 (23:5966) + text "If a #MON BOX" + line "on the PC gets" + cont "full, just switch" + cont "to another BOX!" + done + +_Route3BattleText5: ; 8d9a6 (23:59a6) + text "That look you" + line "gave me, it's so" + cont "intriguing!" + done + +_Route3EndBattleText5: ; 8d9d1 (23:59d1) + text "Be nice!" + prompt + +_Route3AfterBattleText5: ; 8d9db (23:59db) + text "Avoid fights by" + line "not letting" + cont "people see you!" + done + +_Route3BattleText6: ; 8da08 (23:5a08) + text "Hey! You're not" + line "wearing shorts!" + done + +_Route3EndBattleText6: ; 8da28 (23:5a28) + text "Lost!" + line "Lost! Lost!" + prompt + +_Route3AfterBattleText6: ; 8da3b (23:5a3b) + text "I always wear" + line "shorts, even in" + cont "winter!" + done + +_Route3BattleText7: ; 8da62 (23:5a62) + text "You can fight my" + line "new #MON!" + done + +_Route3EndBattleText7: ; 8da7e (23:5a7e) + text "Done" + line "like dinner!" + prompt + +_Route3AfterBattleText7: ; 8da91 (23:5a91) + text "Trained #MON" + line "are stronger than" + cont "the wild ones!" + done + +_Route3BattleText8: ; 8dac0 (23:5ac0) + text "Eek! Did you" + line "touch me?" + done + +_Route3EndBattleText8: ; 8dad8 (23:5ad8) + text "That's it?" + prompt + +_Route3AfterBattleText8: ; 8dae3 (23:5ae3) + text "ROUTE 4 is at the" + line "foot of MT.MOON." + done + +_Route3Text10: ; 8db07 (23:5b07) + text "ROUTE 3" + line "MT.MOON AHEAD" + done + diff --git a/text/maps/route_4.asm b/text/maps/route_4.asm new file mode 100644 index 00000000..5a81d24a --- /dev/null +++ b/text/maps/route_4.asm @@ -0,0 +1,36 @@ +_Route4Text1: ; 8db1e (23:5b1e) + text "Ouch! I tripped" + line "over a rocky" + cont "#MON, GEODUDE!" + done + +_Route4BattleText1: ; 8db4b (23:5b4b) + text "I came to get my" + line "mushroom #MON!" + done + +_Route4EndBattleText1: ; 8db6c (23:5b6c) + text "Oh! My cute" + line "mushroom #MON!" + prompt + +_Route4AfterBattleText1: ; 8db88 (23:5b88) + text "There might not" + line "be any more" + cont "mushrooms here." + + para "I think I got" + line "them all." + done + +_Route4Text5: ; 8dbcd (23:5bcd) + text "MT.MOON" + line "Tunnel Entrance" + done + +_Route4Text6: ; 8dbe6 (23:5be6) + text "ROUTE 4" + line "MT.MOON -" + cont "CERULEAN CITY" + done + diff --git a/text/maps/route_5.asm b/text/maps/route_5.asm new file mode 100644 index 00000000..0689575f --- /dev/null +++ b/text/maps/route_5.asm @@ -0,0 +1,6 @@ +_Route5Text1: ; 8dc07 (23:5c07) + text "UNDERGROUND PATH" + line "CERULEAN CITY -" + cont "VERMILION CITY" + done + diff --git a/text/maps/route_6.asm b/text/maps/route_6.asm new file mode 100644 index 00000000..cdcd23d7 --- /dev/null +++ b/text/maps/route_6.asm @@ -0,0 +1,98 @@ +_Route6BattleText1: ; 8dc38 (23:5c38) + text "Who's there?" + line "Quit listening in" + cont "on us!" + done + +_Route6EndBattleText1: ; 8dc5e (23:5c5e) + text "I" + line "just can't win!" + prompt + +_Route6AfterBattleText1: ; 8dc70 (23:5c70) + text "Whisper..." + line "whisper..." + done + +_Route6BattleText2: ; 8dc87 (23:5c87) + text "Excuse me! This" + line "is a private" + cont "conversation!" + done + +_Route6EndBattleText2: ; 8dcb3 (23:5cb3) + text "Ugh!" + line "I hate losing!" + prompt + +_Route6BattleText3: ; 8dcc8 (23:5cc8) + text "There aren't many" + line "bugs out here." + done + +_Route6EndBattleText3: ; 8dce9 (23:5ce9) + text "No!" + line "You're kidding!" + prompt + +_Route6AfterBattleText3: ; 8dcfd (23:5cfd) + text "I like bugs, so" + line "I'm going back to" + cont "VIRIDIAN FOREST." + done + +_Route6BattleText4: ; 8dd30 (23:5d30) + text "Huh? You want" + line "to talk to me?" + done + +_Route6EndBattleText4: ; 8dd4e (23:5d4e) + text "I" + line "didn't start it!" + prompt + +_Route6AfterBattleText4: ; 8dd61 (23:5d61) + text "I should carry" + line "more #MON with" + cont "me for safety." + done + +_Route6BattleText5: ; 8dd8f (23:5d8f) + text "Me? Well, OK." + line "I'll play!" + done + +_Route6EndBattleText5: ; 8dda8 (23:5da8) + text "Just" + line "didn't work!" + prompt + +_Route6AfterBattleText5: ; 8ddba (23:5dba) + text "I want to get" + line "stronger! What's" + cont "your secret?" + done + +_Route6BattleText6: ; 8dde6 (23:5de6) + text "I've never seen" + line "you around!" + cont "Are you good?" + done + +_Route6EndBattleText6: ; 8de10 (23:5e10) + text "You" + line "are too good!" + prompt + +_Route6AfterBattleText6: ; 8de23 (23:5e23) + text "Are my #MON" + line "weak? Or, am I" + cont "just bad?" + done + +_Route6Text7: ; 8de49 (23:5e49) + text "UNDERGROUND PATH" + line "CERULEAN CITY -" + cont "VERMILION CITY" + done + diff --git a/text/maps/route_7.asm b/text/maps/route_7.asm new file mode 100644 index 00000000..190858b0 --- /dev/null +++ b/text/maps/route_7.asm @@ -0,0 +1,6 @@ +_Route7Text1: ; 8de7a (23:5e7a) + text "UNDERGROUND PATH" + line "CELADON CITY -" + cont "LAVENDER TOWN" + done + diff --git a/text/maps/route_8.asm b/text/maps/route_8.asm new file mode 100644 index 00000000..347a93cb --- /dev/null +++ b/text/maps/route_8.asm @@ -0,0 +1,155 @@ +_Route8BattleText1: ; 8dea9 (23:5ea9) + text "You look good at" + line "#MON, but" + cont "how's your chem?" + done + +_Route8EndBattleText1: ; 8ded5 (23:5ed5) + text "Ow!" + line "Meltdown!" + prompt + +_Route8AfterBattleText1: ; 8dee4 (23:5ee4) + text "I am better at" + line "school than this!" + done + +_Route8BattleText2: ; 8df06 (23:5f06) + text "All right! Let's" + line "roll the dice!" + done + +_Route8EndBattleText2: ; 8df26 (23:5f26) + text "Drat!" + line "Came up short!" + prompt + +_Route8AfterBattleText2: ; 8df3c (23:5f3c) + text "Lady Luck's not" + line "with me today!" + done + +_Route8BattleText3: ; 8df5b (23:5f5b) + text "You need strategy" + line "to win at this!" + done + +_Route8EndBattleText3: ; 8df7e (23:5f7e) + text "It's" + line "not logical!" + prompt + +_Route8AfterBattleText3: ; 8df90 (23:5f90) + text "Go with GRIMER" + line "first...and..." + cont "...and...then..." + done + +_Route8BattleText4: ; 8dfc0 (23:5fc0) + text "I like NIDORAN, so" + line "I collect them!" + done + +_Route8EndBattleText4: ; 8dfe4 (23:5fe4) + text "Why? Why??" + prompt + +_Route8AfterBattleText4: ; 8dff0 (23:5ff0) + text "When #MON grow" + line "up they get ugly!" + cont "They shouldn't" + cont "evolve!" + done + +_Route8BattleText5: ; 8e028 (23:6028) + text "School is fun, but" + line "so are #MON." + done + +_Route8EndBattleText5: ; 8e049 (23:6049) + text "I'll" + line "stay with school." + prompt + +_Route8AfterBattleText5: ; 8e060 (23:6060) + text "We're stuck here" + line "because of the" + cont "gates at SAFFRON." + done + +_Route8BattleText6: ; 8e092 (23:6092) + text "MEOWTH is so cute," + line "meow, meow, meow!" + done + +_Route8EndBattleText6: ; 8e0b8 (23:60b8) + text "Meow!" + prompt + +_Route8AfterBattleText6: ; 8e0bf (23:60bf) + text "I think PIDGEY" + line "and RATTATA" + cont "are cute too!" + done + +_Route8BattleText7: ; 8e0e9 (23:60e9) + text "We must look" + line "silly standing" + cont "here like this!" + done + +_Route8EndBattleText7: ; 8e116 (23:6116) + text "Look what" + line "you did!" + prompt + +_Route8AfterBattleText7: ; 8e12a (23:612a) + text "SAFFRON's gate" + line "keeper won't let" + cont "us through." + cont "He's so mean!" + done + +_Route8BattleText8: ; 8e162 (23:6162) + text "I'm a rambling," + line "gambling dude!" + done + +_Route8EndBattleText8: ; 8e181 (23:6181) + text "Missed" + line "the big score!" + prompt + +_Route8AfterBattleText8: ; 8e198 (23:6198) + text "Gambling and" + line "#MON are like" + cont "eating peanuts!" + cont "Just can't stop!" + done + +_Route8BattleText9: ; 8e1d4 (23:61d4) + text "What's a cute," + line "round and fluffy" + cont "#MON?" + done + +_Route8EndBattleText9: ; 8e1fa (23:61fa) + text "Stop!" + + para "Don't be so mean" + line "to my CLEFAIRY!" + prompt + +_Route8AfterBattleText9: ; 8e221 (23:6221) + text "I heard that" + line "CLEFAIRY evolves" + cont "when it's exposed" + cont "to a MOON STONE." + done + +_Route8Text10: ; 8e262 (23:6262) + text "UNDERGROUND PATH" + line "CELADON CITY -" + cont "LAVENDER TOWN" + done + diff --git a/text/maps/route_9.asm b/text/maps/route_9.asm new file mode 100644 index 00000000..7022c23f --- /dev/null +++ b/text/maps/route_9.asm @@ -0,0 +1,158 @@ +_Route9BattleText1: ; 8e291 (23:6291) + text "You have #MON" + line "with you!" + cont "You're mine!" + done + +_Route9EndBattleText1: ; 8e2b6 (23:62b6) + text "You" + line "deceived me!" + prompt + +_Route9AfterBattleText1: ; 8e2c8 (23:62c8) + text "You need light to" + line "get through that" + cont "dark tunnel ahead." + done + +_Route9BattleText2: ; 8e2ff (23:62ff) + text "Who's that walking" + line "with those good" + cont "looking #MON?" + done + +_Route9EndBattleText2: ; 8e330 (23:6330) + text "Out" + line "like a light!" + prompt + +_Route9AfterBattleText2: ; 8e343 (23:6343) + text "Keep walking!" + done + +_Route9BattleText3: ; 8e352 (23:6352) + text "I'm taking ROCK" + line "TUNNEL to go to" + cont "LAVENDER..." + done + +_Route9EndBattleText3: ; 8e37e (23:637e) + text "Can't" + line "measure up!" + prompt + +_Route9AfterBattleText3: ; 8e390 (23:6390) + text "Are you off to" + line "ROCK TUNNEL too?" + done + +_Route9BattleText4: ; 8e3b1 (23:63b1) + text "Don't you dare" + line "condescend me!" + done + +_Route9EndBattleText4: ; 8e3cf (23:63cf) + text "No!" + line "You're too much!" + prompt + +_Route9AfterBattleText4: ; 8e3e4 (23:63e4) + text "You're obviously" + line "talented! Good" + cont "luck to you!" + done + +_Route9BattleText5: ; 8e411 (23:6411) + text "Bwahaha!" + line "Great! I was" + cont "bored, eh!" + done + +_Route9EndBattleText5: ; 8e433 (23:6433) + text "Keep it" + line "coming, eh!" + + para "Oh wait. I'm out" + line "of #MON!" + prompt + +_Route9AfterBattleText5: ; 8e461 (23:6461) + text "You sure had guts" + line "standing up to me" + cont "there, eh?" + done + +_Route9BattleText6: ; 8e491 (23:6491) + text "Hahaha!" + line "Aren't you a" + cont "little toughie!" + done + +_Route9EndBattleText6: ; 8e4b6 (23:64b6) + text "What's" + line "that?" + prompt + +_Route9AfterBattleText6: ; 8e4c3 (23:64c3) + text "Hahaha! Kids" + line "should be tough!" + done + +_Route9BattleText7: ; 8e4e2 (23:64e2) + text "I got up early" + line "every day to" + cont "raise my #MON" + cont "from cocoons!" + done + +_Route9EndBattleText7: ; 8e51b (23:651b) + text "WHAT?" + + para "What a total" + line "waste of time!" + prompt + +_Route9AfterBattleText7: ; 8e53e (23:653e) + text "I have to collect" + line "more than bugs to" + cont "get stronger..." + done + +_Route9BattleText8: ; 8e573 (23:6573) + text "Hahahaha!" + line "Come on, dude!" + done + +_Route9EndBattleText8: ; 8e58d (23:658d) + text "Hahahaha!" + line "You beat me fair!" + prompt + +_Route9AfterBattleText8: ; 8e5aa (23:65aa) + text "Hahahaha!" + line "Us hearty guys" + cont "always laugh!" + done + +_Route9BattleText9: ; 8e5d2 (23:65d2) + text "Go, my super bug" + line "#MON!" + done + +_Route9EndBattleText9: ; 8e5ea (23:65ea) + text "My" + line "bugs..." + prompt + +_Route9AfterBattleText9: ; 8e5f6 (23:65f6) + text "If you don't like" + line "bug #MON, you" + cont "bug me!" + done + +_Route9Text11: ; 8e61e (23:661e) + text "ROUTE 9" + line "CERULEAN CITY-" + cont "ROCK TUNNEL" + done + From fbda25d3d8a8191b9397c29d7ff475f2264c978e Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:34:42 -0500 Subject: [PATCH 29/41] Split out the rest of map text --- main.asm | 867 +----------------- text/maps/bills_house.asm | 88 ++ text/maps/daycare_1.asm | 65 ++ text/maps/daycare_2.asm | 34 + text/maps/digletts_cave_route_11_entrance.asm | 9 + text/maps/pokemon_league_gate.asm | 20 + text/maps/power_plant.asm | 7 + text/maps/rock_tunnel_b1f.asm | 116 +++ text/maps/rock_tunnel_pokecenter.asm | 14 + text/maps/route_11_gate.asm | 15 + text/maps/route_11_gate_upstairs.asm | 41 + text/maps/route_12_gate.asm | 5 + text/maps/route_12_gate_upstairs.asm | 43 + text/maps/route_12_house.asm | 61 ++ text/maps/route_15_gate.asm | 8 + text/maps/route_15_gate_upstairs.asm | 25 + text/maps/route_16_gate.asm | 23 + text/maps/route_16_gate_upstairs.asm | 27 + text/maps/route_16_house.asm | 32 + text/maps/route_18_gate.asm | 15 + text/maps/route_18_gate_upstairs.asm | 17 + text/maps/saffron_gates.asm | 37 + .../underground_path_route_5_entrance.asm | 2 + .../underground_path_route_6_entrance.asm | 6 + .../underground_path_route_7_entrance.asm | 6 + ...derground_path_route_7_entrance_unused.asm | 36 + .../underground_path_route_8_entrance.asm | 6 + text/maps/victory_road_2f.asm | 86 ++ 28 files changed, 871 insertions(+), 840 deletions(-) create mode 100644 text/maps/bills_house.asm create mode 100644 text/maps/daycare_1.asm create mode 100644 text/maps/daycare_2.asm create mode 100644 text/maps/digletts_cave_route_11_entrance.asm create mode 100644 text/maps/pokemon_league_gate.asm create mode 100644 text/maps/power_plant.asm create mode 100644 text/maps/rock_tunnel_b1f.asm create mode 100644 text/maps/rock_tunnel_pokecenter.asm create mode 100644 text/maps/route_11_gate.asm create mode 100644 text/maps/route_11_gate_upstairs.asm create mode 100644 text/maps/route_12_gate.asm create mode 100644 text/maps/route_12_gate_upstairs.asm create mode 100644 text/maps/route_12_house.asm create mode 100644 text/maps/route_15_gate.asm create mode 100644 text/maps/route_15_gate_upstairs.asm create mode 100644 text/maps/route_16_gate.asm create mode 100644 text/maps/route_16_gate_upstairs.asm create mode 100644 text/maps/route_16_house.asm create mode 100644 text/maps/route_18_gate.asm create mode 100644 text/maps/route_18_gate_upstairs.asm create mode 100644 text/maps/saffron_gates.asm create mode 100644 text/maps/underground_path_route_5_entrance.asm create mode 100644 text/maps/underground_path_route_6_entrance.asm create mode 100644 text/maps/underground_path_route_7_entrance.asm create mode 100644 text/maps/underground_path_route_7_entrance_unused.asm create mode 100644 text/maps/underground_path_route_8_entrance.asm create mode 100644 text/maps/victory_road_2f.asm diff --git a/main.asm b/main.asm index 8f4a2489..99d9c544 100644 --- a/main.asm +++ b/main.asm @@ -117551,850 +117551,37 @@ INCLUDE "text/maps/route_2_house.asm" INCLUDE "text/maps/route_2_gate.asm" INCLUDE "text/maps/viridian_forest_entrance.asm" INCLUDE "text/maps/mt_moon_pokecenter.asm" +INCLUDE "text/maps/saffron_gates.asm" +INCLUDE "text/maps/daycare_1.asm" -_UnnamedText_1dfe7: ; 8aa5c (22:6a5c) - text "I'm on guard duty." - line "Gee, I'm thirsty," - cont "though!" - - para "Oh wait there," - line "the road's closed." - done - -_UnnamedText_8aaa9: ; 8aaa9 (22:6aa9) - text "Whoa, boy!" - line "I'm parched!" - cont "..." - cont "Huh? I can have" - cont "this drink?" - cont "Gee, thanks!@@" - -_UnnamedText_1dff1: ; 8aaef (22:6aef) - db $0 - para "..." - line "Glug glug..." - cont "..." - cont "Gulp..." - cont "If you want to go" - cont "to SAFFRON CITY..." - cont "..." - cont "You can go on" - cont "through. I'll" - cont "share this with" - cont "the other guards!" - done - -_UnnamedText_1dff6: ; 8ab74 (22:6b74) - text "Hi, thanks for" - line "the cool drinks!" - done - -_UnnamedText_5640f: ; 8ab95 (22:6b95) - text "I run a DAYCARE." - line "Would you like me" - cont "to raise one of" - cont "your #MON?" - done - -_UnnamedText_56414: ; 8abd4 (22:6bd4) - text "Which #MON" - line "should I raise?" - prompt - -_UnnamedText_56419: ; 8abf0 (22:6bf0) - text "Fine, I'll look" - line "after @" - TX_RAM $cd6d - db $0 - cont "for a while." - prompt - -_UnnamedText_5641e: ; 8ac19 (22:6c19) - text "Come see me in" - line "a while." - done - -_UnnamedText_56423: ; 8ac32 (22:6c32) - text "Your @" - TX_RAM $cd6d - db $0 - line "has grown a lot!" - - para "By level, it's" - line "grown by @" - -UnnamedText_8ac67: ; 8ac67 (22:6c67) - TX_NUM $cd3e,$1,$3 - text "!" - - para "Aren't I great?" - prompt - -_UnnamedText_56428: ; 8ac7d (22:6c7d) - text "You owe me ¥@" - db $2, $3f, $cd, $c2 - db $0 - line "for the return" - cont "of this #MON." - done - -_UnnamedText_5642d: ; 8acae (22:6cae) - text $52, " got" - line "@" - TX_RAM W_DAYCAREMONNAME - text " back!" - done - -_UnnamedText_56432: ; 8acc1 (22:6cc1) - text "Back already?" - line "Your @" - TX_RAM $cd6d - db $0 - cont "needs some more" - cont "time with me." - prompt SECTION "bank23",ROMX,BANK[$23] -_UnnamedText_56437: ; 8c000 (23:4000) - text "All right then," - line "@@" - -_UnnamedText_5643b: ; 8c013 (23:4013) - text "come again." - done - -_UnnamedText_56440: ; 8c020 (23:4020) - text "You have no room" - line "for this #MON!" - done - -_UnnamedText_56445: ; 8c041 (23:4041) - text "You only have one" - line "#MON with you." - done - -_UnnamedText_5644a: ; 8c063 (23:4063) - text "I can't accept a" - line "#MON that" - cont "knows an HM move." - done - -_UnnamedText_5644f: ; 8c090 (23:4090) - text "Thank you! Here's" - line "your #MON!" - prompt - -_UnnamedText_56454: ; 8c0ad (23:40ad) - text "Hey, you don't" - line "have enough ¥!" - done - -_UndergrdTunnelEntRoute6Text1: ; 8c0cb (23:40cb) - text "People often lose" - line "things in that" - cont "UNDERGROUND PATH." - done - -_UndergroundPathEntRoute7Text1: ; 8c0ff (23:40ff) - text "I heard a sleepy" - line "#MON appeared" - cont "near CELADON CITY." - done - -_UnnamedText_5d773: ; 8c132 (23:4132) - text "I want to shop at" - line "the dept. store" - cont "in CELADON but..." - - para "There are so many" - line "rough looking" - cont "people there." - done - -_UnnamedText_5d778: ; 8c195 (23:4195) - text "TEAM ROCKET had a" - line "secret hideout in" - cont "CELADON CITY?" - done - -_UnnamedText_5d77d: ; 8c1c8 (23:41c8) - text "You're here to" - line "shop in CELADON?" - - para "Just step outside" - line "and head west!" - done - -_UnnamedText_5d782: ; 8c209 (23:4209) - text "The UNDERGROUND" - line "PATH goes beneath" - cont "SAFFRON and leads" - cont "to LAVENDER." - - para "If you're heading" - line "to CERULEAN, go" - cont "to the building" - cont "across the road." - done - -_UndergroundPathEntRoute8Text1: ; 8c28d (23:428d) - text "The dept. store" - line "in CELADON has a" - cont "great selection!" - done - -_RockTunnelPokecenterText1: ; 8c2c0 (23:42c0) - text "The element types" - line "of #MON make" - cont "them stronger" - cont "than some types" - cont "and weaker than" - cont "others!" - done - -_RockTunnelPokecenterText3: ; 8c316 (23:4316) - text "I sold a useless" - line "NUGGET for ¥5000!" - done - -_RockTunnel1BattleText1: ; 8c33a (23:433a) - text "This tunnel goes" - line "a long way, kid!" - done - -_RockTunnel1EndBattleText1: ; 8c35d (23:435d) - text "Doh!" - line "You win!" - prompt - -_RockTunnel1AfterBattleText1: ; 8c36c (23:436c) - text "Watch for ONIX!" - line "It can put the" - cont "squeeze on you!" - done - -_RockTunnel1BattleText2: ; 8c39c (23:439c) - text "Hmm. Maybe I'm" - line "lost in here..." - done - -_RockTunnel1EndBattleText2: ; 8c3bb (23:43bb) - text "Ease up!" - line "What am I doing?" - cont "Which way is out?" - prompt - -_RockTunnel1AfterBattleText2: ; 8c3e8 (23:43e8) - text "That sleeping" - line "#MON on ROUTE" - cont "12 forced me to" - cont "take this detour." - done - -_RockTunnel1BattleText3: ; 8c427 (23:4427) - text "Outsiders like" - line "you need to show" - cont "me some respect!" - done - -_RockTunnel1EndBattleText3: ; 8c459 (23:4459) - text "I give!" - prompt - -_RockTunnel1AfterBattleText3: ; 8c462 (23:4462) - text "You're talented" - line "enough to hike!" - done - -_RockTunnel1BattleText4: ; 8c482 (23:4482) - text "#MON fight!" - line "Ready, go!" - done - -_RockTunnel1EndBattleText4: ; 8c49a (23:449a) - text "Game" - line "over!" - prompt - -_RockTunnel1AfterBattleText4: ; 8c4a6 (23:44a6) - text "Oh well, I'll get" - line "a ZUBAT as I go!" - done - -_RockTunnel1BattleText5: ; 8c4c9 (23:44c9) - text "Eek! Don't try" - line "anything funny in" - cont "the dark!" - done - -_RockTunnel1EndBattleText5: ; 8c4f4 (23:44f4) - text "It" - line "was too dark!" - prompt - -_RockTunnel1AfterBattleText5: ; 8c506 (23:4506) - text "I saw a MACHOP" - line "in this tunnel!" - done - -_RockTunnel1BattleText6: ; 8c526 (23:4526) - text "I came this far" - line "for #MON!" - done - -_RockTunnel1EndBattleText6: ; 8c541 (23:4541) - text "I'm" - line "out of #MON!" - prompt - -_RockTunnel1AfterBattleText6: ; 8c552 (23:4552) - text "You looked cute" - line "and harmless!" - done - -_RockTunnel1BattleText7: ; 8c571 (23:4571) - text "You have #MON!" - line "Let's start!" - done - -_RockTunnel1EndBattleText7: ; 8c58d (23:458d) - text "You" - line "play hard!" - prompt - -_RockTunnel1AfterBattleText7: ; 8c59d (23:459d) - text "Whew! I'm all" - line "sweaty now!" - done - -_RockTunnel1Text8: ; 8c5b7 (23:45b7) - text "ROCK TUNNEL" - line "CERULEAN CITY -" - cont "LAVENDER TOWN" - done - -_VoltorbBattleText: ; 8c5e2 (23:45e2) - text "Bzzzt!" - done - -_ZapdosBattleText: ; 8c5ea (23:45ea) - text "Gyaoo!@@" - -_Route11GateText1: ; 8c5f3 (23:45f3) - text "When you catch" - line "lots of #MON," - cont "isn't it hard to" - cont "think up names?" - - para "In LAVENDER TOWN," - line "there's a man who" - cont "rates #MON" - cont "nicknames." - - para "He'll help you" - line "rename them too!" - done - -_UnnamedText_494a3: ; 8c689 (23:4689) - text "There are items on" - line "the ground that" - cont "can't be seen." - - para "ITEMFINDER will" - line "detect an item" - cont "close to you." - - para "It can't pinpoint" - line "it, so you have" - cont "to look yourself!" - done - -_UnnamedText_494c4: ; 8c71b (23:471b) - text "Looked into the" - line "binoculars." - - para "A big #MON is" - line "asleep on a road!" - done - -_UnnamedText_494c9: ; 8c758 (23:4758) - text "Looked into the" - line "binoculars." - - para "It's a beautiful" - line "view!" - done - -_UnnamedText_494d5: ; 8c78b (23:478b) - text "Looked into the" - line "binoculars." - - para "The only way to" - line "get from CERULEAN" - cont "CITY to LAVENDER" - cont "is by way of the" - cont "ROCK TUNNEL." - done - -_DiglettsCaveEntRoute11Text1: ; 8c7f9 (23:47f9) - text "What a surprise!" - line "DIGLETTs dug this" - cont "long tunnel!" - - para "It goes right to" - line "VIRIDIAN CITY!" - done - -_Route12GateText1: ; 8c84a (23:484a) - text "There's a lookout" - line "spot upstairs." - done - -_TM39PreReceiveText: ; 8c86b (23:486b) - text "My #MON's" - line "ashes are stored" - cont "in #MON TOWER." - - para "You can have this" - line "TM. I don't need" - cont "it any more..." - prompt - -_ReceivedTM39Text: ; 8c8c6 (23:48c6) - text $52, " received" - line "TM39!@@" - -_TM39ExplanationText: ; 8c8d9 (23:48d9) - text "TM39 is a move" - line "called SWIFT." - - para "It's very accurate," - line "so use it during" - cont "battles you can't" - cont "afford to lose." - done - -_TM39NoRoomText: ; 8c93c (23:493c) - text "You don't have" - line "room for this." - done - -_UnnamedText_495b8: ; 8c95a (23:495a) - text "Looked into the" - line "binoculars." - - para "A man fishing!" - done - -_UnnamedText_495c4: ; 8c986 (23:4986) - text "Looked into the" - line "binoculars." - - para "It's #MON TOWER!" - done - -_UnnamedText_564c0: ; 8c9b3 (23:49b3) - text "I'm the FISHING" - line "GURU's brother!" - - para "I simply Looove" - line "fishing!" - - para "Do you like to" - line "fish?" - done - -_UnnamedText_564c5: ; 8ca00 (23:4a00) - text "Grand! I like" - line "your style!" - - para "Take this and" - line "fish, young one!" - - para $52, " received" - line "a @" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_564ca: ; 8ca4f (23:4a4f) - db $0 - para "Fishing is a way" - line "of life!" - - para "From the seas to" - line "rivers, go out" - cont "and land the big" - cont "one!" - done - -_UnnamedText_564cf: ; 8caa1 (23:4aa1) - text "Oh... That's so" - line "disappointing..." - done - -_UnnamedText_564d4: ; 8cac2 (23:4ac2) - text "Hello there," - line $52, "!" - - para "Use the SUPER ROD" - line "in any water!" - cont "You can catch" - cont "different kinds" - cont "of #MON." - - para "Try fishing" - line "wherever you can!" - done - -_UnnamedText_564d9: ; 8cb38 (23:4b38) - text "Oh no!" - - para "I had a gift for" - line "you, but you have" - cont "no room for it!" - done - -_Route15GateText1: ; 8cb73 (23:4b73) - text "Are you working" - line "on a #DEX?" - - para "PROF.OAK's AIDE" - line "came by here." - done - -_UnnamedText_4968c: ; 8cbac (23:4bac) - text "EXP.ALL gives" - line "EXP points to all" - cont "the #MON with" - cont "you, even if they" - cont "don't fight." - - para "It does, however," - line "reduce the amount" - cont "of EXP for each" - cont "#MON." - - para "If you don't need" - line "it, you should " - cont "store it via PC." - done - -_UnnamedText_49698: ; 8cc65 (23:4c65) - text "Looked into the" - line "binoculars." - - para "It looks like a" - line "small island!" - done - -_UnnamedText_49777: ; 8cca0 (23:4ca0) - text "No pedestrians" - line "are allowed on" - cont "CYCLING ROAD!" - done - -_UnnamedText_4977c: ; 8cccd (23:4ccd) - text "CYCLING ROAD is a" - line "downhill course" - cont "by the sea. It's" - cont "a great ride." - done - -_UnnamedText_49781: ; 8cd0e (23:4d0e) - text "Excuse me! Wait" - line "up please!" - done - -_Route16GateMapText2: ; 8cd2a (23:4d2a) - text "How'd you get in?" - line "Good effort!" - done - -_UnnamedText_49820: ; 8cd49 (23:4d49) - text "I'm going for a" - line "ride with my girl" - cont "friend!" - done - -_UnnamedText_4982f: ; 8cd73 (23:4d73) - text "We're going" - line "riding together!" - done - -_UnnamedText_4983b: ; 8cd90 (23:4d90) - text "Looked into the" - line "binoculars." - - para "It's CELADON DEPT." - line "STORE!" - done - -_UnnamedText_49847: ; 8cdc6 (23:4dc6) - text "Looked into the" - line "binoculars." - - para "There's a long" - line "path over water!" - done - -_Route16HouseText3: ; 8ce02 (23:4e02) - text "Oh, you found my" - line "secret retreat!" - - para "Please don't tell" - line "anyone I'm here." - cont "I'll make it up" - cont "to you with this!" - prompt - -_ReceivedHM02Text: ; 8ce66 (23:4e66) - text $52, " received" - line "HM02!@@" - -_HM02ExplanationText: ; 8ce79 (23:4e79) - text "HM02 is FLY." - line "It will take you" - cont "back to any town." - - para "Put it to good" - line "use!" - done - -_HM02NoRoomText: ; 8cebe (23:4ebe) - text "You don't have any" - line "room for this." - done - -_UnnamedText_1e652: ; 8cee0 (23:4ee0) - text "FEAROW: Kyueen!" - done - -_UnnamedText_49928: ; 8cef1 (23:4ef1) - text "You need a BICYCLE" - line "for CYCLING ROAD!" - done - -_UnnamedText_4992d: ; 8cf17 (23:4f17) - text "CYCLING ROAD is" - line "all uphill from" - cont "here." - done - -_UnnamedText_49932: ; 8cf3e (23:4f3e) - text "Excuse me!" - done - -_UnnamedText_49993: ; 8cf4a (23:4f4a) - text "Looked into the" - line "binoculars." - - para "PALLET TOWN is in" - line "the west!" - done - -_UnnamedText_4999f: ; 8cf83 (23:4f83) - text "Looked into the" - line "binoculars." - - para "There are people" - line "swimming!" - done - -_UnnamedText_1e704: ; 8cfbb (23:4fbb) - text "Only truly skilled" - line "trainers are" - cont "allowed through." - - para "You don't have the" - line "BOULDERBADGE yet!@@" - -_UnnamedText_1e715: ; 8d012 (23:5012) - db $0 - para "The rules are" - line "rules. I can't" - cont "let you pass." - done - -_UnnamedText_1e71a: ; 8d03e (23:503e) - text "Oh! That is the" - line "BOULDERBADGE!" - cont "Go right ahead!@@" - -_VictoryRoad2BattleText6: ; 8d06e (23:506e) - text "Gyaoo!@@" - -_VictoryRoad2BattleText1: ; 8d077 (23:5077) - text "VICTORY ROAD is" - line "the final test" - cont "for trainers!" - done - -_VictoryRoad2EndBattleText1: ; 8d0a5 (23:50a5) - text "Aiyah!" - prompt - -_VictoryRoad2AfterBattleText1: ; 8d0ad (23:50ad) - text "If you get stuck," - line "try moving some" - cont "boulders around!" - done - -_VictoryRoad2BattleText2: ; 8d0e1 (23:50e1) - text "Ah, so you wish" - line "to challenge the" - cont "ELITE FOUR?" - done - -_VictoryRoad2EndBattleText2: ; 8d10f (23:510f) - text "You" - line "got me!" - prompt - -_VictoryRoad2AfterBattleText2: ; 8d11c (23:511c) - text $53, " also came" - line "through here!" - done - -_VictoryRoad2BattleText3: ; 8d137 (23:5137) - text "Come on!" - line "I'll whip you!" - done - -_VictoryRoad2EndBattleText3: ; 8d14f (23:514f) - text "I got" - line "whipped!" - prompt - -_VictoryRoad2AfterBattleText3: ; 8d15f (23:515f) - text "You earned the" - line "right to be on" - cont "VICTORY ROAD!" - done - -_VictoryRoad2BattleText4: ; 8d18c (23:518c) - text "If you can get" - line "through here, you" - cont "can go meet the" - cont "ELITE FOUR!" - done - -_VictoryRoad2EndBattleText4: ; 8d1ca (23:51ca) - text "No!" - line "Unbelievable!" - prompt - -_VictoryRoad2AfterBattleText4: ; 8d1dd (23:51dd) - text "I can beat you" - line "when it comes to" - cont "knowledge about" - cont "#MON!" - done - -_VictoryRoad2BattleText5: ; 8d214 (23:5214) - text "Is VICTORY ROAD" - line "too tough?" - done - -_VictoryRoad2EndBattleText5: ; 8d230 (23:5230) - text "Well" - line "done!" - prompt - -_VictoryRoad2AfterBattleText5: ; 8d23c (23:523c) - text "Many trainers give" - line "up the challenge" - cont "here." - done - -_UnnamedText_1e865: ; 8d267 (23:5267) - text "Hiya! I'm a" - line "#MON..." - cont "...No I'm not!" - - para "Call me BILL!" - line "I'm a true blue" - cont "#MANIAC! Hey!" - cont "What's with that" - cont "skeptical look?" - - para "I'm not joshing" - line "you, I screwed up" - cont "an experiment and" - cont "got combined with" - cont "a #MON!" - - para "So, how about it?" - line "Help me out here!" - done - -_UnnamedText_1e86a: ; 8d345 (23:5345) - text "When I'm in the" - line "TELEPORTER, go to" - cont "my PC and run the" - cont "Cell Separation" - cont "System!" - done - -_UnnamedText_1e86f: ; 8d391 (23:5391) - text "No!? Come on, you" - line "gotta help a guy" - cont "in deep trouble!" - - para "What do you say," - line "chief? Please?" - cont "OK? All right!" - prompt - -_BillThankYouText: ; 8d3f5 (23:53f5) - text "BILL: Yeehah!" - line "Thanks, bud! I" - cont "owe you one!" - - para "So, did you come" - line "to see my #MON" - cont "collection?" - cont "You didn't?" - cont "That's a bummer." - - para "I've got to thank" - line "you... Oh here," - cont "maybe this'll do." - prompt - -_SSTicketReceivedText: ; 8d499 (23:5499) - text $52, " received" - line "an @" - TX_RAM $cf4b - text "!@@" - -_SSTicketNoRoomText: ; 8d4b0 (23:54b0) - text "You've got too" - line "much stuff, bud!" - done - -_UnnamedText_1e8cb: ; 8d4d0 (23:54d0) - text "That cruise ship," - line "S.S.ANNE, is in" - cont "VERMILION CITY." - cont "Its passengers" - cont "are all trainers!" - - para "They invited me" - line "to their party," - cont "but I can't stand" - cont "fancy do's. Why" - cont "don't you go" - cont "instead of me?" - done - -_UnnamedText_1e8da: ; 8d57f (23:557f) - text "BILL: Look, bud," - line "just check out" - cont "some of my rare" - cont "#MON on my PC!" - done - +INCLUDE "text/maps/daycare_2.asm" +INCLUDE "text/maps/underground_path_route_5_entrance.asm" +INCLUDE "text/maps/underground_path_route_6_entrance.asm" +INCLUDE "text/maps/underground_path_route_7_entrance.asm" +INCLUDE "text/maps/underground_path_route_7_entrance_unused.asm" +INCLUDE "text/maps/underground_path_route_8_entrance.asm" +INCLUDE "text/maps/rock_tunnel_pokecenter.asm" +INCLUDE "text/maps/rock_tunnel_b1f.asm" +INCLUDE "text/maps/power_plant.asm" +INCLUDE "text/maps/route_11_gate.asm" +INCLUDE "text/maps/route_11_gate_upstairs.asm" +INCLUDE "text/maps/digletts_cave_route_11_entrance.asm" +INCLUDE "text/maps/route_12_gate.asm" +INCLUDE "text/maps/route_12_gate_upstairs.asm" +INCLUDE "text/maps/route_12_house.asm" +INCLUDE "text/maps/route_15_gate.asm" +INCLUDE "text/maps/route_15_gate_upstairs.asm" +INCLUDE "text/maps/route_16_gate.asm" +INCLUDE "text/maps/route_16_gate_upstairs.asm" +INCLUDE "text/maps/route_16_house.asm" +INCLUDE "text/maps/route_18_gate.asm" +INCLUDE "text/maps/route_18_gate_upstairs.asm" +INCLUDE "text/maps/pokemon_league_gate.asm" +INCLUDE "text/maps/victory_road_2f.asm" +INCLUDE "text/maps/bills_house.asm" INCLUDE "text/maps/route_1.asm" INCLUDE "text/maps/route_2.asm" INCLUDE "text/maps/route_3.asm" diff --git a/text/maps/bills_house.asm b/text/maps/bills_house.asm new file mode 100644 index 00000000..730ae0e2 --- /dev/null +++ b/text/maps/bills_house.asm @@ -0,0 +1,88 @@ +_UnnamedText_1e865: ; 8d267 (23:5267) + text "Hiya! I'm a" + line "#MON..." + cont "...No I'm not!" + + para "Call me BILL!" + line "I'm a true blue" + cont "#MANIAC! Hey!" + cont "What's with that" + cont "skeptical look?" + + para "I'm not joshing" + line "you, I screwed up" + cont "an experiment and" + cont "got combined with" + cont "a #MON!" + + para "So, how about it?" + line "Help me out here!" + done + +_UnnamedText_1e86a: ; 8d345 (23:5345) + text "When I'm in the" + line "TELEPORTER, go to" + cont "my PC and run the" + cont "Cell Separation" + cont "System!" + done + +_UnnamedText_1e86f: ; 8d391 (23:5391) + text "No!? Come on, you" + line "gotta help a guy" + cont "in deep trouble!" + + para "What do you say," + line "chief? Please?" + cont "OK? All right!" + prompt + +_BillThankYouText: ; 8d3f5 (23:53f5) + text "BILL: Yeehah!" + line "Thanks, bud! I" + cont "owe you one!" + + para "So, did you come" + line "to see my #MON" + cont "collection?" + cont "You didn't?" + cont "That's a bummer." + + para "I've got to thank" + line "you... Oh here," + cont "maybe this'll do." + prompt + +_SSTicketReceivedText: ; 8d499 (23:5499) + text $52, " received" + line "an @" + TX_RAM $cf4b + text "!@@" + +_SSTicketNoRoomText: ; 8d4b0 (23:54b0) + text "You've got too" + line "much stuff, bud!" + done + +_UnnamedText_1e8cb: ; 8d4d0 (23:54d0) + text "That cruise ship," + line "S.S.ANNE, is in" + cont "VERMILION CITY." + cont "Its passengers" + cont "are all trainers!" + + para "They invited me" + line "to their party," + cont "but I can't stand" + cont "fancy do's. Why" + cont "don't you go" + cont "instead of me?" + done + +_UnnamedText_1e8da: ; 8d57f (23:557f) + text "BILL: Look, bud," + line "just check out" + cont "some of my rare" + cont "#MON on my PC!" + done + diff --git a/text/maps/daycare_1.asm b/text/maps/daycare_1.asm new file mode 100644 index 00000000..6f5896f9 --- /dev/null +++ b/text/maps/daycare_1.asm @@ -0,0 +1,65 @@ +_UnnamedText_5640f: ; 8ab95 (22:6b95) + text "I run a DAYCARE." + line "Would you like me" + cont "to raise one of" + cont "your #MON?" + done + +_UnnamedText_56414: ; 8abd4 (22:6bd4) + text "Which #MON" + line "should I raise?" + prompt + +_UnnamedText_56419: ; 8abf0 (22:6bf0) + text "Fine, I'll look" + line "after @" + TX_RAM $cd6d + db $0 + cont "for a while." + prompt + +_UnnamedText_5641e: ; 8ac19 (22:6c19) + text "Come see me in" + line "a while." + done + +_UnnamedText_56423: ; 8ac32 (22:6c32) + text "Your @" + TX_RAM $cd6d + db $0 + line "has grown a lot!" + + para "By level, it's" + line "grown by @" + +UnnamedText_8ac67: ; 8ac67 (22:6c67) + TX_NUM $cd3e,$1,$3 + text "!" + + para "Aren't I great?" + prompt + +_UnnamedText_56428: ; 8ac7d (22:6c7d) + text "You owe me ¥@" + db $2, $3f, $cd, $c2 + db $0 + line "for the return" + cont "of this #MON." + done + +_UnnamedText_5642d: ; 8acae (22:6cae) + text $52, " got" + line "@" + TX_RAM W_DAYCAREMONNAME + text " back!" + done + +_UnnamedText_56432: ; 8acc1 (22:6cc1) + text "Back already?" + line "Your @" + TX_RAM $cd6d + db $0 + cont "needs some more" + cont "time with me." + prompt + diff --git a/text/maps/daycare_2.asm b/text/maps/daycare_2.asm new file mode 100644 index 00000000..55c8da89 --- /dev/null +++ b/text/maps/daycare_2.asm @@ -0,0 +1,34 @@ +_UnnamedText_56437: ; 8c000 (23:4000) + text "All right then," + line "@@" + +_UnnamedText_5643b: ; 8c013 (23:4013) + text "come again." + done + +_UnnamedText_56440: ; 8c020 (23:4020) + text "You have no room" + line "for this #MON!" + done + +_UnnamedText_56445: ; 8c041 (23:4041) + text "You only have one" + line "#MON with you." + done + +_UnnamedText_5644a: ; 8c063 (23:4063) + text "I can't accept a" + line "#MON that" + cont "knows an HM move." + done + +_UnnamedText_5644f: ; 8c090 (23:4090) + text "Thank you! Here's" + line "your #MON!" + prompt + +_UnnamedText_56454: ; 8c0ad (23:40ad) + text "Hey, you don't" + line "have enough ¥!" + done + diff --git a/text/maps/digletts_cave_route_11_entrance.asm b/text/maps/digletts_cave_route_11_entrance.asm new file mode 100644 index 00000000..c4bbd02c --- /dev/null +++ b/text/maps/digletts_cave_route_11_entrance.asm @@ -0,0 +1,9 @@ +_DiglettsCaveEntRoute11Text1: ; 8c7f9 (23:47f9) + text "What a surprise!" + line "DIGLETTs dug this" + cont "long tunnel!" + + para "It goes right to" + line "VIRIDIAN CITY!" + done + diff --git a/text/maps/pokemon_league_gate.asm b/text/maps/pokemon_league_gate.asm new file mode 100644 index 00000000..b9427f00 --- /dev/null +++ b/text/maps/pokemon_league_gate.asm @@ -0,0 +1,20 @@ +_UnnamedText_1e704: ; 8cfbb (23:4fbb) + text "Only truly skilled" + line "trainers are" + cont "allowed through." + + para "You don't have the" + line "BOULDERBADGE yet!@@" + +_UnnamedText_1e715: ; 8d012 (23:5012) + db $0 + para "The rules are" + line "rules. I can't" + cont "let you pass." + done + +_UnnamedText_1e71a: ; 8d03e (23:503e) + text "Oh! That is the" + line "BOULDERBADGE!" + cont "Go right ahead!@@" + diff --git a/text/maps/power_plant.asm b/text/maps/power_plant.asm new file mode 100644 index 00000000..f62916df --- /dev/null +++ b/text/maps/power_plant.asm @@ -0,0 +1,7 @@ +_VoltorbBattleText: ; 8c5e2 (23:45e2) + text "Bzzzt!" + done + +_ZapdosBattleText: ; 8c5ea (23:45ea) + text "Gyaoo!@@" + diff --git a/text/maps/rock_tunnel_b1f.asm b/text/maps/rock_tunnel_b1f.asm new file mode 100644 index 00000000..05276dbc --- /dev/null +++ b/text/maps/rock_tunnel_b1f.asm @@ -0,0 +1,116 @@ +_RockTunnel1BattleText1: ; 8c33a (23:433a) + text "This tunnel goes" + line "a long way, kid!" + done + +_RockTunnel1EndBattleText1: ; 8c35d (23:435d) + text "Doh!" + line "You win!" + prompt + +_RockTunnel1AfterBattleText1: ; 8c36c (23:436c) + text "Watch for ONIX!" + line "It can put the" + cont "squeeze on you!" + done + +_RockTunnel1BattleText2: ; 8c39c (23:439c) + text "Hmm. Maybe I'm" + line "lost in here..." + done + +_RockTunnel1EndBattleText2: ; 8c3bb (23:43bb) + text "Ease up!" + line "What am I doing?" + cont "Which way is out?" + prompt + +_RockTunnel1AfterBattleText2: ; 8c3e8 (23:43e8) + text "That sleeping" + line "#MON on ROUTE" + cont "12 forced me to" + cont "take this detour." + done + +_RockTunnel1BattleText3: ; 8c427 (23:4427) + text "Outsiders like" + line "you need to show" + cont "me some respect!" + done + +_RockTunnel1EndBattleText3: ; 8c459 (23:4459) + text "I give!" + prompt + +_RockTunnel1AfterBattleText3: ; 8c462 (23:4462) + text "You're talented" + line "enough to hike!" + done + +_RockTunnel1BattleText4: ; 8c482 (23:4482) + text "#MON fight!" + line "Ready, go!" + done + +_RockTunnel1EndBattleText4: ; 8c49a (23:449a) + text "Game" + line "over!" + prompt + +_RockTunnel1AfterBattleText4: ; 8c4a6 (23:44a6) + text "Oh well, I'll get" + line "a ZUBAT as I go!" + done + +_RockTunnel1BattleText5: ; 8c4c9 (23:44c9) + text "Eek! Don't try" + line "anything funny in" + cont "the dark!" + done + +_RockTunnel1EndBattleText5: ; 8c4f4 (23:44f4) + text "It" + line "was too dark!" + prompt + +_RockTunnel1AfterBattleText5: ; 8c506 (23:4506) + text "I saw a MACHOP" + line "in this tunnel!" + done + +_RockTunnel1BattleText6: ; 8c526 (23:4526) + text "I came this far" + line "for #MON!" + done + +_RockTunnel1EndBattleText6: ; 8c541 (23:4541) + text "I'm" + line "out of #MON!" + prompt + +_RockTunnel1AfterBattleText6: ; 8c552 (23:4552) + text "You looked cute" + line "and harmless!" + done + +_RockTunnel1BattleText7: ; 8c571 (23:4571) + text "You have #MON!" + line "Let's start!" + done + +_RockTunnel1EndBattleText7: ; 8c58d (23:458d) + text "You" + line "play hard!" + prompt + +_RockTunnel1AfterBattleText7: ; 8c59d (23:459d) + text "Whew! I'm all" + line "sweaty now!" + done + +_RockTunnel1Text8: ; 8c5b7 (23:45b7) + text "ROCK TUNNEL" + line "CERULEAN CITY -" + cont "LAVENDER TOWN" + done + diff --git a/text/maps/rock_tunnel_pokecenter.asm b/text/maps/rock_tunnel_pokecenter.asm new file mode 100644 index 00000000..7bd87c05 --- /dev/null +++ b/text/maps/rock_tunnel_pokecenter.asm @@ -0,0 +1,14 @@ +_RockTunnelPokecenterText1: ; 8c2c0 (23:42c0) + text "The element types" + line "of #MON make" + cont "them stronger" + cont "than some types" + cont "and weaker than" + cont "others!" + done + +_RockTunnelPokecenterText3: ; 8c316 (23:4316) + text "I sold a useless" + line "NUGGET for ¥5000!" + done + diff --git a/text/maps/route_11_gate.asm b/text/maps/route_11_gate.asm new file mode 100644 index 00000000..7487dd8f --- /dev/null +++ b/text/maps/route_11_gate.asm @@ -0,0 +1,15 @@ +_Route11GateText1: ; 8c5f3 (23:45f3) + text "When you catch" + line "lots of #MON," + cont "isn't it hard to" + cont "think up names?" + + para "In LAVENDER TOWN," + line "there's a man who" + cont "rates #MON" + cont "nicknames." + + para "He'll help you" + line "rename them too!" + done + diff --git a/text/maps/route_11_gate_upstairs.asm b/text/maps/route_11_gate_upstairs.asm new file mode 100644 index 00000000..8faa1804 --- /dev/null +++ b/text/maps/route_11_gate_upstairs.asm @@ -0,0 +1,41 @@ +_UnnamedText_494a3: ; 8c689 (23:4689) + text "There are items on" + line "the ground that" + cont "can't be seen." + + para "ITEMFINDER will" + line "detect an item" + cont "close to you." + + para "It can't pinpoint" + line "it, so you have" + cont "to look yourself!" + done + +_UnnamedText_494c4: ; 8c71b (23:471b) + text "Looked into the" + line "binoculars." + + para "A big #MON is" + line "asleep on a road!" + done + +_UnnamedText_494c9: ; 8c758 (23:4758) + text "Looked into the" + line "binoculars." + + para "It's a beautiful" + line "view!" + done + +_UnnamedText_494d5: ; 8c78b (23:478b) + text "Looked into the" + line "binoculars." + + para "The only way to" + line "get from CERULEAN" + cont "CITY to LAVENDER" + cont "is by way of the" + cont "ROCK TUNNEL." + done + diff --git a/text/maps/route_12_gate.asm b/text/maps/route_12_gate.asm new file mode 100644 index 00000000..5149cadf --- /dev/null +++ b/text/maps/route_12_gate.asm @@ -0,0 +1,5 @@ +_Route12GateText1: ; 8c84a (23:484a) + text "There's a lookout" + line "spot upstairs." + done + diff --git a/text/maps/route_12_gate_upstairs.asm b/text/maps/route_12_gate_upstairs.asm new file mode 100644 index 00000000..86fb5e3a --- /dev/null +++ b/text/maps/route_12_gate_upstairs.asm @@ -0,0 +1,43 @@ +_TM39PreReceiveText: ; 8c86b (23:486b) + text "My #MON's" + line "ashes are stored" + cont "in #MON TOWER." + + para "You can have this" + line "TM. I don't need" + cont "it any more..." + prompt + +_ReceivedTM39Text: ; 8c8c6 (23:48c6) + text $52, " received" + line "TM39!@@" + +_TM39ExplanationText: ; 8c8d9 (23:48d9) + text "TM39 is a move" + line "called SWIFT." + + para "It's very accurate," + line "so use it during" + cont "battles you can't" + cont "afford to lose." + done + +_TM39NoRoomText: ; 8c93c (23:493c) + text "You don't have" + line "room for this." + done + +_UnnamedText_495b8: ; 8c95a (23:495a) + text "Looked into the" + line "binoculars." + + para "A man fishing!" + done + +_UnnamedText_495c4: ; 8c986 (23:4986) + text "Looked into the" + line "binoculars." + + para "It's #MON TOWER!" + done + diff --git a/text/maps/route_12_house.asm b/text/maps/route_12_house.asm new file mode 100644 index 00000000..d06fcfde --- /dev/null +++ b/text/maps/route_12_house.asm @@ -0,0 +1,61 @@ +_UnnamedText_564c0: ; 8c9b3 (23:49b3) + text "I'm the FISHING" + line "GURU's brother!" + + para "I simply Looove" + line "fishing!" + + para "Do you like to" + line "fish?" + done + +_UnnamedText_564c5: ; 8ca00 (23:4a00) + text "Grand! I like" + line "your style!" + + para "Take this and" + line "fish, young one!" + + para $52, " received" + line "a @" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_564ca: ; 8ca4f (23:4a4f) + db $0 + para "Fishing is a way" + line "of life!" + + para "From the seas to" + line "rivers, go out" + cont "and land the big" + cont "one!" + done + +_UnnamedText_564cf: ; 8caa1 (23:4aa1) + text "Oh... That's so" + line "disappointing..." + done + +_UnnamedText_564d4: ; 8cac2 (23:4ac2) + text "Hello there," + line $52, "!" + + para "Use the SUPER ROD" + line "in any water!" + cont "You can catch" + cont "different kinds" + cont "of #MON." + + para "Try fishing" + line "wherever you can!" + done + +_UnnamedText_564d9: ; 8cb38 (23:4b38) + text "Oh no!" + + para "I had a gift for" + line "you, but you have" + cont "no room for it!" + done + diff --git a/text/maps/route_15_gate.asm b/text/maps/route_15_gate.asm new file mode 100644 index 00000000..cad4d6cd --- /dev/null +++ b/text/maps/route_15_gate.asm @@ -0,0 +1,8 @@ +_Route15GateText1: ; 8cb73 (23:4b73) + text "Are you working" + line "on a #DEX?" + + para "PROF.OAK's AIDE" + line "came by here." + done + diff --git a/text/maps/route_15_gate_upstairs.asm b/text/maps/route_15_gate_upstairs.asm new file mode 100644 index 00000000..7df495bc --- /dev/null +++ b/text/maps/route_15_gate_upstairs.asm @@ -0,0 +1,25 @@ +_UnnamedText_4968c: ; 8cbac (23:4bac) + text "EXP.ALL gives" + line "EXP points to all" + cont "the #MON with" + cont "you, even if they" + cont "don't fight." + + para "It does, however," + line "reduce the amount" + cont "of EXP for each" + cont "#MON." + + para "If you don't need" + line "it, you should " + cont "store it via PC." + done + +_UnnamedText_49698: ; 8cc65 (23:4c65) + text "Looked into the" + line "binoculars." + + para "It looks like a" + line "small island!" + done + diff --git a/text/maps/route_16_gate.asm b/text/maps/route_16_gate.asm new file mode 100644 index 00000000..22eb90c6 --- /dev/null +++ b/text/maps/route_16_gate.asm @@ -0,0 +1,23 @@ +_UnnamedText_49777: ; 8cca0 (23:4ca0) + text "No pedestrians" + line "are allowed on" + cont "CYCLING ROAD!" + done + +_UnnamedText_4977c: ; 8cccd (23:4ccd) + text "CYCLING ROAD is a" + line "downhill course" + cont "by the sea. It's" + cont "a great ride." + done + +_UnnamedText_49781: ; 8cd0e (23:4d0e) + text "Excuse me! Wait" + line "up please!" + done + +_Route16GateMapText2: ; 8cd2a (23:4d2a) + text "How'd you get in?" + line "Good effort!" + done + diff --git a/text/maps/route_16_gate_upstairs.asm b/text/maps/route_16_gate_upstairs.asm new file mode 100644 index 00000000..4953713c --- /dev/null +++ b/text/maps/route_16_gate_upstairs.asm @@ -0,0 +1,27 @@ +_UnnamedText_49820: ; 8cd49 (23:4d49) + text "I'm going for a" + line "ride with my girl" + cont "friend!" + done + +_UnnamedText_4982f: ; 8cd73 (23:4d73) + text "We're going" + line "riding together!" + done + +_UnnamedText_4983b: ; 8cd90 (23:4d90) + text "Looked into the" + line "binoculars." + + para "It's CELADON DEPT." + line "STORE!" + done + +_UnnamedText_49847: ; 8cdc6 (23:4dc6) + text "Looked into the" + line "binoculars." + + para "There's a long" + line "path over water!" + done + diff --git a/text/maps/route_16_house.asm b/text/maps/route_16_house.asm new file mode 100644 index 00000000..d59b5fc0 --- /dev/null +++ b/text/maps/route_16_house.asm @@ -0,0 +1,32 @@ +_Route16HouseText3: ; 8ce02 (23:4e02) + text "Oh, you found my" + line "secret retreat!" + + para "Please don't tell" + line "anyone I'm here." + cont "I'll make it up" + cont "to you with this!" + prompt + +_ReceivedHM02Text: ; 8ce66 (23:4e66) + text $52, " received" + line "HM02!@@" + +_HM02ExplanationText: ; 8ce79 (23:4e79) + text "HM02 is FLY." + line "It will take you" + cont "back to any town." + + para "Put it to good" + line "use!" + done + +_HM02NoRoomText: ; 8cebe (23:4ebe) + text "You don't have any" + line "room for this." + done + +_UnnamedText_1e652: ; 8cee0 (23:4ee0) + text "FEAROW: Kyueen!" + done + diff --git a/text/maps/route_18_gate.asm b/text/maps/route_18_gate.asm new file mode 100644 index 00000000..4ee9d271 --- /dev/null +++ b/text/maps/route_18_gate.asm @@ -0,0 +1,15 @@ +_UnnamedText_49928: ; 8cef1 (23:4ef1) + text "You need a BICYCLE" + line "for CYCLING ROAD!" + done + +_UnnamedText_4992d: ; 8cf17 (23:4f17) + text "CYCLING ROAD is" + line "all uphill from" + cont "here." + done + +_UnnamedText_49932: ; 8cf3e (23:4f3e) + text "Excuse me!" + done + diff --git a/text/maps/route_18_gate_upstairs.asm b/text/maps/route_18_gate_upstairs.asm new file mode 100644 index 00000000..ea620f8b --- /dev/null +++ b/text/maps/route_18_gate_upstairs.asm @@ -0,0 +1,17 @@ +_UnnamedText_49993: ; 8cf4a (23:4f4a) + text "Looked into the" + line "binoculars." + + para "PALLET TOWN is in" + line "the west!" + done + +_UnnamedText_4999f: ; 8cf83 (23:4f83) + text "Looked into the" + line "binoculars." + + para "There are people" + line "swimming!" + done + + diff --git a/text/maps/saffron_gates.asm b/text/maps/saffron_gates.asm new file mode 100644 index 00000000..7ce85614 --- /dev/null +++ b/text/maps/saffron_gates.asm @@ -0,0 +1,37 @@ +_UnnamedText_1dfe7: ; 8aa5c (22:6a5c) + text "I'm on guard duty." + line "Gee, I'm thirsty," + cont "though!" + + para "Oh wait there," + line "the road's closed." + done + +_UnnamedText_8aaa9: ; 8aaa9 (22:6aa9) + text "Whoa, boy!" + line "I'm parched!" + cont "..." + cont "Huh? I can have" + cont "this drink?" + cont "Gee, thanks!@@" + +_UnnamedText_1dff1: ; 8aaef (22:6aef) + db $0 + para "..." + line "Glug glug..." + cont "..." + cont "Gulp..." + cont "If you want to go" + cont "to SAFFRON CITY..." + cont "..." + cont "You can go on" + cont "through. I'll" + cont "share this with" + cont "the other guards!" + done + +_UnnamedText_1dff6: ; 8ab74 (22:6b74) + text "Hi, thanks for" + line "the cool drinks!" + done + diff --git a/text/maps/underground_path_route_5_entrance.asm b/text/maps/underground_path_route_5_entrance.asm new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/text/maps/underground_path_route_5_entrance.asm @@ -0,0 +1,2 @@ + + diff --git a/text/maps/underground_path_route_6_entrance.asm b/text/maps/underground_path_route_6_entrance.asm new file mode 100644 index 00000000..e3a399b4 --- /dev/null +++ b/text/maps/underground_path_route_6_entrance.asm @@ -0,0 +1,6 @@ +_UndergrdTunnelEntRoute6Text1: ; 8c0cb (23:40cb) + text "People often lose" + line "things in that" + cont "UNDERGROUND PATH." + done + diff --git a/text/maps/underground_path_route_7_entrance.asm b/text/maps/underground_path_route_7_entrance.asm new file mode 100644 index 00000000..004ba96f --- /dev/null +++ b/text/maps/underground_path_route_7_entrance.asm @@ -0,0 +1,6 @@ +_UndergroundPathEntRoute7Text1: ; 8c0ff (23:40ff) + text "I heard a sleepy" + line "#MON appeared" + cont "near CELADON CITY." + done + diff --git a/text/maps/underground_path_route_7_entrance_unused.asm b/text/maps/underground_path_route_7_entrance_unused.asm new file mode 100644 index 00000000..a63711e5 --- /dev/null +++ b/text/maps/underground_path_route_7_entrance_unused.asm @@ -0,0 +1,36 @@ +_UnnamedText_5d773: ; 8c132 (23:4132) + text "I want to shop at" + line "the dept. store" + cont "in CELADON but..." + + para "There are so many" + line "rough looking" + cont "people there." + done + +_UnnamedText_5d778: ; 8c195 (23:4195) + text "TEAM ROCKET had a" + line "secret hideout in" + cont "CELADON CITY?" + done + +_UnnamedText_5d77d: ; 8c1c8 (23:41c8) + text "You're here to" + line "shop in CELADON?" + + para "Just step outside" + line "and head west!" + done + +_UnnamedText_5d782: ; 8c209 (23:4209) + text "The UNDERGROUND" + line "PATH goes beneath" + cont "SAFFRON and leads" + cont "to LAVENDER." + + para "If you're heading" + line "to CERULEAN, go" + cont "to the building" + cont "across the road." + done + diff --git a/text/maps/underground_path_route_8_entrance.asm b/text/maps/underground_path_route_8_entrance.asm new file mode 100644 index 00000000..1bbc5fc3 --- /dev/null +++ b/text/maps/underground_path_route_8_entrance.asm @@ -0,0 +1,6 @@ +_UndergroundPathEntRoute8Text1: ; 8c28d (23:428d) + text "The dept. store" + line "in CELADON has a" + cont "great selection!" + done + diff --git a/text/maps/victory_road_2f.asm b/text/maps/victory_road_2f.asm new file mode 100644 index 00000000..630219a9 --- /dev/null +++ b/text/maps/victory_road_2f.asm @@ -0,0 +1,86 @@ +_VictoryRoad2BattleText6: ; 8d06e (23:506e) + text "Gyaoo!@@" + +_VictoryRoad2BattleText1: ; 8d077 (23:5077) + text "VICTORY ROAD is" + line "the final test" + cont "for trainers!" + done + +_VictoryRoad2EndBattleText1: ; 8d0a5 (23:50a5) + text "Aiyah!" + prompt + +_VictoryRoad2AfterBattleText1: ; 8d0ad (23:50ad) + text "If you get stuck," + line "try moving some" + cont "boulders around!" + done + +_VictoryRoad2BattleText2: ; 8d0e1 (23:50e1) + text "Ah, so you wish" + line "to challenge the" + cont "ELITE FOUR?" + done + +_VictoryRoad2EndBattleText2: ; 8d10f (23:510f) + text "You" + line "got me!" + prompt + +_VictoryRoad2AfterBattleText2: ; 8d11c (23:511c) + text $53, " also came" + line "through here!" + done + +_VictoryRoad2BattleText3: ; 8d137 (23:5137) + text "Come on!" + line "I'll whip you!" + done + +_VictoryRoad2EndBattleText3: ; 8d14f (23:514f) + text "I got" + line "whipped!" + prompt + +_VictoryRoad2AfterBattleText3: ; 8d15f (23:515f) + text "You earned the" + line "right to be on" + cont "VICTORY ROAD!" + done + +_VictoryRoad2BattleText4: ; 8d18c (23:518c) + text "If you can get" + line "through here, you" + cont "can go meet the" + cont "ELITE FOUR!" + done + +_VictoryRoad2EndBattleText4: ; 8d1ca (23:51ca) + text "No!" + line "Unbelievable!" + prompt + +_VictoryRoad2AfterBattleText4: ; 8d1dd (23:51dd) + text "I can beat you" + line "when it comes to" + cont "knowledge about" + cont "#MON!" + done + +_VictoryRoad2BattleText5: ; 8d214 (23:5214) + text "Is VICTORY ROAD" + line "too tough?" + done + +_VictoryRoad2EndBattleText5: ; 8d230 (23:5230) + text "Well" + line "done!" + prompt + +_VictoryRoad2AfterBattleText5: ; 8d23c (23:523c) + text "Many trainers give" + line "up the challenge" + cont "here." + done + From 03686856112fda5bffb5a81ce60076f037508552 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:38:10 -0500 Subject: [PATCH 30/41] Split out move names --- main.asm | 167 +------------------------------------------- text/move_names.asm | 167 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 168 insertions(+), 166 deletions(-) create mode 100644 text/move_names.asm diff --git a/main.asm b/main.asm index 99d9c544..8ec616f4 100644 --- a/main.asm +++ b/main.asm @@ -118817,170 +118817,5 @@ INCLUDE "text/pokedex.asm" SECTION "bank2C",ROMX,BANK[$2C] -MoveNames: ; b0000 (2c:4000) - db "POUND@" - db "KARATE CHOP@" - db "DOUBLESLAP@" - db "COMET PUNCH@" - db "MEGA PUNCH@" - db "PAY DAY@" - db "FIRE PUNCH@" - db "ICE PUNCH@" - db "THUNDERPUNCH@" - db "SCRATCH@" - db "VICEGRIP@" - db "GUILLOTINE@" - db "RAZOR WIND@" - db "SWORDS DANCE@" - db "CUT@" - db "GUST@" - db "WING ATTACK@" - db "WHIRLWIND@" - db "FLY@" - db "BIND@" - db "SLAM@" - db "VINE WHIP@" - db "STOMP@" - db "DOUBLE KICK@" - db "MEGA KICK@" - db "JUMP KICK@" - db "ROLLING KICK@" - db "SAND-ATTACK@" - db "HEADBUTT@" - db "HORN ATTACK@" - db "FURY ATTACK@" - db "HORN DRILL@" - db "TACKLE@" - db "BODY SLAM@" - db "WRAP@" - db "TAKE DOWN@" - db "THRASH@" - db "DOUBLE-EDGE@" - db "TAIL WHIP@" - db "POISON STING@" - db "TWINEEDLE@" - db "PIN MISSILE@" - db "LEER@" - db "BITE@" - db "GROWL@" - db "ROAR@" - db "SING@" - db "SUPERSONIC@" - db "SONICBOOM@" - db "DISABLE@" - db "ACID@" - db "EMBER@" - db "FLAMETHROWER@" - db "MIST@" - db "WATER GUN@" - db "HYDRO PUMP@" - db "SURF@" - db "ICE BEAM@" - db "BLIZZARD@" - db "PSYBEAM@" - db "BUBBLEBEAM@" - db "AURORA BEAM@" - db "HYPER BEAM@" - db "PECK@" - db "DRILL PECK@" - db "SUBMISSION@" - db "LOW KICK@" - db "COUNTER@" - db "SEISMIC TOSS@" - db "STRENGTH@" - db "ABSORB@" - db "MEGA DRAIN@" - db "LEECH SEED@" - db "GROWTH@" - db "RAZOR LEAF@" - db "SOLARBEAM@" - db "POISONPOWDER@" - db "STUN SPORE@" - db "SLEEP POWDER@" - db "PETAL DANCE@" - db "STRING SHOT@" - db "DRAGON RAGE@" - db "FIRE SPIN@" - db "THUNDERSHOCK@" - db "THUNDERBOLT@" - db "THUNDER WAVE@" - db "THUNDER@" - db "ROCK THROW@" - db "EARTHQUAKE@" - db "FISSURE@" - db "DIG@" - db "TOXIC@" - db "CONFUSION@" - db "PSYCHIC@" - db "HYPNOSIS@" - db "MEDITATE@" - db "AGILITY@" - db "QUICK ATTACK@" - db "RAGE@" - db "TELEPORT@" - db "NIGHT SHADE@" - db "MIMIC@" - db "SCREECH@" - db "DOUBLE TEAM@" - db "RECOVER@" - db "HARDEN@" - db "MINIMIZE@" - db "SMOKESCREEN@" - db "CONFUSE RAY@" - db "WITHDRAW@" - db "DEFENSE CURL@" - db "BARRIER@" - db "LIGHT SCREEN@" - db "HAZE@" - db "REFLECT@" - db "FOCUS ENERGY@" - db "BIDE@" - db "METRONOME@" - db "MIRROR MOVE@" - db "SELFDESTRUCT@" - db "EGG BOMB@" - db "LICK@" - db "SMOG@" - db "SLUDGE@" - db "BONE CLUB@" - db "FIRE BLAST@" - db "WATERFALL@" - db "CLAMP@" - db "SWIFT@" - db "SKULL BASH@" - db "SPIKE CANNON@" - db "CONSTRICT@" - db "AMNESIA@" - db "KINESIS@" - db "SOFTBOILED@" - db "HI JUMP KICK@" - db "GLARE@" - db "DREAM EATER@" - db "POISON GAS@" - db "BARRAGE@" - db "LEECH LIFE@" - db "LOVELY KISS@" - db "SKY ATTACK@" - db "TRANSFORM@" - db "BUBBLE@" - db "DIZZY PUNCH@" - db "SPORE@" - db "FLASH@" - db "PSYWAVE@" - db "SPLASH@" - db "ACID ARMOR@" - db "CRABHAMMER@" - db "EXPLOSION@" - db "FURY SWIPES@" - db "BONEMERANG@" - db "REST@" - db "ROCK SLIDE@" - db "HYPER FANG@" - db "SHARPEN@" - db "CONVERSION@" - db "TRI ATTACK@" - db "SUPER FANG@" - db "SLASH@" - db "SUBSTITUTE@" - db "STRUGGLE@" +INCLUDE "text/move_names.asm" diff --git a/text/move_names.asm b/text/move_names.asm new file mode 100644 index 00000000..8e8db937 --- /dev/null +++ b/text/move_names.asm @@ -0,0 +1,167 @@ +MoveNames: ; b0000 (2c:4000) + db "POUND@" + db "KARATE CHOP@" + db "DOUBLESLAP@" + db "COMET PUNCH@" + db "MEGA PUNCH@" + db "PAY DAY@" + db "FIRE PUNCH@" + db "ICE PUNCH@" + db "THUNDERPUNCH@" + db "SCRATCH@" + db "VICEGRIP@" + db "GUILLOTINE@" + db "RAZOR WIND@" + db "SWORDS DANCE@" + db "CUT@" + db "GUST@" + db "WING ATTACK@" + db "WHIRLWIND@" + db "FLY@" + db "BIND@" + db "SLAM@" + db "VINE WHIP@" + db "STOMP@" + db "DOUBLE KICK@" + db "MEGA KICK@" + db "JUMP KICK@" + db "ROLLING KICK@" + db "SAND-ATTACK@" + db "HEADBUTT@" + db "HORN ATTACK@" + db "FURY ATTACK@" + db "HORN DRILL@" + db "TACKLE@" + db "BODY SLAM@" + db "WRAP@" + db "TAKE DOWN@" + db "THRASH@" + db "DOUBLE-EDGE@" + db "TAIL WHIP@" + db "POISON STING@" + db "TWINEEDLE@" + db "PIN MISSILE@" + db "LEER@" + db "BITE@" + db "GROWL@" + db "ROAR@" + db "SING@" + db "SUPERSONIC@" + db "SONICBOOM@" + db "DISABLE@" + db "ACID@" + db "EMBER@" + db "FLAMETHROWER@" + db "MIST@" + db "WATER GUN@" + db "HYDRO PUMP@" + db "SURF@" + db "ICE BEAM@" + db "BLIZZARD@" + db "PSYBEAM@" + db "BUBBLEBEAM@" + db "AURORA BEAM@" + db "HYPER BEAM@" + db "PECK@" + db "DRILL PECK@" + db "SUBMISSION@" + db "LOW KICK@" + db "COUNTER@" + db "SEISMIC TOSS@" + db "STRENGTH@" + db "ABSORB@" + db "MEGA DRAIN@" + db "LEECH SEED@" + db "GROWTH@" + db "RAZOR LEAF@" + db "SOLARBEAM@" + db "POISONPOWDER@" + db "STUN SPORE@" + db "SLEEP POWDER@" + db "PETAL DANCE@" + db "STRING SHOT@" + db "DRAGON RAGE@" + db "FIRE SPIN@" + db "THUNDERSHOCK@" + db "THUNDERBOLT@" + db "THUNDER WAVE@" + db "THUNDER@" + db "ROCK THROW@" + db "EARTHQUAKE@" + db "FISSURE@" + db "DIG@" + db "TOXIC@" + db "CONFUSION@" + db "PSYCHIC@" + db "HYPNOSIS@" + db "MEDITATE@" + db "AGILITY@" + db "QUICK ATTACK@" + db "RAGE@" + db "TELEPORT@" + db "NIGHT SHADE@" + db "MIMIC@" + db "SCREECH@" + db "DOUBLE TEAM@" + db "RECOVER@" + db "HARDEN@" + db "MINIMIZE@" + db "SMOKESCREEN@" + db "CONFUSE RAY@" + db "WITHDRAW@" + db "DEFENSE CURL@" + db "BARRIER@" + db "LIGHT SCREEN@" + db "HAZE@" + db "REFLECT@" + db "FOCUS ENERGY@" + db "BIDE@" + db "METRONOME@" + db "MIRROR MOVE@" + db "SELFDESTRUCT@" + db "EGG BOMB@" + db "LICK@" + db "SMOG@" + db "SLUDGE@" + db "BONE CLUB@" + db "FIRE BLAST@" + db "WATERFALL@" + db "CLAMP@" + db "SWIFT@" + db "SKULL BASH@" + db "SPIKE CANNON@" + db "CONSTRICT@" + db "AMNESIA@" + db "KINESIS@" + db "SOFTBOILED@" + db "HI JUMP KICK@" + db "GLARE@" + db "DREAM EATER@" + db "POISON GAS@" + db "BARRAGE@" + db "LEECH LIFE@" + db "LOVELY KISS@" + db "SKY ATTACK@" + db "TRANSFORM@" + db "BUBBLE@" + db "DIZZY PUNCH@" + db "SPORE@" + db "FLASH@" + db "PSYWAVE@" + db "SPLASH@" + db "ACID ARMOR@" + db "CRABHAMMER@" + db "EXPLOSION@" + db "FURY SWIPES@" + db "BONEMERANG@" + db "REST@" + db "ROCK SLIDE@" + db "HYPER FANG@" + db "SHARPEN@" + db "CONVERSION@" + db "TRI ATTACK@" + db "SUPER FANG@" + db "SLASH@" + db "SUBSTITUTE@" + db "STRUGGLE@" + From b84ee8468cde7ecf0641adbe1f6d8da5ab2660db Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:41:14 -0500 Subject: [PATCH 31/41] Move text banks into text.asm --- main.asm | 3197 +----------------------------------------------------- text.asm | 3197 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 3198 insertions(+), 3196 deletions(-) create mode 100644 text.asm diff --git a/main.asm b/main.asm index 8ec616f4..aad5c05a 100644 --- a/main.asm +++ b/main.asm @@ -115622,3200 +115622,5 @@ TechnicalMachinePrices: ; 7bfa7 (1e:7fa7) db $22, $52, $24, $34, $42 -SECTION "bank20",ROMX,BANK[$20] - -_CardKeySuccessText1: ; 80000 (20:4000) - text "Bingo!@@" - -_CardKeySuccessText2: ; 80009 (20:4009) - db $0 - line "The CARD KEY" - cont "opened the door!" - done - -_CardKeyFailText: ; 80029 (20:4029) - text "Darn! It needs a" - line "CARD KEY!" - done - -_UnnamedText_33cf: ; 80045 (20:4045) - TX_RAM $cd6d - text ": @@" - -_UnnamedText_70847: ; 8004d (20:404d) - text "Not even a nibble!" - prompt - -_UnnamedText_7084c: ; 80061 (20:4061) - text "Looks like there's" - line "nothing here." - prompt - -_UnnamedText_70851: ; 80082 (20:4082) - text "Oh!" - line "It's a bite!" - prompt - -_UnnamedText_24db: ; 80093 (20:4093) - text "!" - done - -_UnnamedText_24e0: ; 80096 (20:4096) - text "Ground rose up" - line "somewhere!" - done - -_BoulderText: ; 800b1 (20:40b1) - text "This requires" - line "STRENGTH to move!" - done - -_MartSignText: ; 800d2 (20:40d2) - text "All your item" - line "needs fulfilled!" - cont "#MON MART" - done - -_PokeCenterSignText: ; 800fc (20:40fc) - text "Heal Your #MON!" - line "#MON CENTER" - done - -_FoundItemText: ; 80119 (20:4119) - text $52, " found" - line "@" - TX_RAM $cf4b - text "!@@" - -_NoMoreRoomForItemText: ; 8012a (20:412a) - text "No more room for" - line "items!" - done - -_UnnamedText_59091: ; 80143 (20:4143) - text "Hi! Remember me?" - line "I'm PROF.OAK's" - cont "AIDE!" - - para "If you caught @" - TX_NUM $ffdb, 1, 3 - db $0 - line "kinds of #MON," - cont "I'm supposed to" - cont "give you an" - cont "@" - TX_RAM $cc5b - text "!" - - para "So, ", $52, "! Have" - line "you caught at" - cont "least @" - TX_NUM $ffdb, 1, 3 - text " kinds of" - cont "#MON?" - done - -_UnnamedText_59096: ; 801e4 (20:41e4) - text "Let's see..." - line "Uh-oh! You have" - cont "caught only @" - -UnnamedText_8020e: ; 8020e (20:420e) - TX_NUM $ffdd, 1, 3 - db $0 - cont "kinds of #MON!" - - para "You need @" - TX_NUM $ffdb, 1, 3 - text " kinds" - line "if you want the" - cont "@" - TX_RAM $cc5b - text "." - done - -_UnnamedText_5909b: ; 80250 (20:4250) - text "Oh. I see." - - para "When you get @" - TX_NUM $ffdb, 1, 3 - db $0 - line "kinds, come back" - cont "for @" - TX_RAM $cc5b - text "." - done - -_UnnamedText_590a0: ; 8028c (20:428c) - text "Great! You have" - line "caught @" - TX_NUM $ffdd, 1, 3 - text " kinds " - cont "of #MON!" - cont "Congratulations!" - - para "Here you go!" - prompt - -_UnnamedText_590a5: ; 802d9 (20:42d9) - text $52, " got the" - line "@" - TX_RAM $cc5b - text "!@@" - -_UnnamedText_590ab: ; 802ec (20:42ec) - text "Oh! I see you" - line "don't have any" - cont "room for the" - cont "@" - TX_RAM $cc5b - text "." - done - -INCLUDE "text/maps/viridian_forest.asm" -INCLUDE "text/maps/mt_moon_1f.asm" -INCLUDE "text/maps/mt_moon_b1f.asm" -INCLUDE "text/maps/mt_moon_b2f.asm" -INCLUDE "text/maps/ss_anne_1.asm" -INCLUDE "text/maps/ss_anne_2.asm" -INCLUDE "text/maps/ss_anne_3.asm" -INCLUDE "text/maps/ss_anne_4.asm" -INCLUDE "text/maps/ss_anne_5.asm" -INCLUDE "text/maps/ss_anne_6.asm" -INCLUDE "text/maps/ss_anne_7.asm" -INCLUDE "text/maps/ss_anne_8.asm" -INCLUDE "text/maps/ss_anne_9.asm" -INCLUDE "text/maps/ss_anne_10.asm" -INCLUDE "text/maps/victory_road_3f.asm" -INCLUDE "text/maps/rocket_hideout_b1f.asm" -INCLUDE "text/maps/rocket_hideout_b2f.asm" -INCLUDE "text/maps/rocket_hideout_b3f.asm" -INCLUDE "text/maps/rocket_hideout_b4f.asm" -INCLUDE "text/maps/rocket_hideout_elevator.asm" -INCLUDE "text/maps/silph_co_2f.asm" -INCLUDE "text/maps/silph_co_3f.asm" -INCLUDE "text/maps/silph_co_4f.asm" -INCLUDE "text/maps/silph_co_5f_1.asm" - - -SECTION "bank21",ROMX,BANK[$21] - -INCLUDE "text/maps/silph_co_5f_2.asm" -INCLUDE "text/maps/silph_co_6f.asm" -INCLUDE "text/maps/silph_co_7f.asm" -INCLUDE "text/maps/silph_co_8f.asm" -INCLUDE "text/maps/silph_co_9f.asm" -INCLUDE "text/maps/silph_co_10f.asm" -INCLUDE "text/maps/silph_co_11f.asm" -INCLUDE "text/maps/mansion_2f.asm" -INCLUDE "text/maps/mansion_3f.asm" -INCLUDE "text/maps/mansion_b1f.asm" -INCLUDE "text/maps/safari_zone_east.asm" -INCLUDE "text/maps/safari_zone_north.asm" -INCLUDE "text/maps/safari_zone_west.asm" -INCLUDE "text/maps/safari_zone_center.asm" -INCLUDE "text/maps/safari_zone_rest_house_1.asm" -INCLUDE "text/maps/safari_zone_secret_house.asm" -INCLUDE "text/maps/safari_zone_rest_house_2.asm" -INCLUDE "text/maps/safari_zone_rest_house_3.asm" -INCLUDE "text/maps/safari_zone_rest_house_4.asm" -INCLUDE "text/maps/unknown_dungeon_1f.asm" -INCLUDE "text/maps/unknown_dungeon_2f.asm" -INCLUDE "text/maps/unknown_dungeon_b1f.asm" -INCLUDE "text/maps/victory_road_1f.asm" -INCLUDE "text/maps/lance.asm" -INCLUDE "text/maps/hall_of_fame.asm" -INCLUDE "text/maps/champion.asm" -INCLUDE "text/maps/lorelei.asm" -INCLUDE "text/maps/bruno.asm" -INCLUDE "text/maps/agatha.asm" -INCLUDE "text/maps/rock_tunnel_b2f_1.asm" - - -SECTION "bank22",ROMX,BANK[$22] - -INCLUDE "text/maps/rock_tunnel_b2f_2.asm" -INCLUDE "text/maps/seafoam_islands_1f.asm" -INCLUDE "text/maps/seafoam_islands_b1f.asm" -INCLUDE "text/maps/seafoam_islands_b2f.asm" -INCLUDE "text/maps/seafoam_islands_b3f.asm" -INCLUDE "text/maps/seafoam_islands_b4f.asm" - -_AIBattleWithdrawText: ; 880be (22:40be) - TX_RAM W_TRAINERNAME - text " with-" - line "drew @" - TX_RAM W_ENEMYMONNAME - text "!" - prompt - -_AIBattleUseItemText: ; 880d5 (22:40d5) - TX_RAM W_TRAINERNAME - db $0 - line "used @" - TX_RAM $CD6D - db $0 - cont "on @" - TX_RAM W_ENEMYMONNAME - text "!" - prompt - -_UnnamedText_4160c: ; 880ef (22:40ef) - TX_RAM $cf4b - text " went" - line "to @" - TX_RAM $d887 - text "." - done - -_UnnamedText_41623: ; 88103 (22:4103) - text "For ", $52, "'s" - line "@" - TX_RAM $cf4b - text "," - done - -_UnnamedText_41628: ; 88112 (22:4112) - TX_RAM $d887 - text " sends" - line "@" - TX_RAM $cd6d - text "." - done - -_UnnamedText_41642: ; 88124 (22:4124) - TX_RAM $d887 - text " waves" - line "farewell as" - done - -_UnnamedText_41647: ; 8813b (22:413b) - TX_RAM $cd6d - text " is" - line "transferred." - done - -_UnnamedText_41655: ; 88150 (22:4150) - text "Take good care of" - line "@" - TX_RAM $cd6d - text "." - done - -_UnnamedText_4166c: ; 8816a (22:416a) - TX_RAM $d887 - text " will" - line "trade @" - TX_RAM $cd6d - db $0 - done - -_UnnamedText_41671: ; 88180 (22:4180) - text "for ", $52, "'s" - line "@" - TX_RAM $cf4b - text "." - done - -_PlaySlotMachineText: ; 8818f (22:418f) - text "A slot machine!" - line "Want to play?" - done - -_OutOfCoinsSlotMachineText: ; 881ae (22:41ae) - text "Darn!" - line "Ran out of coins!" - done - -_BetHowManySlotMachineText: ; 881c7 (22:41c7) - text "Bet how many" - line "coins?" - done - -_StartSlotMachineText: ; 881dc (22:41dc) - text "Start!" - done - -_NotEnoughCoinsSlotMachineText: ; 881e4 (22:41e4) - text "Not enough" - line "coins!" - prompt - -_OneMoreGoSlotMachineText: ; 881f7 (22:41f7) - text "One more " - line "go?" - done - -_UnnamedText_37673: ; 88206 (22:4206) - text " lined up!" - line "Scored @" - TX_RAM $cf4b - text " coins!" - done - -_UnnamedText_3769d: ; 88226 (22:4226) - text "Not this time!" - prompt - -_UnnamedText_37722: ; 88236 (22:4236) - text "Yeah!@@" - -_UnnamedText_703fa: ; 8823e (22:423e) - text "#DEX Seen:@" - TX_NUM $cc5b, 1, 3 - db $0 - line " Owned:@" - TX_NUM $cc5c, 1, 3 - db "@" - -_UnnamedText_703ff: ; 88267 (22:4267) - text "#DEX Rating", $6d - done - -_GymStatueText1: ; 88275 (22:4275) - TX_RAM wGymCityName - db $0 - line "#MON GYM" - cont "LEADER: @" - TX_RAM wGymLeaderName - db $0 - - para "WINNING TRAINERS:" - line $53 - done - -_GymStatueText2: ; 882a5 (22:42a5) - TX_RAM wGymCityName - db $0 - line "#MON GYM" - cont "LEADER: @" - TX_RAM wGymLeaderName - db $0 - - para "WINNING TRAINERS:" - line $53 - cont $52 - done - -_ViridianCityPokecenterGuyText: ; 882d7 (22:42d7) - text "#MON CENTERs" - line "heal your tired," - cont "hurt or fainted" - cont "#MON!" - done - -_PewterCityPokecenterGuyText: ; 8830c (22:430c) - text "Yawn!" - - para "When JIGGLYPUFF" - line "sings, #MON" - cont "get drowsy..." - - para "...Me too..." - line "Snore..." - done - -_CeruleanPokecenterGuyText: ; 88353 (22:4353) - text "BILL has lots of" - line "#MON!" - - para "He collects rare" - line "ones too!" - done - -_LavenderPokecenterGuyText: ; 88386 (22:4386) - text "CUBONEs wear" - line "skulls, right?" - - para "People will pay a" - line "lot for one!" - done - -_MtMoonPokecenterBenchGuyText: ; 883c2 (22:43c2) - text "If you have too" - line "many #MON, you" - cont "should store them" - cont "via PC!" - done - -_RockTunnelPokecenterGuyText: ; 883fc (22:43fc) - text "I heard that" - line "GHOSTs haunt" - cont "LAVENDER TOWN!" - done - -_UnnamedText_624c1: ; 88426 (22:4426) - text "I wish I could" - line "catch #MON." - done - -_UnnamedText_624c6: ; 88442 (22:4442) - text "I'm tired from" - line "all the fun..." - done - -_UnnamedText_624cb: ; 88460 (22:4460) - text "SILPH's manager" - line "is hiding in the" - cont "SAFARI ZONE." - done - -_VermilionPokecenterGuyText: ; 8848e (22:448e) - text "It is true that a" - line "higher level" - cont "#MON will be" - cont "more powerful..." - - para "But, all #MON" - line "will have weak" - cont "points against" - cont "specific types." - - para "So, there is no" - line "universally" - cont "strong #MON." - done - -_CeladonCityPokecenterGuyText: ; 88531 (22:4531) - text "If I had a BIKE," - line "I would go to" - cont "CYCLING ROAD!" - done - -_FuchsiaCityPokecenterGuyText: ; 8855f (22:455f) - text "If you're studying " - line "#MON, visit" - cont "the SAFARI ZONE." - - para "It has all sorts" - line "of rare #MON." - done - -_CinnabarPokecenterGuyText: ; 885af (22:45af) - text "#MON can still" - line "learn techniques" - cont "after canceling" - cont "evolution." - - para "Evolution can wait" - line "until new moves" - cont "have been learned." - done - -_SaffronCityPokecenterGuyText1: ; 88621 (22:4621) - text "It would be great" - line "if the ELITE FOUR" - cont "came and stomped" - cont "TEAM ROCKET!" - done - -_SaffronCityPokecenterGuyText2: ; 88664 (22:4664) - text "TEAM ROCKET took" - line "off! We can go" - cont "out safely again!" - cont "That's great!" - done - -_CeladonCityHotelText: ; 886a4 (22:46a4) - text "My sis brought me" - line "on this vacation!" - done - -_BookcaseText: ; 886c9 (22:46c9) - text "Crammed full of" - line "#MON books!" - done - -_NewBicycleText: ; 886e6 (22:46e6) - text "A shiny new" - line "BICYCLE!" - done - -_UnnamedText_1e960: ; 886fc (22:46fc) - text "Push START to" - line "open the MENU!" - done - -_UnnamedText_1e97e: ; 8871a (22:471a) - text "The SAVE option is" - line "on the MENU" - cont "screen." - done - -_UnnamedText_1e983: ; 88742 (22:4742) - text "All #MON types" - line "have strong and" - cont "weak points" - cont "against others." - done - -_UnnamedText_1ea0d: ; 8877e (22:477e) - text "PA: Ding-dong!" - - para "Time's up!" - prompt - -_UnnamedText_1ea12: ; 88798 (22:4798) - text "PA: Your SAFARI" - line "GAME is over!" - done - -_CinnabarGymQuizIntroText: ; 887b7 (22:47b7) - text "#MON Quiz!" - - para "Get it right and" - line "the door opens to" - cont "the next room!" - - para "Get it wrong and" - line "face a trainer!" - - para "If you want to" - line "conserve your" - cont "#MON for the" - cont "GYM LEADER..." - - para "Then get it right!" - line "Here we go!" - prompt - -_CinnabarQuizQuestionsText1: ; 8886d (22:486d) - text "CATERPIE evolves" - line "into BUTTERFREE?" - done - -_CinnabarQuizQuestionsText2: ; 88890 (22:4890) - text "There are 9" - line "certified #MON" - cont "LEAGUE BADGEs?" - done - -_CinnabarQuizQuestionsText3: ; 888bb (22:48bb) - text "POLIWAG evolves 3" - line "times?" - done - -_CinnabarQuizQuestionsText4: ; 888d5 (22:48d5) - text "Are thunder moves" - line "effective against" - cont "ground element-" - cont "type #MON?" - done - -_CinnabarQuizQuestionsText5: ; 88915 (22:4915) - text "#MON of the" - line "same kind and" - cont "level are not" - cont "identical?" - done - -_CinnabarQuizQuestionsText6: ; 88949 (22:4949) - text "TM28 contains" - line "TOMBSTONER?" - done - -_CinnabarGymQuizCorrectText: ; 88964 (22:4964) - text "You're absolutely" - line "correct!" - - para "Go on through!@@" - -_CinnabarGymQuizIncorrectText: ; 8898f (22:498f) - text "Sorry! Bad call!" - prompt - -_UnnamedText_1eb69: ; 889a1 (22:49a1) - text "#MON magazines!" - - para "#MON notebooks!" - - para "#MON graphs!" - done - -_BillsHouseMonitorText: ; 889cf (22:49cf) - text "TELEPORTER is" - line "displayed on the" - cont "PC monitor." - done - -_BillsHouseInitiatedText: ; 889fb (22:49fb) - text $52, " initiated" - line "TELEPORTER's Cell" - cont "Separator!@@" - -_BillsHousePokemonListText1: ; 88a25 (22:4a25) - text "BILL's favorite" - line "#MON list!" - prompt - -_BillsHousePokemonListText2: ; 88a40 (22:4a40) - text "Which #MON do" - line "you want to see?" - done - -_OakLabEmailText: ; 88a60 (22:4a60) - text "There's an e-mail" - line "message here!" - - para "..." - - para "Calling all" - line "#MON trainers!" - - para "The elite trainers" - line "of #MON LEAGUE" - cont "are ready to take" - cont "on all comers!" - - para "Bring your best" - line "#MON and see" - cont "how you rate as a" - cont "trainer!" - - para "#MON LEAGUE HQ" - line "INDIGO PLATEAU" - - para "PS: PROF.OAK," - line "please visit us!" - cont "..." - done - -_GameCornerCoinCaseText: ; 88b5b (22:4b5b) - text "A COIN CASE is" - line "required!" - done - -_GameCornerNoCoinsText: ; 88b75 (22:4b75) - text "You don't have" - line "any coins!" - done - -_GameCornerOutOfOrderText: ; 88b8f (22:4b8f) - text "OUT OF ORDER" - line "This is broken." - done - -_GameCornerOutToLunchText: ; 88bad (22:4bad) - text "OUT TO LUNCH" - line "This is reserved." - done - -_GameCornerSomeonesKeysText: ; 88bcd (22:4bcd) - text "Someone's keys!" - line "They'll be back." - done - -_UnnamedText_21865: ; 88bed (22:4bed) - text "Just a moment." - done - -TMNotebookText: ; 88bfd (22:4bfd) - text "It's a pamphlet" - line "on TMs." - - para "..." - - para "There are 50 TMs" - line "in all." - - para "There are also 5" - line "HMs that can be" - cont "used repeatedly." - - para "SILPH CO.@@" - -_TurnPageText: ; 88c6f (22:4c6f) - text "Turn the page?" - done - -_ViridianSchoolNotebookText5: ; 88c7f (22:4c7f) - text "GIRL: Hey! Don't" - line "look at my notes!@@" - -_ViridianSchoolNotebookText1: ; 88ca3 (22:4ca3) - text "Looked at the" - line "notebook!" - - para "First page..." - - para "# BALLs are" - line "used to catch" - cont "#MON." - - para "Up to 6 #MON" - line "can be carried." - - para "People who raise" - line "and make #MON" - cont "fight are called" - cont "#MON trainers." - prompt - -_ViridianSchoolNotebookText2: ; 88d46 (22:4d46) - text "Second page..." - - para "A healthy #MON" - line "may be hard to" - cont "catch, so weaken" - cont "it first!" - - para "Poison, burns and" - line "other damage are" - cont "effective!" - prompt - -_ViridianSchoolNotebookText3: ; 88dbd (22:4dbd) - text "Third page..." - - para "#MON trainers" - line "seek others to" - cont "engage in #MON" - cont "fights." - - para "Battles are" - line "constantly fought" - cont "at #MON GYMs." - prompt - -_ViridianSchoolNotebookText4: ; 88e2c (22:4e2c) - text "Fourth page..." - - para "The goal for" - line "#MON trainers" - cont "is to beat the " - cont "top 8 #MON" - cont "GYM LEADERs." - - para "Do so to earn the" - line "right to face..." - - para "The ELITE FOUR of" - line "#MON LEAGUE!" - prompt - -_UnnamedText_52a10: ; 88ec1 (22:4ec1) - text "Enemies on every" - line "side!" - done - -_UnnamedText_52a1d: ; 88ed9 (22:4ed9) - text "What goes around" - line "comes around!" - done - -_FightingDojoText: ; 88ef9 (22:4ef9) - text "FIGHTING DOJO" - done - -_IndigoPlateauHQText: ; 88f08 (22:4f08) - text "INDIGO PLATEAU" - line "#MON LEAGUE HQ" - done - -_RedBedroomSNESText: ; 88f27 (22:4f27) - text $52, " is" - line "playing the SNES!" - cont "...Okay!" - cont "It's time to go!" - done - -_Route15UpstairsBinocularsText: ; 88f58 (22:4f58) - text "Looked into the" - line "binoculars..." - - para "A large, shining" - line "bird is flying" - cont "toward the sea." - done - -_AerodactylFossilText: ; 88fa7 (22:4fa7) - text "AERODACTYL Fossil" - line "A primitive and" - cont "rare #MON." - done - -_KabutopsFossilText: ; 88fd5 (22:4fd5) - text "KABUTOPS Fossil" - line "A primitive and" - cont "rare #MON." - done - -_LinkCableHelpText1: ; 89001 (22:5001) - text "TRAINER TIPS" - - para "Using a Game Link" - line "Cable" - prompt - -_LinkCableHelpText2: ; 89027 (22:5027) - text "Which heading do" - line "you want to read?" - done - -_LinkCableInfoText1: ; 8904b (22:504b) - text "When you have" - line "linked your GAME" - cont "BOY with another" - cont "GAME BOY, talk to" - cont "the attendant on" - cont "the right in any" - cont "#MON CENTER." - prompt - -_LinkCableInfoText2: ; 890bd (22:50bd) - text "COLOSSEUM lets" - line "you play against" - cont "a friend." - prompt - -_LinkCableInfoText3: ; 890e8 (22:50e8) - text "TRADE CENTER is" - line "used for trading" - cont "#MON." - prompt - -_ViridianSchoolBlackboardText1: ; 89110 (22:5110) - text "The blackboard" - line "describes #MON" - cont "STATUS changes" - cont "during battles." - prompt - -_ViridianSchoolBlackboardText2: ; 8914e (22:514e) - text "Which heading do" - line "you want to read?" - done - -_ViridianBlackboardSleepText: ; 89172 (22:5172) - text "A #MON can't" - line "attack if it's" - cont "asleep!" - - para "#MON will stay" - line "asleep even after" - cont "battles." - - para "Use AWAKENING to" - line "wake them up!" - prompt - -_ViridianBlackboardPoisonText: ; 891de (22:51de) - text "When poisoned, a" - line "#MON's health" - cont "steadily drops." - - para "Poison lingers" - line "after battles." - - para "Use an ANTIDOTE" - line "to cure poison!" - prompt - -_ViridianBlackbaordPrlzText: ; 8924b (22:524b) - text "Paralysis could" - line "make #MON" - cont "moves misfire!" - - para "Paralysis remains" - line "after battles." - - para "Use PARLYZ HEAL" - line "for treatment!" - prompt - -_ViridianBlackboardBurnText: ; 892b5 (22:52b5) - text "A burn reduces" - line "power and speed." - cont "It also causes" - cont "ongoing damage." - - para "Burns remain" - line "after battles." - - para "Use BURN HEAL to" - line "cure a burn!" - prompt - -_ViridianBlackboardFrozenText: ; 8932f (22:532f) - text "If frozen, a" - line "#MON becomes" - cont "totally immobile!" - - para "It stays frozen" - line "even after the" - cont "battle ends." - - para "Use ICE HEAL to" - line "thaw out #MON!" - prompt - -_VermilionGymTrashText: ; 893a7 (22:53a7) - text "Nope, there's" - line "only trash here." - done - -_VermilionGymTrashSuccesText1: ; 893c6 (22:53c6) - text "Hey! There's a" - line "switch under the" - cont "trash!" - cont "Turn it on!" - - para "The 1st electric" - line "lock opened!@@" - -_VermilionGymTrashSuccesText2: ; 89418 (22:5418) - text "Hey! There's" - line "another switch" - cont "under the trash!" - cont "Turn it on!" - prompt - -_VermilionGymTrashSuccesText3: ; 89451 (22:5451) - text "The 2nd electric" - line "lock opened!" - - para "The motorized door" - line "opened!@@" - -_VermilionGymTrashFailText: ; 8948c (22:548c) - text "Nope! There's" - line "only trash here." - cont "Hey! The electric" - cont "locks were reset!@@" - -UnnamedText_894d0: ; 894d0 (22:54d0) - text $52, " found" - line "@" - TX_RAM $cd6d - text "!@@" - -_UnnamedText_76794: ; 894e1 (22:54e1) - text "But, ", $52, " has" - line "no more room for" - cont "other items!" - done - -_FoundHiddenCoinsText: ; 8950b (22:550b) - text $52, " found" - line "@" - db $2, $a0, $ff, $c2 ; XXX $2 - text " coins!@@" - -_FoundHiddenCoins2Text: ; 89523 (22:5523) - text $52, " found" - line "@" - db $2, $a0, $ff, $c2 ; XXX $2 probably coins - text " coins!@@" - -_DroppedHiddenCoinsText: ; 8953b (22:553b) - db $0 - para "Oops! Dropped" - line "some coins!" - done - -_IndigoPlateauStatuesText1: ; 89557 (22:5557) - text "INDIGO PLATEAU" - prompt - -_IndigoPlateauStatuesText2: ; 89567 (22:5567) - text "The ultimate goal" - line "of trainers!" - cont "#MON LEAGUE HQ" - done - -_IndigoPlateauStatuesText3: ; 89596 (22:5596) - text "The highest" - line "#MON authority" - cont "#MON LEAGUE HQ" - done - -_PokemonBooksText: ; 895c1 (22:55c1) - text "Crammed full of" - line "#MON books!" - done - -_DiglettSculptureText: ; 895de (22:55de) - text "It's a sculpture" - line "of DIGLETT." - done - -_ElevatorText: ; 895fb (22:55fb) - text "This is an" - line "elevator." - done - -_TownMapText: ; 89611 (22:5611) - text "A TOWN MAP.@@" - -_PokemonStuffText: ; 8961f (22:561f) - text "Wow! Tons of" - line "#MON stuff!" - done - -_UnnamedText_3c1a8: ; 89639 (22:5639) - text "PA: Ding-dong!" - - para "You are out of" - line "SAFARI BALLs!" - prompt - -_UnnamedText_3c229: ; 89666 (22:5666) - text "Wild @" - TX_RAM W_ENEMYMONNAME - db $0 - line "ran!" - prompt - -_UnnamedText_3c22e: ; 89677 (22:5677) - text "Enemy @" - TX_RAM W_ENEMYMONNAME - db $0 - line "ran!" - prompt - -_HurtByPoisonText: ; 89689 (22:5689) - text $5a, "'s" - line "hurt by poison!" - prompt - -_HurtByBurnText: ; 8969d (22:569d) - text $5a, "'s" - line "hurt by the burn!" - prompt - -_HurtByLeechSeedText: ; 896b3 (22:56b3) - text "LEECH SEED saps" - line $5a, "!" - prompt - -_EnemyMonFainted: ; 0x896c7 - text "Enemy @" - TX_RAM W_ENEMYMONNAME - db $0 - line "fainted!" - prompt - -_MoneyForWinningText: ; 896dd (22:56dd) - text $52, " got ¥@" - ;XXX $2 - db $2, $79, $d0, $c3 - db $0 - line "for winning!" - prompt - -_TrainerDefeatedText: ; 896f9 (22:56f9) - text $52, " defeated" - line "@" - TX_RAM W_TRAINERNAME ; 0x89706 - text "!" - prompt - -_PlayerMonFaintedText: ; 8970c (22:570c) - TX_RAM W_PLAYERMONNAME - db $0 - line "fainted!" - prompt - -_UnnamedText_3c7d3: ; 8971a (22:571a) - text "Use next #MON?" - done - -_Sony1WinText: ; 8972a (22:572a) - text $53, ": Yeah! Am" - line "I great or what?" - prompt - -_PlayerBlackedOutText2: ; 89748 (22:5748) - text $52, " is out of" - line "useable #MON!" - - para $52, " blacked" - line "out!" - prompt - -_LinkBattleLostText: ; 89772 (22:5772) - text $52, " lost to" - line "@" - TX_RAM W_TRAINERNAME ; 0x8977e - text "!" - prompt - -_TrainerAboutToUseText: ; 89784 (22:5784) - TX_RAM W_TRAINERNAME - text " is" - line "about to use" - cont"@" - TX_RAM W_ENEMYMONNAME - text "!" - - para "Will ", $52 - line "change #MON?" - done - -_TrainerSentOutText: ; 897b4 (22:57b4) - TX_RAM W_TRAINERNAME - text " sent" - line "out @" - TX_RAM W_ENEMYMONNAME - text "!" - done - -_UnnamedText_3cab4: ; 897c9 (22:57c9) - text "There's no will" - line "to fight!" - prompt - -_UnnamedText_3cb97: ; 897e3 (22:57e3) - text "Can't escape!" - prompt - -_UnnamedText_3cb9c: ; 897f1 (22:57f1) - text "No! There's no" - line "running from a" - cont "trainer battle!" - prompt - -_UnnamedText_3cba1: ; 8981f (22:581f) - text "Got away safely!" - prompt - -ItemsCantBeUsedHere_: ; 89831 (22:5831) - text "Items can't be" - line "used here." - prompt - -_UnnamedText_3d1f5: ; 8984b (22:584b) - TX_RAM W_PLAYERMONNAME - text " is" - line "already out!" - prompt - -_MoveNoPPText: ; 89860 (22:5860) - text "No PP left for" - line "this move!" - prompt - -_MoveDisabledText: ; 8987b (22:587b) - text "The move is" - line "disabled!" - prompt - -_UnnamedText_3d430: ; 89892 (22:5892) - TX_RAM W_PLAYERMONNAME - text " has no" - line "moves left!" - done - -_MultiHitText: ; 898aa (22:58aa) - text "Hit the enemy" - line "@" - TX_NUM W_NUMHITS,1,1 - text " times!" - prompt - -_ScaredText: ; 898c7 (22:58c7) - TX_RAM W_PLAYERMONNAME - text " is too" - line "scared to move!" - prompt - -_GetOutText: ; 898e3 (22:58e3) - text "GHOST: Get out..." - line "Get out..." - prompt - -_FastAsleepText: ; 89901 (22:5901) - text $5A - line "is fast asleep!" - prompt - -_WokeUpText: ; 89914 (22:5914) - text $5A - line "woke up!" - prompt - -_FrozenText: ; 89920 (22:5920) - text $5A - line "is frozen solid!" - prompt - -_FullyParalyzedText: ; 89934 (22:5934) - text $5A,"'s" - line "fully paralyzed!" - prompt - -_FlinchedText: ; 89949 (22:5949) - text $5A - line "flinched!" - prompt - -_MustRechargeText: ; 89956 (22:5956) - text $5A - line "must recharge!" - prompt - -_DisabledNoMoreText: ; 89968 (22:5968) - text $5A,"'s" - line "disabled no more!" - prompt - -_IsConfusedText: ; 8997e (22:597e) - text $5A - line "is confused!" - prompt - -_HurtItselfText: ; 8998e (22:598e) - text "It hurt itself in" - line "its confusion!" - prompt - -_ConfusedNoMoreText: ; 899b0 (22:59b0) - text $5A,"'s" - line "confused no more!" - prompt - -_SavingEnergyText: ; 899c6 (22:59c6) - text $5A - line "is saving energy!" - prompt - -_UnleashedEnergyText: ; 899db (22:59db) - text $5A - line "unleashed energy!" - prompt - -_ThrashingAboutText: ; 899f0 (22:59f0) - text $5A,"'s" - line "thrashing about!" - done - -_AttackContinuesText: ; 89a05 (22:5a05) - text $5A,"'s" - line "attack continues!" - done - -_CantMoveText: ; 89a1b (22:5a1b) - text $5A - line "can't move!" - prompt - -_UnnamedText_3daa8: ; 89a29 (22:5a29) - text $5a, "'s" - line "@" - TX_RAM $cd6d - text " is" - cont "disabled!" - prompt - -_UnnamedText_3dafb: ; 89a40 (22:5a40) - text $5a, "@@" - -_UnnamedText_3db2d: ; 89a44 (22:5a44) - db $0 - line "used @@" - -_UnnamedText_3db34: ; 89a4d (22:5a4d) - db $0 - line "used @@" - -_UnnamedText_3db43: ; 89a56 (22:5a56) - text "instead," - cont "@@" - -_UnnamedText_3db4c: ; 89a62 (22:5a62) - TX_RAM $cf4b - text "@" - -_UnnamedText_3db6c: ; 89a67 (22:5a67) - text "!" - done - -_UnnamedText_3db71: ; 89a6a (22:5a6a) - text "!" - done - -_UnnamedText_3db76: ; 89a6d (22:5a6d) - text "!" - done - -_UnnamedText_3db7b: ; 89a70 (22:5a70) - text "!" - done - -_UnnamedText_3db80: ; 89a73 (22:5a73) - text "!" - done - -_UnnamedText_3dc42: ; 89a76 (22:5a76) - text $5a, "'s" - line "attack missed!" - prompt - -_UnnamedText_3dc47: ; 89a89 (22:5a89) - text $5a - line "kept going and" - cont "crashed!" - prompt - -_UnnamedText_3dc4c: ; 89aa4 (22:5aa4) - text $59, "'s" - line "unaffected!" - prompt - -_UnnamedText_3dc57: ; 89ab4 (22:5ab4) - text "It doesn't affect" - line $59, "!" - prompt - -_UnnamedText_3dc7e: ; 89ac9 (22:5ac9) - text "Critical hit!" - prompt - -_UnnamedText_3dc83: ; 89ad8 (22:5ad8) - text "One-hit KO!" - prompt - -_UnnamedText_3ddb6: ; 89ae5 (22:5ae5) - TX_RAM W_PLAYERMONNAME - text " is" - line "loafing around." - prompt - -_UnnamedText_3ddbb: ; 89afd (22:5afd) - TX_RAM W_PLAYERMONNAME - text " began" - line "to nap!" - prompt - -_UnnamedText_3ddc0: ; 89b10 (22:5b10) - TX_RAM W_PLAYERMONNAME - text " won't" - line "obey!" - prompt - -_UnnamedText_3ddc5: ; 89b20 (22:5b20) - TX_RAM W_PLAYERMONNAME - text " turned" - line "away!" - prompt - -_UnnamedText_3ddca: ; 89b32 (22:5b32) - TX_RAM W_PLAYERMONNAME - db $0 - line "ignored orders!" - prompt - -_SubstituteTookDamageText: ; 89b47 (22:5b47) - text "The SUBSTITUTE" - line "took damage for" - cont $59, "!" - prompt - -_SubstituteBrokeText: ; 89b6a (22:5b6a) - text $59, "'s" - line "SUBSTITUTE broke!" - prompt - -_BuildingRageText: ; 89b80 (22:5b80) - text $5a, "'s" - line "RAGE is building!" - prompt - -_MirrorMoveFailedText: ; 89b96 (22:5b96) - text "The MIRROR MOVE" - next "failed!" - prompt - -_UnnamedText_3e887: ; 89baf (22:5baf) - text "Hit @" - TX_NUM $cd05, 1, 1 - text " times!" - prompt - -_UnnamedText_554b2: ; 89bc2 (22:5bc2) - TX_RAM $cd6d - text " gained" - line "@@" - -_UnnamedText_554cb: ; 89bd0 (22:5bd0) - text "with EXP.ALL," - cont "@@" - -_UnnamedText_554d4: ; 89be1 (22:5be1) - text "a boosted" - cont "@@" -_UnnamedText_554d8: ; 89bee (22:5bee) - TX_NUM $cf4b, 2, 4 - text " EXP. Points!" - prompt - -UnnamedText_89c01: ; 89c01 (22:5c01) - TX_RAM $cd6d - text " grew" - line "to level @" - TX_NUM $d127, 1, 3 - text "!@@" - -_UnnamedText_58e3b: ; 89c1d (22:5c1d) - text "Wild @" - TX_RAM W_ENEMYMONNAME - db $0 - line "appeared!" - prompt - -_UnnamedText_58e40: ; 89c33 (22:5c33) - text "The hooked" - line "@" - TX_RAM W_ENEMYMONNAME - db $0 - cont "attacked!" - prompt - -_UnnamedText_58e45: ; 89c4f (22:5c4f) - TX_RAM W_ENEMYMONNAME - db $0 - line "appeared!" - prompt - -_UnnamedText_58e4a: ; 89c5e (22:5c5e) - TX_RAM W_TRAINERNAME - text " wants" - line "to fight!" - prompt - -_UnnamedText_58e4f: ; 89c73 (22:5c73) - text "SILPH SCOPE" - line "unveiled the" - cont "GHOST's identity!" - prompt - -_UnnamedText_58e54: ; 89c9e (22:5c9e) - text "Darn! The GHOST" - line "can't be ID'd!" - prompt - -_UnnamedText_58eae: ; 89cbc (22:5cbc) - text "Go! @@" - -_UnnamedText_58eb5: ; 89cc3 (22:5cc3) - text "Do it! @@" - -_UnnamedText_58ebc: ; 89ccd (22:5ccd) - text "Get'm! @@" - -_UnnamedText_58ec3: ; 89cd6 (22:5cd6) - text "The enemy's weak!" - line "Get'm! @@" - -_UnnamedText_58ecc: ; 89cf0 (22:5cf0) - TX_RAM W_PLAYERMONNAME - text "!" - done - -_UnnamedText_58ed7: ; 89cf6 (22:5cf6) - TX_RAM W_PLAYERMONNAME - text " @@" - -_UnnamedText_58f25: ; 89cfd (22:5cfd) - text "enough!@@" - -_UnnamedText_58f2c: ; 89d07 (22:5d07) - text "OK!@@" - -_UnnamedText_58f33: ; 89d0d (22:5d0d) - text "good!@@" - -_UnnamedText_58f3e: ; 89d15 (22:5d15) - db $0 - line "Come back!" - done - -_UnnamedText_2fb8e: ; 89d22 (22:5d22) - text "It's super" - line "effective!" - prompt - -_UnnamedText_2fb93: ; 89d38 (22:5d38) - text "It's not very" - line "effective..." - prompt - -SafariZoneEatingText: ; 89d53 (22:5d53) - text "Wild @" - TX_RAM W_ENEMYMONNAME - db $0 - line "is eating!" - prompt - -SafariZoneAngryText: ; 89d6a (22:5d6a) - text "Wild @" - TX_RAM W_ENEMYMONNAME - db $0 - line "is angry!" - prompt - -; money related -; XXX $2 BCD macro -; $2, pointer, byte -_UnnamedText_1386b: ; 89d80 (22:5d80) - text $52, " picked up" - line "¥@" - db $2, $e5, $cc, $c3 - text "!" - prompt - -_UnnamedText_1c9c1: ; 89d96 (22:5d96) - text "Clear all saved" - line "data?" - done - -_UnnamedText_1ca14: ; 89dad (22:5dad) - text "Which floor do" - line "you want? " - done - -_PartyMenuNormalText: ; 89dc8 (22:5dc8) - text "Choose a #MON." - done - -_PartyMenuItemUseText: ; 89dd8 (22:5dd8) - text "Use item on which" - line "#MON?" - done - -_PartyMenuBattleText: ; 89df1 (22:5df1) - text "Bring out which" - line "#MON?" - done - -_PartyMenuUseTMText: ; 89e08 (22:5e08) - text "Use TM on which" - line "#MON?" - done - -_PartyMenuSwapMonText: ; 89e1f (22:5e1f) - text "Move #MON" - line "where?" - done - -_PotionText: ; 89e31 (22:5e31) - TX_RAM $cd6d - db $0 - line "recovered by @" - TX_NUM wHPBarHPDifference, 2, 3 - text "!" - done - -_AntidoteText: ; 89e4b (22:5e4b) - TX_RAM $cd6d - text " was" - line "cured of poison!" - done - -_ParlyzHealText: ; 89e65 (22:5e65) - TX_RAM $cd6d - text "'s" - line "rid of paralysis!" - done - -_BurnHealText: ; 89e7d (22:5e7d) - TX_RAM $cd6d - text "'s" - line "burn was healed!" - done - -_IceHealText: ; 89e94 (22:5e94) - TX_RAM $cd6d - text " was" - line "defrosted!" - done - -_AwakeningText: ; 89ea8 (22:5ea8) - TX_RAM $cd6d - db $0 - line "woke up!" - done - -_FullHealText: ; 89eb6 (22:5eb6) - TX_RAM $cd6d - text "'s" - line "health returned!" - done - -_ReviveText: ; 89ecd (22:5ecd) - TX_RAM $cd6d - db $0 - line "is revitalized!" - done - -_RareCandyText: ; 89ee2 (22:5ee2) - TX_RAM $cd6d - text " grew" - line "to level @" - TX_NUM $d127, $1,$3 - text "!@@" - -_UnnamedText_17f23: ; 89efe (22:5efe) - text $52, " turned on" - line "the PC." - prompt - -_UnnamedText_17f28: ; 89f13 (22:5f13) - text "Accessed BILL's" - line "PC." - - para "Accessed #MON" - line "Storage System." - prompt - -_UnnamedText_17f2d: ; 89f45 (22:5f45) - text "Accessed someone's" - line "PC." - - para "Accessed #MON" - line "Storage System." - prompt - -_UnnamedText_17f32: ; 89f7a (22:5f7a) - text "Accessed my PC." - - para "Accessed Item" - line "Storage System." - prompt - -_UnnamedText_7b22: ; 89fa9 (22:5fa9) - text $52, " turned on" - line "the PC." - prompt - -_UnnamedText_7b27: ; 89fbe (22:5fbe) - text "What do you want" - line "to do?" - done - -_UnnamedText_7b2c: ; 89fd7 (22:5fd7) - text "What do you want" - line "to deposit?" - done - -_UnnamedText_7b31: ; 89ff5 (22:5ff5) - text "How many?" - done - -_UnnamedText_7b36: ; 8a000 (22:6000) - TX_RAM $cd6d - text " was" - line "stored via PC." - prompt - -_UnnamedText_7b3b: ; 8a018 (22:6018) - text "You have nothing" - line "to deposit." - prompt - -_UnnamedText_7b40: ; 8a036 (22:6036) - text "No room left to" - line "store items." - prompt - -_UnnamedText_7b45: ; 8a054 (22:6054) - text "What do you want" - line "to withdraw?" - done - -_UnnamedText_7b4a: ; 8a073 (22:6073) - text "How many?" - done - -_UnnamedText_7b4f: ; 8a07e (22:607e) - text "Withdrew" - line "@" - TX_RAM $cd6d - text "." - prompt - -_UnnamedText_7b54: ; 8a08f (22:608f) - text "There is nothing" - line "stored." - prompt - -_UnnamedText_7b59: ; 8a0a9 (22:60a9) - text "You can't carry" - line "any more items." - prompt - -_UnnamedText_7b5e: ; 8a0c9 (22:60c9) - text "What do you want" - line "to toss away?" - done - -_UnnamedText_7b63: ; 8a0e9 (22:60e9) - text "How many?" - done - -_UnnamedText_76683: ; 8a0f4 (22:60f4) - text "Accessed #MON" - line "LEAGUE's site." - - para "Accessed the HALL" - line "OF FAME List." - prompt - -_SwitchOnText: ; 0x8a131 - text "Switch on!" - prompt - -_WhatText: ; 0x8a13d - text "What?" - done - -_DepositWhichMonText: ; 0x8a144 - text "Deposit which" - line "#MON?" - done - -_MonWasStoredText: ; 0x8a159 - TX_RAM $cf4b - text " was" - line "stored in Box @" - TX_RAM $cd3d - text "." - prompt - -_CantDepositLastMonText: ; 0x8a177 - text "You can't deposit" - line "the last #MON!" - prompt - -_BoxFullText: ; 0x8a198 - text "Oops! This Box is" - line "full of #MON." - prompt - -_MonIsTakenOutText: ; 0x8a1b9 - TX_RAM $cf4b - text " is" - line "taken out." - cont "Got @" - TX_RAM $cf4b - text "." - prompt - -_NoMonText: ; 0x8a1d7 - text "What? There are" - line "no #MON here!" - prompt - -_CantTakeMonText: ; 0x8a1f6 - text "You can't take" - line "any more #MON." - - para "Deposit #MON" - line "first." - prompt - -_ReleaseWhichMonText: ; 0x8a228 - text "Release which" - line "#MON?" - done - -_OnceReleasedText: ; 0x8a23d - text "Once released," - line "@" - TX_RAM $cf4b - text " is" - cont "gone forever. OK?" - done - -_MonWasReleasedText: ; 0x8a268 - TX_RAM $cf4b - text " was" - line "released outside." - cont "Bye @" - -_UnnamedText_8a288: ; 8a288 (22:6288) - TX_RAM $cf4b - text "!" - prompt - -_RequireCoinCaseText: ; 8a28e (22:628e) - text "A COIN CASE is" - line "required!@@" - -_ExchangeCoinsForPrizesText: ; 8a2a9 (22:62a9) - text "We exchange your" - line "coins for prizes." - prompt - -_WhichPrizeText: ; 8a2cd (22:62cd) - text "Which prize do" - line "you want?" - done - -_HereYouGoText: ; 8a2e7 (22:62e7) - text "Here you go!@@" - -_SoYouWantPrizeText: ; 8a2f6 (22:62f6) - text "So, you want" - line "@" - TX_RAM $CD6D - text "?" - done - -_SorryNeedMoreCoins: ; 8a30b (22:630b) - text "Sorry, you need" - line "more coins.@@" - -_OopsYouDontHaveEnoughRoomText: ; 8a329 (22:6329) - text "Oops! You don't" - line "have enough room.@@" - -_OhFineThenText: ; 8a34c (22:634c) - text "Oh, fine then.@@" - -_UnnamedText_1e93b: ; 8a35d (22:635d) - text "Want to get your" - line "#DEX rated?" - done - -_UnnamedText_1e940: ; 8a37b (22:637b) - text "Closed link to" - line "PROF.OAK's PC.@@" - -_UnnamedText_1e946: ; 8a39a (22:639a) - text "Accessed PROF." - line "OAK's PC." - - para "Accessed #DEX" - line "Rating System." - prompt - -_UnnamedText_5d43: ; 8a3d0 (22:63d0) - text "Where would you" - line "like to go?" - done - -_UnnamedText_5d48: ; 8a3ed (22:63ed) - text "OK, please wait" - line "just a moment." - done - -_UnnamedText_5d4d: ; 8a40d (22:640d) - text "The link was" - line "canceled." - done - -INCLUDE "text/oakspeech.asm" - -_DoYouWantToNicknameText: ; 0x8a605 - text "Do you want to" - line "give a nickname" - cont "to @" - -UnnamedText_8a629: ; 8a629 (22:6629) - TX_RAM $cd6d - text "?" - done - -_UnnamedText_699f: ; 8a62f (22:662f) - text "Right! So your" - line "name is ", $52, "!" - prompt - -_UnnamedText_69e7: ; 8a64a (22:664a) - text "That's right! I" - line "remember now! His" - cont "name is ", $53, "!" - prompt - -_SSAnne8AfterBattleText2: ; 8a677 (22:6677) - TX_RAM $cd3f - text " and" - line "@" - TX_RAM $cd6d - text " will" - cont "be traded." - done - -_Char00Text: ; 8a696 (22:6696) - TX_NUM $FF8C,1,2 - text " ERROR." - done - -_Char55Text: ; 8a6a3 (22:66a3) - text $4B,"@@" - -INCLUDE "text/maps/digletts_cave_route_2_entrance.asm" -INCLUDE "text/maps/viridian_forest_exit.asm" -INCLUDE "text/maps/route_2_house.asm" -INCLUDE "text/maps/route_2_gate.asm" -INCLUDE "text/maps/viridian_forest_entrance.asm" -INCLUDE "text/maps/mt_moon_pokecenter.asm" -INCLUDE "text/maps/saffron_gates.asm" -INCLUDE "text/maps/daycare_1.asm" - - -SECTION "bank23",ROMX,BANK[$23] - -INCLUDE "text/maps/daycare_2.asm" -INCLUDE "text/maps/underground_path_route_5_entrance.asm" -INCLUDE "text/maps/underground_path_route_6_entrance.asm" -INCLUDE "text/maps/underground_path_route_7_entrance.asm" -INCLUDE "text/maps/underground_path_route_7_entrance_unused.asm" -INCLUDE "text/maps/underground_path_route_8_entrance.asm" -INCLUDE "text/maps/rock_tunnel_pokecenter.asm" -INCLUDE "text/maps/rock_tunnel_b1f.asm" -INCLUDE "text/maps/power_plant.asm" -INCLUDE "text/maps/route_11_gate.asm" -INCLUDE "text/maps/route_11_gate_upstairs.asm" -INCLUDE "text/maps/digletts_cave_route_11_entrance.asm" -INCLUDE "text/maps/route_12_gate.asm" -INCLUDE "text/maps/route_12_gate_upstairs.asm" -INCLUDE "text/maps/route_12_house.asm" -INCLUDE "text/maps/route_15_gate.asm" -INCLUDE "text/maps/route_15_gate_upstairs.asm" -INCLUDE "text/maps/route_16_gate.asm" -INCLUDE "text/maps/route_16_gate_upstairs.asm" -INCLUDE "text/maps/route_16_house.asm" -INCLUDE "text/maps/route_18_gate.asm" -INCLUDE "text/maps/route_18_gate_upstairs.asm" -INCLUDE "text/maps/pokemon_league_gate.asm" -INCLUDE "text/maps/victory_road_2f.asm" -INCLUDE "text/maps/bills_house.asm" -INCLUDE "text/maps/route_1.asm" -INCLUDE "text/maps/route_2.asm" -INCLUDE "text/maps/route_3.asm" -INCLUDE "text/maps/route_4.asm" -INCLUDE "text/maps/route_5.asm" -INCLUDE "text/maps/route_6.asm" -INCLUDE "text/maps/route_7.asm" -INCLUDE "text/maps/route_8.asm" -INCLUDE "text/maps/route_9.asm" -INCLUDE "text/maps/route_10.asm" -INCLUDE "text/maps/route_11_1.asm" - - -SECTION "bank24",ROMX,BANK[$24] - -INCLUDE "text/maps/route_11_2.asm" -INCLUDE "text/maps/route_12.asm" -INCLUDE "text/maps/route_13.asm" -INCLUDE "text/maps/route_14.asm" -INCLUDE "text/maps/route_15.asm" -INCLUDE "text/maps/route_16.asm" -INCLUDE "text/maps/route_17.asm" -INCLUDE "text/maps/route_18.asm" -INCLUDE "text/maps/route_19.asm" -INCLUDE "text/maps/route_20.asm" -INCLUDE "text/maps/route_21.asm" -INCLUDE "text/maps/route_22.asm" -INCLUDE "text/maps/route_23.asm" -INCLUDE "text/maps/route_24_1.asm" - - -SECTION "bank25",ROMX,BANK[$25] - -INCLUDE "text/maps/route_24_2.asm" -INCLUDE "text/maps/route_25.asm" - -_FileDataDestroyedText: ; 945f1 (25:45f1) - text "The file data is" - line "destroyed!" - prompt - -_WouldYouLikeToSaveText: ; 9460e (25:460e) - text "Would you like to" - line "SAVE the game?" - done - -_GameSavedText: ; 94630 (25:4630) - text $52, " saved" - line "the game!" - done - -_OlderFileWillBeErasedText: ; 94643 (25:4643) - text "The older file" - line "will be erased to" - cont "save. Okay?" - done - -_UnnamedText_73909: ; 94671 (25:4671) - text "When you change a" - line "#MON BOX, data" - cont "will be saved." - - para "Is that okay?" - done - -_UnnamedText_739d4: ; 946b0 (25:46b0) - text "Choose a" - line $4a, " BOX.@@" - -_UnnamedText_3af3e: ; 946c2 (25:46c2) - TX_RAM $cf4b - text " evolved" - done - -_UnnamedText_3af43: ; 946cf (25:46cf) - db $0 - line "into @" - TX_RAM $cd6d - text "!" - done - -_UnnamedText_3af48: ; 946dd (25:46dd) - text "Huh? @" - TX_RAM $cf4b - db $0 - line "stopped evolving!" - prompt - -_UnnamedText_3af4d: ; 946fb (25:46fb) - text "What? @" - TX_RAM $cf4b - db $0 - line "is evolving!" - done - -_UnnamedText_3f245: ; 94715 (25:4715) - text $59 - line "fell asleep!" - prompt - -_UnnamedText_3f24a: ; 94725 (25:4725) - text $59, "'s" - line "already asleep!" - prompt - -_UnnamedText_3f2df: ; 94739 (25:4739) - text $59 - line "was poisoned!" - prompt - -_UnnamedText_3f2e4: ; 9474a (25:474a) - text $59, "'s" - line "badly poisoned!" - prompt - -_UnnamedText_3f3d8: ; 9475e (25:475e) - text $59 - line "was burned!" - prompt - -_UnnamedText_3f3dd: ; 9476d (25:476d) - text $59 - line "was frozen solid!" - prompt - -_UnnamedText_3f423: ; 94782 (25:4782) - text "Fire defrosted" - line $59, "!" - prompt - -_UnnamedText_3f528: ; 94795 (25:4795) - text $5a, "'s" - line "@" - TX_RAM $cf4b - text "@@" - -_UnnamedText_3f542: ; 947a0 (25:47a0) - text $4c, "greatly@@" - -_UnnamedText_3f547: ; 947ab (25:47ab) - text " rose!" - prompt - -_UnnamedText_3f661: ; 947b3 (25:47b3) - text $59, "'s" - line "@" - TX_RAM $cf4b - text "@@" - -_UnnamedText_3f67e: ; 947be (25:47be) - text $4c, "greatly@@" - -_UnnamedText_3f683: ; 947c9 (25:47c9) - text " fell!" - prompt - -_UnnamedText_3f802: ; 947d1 (25:47d1) - text $5a - line "ran from battle!" - prompt - -_UnnamedText_3f807: ; 947e5 (25:47e5) - text $59 - line "ran away scared!" - prompt - -_UnnamedText_3f80c: ; 947f9 (25:47f9) - text $59 - line "was blown away!" - prompt - -_UnnamedText_3f8c8: ; 9480c (25:480c) - text $5a, "@@" - -_UnnamedText_3f8f9: ; 94810 (25:4810) - db $0 - line "made a whirlwind!" - prompt - -_UnnamedText_3f8fe: ; 94824 (25:4824) - db $0 - line "took in sunlight!" - prompt - -_UnnamedText_3f903: ; 94838 (25:4838) - db $0 - line "lowered its head!" - prompt - -_UnnamedText_3f908: ; 9484c (25:484c) - db $0 - line "is glowing!" - prompt - -_UnnamedText_3f90d: ; 9485a (25:485a) - db $0 - line "flew up high!" - prompt - -_UnnamedText_3f912: ; 9486a (25:486a) - db $0 - line "dug a hole!" - prompt - -_UnnamedText_3f9a1: ; 94878 (25:4878) - text $59 - line "became confused!" - prompt - -_UnnamedText_3fa77: ; 9488c (25:488c) - text $5a - line "learned" - cont "@" - TX_RAM $cd6d - text "!" - prompt - -_UnnamedText_3fb09: ; 9489e (25:489e) - text $59, "'s" - line "@" - TX_RAM $cd6d - text " was" - cont "disabled!" - prompt - -_UnnamedText_3fb3e: ; 948b6 (25:48b6) - text "Nothing happened!" - prompt - -_UnnamedText_3fb49: ; 948c9 (25:48c9) - text "No effect!" - prompt - -_UnnamedText_3fb59: ; 948d5 (25:48d5) - text "But, it failed! " - prompt - -_UnnamedText_3fb64: ; 948e7 (25:48e7) - text "It didn't affect" - line $59, "!" - prompt - -_UnnamedText_3fb69: ; 948fb (25:48fb) - text $59 - line "is unaffected!" - prompt - -_UnnamedText_3fb74: ; 9490d (25:490d) - text $59, "'s" - line "paralyzed! It may" - cont "not attack!" - prompt - -_UnnamedText_17e1d: ; 9492f (25:492f) - text "It created a" - line "SUBSTITUTE!" - prompt - -_UnnamedText_17e22: ; 94949 (25:4949) - text $5a - line "has a SUBSTITUTE!" - prompt - -_UnnamedText_17e27: ; 9495e (25:495e) - text "Too weak to make" - line "a SUBSTITUTE!" - prompt - -_UnnamedText_2ff04: ; 9497e (25:497e) - text "Coins scattered" - line "everywhere!" - prompt - -_UnnamedText_27fb3: ; 9499b (25:499b) - text $5a, "'s" - line "getting pumped!" - prompt - -_UnnamedText_2bef2: ; 949af (25:49af) - text $59 - line "was seeded!" - prompt - -_UnnamedText_2bef7: ; 949be (25:49be) - text $59 - line "evaded attack!" - prompt - -_UnnamedText_1399e: ; 949d0 (25:49d0) - text $5a, "'s" - line "hit with recoil!" - prompt - -_UnnamedText_139cd: ; 949e5 (25:49e5) - text "Converted type to" - line $59, "'s!" - prompt - -_UnnamedText_13a53: ; 949fc (25:49fc) - text "All STATUS changes" - line "are eliminated!" - prompt - -_UnnamedText_3baa2: ; 94a20 (25:4a20) - text $5a - line "started sleeping!" - done - -_UnnamedText_3baa7: ; 94a35 (25:4a35) - text $5a - line "fell asleep and" - cont "became healthy!" - done - -_UnnamedText_3baac: ; 94a58 (25:4a58) - text $5a - line "regained health!" - prompt - -_UnnamedText_3bb92: ; 94a6c (25:4a6c) - text $5a - line "transformed into" - cont "@" - TX_RAM $cd6d - text "!" - prompt - -_UnnamedText_3bbd7: ; 94a87 (25:4a87) - text $5a, "'s" - line "protected against" - cont "special attacks!" - prompt - -_UnnamedText_3bbdc: ; 94aae (25:4aae) - text $5a - line "gained armor!" - prompt - -_UnnamedText_33f52: ; 94abf (25:4abf) - text $5a, "'s" - line "shrouded in mist!" - prompt - -_UnnamedText_78dc: ; 94ad5 (25:4ad5) - text "Sucked health from" - line $59, "!" - prompt - -_UnnamedText_78e1: ; 94aec (25:4aec) - text $59, "'s" - line "dream was eaten!" - prompt - -_BattleCenterMText1: ; 94b01 (25:4b01) - text "!" - done - -_TradeCenterMText1: ; 94b04 (25:4b04) - text "!" - done - -INCLUDE "text/maps/reds_house_1f.asm" -INCLUDE "text/maps/blues_house.asm" -INCLUDE "text/maps/oaks_lab.asm" -INCLUDE "text/maps/viridian_mart.asm" -INCLUDE "text/maps/school.asm" -INCLUDE "text/maps/viridian_house.asm" -INCLUDE "text/maps/viridian_gym.asm" -INCLUDE "text/maps/museum_1f.asm" -INCLUDE "text/maps/museum_2f.asm" -INCLUDE "text/maps/pewter_gym_1.asm" - - -SECTION "bank26",ROMX,BANK[$26] - -INCLUDE "text/maps/pewter_gym_2.asm" -INCLUDE "text/maps/pewter_house_1.asm" -INCLUDE "text/maps/pewter_mart.asm" -INCLUDE "text/maps/pewter_house_2.asm" -INCLUDE "text/maps/pewter_pokecenter.asm" -INCLUDE "text/maps/cerulean_trashed_house.asm" -INCLUDE "text/maps/cerulean_trade_house.asm" -INCLUDE "text/maps/cerulean_pokecenter.asm" -INCLUDE "text/maps/cerulean_gym.asm" -INCLUDE "text/maps/bike_shop.asm" -INCLUDE "text/maps/cerulean_mart.asm" -INCLUDE "text/maps/cerulean_badge_house.asm" -INCLUDE "text/maps/lavender_pokecenter.asm" -INCLUDE "text/maps/pokemon_tower_1f.asm" -INCLUDE "text/maps/pokemon_tower_2f.asm" -INCLUDE "text/maps/pokemon_tower_3f.asm" -INCLUDE "text/maps/pokemon_tower_4f.asm" -INCLUDE "text/maps/pokemon_tower_5f.asm" -INCLUDE "text/maps/pokemon_tower_6f.asm" -INCLUDE "text/maps/pokemon_tower_7f.asm" -INCLUDE "text/maps/fujis_house.asm" -INCLUDE "text/maps/lavender_mart.asm" -INCLUDE "text/maps/lavender_house.asm" -INCLUDE "text/maps/name_rater.asm" -INCLUDE "text/maps/vermilion_pokecenter.asm" -INCLUDE "text/maps/fan_club.asm" -INCLUDE "text/maps/vermilion_mart.asm" -INCLUDE "text/maps/vermilion_gym_1.asm" - - -SECTION "bank27",ROMX,BANK[$27] - -INCLUDE "text/maps/vermilion_gym_2.asm" -INCLUDE "text/maps/vermilion_house.asm" -INCLUDE "text/maps/vermilion_dock.asm" -INCLUDE "text/maps/vermilion_fishing_house.asm" -INCLUDE "text/maps/celadon_dept_store_1f.asm" -INCLUDE "text/maps/celadon_dept_store_2f.asm" -INCLUDE "text/maps/celadon_dept_store_3f.asm" -INCLUDE "text/maps/celadon_dept_store_4f.asm" -INCLUDE "text/maps/celadon_dept_store_roof.asm" -INCLUDE "text/maps/celadon_mansion_1f.asm" -INCLUDE "text/maps/celadon_mansion_2f.asm" -INCLUDE "text/maps/celadon_mansion_3f.asm" -INCLUDE "text/maps/celadon_mansion_4f_outside.asm" -INCLUDE "text/maps/celadon_mansion_4f_inside.asm" -INCLUDE "text/maps/celadon_pokecenter.asm" -INCLUDE "text/maps/celadon_gym.asm" -INCLUDE "text/maps/celadon_game_corner.asm" -INCLUDE "text/maps/celadon_dept_store_5f.asm" -INCLUDE "text/maps/celadon_prize_room.asm" -INCLUDE "text/maps/celadon_diner.asm" -INCLUDE "text/maps/celadon_house.asm" -INCLUDE "text/maps/celadon_hotel.asm" -INCLUDE "text/maps/fuchsia_mart.asm" -INCLUDE "text/maps/fuchsia_house.asm" -INCLUDE "text/maps/fuchsia_pokecenter.asm" -INCLUDE "text/maps/wardens_house.asm" -INCLUDE "text/maps/safari_zone_entrance.asm" -INCLUDE "text/maps/fuchsia_gym_1.asm" - - -SECTION "bank28",ROMX,BANK[$28] - -INCLUDE "text/maps/fuchsia_gym_2.asm" -INCLUDE "text/maps/fuchsia_meeting_room.asm" -INCLUDE "text/maps/fuchsia_fishing_house.asm" -INCLUDE "text/maps/mansion_1f.asm" -INCLUDE "text/maps/cinnabar_gym.asm" -INCLUDE "text/maps/cinnabar_lab.asm" -INCLUDE "text/maps/cinnabar_lab_trade_room.asm" -INCLUDE "text/maps/cinnabar_lab_metronome_room.asm" -INCLUDE "text/maps/cinnabar_lab_fossil_room.asm" -INCLUDE "text/maps/cinnabar_pokecenter.asm" -INCLUDE "text/maps/cinnabar_mart.asm" -INCLUDE "text/maps/indigo_plateau_lobby.asm" -INCLUDE "text/maps/copycats_house_1f.asm" -INCLUDE "text/maps/copycats_house_2f.asm" -INCLUDE "text/maps/fighting_dojo.asm" -INCLUDE "text/maps/saffron_gym.asm" -INCLUDE "text/maps/saffron_house.asm" -INCLUDE "text/maps/saffron_mart.asm" -INCLUDE "text/maps/silph_co_1f.asm" -INCLUDE "text/maps/saffron_pokecenter.asm" -INCLUDE "text/maps/mr_psychics_house.asm" - -_PokemartGreetingText: ; a259c (28:659c) - text "Hi there!" - next "May I help you?" - done - -_PokemonFaintedText: ; a25b7 (28:65b7) - TX_RAM $cd6d - db $0 - line "fainted!" - done - -_PlayerBlackedOutText: ; a25c5 (28:65c5) - text $52, " is out of" - line "useable #MON!" - - para $52, " blacked" - line "out!" - prompt - -_RepelWoreOffText: ; a25ef (28:65ef) - text "REPEL's effect" - line "wore off." - done - -_PokemartBuyingGreetingText: ; a2608 (28:6608) - text "Take your time." - done - -_PokemartTellBuyPrice: ; a2619 (28:6619) - TX_RAM $cf4b - text "?" - line "That will be" - cont "¥@" - db $2, $9f, $ff, $c3 - text ". OK?" - done - -_PokemartBoughtItemText: ; a2639 (28:6639) - text "Here you are!" - line "Thank you!" - prompt - -_PokemartNotEnoughMoneyText: ; a2653 (28:6653) - text "You don't have" - line "enough money." - prompt - -_PokemartItemBagFullText: ; a2670 (28:6670) - text "You can't carry" - line "any more items." - prompt - -_PokemonSellingGreetingText: ; a2690 (28:6690) - text "What would you" - line "like to sell?" - done - -_PokemartTellSellPrice: ; a26ae (28:66ae) - text "I can pay you" - line "¥@" - db $2, $9f, $ff, $c3 ; XXX - text " for that." - done - -_PokemartItemBagEmptyText: ; a26cf (28:66cf) - text "You don't have" - line "anything to sell." - prompt - -_PokemartUnsellableItemText: ; a26f0 (28:66f0) - text "I can't put a" - line "price on that." - prompt - -_PokemartThankYouText: ; a270d (28:670d) - text "Thank you!" - done - -_PokemartAnythingElseText: ; a2719 (28:6719) - text "Is there anything" - line "else I can do?" - done - -UnnamedText_a273b: ; a273b (28:673b) - TX_RAM $d036 - text " learned" - line "@" - TX_RAM $cf4b - text "!@@" - -_UnnamedText_6fb4: ; a2750 (28:6750) - text "Which move should" - next "be forgotten?" - done - -_UnnamedText_6fb9: ; a2771 (28:6771) - text "Abandon learning" - line "@" - -UnnamedText_a2784: ; a2784 (28:6784) - TX_RAM $cf4b - text "?" - done - -_UnnamedText_6fbe: ; a278a (28:678a) - TX_RAM $d036 - db $0 - line "did not learn" - cont "@" - TX_RAM $cf4b - text "!" - prompt - -_UnnamedText_6fc3: ; a27a4 (28:67a4) - TX_RAM $d036 - text " is" - line "trying to learn" - cont "@" - TX_RAM $cf4b - text "!" - - para "But, @" - TX_RAM $d036 - db $0 - line "can't learn more" - cont "than 4 moves!" - - para "Delete an older" - line "move to make room" - cont "for @" - TX_RAM $cf4b - text "?" - done - -_UnnamedText_6fc8: ; a2819 (28:6819) - text "1, 2 and...@@" - -_UnnamedText_6fd7: ; a2827 (28:6827) - text " Poof!@@" - -_UnnamedText_6fdc: ; a2830 (28:6830) - db $0 - para "@" - TX_RAM $d036 - text " forgot" - line "@" - TX_RAM $cd6d - text "!" - - para "And..." - prompt - -_UnnamedText_6fe1: ; a284d (28:684d) - text "HM techniques" - line "can't be deleted!" - prompt - -_PokemonCenterWelcomeText: ; a286d (28:686d) - text "Welcome to our" - line "#MON CENTER!" - - para "We heal your" - line "#MON back to" - cont "perfect health!" - prompt - -_ShallWeHealYourPokemonText: ; a28b4 (28:68b4) - text "Shall we heal your" - line "#MON?" - done - -_NeedYourPokemonText: ; a28ce (28:68ce) - text "OK. We'll need" - line "your #MON." - done - -_PokemonFightingFitText: ; a28e8 (28:68e8) - text "Thank you!" - line "Your #MON are" - cont "fighting fit!" - prompt - -_PokemonCenterFarewellText: ; a2910 (28:6910) - text "We hope to see" - line "you again!" - done - -_CableClubNPCText7: ; a292b (28:692b) - text "This area is" - line "reserved for 2" - cont "friends who are" - cont "linked by cable." - done - -_CableClubNPCText1: ; a2969 (28:6969) - text "Welcome to the" - line "Cable Club!" - done - -_CableClubNPCText2: ; a2985 (28:6985) - text "Please apply here." - - para "Before opening" - line "the link, we have" - cont "to save the game." - done - -_CableClubNPCText3: ; a29cc (28:69cc) - text "Please wait.@@" - -_CableClubNPCText4: ; a29db (28:69db) - text "The link has been" - line "closed because of" - cont "inactivity." - - para "Please contact" - line "your friend and" - cont "come again!" - done - -SECTION "bank29",ROMX,BANK[$29] - -_CableClubNPCText5: ; a4000 (29:4000) - text "Please come again!" - done - -_CableClubNPCText6: ; a4014 (29:4014) - text "We're making" - line "preparations." - cont "Please wait." - done - -_UsedStrengthText: ; a403c (29:403c) - TX_RAM $cd6d - text " used" - line "STRENGTH.@@" - -_UnnamedText_cdbb: ; a4051 (29:4051) - TX_RAM $cd6d - text " can" - line "move boulders." - prompt - -_UnnamedText_cdfa: ; a4069 (29:4069) - text "The current is" - line "much too fast!" - prompt - -_UnnamedText_cdff: ; a4088 (29:4088) - text "Cycling is fun!" - line "Forget SURFing!" - prompt - -_FlashLightsAreaText: ; a40a9 (29:40a9) - text "A blinding FLASH" - line "lights the area!" - prompt - -_WarpToLastPokemonCenterText: ; a40cc (29:40cc) - text "Warp to the last" - line "#MON CENTER." - done - -_CannotUseTeleportNowText: ; a40eb (29:40eb) - TX_RAM $cd6d - text " can't" - line "use TELEPORT now." - prompt - -_CannotFlyHereText: ; a4107 (29:4107) - TX_RAM $cd6d - text " can't" - line "FLY here." - prompt - -_NotHealthyEnoughText: ; a411b (29:411b) - text "Not healthy" - line "enough." - prompt - -_NewBadgeRequiredText: ; a4130 (29:4130) - text "No! A new BADGE" - line "is required." - prompt - -_CannotUseItemsHereText: ; a414e (29:414e) - text "You can't use items" - line "here." - prompt - -_CannotGetOffHereText: ; a4168 (29:4168) - text "You can't get off" - line "here." - prompt - -_UnnamedText_4fe39: ; a4180 (29:4180) - text $52, " got" - line "@" - TX_RAM $cd6d - text "!@@" - -_UnnamedText_4fe3f: ; a418f (29:418f) - text "There's no more" - line "room for #MON!" - cont "@" - TX_RAM W_BOXMON1NAME - text " was" - cont "sent to #MON" - cont "BOX @" - TX_RAM $cf4b - text " on PC!" - done - -_UnnamedText_4fe44: ; a41d6 (29:41d6) - text "There's no more" - line "room for #MON!" - - para "The #MON BOX" - line "is full and can't" - cont "accept any more!" - - para "Change the BOX at" - line "a #MON CENTER!" - done - -INCLUDE "text/maps/pallet_town.asm" -INCLUDE "text/maps/viridian_city.asm" -INCLUDE "text/maps/pewter_city.asm" -INCLUDE "text/maps/cerulean_city.asm" -INCLUDE "text/maps/lavender_town.asm" -INCLUDE "text/maps/vermilion_city.asm" -INCLUDE "text/maps/celadon_city.asm" -INCLUDE "text/maps/fuchsia_city.asm" -INCLUDE "text/maps/cinnabar_island.asm" -INCLUDE "text/maps/saffron_city.asm" - -_ItemUseBallText00: ; a6729 (29:6729) - text "It dodged the" - line "thrown BALL!" - - para "This #MON" - line "can't be caught!" - prompt - -_ItemUseBallText01: ; a675f (29:675f) - text "You missed the" - line "#MON!" - prompt - -_ItemUseBallText02: ; a6775 (29:6775) - text "Darn! The #MON" - line "broke free!" - prompt - -_ItemUseBallText03: ; a6791 (29:6791) - text "Aww! It appeared" - line "to be caught! " - prompt - -_ItemUseBallText04: ; a67b2 (29:67b2) - text "Shoot! It was so" - line "close too!" - prompt - -_ItemUseBallText05: ; a67cf (29:67cf) - text "All right!" - line "@" - TX_RAM W_ENEMYMONNAME - text " was" - cont "caught!@@" - -_ItemUseBallText07: ; a67ee (29:67ee) - TX_RAM W_BOXMON1NAME - text " was" - line "transferred to" - cont "BILL's PC!" - prompt - -_ItemUseBallText08: ; a6810 (29:6810) - TX_RAM W_BOXMON1NAME - text " was" - line "transferred to" - cont "someone's PC!" - prompt - -_ItemUseBallText06: ; a6835 (29:6835) - text "New #DEX data" - line "will be added for" - cont "@" - TX_RAM W_ENEMYMONNAME - text "!@@" - -_SurfingGotOnText: ; a685e (29:685e) - text $52, " got on" - line "@" - TX_RAM $cd6d - text "!" - prompt - -_SurfingNoPlaceToGetOffText: ; a686f (29:686f) - text "There's no place" - line "to get off!" - prompt - -_VitaminStatRoseText: ; a688c (29:688c) - TX_RAM $cd6d - text "'s" - line "@" - TX_RAM $cf4b - text " rose." - prompt - -_VitaminNoEffectText: ; a689e (29:689e) - text "It won't have any" - line "effect." - prompt - -_ThrewBaitText: ; a68b8 (29:68b8) - text $52, " threw" - line "some BAIT." - done - -_ThrewRockText: ; a68cc (29:68cc) - text $52, " threw a" - line "ROCK." - done - -_PlayedFluteNoEffectText: ; a68dd (29:68dd) - text "Played the #" - line "FLUTE." - - para "Now, that's a" - line "catchy tune!" - prompt - -_FluteWokeUpText: ; a690c (29:690c) - text "All sleeping" - line "#MON woke up." - prompt - -_PlayedFluteHadEffectText: ; a6928 (29:6928) - text $52, " played the" - line "# FLUTE.@@" - -_CoinCaseNumCoinsText: ; a6940 (29:6940) - text "Coins" - line "@" - db $2, $a4, $d5, $c2 ; print BCD number - text " " - prompt - -_ItemfinderFoundItemText: ; a694f (29:694f) - text "Yes! ITEMFINDER" - line "indicates there's" - cont "an item nearby." - prompt - -_ItemfinderFoundNothingText: ; a6981 (29:6981) - text "Nope! ITEMFINDER" - line "isn't responding." - prompt - -_RaisePPWhichTechniqueText: ; a69a4 (29:69a4) - text "Raise PP of which" - line "technique?" - done - -_RestorePPWhichTechniqueText: ; a69c2 (29:69c2) - text "Restore PP of" - line "which technique?" - done - -_PPMaxedOutText: ; a69e2 (29:69e2) - TX_RAM $cf4b - text "'s PP" - line "is maxed out." - prompt - -_PPIncreasedText: ; a69f9 (29:69f9) - TX_RAM $cf4b - text "'s PP" - line "increased." - prompt - -_PPRestoredText: ; a6a0d (29:6a0d) - text "PP was restored." - prompt - -_BootedUpTMText: ; a6a1f (29:6a1f) - text "Booted up a TM!" - prompt - -_BootedUpHMText: ; a6a30 (29:6a30) - text "Booted up an HM!" - prompt - -_TeachMachineMoveText: ; a6a42 (29:6a42) - text "It contained" - line "@" - TX_RAM $cf4b - text "!" - - para "Teach @" - TX_RAM $cf4b - db $0 - line "to a #MON?" - done - -_MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) - TX_RAM $cd6d - text " is not" - line "compatible with" - cont "@" - TX_RAM $cf4b - text "." - - para "It can't learn" - line "@" - TX_RAM $cf4b - text "." - prompt - -_ItemUseNotTimeText: ; a6aa6 (29:6aa6) - text "OAK: ", $52, "!" - line "This isn't the" - cont "time to use that! " - prompt - -_ItemUseNotYoursToUseText: ; a6ad0 (29:6ad0) - text "This isn't yours" - line "to use!" - prompt - -_ItemUseNoEffectText: ; a6ae9 (29:6ae9) - text "It won't have any" - line "effect." - prompt - -_ThrowBallAtTrainerMonText1: ; a6b03 (29:6b03) - text "The trainer" - line "blocked the BALL!" - prompt - -_ThrowBallAtTrainerMonText2: ; a6b22 (29:6b22) - text "Don't be a thief!" - prompt - -_NoCyclingAllowedHereText: ; a6b34 (29:6b34) - text "No cycling" - next "allowed here." - prompt - -_NoSurfingHereText: ; a6b4e (29:6b4e) - text "No SURFing on" - line "@" - TX_RAM $cd6d - text " here!" - prompt - -_BoxFullCannotThrowBallText: ; a6b69 (29:6b69) - text "The #MON BOX" - line "is full! Can't" - cont "use that item!" - prompt - -SECTION "bank2A",ROMX,BANK[$2A] - -_ItemUseText001: ; a8000 (2a:4000) - text $52," used@@" - -_ItemUseText002: ; a8009 (2a:4009) - TX_RAM $cf4b - text "!" - done - -_GotOnBicycleText1: ; a800f (2a:400f) - text $52, " got on the@@" - -_GotOnBicycleText2: ; a801e (2a:401e) - TX_RAM $cf4b - text "!" - prompt - -_GotOffBicycleText1: ; a8024 (2a:4024) - text $52, " got off@@" - -_GotOffBicycleText2: ; a8030 (2a:4030) - text "the @" - TX_RAM $cf4b - text "." - prompt - -_ThrewAwayItemText: ; a803c (2a:403c) - text "Threw away" - line "@" - -UnnamedText_a8049: ; a8049 (2a:4049) - TX_RAM $cd6d - text "." - prompt - -_IsItOKToTossItemText: ; a804f (2a:404f) - text "Is it OK to toss" - line "@" - TX_RAM $cf4b - text "?" - prompt - -_TooImportantToTossText: ; a8068 (2a:4068) - text "That's too impor-" - line "tant to toss!" - prompt - -_UnnamedText_2fe3b: ; a8088 (2a:4088) - TX_RAM $cd6d - text " knows" - line "@" - TX_RAM $cf4b - text "!" - prompt - -_UnnamedText_71d88: ; a809a (2a:409a) - text "Okay, connect the" - line "cable like so!" - prompt - -_UnnamedText_71d8d: ; a80bc (2a:40bc) - text $52, " traded" - line "@" - TX_RAM $cd13 - text " for" - cont "@" - TX_RAM $cd1e - text "!@@" - -_UnnamedText_71d94: ; a80d8 (2a:40d8) - text "I'm looking for" - line "@" - TX_RAM $cd13 - text "! Wanna" - - para "trade one for" - line "@" - TX_RAM $cd1e - text "? " - done - -_UnnamedText_71d99: ; a810b (2a:410b) - text "Awww!" - line "Oh well..." - done - -_UnnamedText_71d9e: ; a811d (2a:411d) - text "What? That's not" - line "@" - -UnnamedText_a812f: ; a812f (2a:412f) - TX_RAM $cd13 - text "!" - - para "If you get one," - line "come back here!" - done - -_UnnamedText_71da3: ; a8155 (2a:4155) - text "Hey thanks!" - done - -_UnnamedText_71da8: ; a8162 (2a:4162) - text "Isn't my old" - line "@" - TX_RAM $cd1e - text " great?" - done - -_UnnamedText_71dad: ; a817c (2a:417c) - text "Hello there! Do" - line "you want to trade" - - para "your @" - TX_RAM $cd13 - db $0 - line "for @" - TX_RAM $cd1e - text "?" - done - -_UnnamedText_71db2: ; a81b5 (2a:41b5) - text "Well, if you" - line "don't want to..." - done - -_UnnamedText_71db7: ; a81d3 (2a:41d3) - text "Hmmm? This isn't" - line "@" - TX_RAM $cd13 - text "." - - para "Think of me when" - line "you get one." - done - -_UnnamedText_71dbc: ; a8209 (2a:4209) - text "Thanks!" - done - -_UnnamedText_71dc1: ; a8212 (2a:4212) - text "The @" - TX_RAM $cd13 - text " you" - line "traded to me" - - para "went and evolved!" - done - -_UnnamedText_71dc6: ; a8240 (2a:4240) - text "Hi! Do you have" - line "@" - TX_RAM $cd13 - text "?" - - para "Want to trade it" - line "for @" - TX_RAM $cd1e - text "?" - done - -_UnnamedText_71dcb: ; a8274 (2a:4274) - text "That's too bad." - done - -_UnnamedText_71dd0: ; a8284 (2a:4284) - text "...This is no" - line "@" - TX_RAM $cd13 - text "." - - para "If you get one," - line "trade it with me!" - done - -_UnnamedText_71dd5: ; a82bc (2a:42bc) - text "Thanks pal!" - done - -_UnnamedText_71dda: ; a82c9 (2a:42c9) - text "How is my old" - line "@" - TX_RAM $cd1e - text "?" - - para "My @" - TX_RAM $cd13 - text " is" - line "doing great!" - done - -_UnnamedText_ef7d ; a82f8 (2a:42f8) - text "There isn't" - line "anything to CUT!" - prompt - -_UsedCutText: ; a8315 (2a:4315) - TX_RAM $cd6d - text " hacked" - line "away with CUT!" - prompt - -SECTION "bank2B",ROMX,BANK[$2B] - -INCLUDE "text/pokedex.asm" - -SECTION "bank2C",ROMX,BANK[$2C] - -INCLUDE "text/move_names.asm" +INCLUDE "text.asm" diff --git a/text.asm b/text.asm new file mode 100644 index 00000000..c2628b3b --- /dev/null +++ b/text.asm @@ -0,0 +1,3197 @@ +SECTION "bank20",ROMX,BANK[$20] + +_CardKeySuccessText1: ; 80000 (20:4000) + text "Bingo!@@" + +_CardKeySuccessText2: ; 80009 (20:4009) + db $0 + line "The CARD KEY" + cont "opened the door!" + done + +_CardKeyFailText: ; 80029 (20:4029) + text "Darn! It needs a" + line "CARD KEY!" + done + +_UnnamedText_33cf: ; 80045 (20:4045) + TX_RAM $cd6d + text ": @@" + +_UnnamedText_70847: ; 8004d (20:404d) + text "Not even a nibble!" + prompt + +_UnnamedText_7084c: ; 80061 (20:4061) + text "Looks like there's" + line "nothing here." + prompt + +_UnnamedText_70851: ; 80082 (20:4082) + text "Oh!" + line "It's a bite!" + prompt + +_UnnamedText_24db: ; 80093 (20:4093) + text "!" + done + +_UnnamedText_24e0: ; 80096 (20:4096) + text "Ground rose up" + line "somewhere!" + done + +_BoulderText: ; 800b1 (20:40b1) + text "This requires" + line "STRENGTH to move!" + done + +_MartSignText: ; 800d2 (20:40d2) + text "All your item" + line "needs fulfilled!" + cont "#MON MART" + done + +_PokeCenterSignText: ; 800fc (20:40fc) + text "Heal Your #MON!" + line "#MON CENTER" + done + +_FoundItemText: ; 80119 (20:4119) + text $52, " found" + line "@" + TX_RAM $cf4b + text "!@@" + +_NoMoreRoomForItemText: ; 8012a (20:412a) + text "No more room for" + line "items!" + done + +_UnnamedText_59091: ; 80143 (20:4143) + text "Hi! Remember me?" + line "I'm PROF.OAK's" + cont "AIDE!" + + para "If you caught @" + TX_NUM $ffdb, 1, 3 + db $0 + line "kinds of #MON," + cont "I'm supposed to" + cont "give you an" + cont "@" + TX_RAM $cc5b + text "!" + + para "So, ", $52, "! Have" + line "you caught at" + cont "least @" + TX_NUM $ffdb, 1, 3 + text " kinds of" + cont "#MON?" + done + +_UnnamedText_59096: ; 801e4 (20:41e4) + text "Let's see..." + line "Uh-oh! You have" + cont "caught only @" + +UnnamedText_8020e: ; 8020e (20:420e) + TX_NUM $ffdd, 1, 3 + db $0 + cont "kinds of #MON!" + + para "You need @" + TX_NUM $ffdb, 1, 3 + text " kinds" + line "if you want the" + cont "@" + TX_RAM $cc5b + text "." + done + +_UnnamedText_5909b: ; 80250 (20:4250) + text "Oh. I see." + + para "When you get @" + TX_NUM $ffdb, 1, 3 + db $0 + line "kinds, come back" + cont "for @" + TX_RAM $cc5b + text "." + done + +_UnnamedText_590a0: ; 8028c (20:428c) + text "Great! You have" + line "caught @" + TX_NUM $ffdd, 1, 3 + text " kinds " + cont "of #MON!" + cont "Congratulations!" + + para "Here you go!" + prompt + +_UnnamedText_590a5: ; 802d9 (20:42d9) + text $52, " got the" + line "@" + TX_RAM $cc5b + text "!@@" + +_UnnamedText_590ab: ; 802ec (20:42ec) + text "Oh! I see you" + line "don't have any" + cont "room for the" + cont "@" + TX_RAM $cc5b + text "." + done + +INCLUDE "text/maps/viridian_forest.asm" +INCLUDE "text/maps/mt_moon_1f.asm" +INCLUDE "text/maps/mt_moon_b1f.asm" +INCLUDE "text/maps/mt_moon_b2f.asm" +INCLUDE "text/maps/ss_anne_1.asm" +INCLUDE "text/maps/ss_anne_2.asm" +INCLUDE "text/maps/ss_anne_3.asm" +INCLUDE "text/maps/ss_anne_4.asm" +INCLUDE "text/maps/ss_anne_5.asm" +INCLUDE "text/maps/ss_anne_6.asm" +INCLUDE "text/maps/ss_anne_7.asm" +INCLUDE "text/maps/ss_anne_8.asm" +INCLUDE "text/maps/ss_anne_9.asm" +INCLUDE "text/maps/ss_anne_10.asm" +INCLUDE "text/maps/victory_road_3f.asm" +INCLUDE "text/maps/rocket_hideout_b1f.asm" +INCLUDE "text/maps/rocket_hideout_b2f.asm" +INCLUDE "text/maps/rocket_hideout_b3f.asm" +INCLUDE "text/maps/rocket_hideout_b4f.asm" +INCLUDE "text/maps/rocket_hideout_elevator.asm" +INCLUDE "text/maps/silph_co_2f.asm" +INCLUDE "text/maps/silph_co_3f.asm" +INCLUDE "text/maps/silph_co_4f.asm" +INCLUDE "text/maps/silph_co_5f_1.asm" + + +SECTION "bank21",ROMX,BANK[$21] + +INCLUDE "text/maps/silph_co_5f_2.asm" +INCLUDE "text/maps/silph_co_6f.asm" +INCLUDE "text/maps/silph_co_7f.asm" +INCLUDE "text/maps/silph_co_8f.asm" +INCLUDE "text/maps/silph_co_9f.asm" +INCLUDE "text/maps/silph_co_10f.asm" +INCLUDE "text/maps/silph_co_11f.asm" +INCLUDE "text/maps/mansion_2f.asm" +INCLUDE "text/maps/mansion_3f.asm" +INCLUDE "text/maps/mansion_b1f.asm" +INCLUDE "text/maps/safari_zone_east.asm" +INCLUDE "text/maps/safari_zone_north.asm" +INCLUDE "text/maps/safari_zone_west.asm" +INCLUDE "text/maps/safari_zone_center.asm" +INCLUDE "text/maps/safari_zone_rest_house_1.asm" +INCLUDE "text/maps/safari_zone_secret_house.asm" +INCLUDE "text/maps/safari_zone_rest_house_2.asm" +INCLUDE "text/maps/safari_zone_rest_house_3.asm" +INCLUDE "text/maps/safari_zone_rest_house_4.asm" +INCLUDE "text/maps/unknown_dungeon_1f.asm" +INCLUDE "text/maps/unknown_dungeon_2f.asm" +INCLUDE "text/maps/unknown_dungeon_b1f.asm" +INCLUDE "text/maps/victory_road_1f.asm" +INCLUDE "text/maps/lance.asm" +INCLUDE "text/maps/hall_of_fame.asm" +INCLUDE "text/maps/champion.asm" +INCLUDE "text/maps/lorelei.asm" +INCLUDE "text/maps/bruno.asm" +INCLUDE "text/maps/agatha.asm" +INCLUDE "text/maps/rock_tunnel_b2f_1.asm" + + +SECTION "bank22",ROMX,BANK[$22] + +INCLUDE "text/maps/rock_tunnel_b2f_2.asm" +INCLUDE "text/maps/seafoam_islands_1f.asm" +INCLUDE "text/maps/seafoam_islands_b1f.asm" +INCLUDE "text/maps/seafoam_islands_b2f.asm" +INCLUDE "text/maps/seafoam_islands_b3f.asm" +INCLUDE "text/maps/seafoam_islands_b4f.asm" + +_AIBattleWithdrawText: ; 880be (22:40be) + TX_RAM W_TRAINERNAME + text " with-" + line "drew @" + TX_RAM W_ENEMYMONNAME + text "!" + prompt + +_AIBattleUseItemText: ; 880d5 (22:40d5) + TX_RAM W_TRAINERNAME + db $0 + line "used @" + TX_RAM $CD6D + db $0 + cont "on @" + TX_RAM W_ENEMYMONNAME + text "!" + prompt + +_UnnamedText_4160c: ; 880ef (22:40ef) + TX_RAM $cf4b + text " went" + line "to @" + TX_RAM $d887 + text "." + done + +_UnnamedText_41623: ; 88103 (22:4103) + text "For ", $52, "'s" + line "@" + TX_RAM $cf4b + text "," + done + +_UnnamedText_41628: ; 88112 (22:4112) + TX_RAM $d887 + text " sends" + line "@" + TX_RAM $cd6d + text "." + done + +_UnnamedText_41642: ; 88124 (22:4124) + TX_RAM $d887 + text " waves" + line "farewell as" + done + +_UnnamedText_41647: ; 8813b (22:413b) + TX_RAM $cd6d + text " is" + line "transferred." + done + +_UnnamedText_41655: ; 88150 (22:4150) + text "Take good care of" + line "@" + TX_RAM $cd6d + text "." + done + +_UnnamedText_4166c: ; 8816a (22:416a) + TX_RAM $d887 + text " will" + line "trade @" + TX_RAM $cd6d + db $0 + done + +_UnnamedText_41671: ; 88180 (22:4180) + text "for ", $52, "'s" + line "@" + TX_RAM $cf4b + text "." + done + +_PlaySlotMachineText: ; 8818f (22:418f) + text "A slot machine!" + line "Want to play?" + done + +_OutOfCoinsSlotMachineText: ; 881ae (22:41ae) + text "Darn!" + line "Ran out of coins!" + done + +_BetHowManySlotMachineText: ; 881c7 (22:41c7) + text "Bet how many" + line "coins?" + done + +_StartSlotMachineText: ; 881dc (22:41dc) + text "Start!" + done + +_NotEnoughCoinsSlotMachineText: ; 881e4 (22:41e4) + text "Not enough" + line "coins!" + prompt + +_OneMoreGoSlotMachineText: ; 881f7 (22:41f7) + text "One more " + line "go?" + done + +_UnnamedText_37673: ; 88206 (22:4206) + text " lined up!" + line "Scored @" + TX_RAM $cf4b + text " coins!" + done + +_UnnamedText_3769d: ; 88226 (22:4226) + text "Not this time!" + prompt + +_UnnamedText_37722: ; 88236 (22:4236) + text "Yeah!@@" + +_UnnamedText_703fa: ; 8823e (22:423e) + text "#DEX Seen:@" + TX_NUM $cc5b, 1, 3 + db $0 + line " Owned:@" + TX_NUM $cc5c, 1, 3 + db "@" + +_UnnamedText_703ff: ; 88267 (22:4267) + text "#DEX Rating", $6d + done + +_GymStatueText1: ; 88275 (22:4275) + TX_RAM wGymCityName + db $0 + line "#MON GYM" + cont "LEADER: @" + TX_RAM wGymLeaderName + db $0 + + para "WINNING TRAINERS:" + line $53 + done + +_GymStatueText2: ; 882a5 (22:42a5) + TX_RAM wGymCityName + db $0 + line "#MON GYM" + cont "LEADER: @" + TX_RAM wGymLeaderName + db $0 + + para "WINNING TRAINERS:" + line $53 + cont $52 + done + +_ViridianCityPokecenterGuyText: ; 882d7 (22:42d7) + text "#MON CENTERs" + line "heal your tired," + cont "hurt or fainted" + cont "#MON!" + done + +_PewterCityPokecenterGuyText: ; 8830c (22:430c) + text "Yawn!" + + para "When JIGGLYPUFF" + line "sings, #MON" + cont "get drowsy..." + + para "...Me too..." + line "Snore..." + done + +_CeruleanPokecenterGuyText: ; 88353 (22:4353) + text "BILL has lots of" + line "#MON!" + + para "He collects rare" + line "ones too!" + done + +_LavenderPokecenterGuyText: ; 88386 (22:4386) + text "CUBONEs wear" + line "skulls, right?" + + para "People will pay a" + line "lot for one!" + done + +_MtMoonPokecenterBenchGuyText: ; 883c2 (22:43c2) + text "If you have too" + line "many #MON, you" + cont "should store them" + cont "via PC!" + done + +_RockTunnelPokecenterGuyText: ; 883fc (22:43fc) + text "I heard that" + line "GHOSTs haunt" + cont "LAVENDER TOWN!" + done + +_UnnamedText_624c1: ; 88426 (22:4426) + text "I wish I could" + line "catch #MON." + done + +_UnnamedText_624c6: ; 88442 (22:4442) + text "I'm tired from" + line "all the fun..." + done + +_UnnamedText_624cb: ; 88460 (22:4460) + text "SILPH's manager" + line "is hiding in the" + cont "SAFARI ZONE." + done + +_VermilionPokecenterGuyText: ; 8848e (22:448e) + text "It is true that a" + line "higher level" + cont "#MON will be" + cont "more powerful..." + + para "But, all #MON" + line "will have weak" + cont "points against" + cont "specific types." + + para "So, there is no" + line "universally" + cont "strong #MON." + done + +_CeladonCityPokecenterGuyText: ; 88531 (22:4531) + text "If I had a BIKE," + line "I would go to" + cont "CYCLING ROAD!" + done + +_FuchsiaCityPokecenterGuyText: ; 8855f (22:455f) + text "If you're studying " + line "#MON, visit" + cont "the SAFARI ZONE." + + para "It has all sorts" + line "of rare #MON." + done + +_CinnabarPokecenterGuyText: ; 885af (22:45af) + text "#MON can still" + line "learn techniques" + cont "after canceling" + cont "evolution." + + para "Evolution can wait" + line "until new moves" + cont "have been learned." + done + +_SaffronCityPokecenterGuyText1: ; 88621 (22:4621) + text "It would be great" + line "if the ELITE FOUR" + cont "came and stomped" + cont "TEAM ROCKET!" + done + +_SaffronCityPokecenterGuyText2: ; 88664 (22:4664) + text "TEAM ROCKET took" + line "off! We can go" + cont "out safely again!" + cont "That's great!" + done + +_CeladonCityHotelText: ; 886a4 (22:46a4) + text "My sis brought me" + line "on this vacation!" + done + +_BookcaseText: ; 886c9 (22:46c9) + text "Crammed full of" + line "#MON books!" + done + +_NewBicycleText: ; 886e6 (22:46e6) + text "A shiny new" + line "BICYCLE!" + done + +_UnnamedText_1e960: ; 886fc (22:46fc) + text "Push START to" + line "open the MENU!" + done + +_UnnamedText_1e97e: ; 8871a (22:471a) + text "The SAVE option is" + line "on the MENU" + cont "screen." + done + +_UnnamedText_1e983: ; 88742 (22:4742) + text "All #MON types" + line "have strong and" + cont "weak points" + cont "against others." + done + +_UnnamedText_1ea0d: ; 8877e (22:477e) + text "PA: Ding-dong!" + + para "Time's up!" + prompt + +_UnnamedText_1ea12: ; 88798 (22:4798) + text "PA: Your SAFARI" + line "GAME is over!" + done + +_CinnabarGymQuizIntroText: ; 887b7 (22:47b7) + text "#MON Quiz!" + + para "Get it right and" + line "the door opens to" + cont "the next room!" + + para "Get it wrong and" + line "face a trainer!" + + para "If you want to" + line "conserve your" + cont "#MON for the" + cont "GYM LEADER..." + + para "Then get it right!" + line "Here we go!" + prompt + +_CinnabarQuizQuestionsText1: ; 8886d (22:486d) + text "CATERPIE evolves" + line "into BUTTERFREE?" + done + +_CinnabarQuizQuestionsText2: ; 88890 (22:4890) + text "There are 9" + line "certified #MON" + cont "LEAGUE BADGEs?" + done + +_CinnabarQuizQuestionsText3: ; 888bb (22:48bb) + text "POLIWAG evolves 3" + line "times?" + done + +_CinnabarQuizQuestionsText4: ; 888d5 (22:48d5) + text "Are thunder moves" + line "effective against" + cont "ground element-" + cont "type #MON?" + done + +_CinnabarQuizQuestionsText5: ; 88915 (22:4915) + text "#MON of the" + line "same kind and" + cont "level are not" + cont "identical?" + done + +_CinnabarQuizQuestionsText6: ; 88949 (22:4949) + text "TM28 contains" + line "TOMBSTONER?" + done + +_CinnabarGymQuizCorrectText: ; 88964 (22:4964) + text "You're absolutely" + line "correct!" + + para "Go on through!@@" + +_CinnabarGymQuizIncorrectText: ; 8898f (22:498f) + text "Sorry! Bad call!" + prompt + +_UnnamedText_1eb69: ; 889a1 (22:49a1) + text "#MON magazines!" + + para "#MON notebooks!" + + para "#MON graphs!" + done + +_BillsHouseMonitorText: ; 889cf (22:49cf) + text "TELEPORTER is" + line "displayed on the" + cont "PC monitor." + done + +_BillsHouseInitiatedText: ; 889fb (22:49fb) + text $52, " initiated" + line "TELEPORTER's Cell" + cont "Separator!@@" + +_BillsHousePokemonListText1: ; 88a25 (22:4a25) + text "BILL's favorite" + line "#MON list!" + prompt + +_BillsHousePokemonListText2: ; 88a40 (22:4a40) + text "Which #MON do" + line "you want to see?" + done + +_OakLabEmailText: ; 88a60 (22:4a60) + text "There's an e-mail" + line "message here!" + + para "..." + + para "Calling all" + line "#MON trainers!" + + para "The elite trainers" + line "of #MON LEAGUE" + cont "are ready to take" + cont "on all comers!" + + para "Bring your best" + line "#MON and see" + cont "how you rate as a" + cont "trainer!" + + para "#MON LEAGUE HQ" + line "INDIGO PLATEAU" + + para "PS: PROF.OAK," + line "please visit us!" + cont "..." + done + +_GameCornerCoinCaseText: ; 88b5b (22:4b5b) + text "A COIN CASE is" + line "required!" + done + +_GameCornerNoCoinsText: ; 88b75 (22:4b75) + text "You don't have" + line "any coins!" + done + +_GameCornerOutOfOrderText: ; 88b8f (22:4b8f) + text "OUT OF ORDER" + line "This is broken." + done + +_GameCornerOutToLunchText: ; 88bad (22:4bad) + text "OUT TO LUNCH" + line "This is reserved." + done + +_GameCornerSomeonesKeysText: ; 88bcd (22:4bcd) + text "Someone's keys!" + line "They'll be back." + done + +_UnnamedText_21865: ; 88bed (22:4bed) + text "Just a moment." + done + +TMNotebookText: ; 88bfd (22:4bfd) + text "It's a pamphlet" + line "on TMs." + + para "..." + + para "There are 50 TMs" + line "in all." + + para "There are also 5" + line "HMs that can be" + cont "used repeatedly." + + para "SILPH CO.@@" + +_TurnPageText: ; 88c6f (22:4c6f) + text "Turn the page?" + done + +_ViridianSchoolNotebookText5: ; 88c7f (22:4c7f) + text "GIRL: Hey! Don't" + line "look at my notes!@@" + +_ViridianSchoolNotebookText1: ; 88ca3 (22:4ca3) + text "Looked at the" + line "notebook!" + + para "First page..." + + para "# BALLs are" + line "used to catch" + cont "#MON." + + para "Up to 6 #MON" + line "can be carried." + + para "People who raise" + line "and make #MON" + cont "fight are called" + cont "#MON trainers." + prompt + +_ViridianSchoolNotebookText2: ; 88d46 (22:4d46) + text "Second page..." + + para "A healthy #MON" + line "may be hard to" + cont "catch, so weaken" + cont "it first!" + + para "Poison, burns and" + line "other damage are" + cont "effective!" + prompt + +_ViridianSchoolNotebookText3: ; 88dbd (22:4dbd) + text "Third page..." + + para "#MON trainers" + line "seek others to" + cont "engage in #MON" + cont "fights." + + para "Battles are" + line "constantly fought" + cont "at #MON GYMs." + prompt + +_ViridianSchoolNotebookText4: ; 88e2c (22:4e2c) + text "Fourth page..." + + para "The goal for" + line "#MON trainers" + cont "is to beat the " + cont "top 8 #MON" + cont "GYM LEADERs." + + para "Do so to earn the" + line "right to face..." + + para "The ELITE FOUR of" + line "#MON LEAGUE!" + prompt + +_UnnamedText_52a10: ; 88ec1 (22:4ec1) + text "Enemies on every" + line "side!" + done + +_UnnamedText_52a1d: ; 88ed9 (22:4ed9) + text "What goes around" + line "comes around!" + done + +_FightingDojoText: ; 88ef9 (22:4ef9) + text "FIGHTING DOJO" + done + +_IndigoPlateauHQText: ; 88f08 (22:4f08) + text "INDIGO PLATEAU" + line "#MON LEAGUE HQ" + done + +_RedBedroomSNESText: ; 88f27 (22:4f27) + text $52, " is" + line "playing the SNES!" + cont "...Okay!" + cont "It's time to go!" + done + +_Route15UpstairsBinocularsText: ; 88f58 (22:4f58) + text "Looked into the" + line "binoculars..." + + para "A large, shining" + line "bird is flying" + cont "toward the sea." + done + +_AerodactylFossilText: ; 88fa7 (22:4fa7) + text "AERODACTYL Fossil" + line "A primitive and" + cont "rare #MON." + done + +_KabutopsFossilText: ; 88fd5 (22:4fd5) + text "KABUTOPS Fossil" + line "A primitive and" + cont "rare #MON." + done + +_LinkCableHelpText1: ; 89001 (22:5001) + text "TRAINER TIPS" + + para "Using a Game Link" + line "Cable" + prompt + +_LinkCableHelpText2: ; 89027 (22:5027) + text "Which heading do" + line "you want to read?" + done + +_LinkCableInfoText1: ; 8904b (22:504b) + text "When you have" + line "linked your GAME" + cont "BOY with another" + cont "GAME BOY, talk to" + cont "the attendant on" + cont "the right in any" + cont "#MON CENTER." + prompt + +_LinkCableInfoText2: ; 890bd (22:50bd) + text "COLOSSEUM lets" + line "you play against" + cont "a friend." + prompt + +_LinkCableInfoText3: ; 890e8 (22:50e8) + text "TRADE CENTER is" + line "used for trading" + cont "#MON." + prompt + +_ViridianSchoolBlackboardText1: ; 89110 (22:5110) + text "The blackboard" + line "describes #MON" + cont "STATUS changes" + cont "during battles." + prompt + +_ViridianSchoolBlackboardText2: ; 8914e (22:514e) + text "Which heading do" + line "you want to read?" + done + +_ViridianBlackboardSleepText: ; 89172 (22:5172) + text "A #MON can't" + line "attack if it's" + cont "asleep!" + + para "#MON will stay" + line "asleep even after" + cont "battles." + + para "Use AWAKENING to" + line "wake them up!" + prompt + +_ViridianBlackboardPoisonText: ; 891de (22:51de) + text "When poisoned, a" + line "#MON's health" + cont "steadily drops." + + para "Poison lingers" + line "after battles." + + para "Use an ANTIDOTE" + line "to cure poison!" + prompt + +_ViridianBlackbaordPrlzText: ; 8924b (22:524b) + text "Paralysis could" + line "make #MON" + cont "moves misfire!" + + para "Paralysis remains" + line "after battles." + + para "Use PARLYZ HEAL" + line "for treatment!" + prompt + +_ViridianBlackboardBurnText: ; 892b5 (22:52b5) + text "A burn reduces" + line "power and speed." + cont "It also causes" + cont "ongoing damage." + + para "Burns remain" + line "after battles." + + para "Use BURN HEAL to" + line "cure a burn!" + prompt + +_ViridianBlackboardFrozenText: ; 8932f (22:532f) + text "If frozen, a" + line "#MON becomes" + cont "totally immobile!" + + para "It stays frozen" + line "even after the" + cont "battle ends." + + para "Use ICE HEAL to" + line "thaw out #MON!" + prompt + +_VermilionGymTrashText: ; 893a7 (22:53a7) + text "Nope, there's" + line "only trash here." + done + +_VermilionGymTrashSuccesText1: ; 893c6 (22:53c6) + text "Hey! There's a" + line "switch under the" + cont "trash!" + cont "Turn it on!" + + para "The 1st electric" + line "lock opened!@@" + +_VermilionGymTrashSuccesText2: ; 89418 (22:5418) + text "Hey! There's" + line "another switch" + cont "under the trash!" + cont "Turn it on!" + prompt + +_VermilionGymTrashSuccesText3: ; 89451 (22:5451) + text "The 2nd electric" + line "lock opened!" + + para "The motorized door" + line "opened!@@" + +_VermilionGymTrashFailText: ; 8948c (22:548c) + text "Nope! There's" + line "only trash here." + cont "Hey! The electric" + cont "locks were reset!@@" + +UnnamedText_894d0: ; 894d0 (22:54d0) + text $52, " found" + line "@" + TX_RAM $cd6d + text "!@@" + +_UnnamedText_76794: ; 894e1 (22:54e1) + text "But, ", $52, " has" + line "no more room for" + cont "other items!" + done + +_FoundHiddenCoinsText: ; 8950b (22:550b) + text $52, " found" + line "@" + db $2, $a0, $ff, $c2 ; XXX $2 + text " coins!@@" + +_FoundHiddenCoins2Text: ; 89523 (22:5523) + text $52, " found" + line "@" + db $2, $a0, $ff, $c2 ; XXX $2 probably coins + text " coins!@@" + +_DroppedHiddenCoinsText: ; 8953b (22:553b) + db $0 + para "Oops! Dropped" + line "some coins!" + done + +_IndigoPlateauStatuesText1: ; 89557 (22:5557) + text "INDIGO PLATEAU" + prompt + +_IndigoPlateauStatuesText2: ; 89567 (22:5567) + text "The ultimate goal" + line "of trainers!" + cont "#MON LEAGUE HQ" + done + +_IndigoPlateauStatuesText3: ; 89596 (22:5596) + text "The highest" + line "#MON authority" + cont "#MON LEAGUE HQ" + done + +_PokemonBooksText: ; 895c1 (22:55c1) + text "Crammed full of" + line "#MON books!" + done + +_DiglettSculptureText: ; 895de (22:55de) + text "It's a sculpture" + line "of DIGLETT." + done + +_ElevatorText: ; 895fb (22:55fb) + text "This is an" + line "elevator." + done + +_TownMapText: ; 89611 (22:5611) + text "A TOWN MAP.@@" + +_PokemonStuffText: ; 8961f (22:561f) + text "Wow! Tons of" + line "#MON stuff!" + done + +_UnnamedText_3c1a8: ; 89639 (22:5639) + text "PA: Ding-dong!" + + para "You are out of" + line "SAFARI BALLs!" + prompt + +_UnnamedText_3c229: ; 89666 (22:5666) + text "Wild @" + TX_RAM W_ENEMYMONNAME + db $0 + line "ran!" + prompt + +_UnnamedText_3c22e: ; 89677 (22:5677) + text "Enemy @" + TX_RAM W_ENEMYMONNAME + db $0 + line "ran!" + prompt + +_HurtByPoisonText: ; 89689 (22:5689) + text $5a, "'s" + line "hurt by poison!" + prompt + +_HurtByBurnText: ; 8969d (22:569d) + text $5a, "'s" + line "hurt by the burn!" + prompt + +_HurtByLeechSeedText: ; 896b3 (22:56b3) + text "LEECH SEED saps" + line $5a, "!" + prompt + +_EnemyMonFainted: ; 0x896c7 + text "Enemy @" + TX_RAM W_ENEMYMONNAME + db $0 + line "fainted!" + prompt + +_MoneyForWinningText: ; 896dd (22:56dd) + text $52, " got ¥@" + ;XXX $2 + db $2, $79, $d0, $c3 + db $0 + line "for winning!" + prompt + +_TrainerDefeatedText: ; 896f9 (22:56f9) + text $52, " defeated" + line "@" + TX_RAM W_TRAINERNAME ; 0x89706 + text "!" + prompt + +_PlayerMonFaintedText: ; 8970c (22:570c) + TX_RAM W_PLAYERMONNAME + db $0 + line "fainted!" + prompt + +_UnnamedText_3c7d3: ; 8971a (22:571a) + text "Use next #MON?" + done + +_Sony1WinText: ; 8972a (22:572a) + text $53, ": Yeah! Am" + line "I great or what?" + prompt + +_PlayerBlackedOutText2: ; 89748 (22:5748) + text $52, " is out of" + line "useable #MON!" + + para $52, " blacked" + line "out!" + prompt + +_LinkBattleLostText: ; 89772 (22:5772) + text $52, " lost to" + line "@" + TX_RAM W_TRAINERNAME ; 0x8977e + text "!" + prompt + +_TrainerAboutToUseText: ; 89784 (22:5784) + TX_RAM W_TRAINERNAME + text " is" + line "about to use" + cont"@" + TX_RAM W_ENEMYMONNAME + text "!" + + para "Will ", $52 + line "change #MON?" + done + +_TrainerSentOutText: ; 897b4 (22:57b4) + TX_RAM W_TRAINERNAME + text " sent" + line "out @" + TX_RAM W_ENEMYMONNAME + text "!" + done + +_UnnamedText_3cab4: ; 897c9 (22:57c9) + text "There's no will" + line "to fight!" + prompt + +_UnnamedText_3cb97: ; 897e3 (22:57e3) + text "Can't escape!" + prompt + +_UnnamedText_3cb9c: ; 897f1 (22:57f1) + text "No! There's no" + line "running from a" + cont "trainer battle!" + prompt + +_UnnamedText_3cba1: ; 8981f (22:581f) + text "Got away safely!" + prompt + +ItemsCantBeUsedHere_: ; 89831 (22:5831) + text "Items can't be" + line "used here." + prompt + +_UnnamedText_3d1f5: ; 8984b (22:584b) + TX_RAM W_PLAYERMONNAME + text " is" + line "already out!" + prompt + +_MoveNoPPText: ; 89860 (22:5860) + text "No PP left for" + line "this move!" + prompt + +_MoveDisabledText: ; 8987b (22:587b) + text "The move is" + line "disabled!" + prompt + +_UnnamedText_3d430: ; 89892 (22:5892) + TX_RAM W_PLAYERMONNAME + text " has no" + line "moves left!" + done + +_MultiHitText: ; 898aa (22:58aa) + text "Hit the enemy" + line "@" + TX_NUM W_NUMHITS,1,1 + text " times!" + prompt + +_ScaredText: ; 898c7 (22:58c7) + TX_RAM W_PLAYERMONNAME + text " is too" + line "scared to move!" + prompt + +_GetOutText: ; 898e3 (22:58e3) + text "GHOST: Get out..." + line "Get out..." + prompt + +_FastAsleepText: ; 89901 (22:5901) + text $5A + line "is fast asleep!" + prompt + +_WokeUpText: ; 89914 (22:5914) + text $5A + line "woke up!" + prompt + +_FrozenText: ; 89920 (22:5920) + text $5A + line "is frozen solid!" + prompt + +_FullyParalyzedText: ; 89934 (22:5934) + text $5A,"'s" + line "fully paralyzed!" + prompt + +_FlinchedText: ; 89949 (22:5949) + text $5A + line "flinched!" + prompt + +_MustRechargeText: ; 89956 (22:5956) + text $5A + line "must recharge!" + prompt + +_DisabledNoMoreText: ; 89968 (22:5968) + text $5A,"'s" + line "disabled no more!" + prompt + +_IsConfusedText: ; 8997e (22:597e) + text $5A + line "is confused!" + prompt + +_HurtItselfText: ; 8998e (22:598e) + text "It hurt itself in" + line "its confusion!" + prompt + +_ConfusedNoMoreText: ; 899b0 (22:59b0) + text $5A,"'s" + line "confused no more!" + prompt + +_SavingEnergyText: ; 899c6 (22:59c6) + text $5A + line "is saving energy!" + prompt + +_UnleashedEnergyText: ; 899db (22:59db) + text $5A + line "unleashed energy!" + prompt + +_ThrashingAboutText: ; 899f0 (22:59f0) + text $5A,"'s" + line "thrashing about!" + done + +_AttackContinuesText: ; 89a05 (22:5a05) + text $5A,"'s" + line "attack continues!" + done + +_CantMoveText: ; 89a1b (22:5a1b) + text $5A + line "can't move!" + prompt + +_UnnamedText_3daa8: ; 89a29 (22:5a29) + text $5a, "'s" + line "@" + TX_RAM $cd6d + text " is" + cont "disabled!" + prompt + +_UnnamedText_3dafb: ; 89a40 (22:5a40) + text $5a, "@@" + +_UnnamedText_3db2d: ; 89a44 (22:5a44) + db $0 + line "used @@" + +_UnnamedText_3db34: ; 89a4d (22:5a4d) + db $0 + line "used @@" + +_UnnamedText_3db43: ; 89a56 (22:5a56) + text "instead," + cont "@@" + +_UnnamedText_3db4c: ; 89a62 (22:5a62) + TX_RAM $cf4b + text "@" + +_UnnamedText_3db6c: ; 89a67 (22:5a67) + text "!" + done + +_UnnamedText_3db71: ; 89a6a (22:5a6a) + text "!" + done + +_UnnamedText_3db76: ; 89a6d (22:5a6d) + text "!" + done + +_UnnamedText_3db7b: ; 89a70 (22:5a70) + text "!" + done + +_UnnamedText_3db80: ; 89a73 (22:5a73) + text "!" + done + +_UnnamedText_3dc42: ; 89a76 (22:5a76) + text $5a, "'s" + line "attack missed!" + prompt + +_UnnamedText_3dc47: ; 89a89 (22:5a89) + text $5a + line "kept going and" + cont "crashed!" + prompt + +_UnnamedText_3dc4c: ; 89aa4 (22:5aa4) + text $59, "'s" + line "unaffected!" + prompt + +_UnnamedText_3dc57: ; 89ab4 (22:5ab4) + text "It doesn't affect" + line $59, "!" + prompt + +_UnnamedText_3dc7e: ; 89ac9 (22:5ac9) + text "Critical hit!" + prompt + +_UnnamedText_3dc83: ; 89ad8 (22:5ad8) + text "One-hit KO!" + prompt + +_UnnamedText_3ddb6: ; 89ae5 (22:5ae5) + TX_RAM W_PLAYERMONNAME + text " is" + line "loafing around." + prompt + +_UnnamedText_3ddbb: ; 89afd (22:5afd) + TX_RAM W_PLAYERMONNAME + text " began" + line "to nap!" + prompt + +_UnnamedText_3ddc0: ; 89b10 (22:5b10) + TX_RAM W_PLAYERMONNAME + text " won't" + line "obey!" + prompt + +_UnnamedText_3ddc5: ; 89b20 (22:5b20) + TX_RAM W_PLAYERMONNAME + text " turned" + line "away!" + prompt + +_UnnamedText_3ddca: ; 89b32 (22:5b32) + TX_RAM W_PLAYERMONNAME + db $0 + line "ignored orders!" + prompt + +_SubstituteTookDamageText: ; 89b47 (22:5b47) + text "The SUBSTITUTE" + line "took damage for" + cont $59, "!" + prompt + +_SubstituteBrokeText: ; 89b6a (22:5b6a) + text $59, "'s" + line "SUBSTITUTE broke!" + prompt + +_BuildingRageText: ; 89b80 (22:5b80) + text $5a, "'s" + line "RAGE is building!" + prompt + +_MirrorMoveFailedText: ; 89b96 (22:5b96) + text "The MIRROR MOVE" + next "failed!" + prompt + +_UnnamedText_3e887: ; 89baf (22:5baf) + text "Hit @" + TX_NUM $cd05, 1, 1 + text " times!" + prompt + +_UnnamedText_554b2: ; 89bc2 (22:5bc2) + TX_RAM $cd6d + text " gained" + line "@@" + +_UnnamedText_554cb: ; 89bd0 (22:5bd0) + text "with EXP.ALL," + cont "@@" + +_UnnamedText_554d4: ; 89be1 (22:5be1) + text "a boosted" + cont "@@" +_UnnamedText_554d8: ; 89bee (22:5bee) + TX_NUM $cf4b, 2, 4 + text " EXP. Points!" + prompt + +UnnamedText_89c01: ; 89c01 (22:5c01) + TX_RAM $cd6d + text " grew" + line "to level @" + TX_NUM $d127, 1, 3 + text "!@@" + +_UnnamedText_58e3b: ; 89c1d (22:5c1d) + text "Wild @" + TX_RAM W_ENEMYMONNAME + db $0 + line "appeared!" + prompt + +_UnnamedText_58e40: ; 89c33 (22:5c33) + text "The hooked" + line "@" + TX_RAM W_ENEMYMONNAME + db $0 + cont "attacked!" + prompt + +_UnnamedText_58e45: ; 89c4f (22:5c4f) + TX_RAM W_ENEMYMONNAME + db $0 + line "appeared!" + prompt + +_UnnamedText_58e4a: ; 89c5e (22:5c5e) + TX_RAM W_TRAINERNAME + text " wants" + line "to fight!" + prompt + +_UnnamedText_58e4f: ; 89c73 (22:5c73) + text "SILPH SCOPE" + line "unveiled the" + cont "GHOST's identity!" + prompt + +_UnnamedText_58e54: ; 89c9e (22:5c9e) + text "Darn! The GHOST" + line "can't be ID'd!" + prompt + +_UnnamedText_58eae: ; 89cbc (22:5cbc) + text "Go! @@" + +_UnnamedText_58eb5: ; 89cc3 (22:5cc3) + text "Do it! @@" + +_UnnamedText_58ebc: ; 89ccd (22:5ccd) + text "Get'm! @@" + +_UnnamedText_58ec3: ; 89cd6 (22:5cd6) + text "The enemy's weak!" + line "Get'm! @@" + +_UnnamedText_58ecc: ; 89cf0 (22:5cf0) + TX_RAM W_PLAYERMONNAME + text "!" + done + +_UnnamedText_58ed7: ; 89cf6 (22:5cf6) + TX_RAM W_PLAYERMONNAME + text " @@" + +_UnnamedText_58f25: ; 89cfd (22:5cfd) + text "enough!@@" + +_UnnamedText_58f2c: ; 89d07 (22:5d07) + text "OK!@@" + +_UnnamedText_58f33: ; 89d0d (22:5d0d) + text "good!@@" + +_UnnamedText_58f3e: ; 89d15 (22:5d15) + db $0 + line "Come back!" + done + +_UnnamedText_2fb8e: ; 89d22 (22:5d22) + text "It's super" + line "effective!" + prompt + +_UnnamedText_2fb93: ; 89d38 (22:5d38) + text "It's not very" + line "effective..." + prompt + +SafariZoneEatingText: ; 89d53 (22:5d53) + text "Wild @" + TX_RAM W_ENEMYMONNAME + db $0 + line "is eating!" + prompt + +SafariZoneAngryText: ; 89d6a (22:5d6a) + text "Wild @" + TX_RAM W_ENEMYMONNAME + db $0 + line "is angry!" + prompt + +; money related +; XXX $2 BCD macro +; $2, pointer, byte +_UnnamedText_1386b: ; 89d80 (22:5d80) + text $52, " picked up" + line "¥@" + db $2, $e5, $cc, $c3 + text "!" + prompt + +_UnnamedText_1c9c1: ; 89d96 (22:5d96) + text "Clear all saved" + line "data?" + done + +_UnnamedText_1ca14: ; 89dad (22:5dad) + text "Which floor do" + line "you want? " + done + +_PartyMenuNormalText: ; 89dc8 (22:5dc8) + text "Choose a #MON." + done + +_PartyMenuItemUseText: ; 89dd8 (22:5dd8) + text "Use item on which" + line "#MON?" + done + +_PartyMenuBattleText: ; 89df1 (22:5df1) + text "Bring out which" + line "#MON?" + done + +_PartyMenuUseTMText: ; 89e08 (22:5e08) + text "Use TM on which" + line "#MON?" + done + +_PartyMenuSwapMonText: ; 89e1f (22:5e1f) + text "Move #MON" + line "where?" + done + +_PotionText: ; 89e31 (22:5e31) + TX_RAM $cd6d + db $0 + line "recovered by @" + TX_NUM wHPBarHPDifference, 2, 3 + text "!" + done + +_AntidoteText: ; 89e4b (22:5e4b) + TX_RAM $cd6d + text " was" + line "cured of poison!" + done + +_ParlyzHealText: ; 89e65 (22:5e65) + TX_RAM $cd6d + text "'s" + line "rid of paralysis!" + done + +_BurnHealText: ; 89e7d (22:5e7d) + TX_RAM $cd6d + text "'s" + line "burn was healed!" + done + +_IceHealText: ; 89e94 (22:5e94) + TX_RAM $cd6d + text " was" + line "defrosted!" + done + +_AwakeningText: ; 89ea8 (22:5ea8) + TX_RAM $cd6d + db $0 + line "woke up!" + done + +_FullHealText: ; 89eb6 (22:5eb6) + TX_RAM $cd6d + text "'s" + line "health returned!" + done + +_ReviveText: ; 89ecd (22:5ecd) + TX_RAM $cd6d + db $0 + line "is revitalized!" + done + +_RareCandyText: ; 89ee2 (22:5ee2) + TX_RAM $cd6d + text " grew" + line "to level @" + TX_NUM $d127, $1,$3 + text "!@@" + +_UnnamedText_17f23: ; 89efe (22:5efe) + text $52, " turned on" + line "the PC." + prompt + +_UnnamedText_17f28: ; 89f13 (22:5f13) + text "Accessed BILL's" + line "PC." + + para "Accessed #MON" + line "Storage System." + prompt + +_UnnamedText_17f2d: ; 89f45 (22:5f45) + text "Accessed someone's" + line "PC." + + para "Accessed #MON" + line "Storage System." + prompt + +_UnnamedText_17f32: ; 89f7a (22:5f7a) + text "Accessed my PC." + + para "Accessed Item" + line "Storage System." + prompt + +_UnnamedText_7b22: ; 89fa9 (22:5fa9) + text $52, " turned on" + line "the PC." + prompt + +_UnnamedText_7b27: ; 89fbe (22:5fbe) + text "What do you want" + line "to do?" + done + +_UnnamedText_7b2c: ; 89fd7 (22:5fd7) + text "What do you want" + line "to deposit?" + done + +_UnnamedText_7b31: ; 89ff5 (22:5ff5) + text "How many?" + done + +_UnnamedText_7b36: ; 8a000 (22:6000) + TX_RAM $cd6d + text " was" + line "stored via PC." + prompt + +_UnnamedText_7b3b: ; 8a018 (22:6018) + text "You have nothing" + line "to deposit." + prompt + +_UnnamedText_7b40: ; 8a036 (22:6036) + text "No room left to" + line "store items." + prompt + +_UnnamedText_7b45: ; 8a054 (22:6054) + text "What do you want" + line "to withdraw?" + done + +_UnnamedText_7b4a: ; 8a073 (22:6073) + text "How many?" + done + +_UnnamedText_7b4f: ; 8a07e (22:607e) + text "Withdrew" + line "@" + TX_RAM $cd6d + text "." + prompt + +_UnnamedText_7b54: ; 8a08f (22:608f) + text "There is nothing" + line "stored." + prompt + +_UnnamedText_7b59: ; 8a0a9 (22:60a9) + text "You can't carry" + line "any more items." + prompt + +_UnnamedText_7b5e: ; 8a0c9 (22:60c9) + text "What do you want" + line "to toss away?" + done + +_UnnamedText_7b63: ; 8a0e9 (22:60e9) + text "How many?" + done + +_UnnamedText_76683: ; 8a0f4 (22:60f4) + text "Accessed #MON" + line "LEAGUE's site." + + para "Accessed the HALL" + line "OF FAME List." + prompt + +_SwitchOnText: ; 0x8a131 + text "Switch on!" + prompt + +_WhatText: ; 0x8a13d + text "What?" + done + +_DepositWhichMonText: ; 0x8a144 + text "Deposit which" + line "#MON?" + done + +_MonWasStoredText: ; 0x8a159 + TX_RAM $cf4b + text " was" + line "stored in Box @" + TX_RAM $cd3d + text "." + prompt + +_CantDepositLastMonText: ; 0x8a177 + text "You can't deposit" + line "the last #MON!" + prompt + +_BoxFullText: ; 0x8a198 + text "Oops! This Box is" + line "full of #MON." + prompt + +_MonIsTakenOutText: ; 0x8a1b9 + TX_RAM $cf4b + text " is" + line "taken out." + cont "Got @" + TX_RAM $cf4b + text "." + prompt + +_NoMonText: ; 0x8a1d7 + text "What? There are" + line "no #MON here!" + prompt + +_CantTakeMonText: ; 0x8a1f6 + text "You can't take" + line "any more #MON." + + para "Deposit #MON" + line "first." + prompt + +_ReleaseWhichMonText: ; 0x8a228 + text "Release which" + line "#MON?" + done + +_OnceReleasedText: ; 0x8a23d + text "Once released," + line "@" + TX_RAM $cf4b + text " is" + cont "gone forever. OK?" + done + +_MonWasReleasedText: ; 0x8a268 + TX_RAM $cf4b + text " was" + line "released outside." + cont "Bye @" + +_UnnamedText_8a288: ; 8a288 (22:6288) + TX_RAM $cf4b + text "!" + prompt + +_RequireCoinCaseText: ; 8a28e (22:628e) + text "A COIN CASE is" + line "required!@@" + +_ExchangeCoinsForPrizesText: ; 8a2a9 (22:62a9) + text "We exchange your" + line "coins for prizes." + prompt + +_WhichPrizeText: ; 8a2cd (22:62cd) + text "Which prize do" + line "you want?" + done + +_HereYouGoText: ; 8a2e7 (22:62e7) + text "Here you go!@@" + +_SoYouWantPrizeText: ; 8a2f6 (22:62f6) + text "So, you want" + line "@" + TX_RAM $CD6D + text "?" + done + +_SorryNeedMoreCoins: ; 8a30b (22:630b) + text "Sorry, you need" + line "more coins.@@" + +_OopsYouDontHaveEnoughRoomText: ; 8a329 (22:6329) + text "Oops! You don't" + line "have enough room.@@" + +_OhFineThenText: ; 8a34c (22:634c) + text "Oh, fine then.@@" + +_UnnamedText_1e93b: ; 8a35d (22:635d) + text "Want to get your" + line "#DEX rated?" + done + +_UnnamedText_1e940: ; 8a37b (22:637b) + text "Closed link to" + line "PROF.OAK's PC.@@" + +_UnnamedText_1e946: ; 8a39a (22:639a) + text "Accessed PROF." + line "OAK's PC." + + para "Accessed #DEX" + line "Rating System." + prompt + +_UnnamedText_5d43: ; 8a3d0 (22:63d0) + text "Where would you" + line "like to go?" + done + +_UnnamedText_5d48: ; 8a3ed (22:63ed) + text "OK, please wait" + line "just a moment." + done + +_UnnamedText_5d4d: ; 8a40d (22:640d) + text "The link was" + line "canceled." + done + +INCLUDE "text/oakspeech.asm" + +_DoYouWantToNicknameText: ; 0x8a605 + text "Do you want to" + line "give a nickname" + cont "to @" + +UnnamedText_8a629: ; 8a629 (22:6629) + TX_RAM $cd6d + text "?" + done + +_UnnamedText_699f: ; 8a62f (22:662f) + text "Right! So your" + line "name is ", $52, "!" + prompt + +_UnnamedText_69e7: ; 8a64a (22:664a) + text "That's right! I" + line "remember now! His" + cont "name is ", $53, "!" + prompt + +_SSAnne8AfterBattleText2: ; 8a677 (22:6677) + TX_RAM $cd3f + text " and" + line "@" + TX_RAM $cd6d + text " will" + cont "be traded." + done + +_Char00Text: ; 8a696 (22:6696) + TX_NUM $FF8C,1,2 + text " ERROR." + done + +_Char55Text: ; 8a6a3 (22:66a3) + text $4B,"@@" + +INCLUDE "text/maps/digletts_cave_route_2_entrance.asm" +INCLUDE "text/maps/viridian_forest_exit.asm" +INCLUDE "text/maps/route_2_house.asm" +INCLUDE "text/maps/route_2_gate.asm" +INCLUDE "text/maps/viridian_forest_entrance.asm" +INCLUDE "text/maps/mt_moon_pokecenter.asm" +INCLUDE "text/maps/saffron_gates.asm" +INCLUDE "text/maps/daycare_1.asm" + + +SECTION "bank23",ROMX,BANK[$23] + +INCLUDE "text/maps/daycare_2.asm" +INCLUDE "text/maps/underground_path_route_5_entrance.asm" +INCLUDE "text/maps/underground_path_route_6_entrance.asm" +INCLUDE "text/maps/underground_path_route_7_entrance.asm" +INCLUDE "text/maps/underground_path_route_7_entrance_unused.asm" +INCLUDE "text/maps/underground_path_route_8_entrance.asm" +INCLUDE "text/maps/rock_tunnel_pokecenter.asm" +INCLUDE "text/maps/rock_tunnel_b1f.asm" +INCLUDE "text/maps/power_plant.asm" +INCLUDE "text/maps/route_11_gate.asm" +INCLUDE "text/maps/route_11_gate_upstairs.asm" +INCLUDE "text/maps/digletts_cave_route_11_entrance.asm" +INCLUDE "text/maps/route_12_gate.asm" +INCLUDE "text/maps/route_12_gate_upstairs.asm" +INCLUDE "text/maps/route_12_house.asm" +INCLUDE "text/maps/route_15_gate.asm" +INCLUDE "text/maps/route_15_gate_upstairs.asm" +INCLUDE "text/maps/route_16_gate.asm" +INCLUDE "text/maps/route_16_gate_upstairs.asm" +INCLUDE "text/maps/route_16_house.asm" +INCLUDE "text/maps/route_18_gate.asm" +INCLUDE "text/maps/route_18_gate_upstairs.asm" +INCLUDE "text/maps/pokemon_league_gate.asm" +INCLUDE "text/maps/victory_road_2f.asm" +INCLUDE "text/maps/bills_house.asm" +INCLUDE "text/maps/route_1.asm" +INCLUDE "text/maps/route_2.asm" +INCLUDE "text/maps/route_3.asm" +INCLUDE "text/maps/route_4.asm" +INCLUDE "text/maps/route_5.asm" +INCLUDE "text/maps/route_6.asm" +INCLUDE "text/maps/route_7.asm" +INCLUDE "text/maps/route_8.asm" +INCLUDE "text/maps/route_9.asm" +INCLUDE "text/maps/route_10.asm" +INCLUDE "text/maps/route_11_1.asm" + + +SECTION "bank24",ROMX,BANK[$24] + +INCLUDE "text/maps/route_11_2.asm" +INCLUDE "text/maps/route_12.asm" +INCLUDE "text/maps/route_13.asm" +INCLUDE "text/maps/route_14.asm" +INCLUDE "text/maps/route_15.asm" +INCLUDE "text/maps/route_16.asm" +INCLUDE "text/maps/route_17.asm" +INCLUDE "text/maps/route_18.asm" +INCLUDE "text/maps/route_19.asm" +INCLUDE "text/maps/route_20.asm" +INCLUDE "text/maps/route_21.asm" +INCLUDE "text/maps/route_22.asm" +INCLUDE "text/maps/route_23.asm" +INCLUDE "text/maps/route_24_1.asm" + + +SECTION "bank25",ROMX,BANK[$25] + +INCLUDE "text/maps/route_24_2.asm" +INCLUDE "text/maps/route_25.asm" + +_FileDataDestroyedText: ; 945f1 (25:45f1) + text "The file data is" + line "destroyed!" + prompt + +_WouldYouLikeToSaveText: ; 9460e (25:460e) + text "Would you like to" + line "SAVE the game?" + done + +_GameSavedText: ; 94630 (25:4630) + text $52, " saved" + line "the game!" + done + +_OlderFileWillBeErasedText: ; 94643 (25:4643) + text "The older file" + line "will be erased to" + cont "save. Okay?" + done + +_UnnamedText_73909: ; 94671 (25:4671) + text "When you change a" + line "#MON BOX, data" + cont "will be saved." + + para "Is that okay?" + done + +_UnnamedText_739d4: ; 946b0 (25:46b0) + text "Choose a" + line $4a, " BOX.@@" + +_UnnamedText_3af3e: ; 946c2 (25:46c2) + TX_RAM $cf4b + text " evolved" + done + +_UnnamedText_3af43: ; 946cf (25:46cf) + db $0 + line "into @" + TX_RAM $cd6d + text "!" + done + +_UnnamedText_3af48: ; 946dd (25:46dd) + text "Huh? @" + TX_RAM $cf4b + db $0 + line "stopped evolving!" + prompt + +_UnnamedText_3af4d: ; 946fb (25:46fb) + text "What? @" + TX_RAM $cf4b + db $0 + line "is evolving!" + done + +_UnnamedText_3f245: ; 94715 (25:4715) + text $59 + line "fell asleep!" + prompt + +_UnnamedText_3f24a: ; 94725 (25:4725) + text $59, "'s" + line "already asleep!" + prompt + +_UnnamedText_3f2df: ; 94739 (25:4739) + text $59 + line "was poisoned!" + prompt + +_UnnamedText_3f2e4: ; 9474a (25:474a) + text $59, "'s" + line "badly poisoned!" + prompt + +_UnnamedText_3f3d8: ; 9475e (25:475e) + text $59 + line "was burned!" + prompt + +_UnnamedText_3f3dd: ; 9476d (25:476d) + text $59 + line "was frozen solid!" + prompt + +_UnnamedText_3f423: ; 94782 (25:4782) + text "Fire defrosted" + line $59, "!" + prompt + +_UnnamedText_3f528: ; 94795 (25:4795) + text $5a, "'s" + line "@" + TX_RAM $cf4b + text "@@" + +_UnnamedText_3f542: ; 947a0 (25:47a0) + text $4c, "greatly@@" + +_UnnamedText_3f547: ; 947ab (25:47ab) + text " rose!" + prompt + +_UnnamedText_3f661: ; 947b3 (25:47b3) + text $59, "'s" + line "@" + TX_RAM $cf4b + text "@@" + +_UnnamedText_3f67e: ; 947be (25:47be) + text $4c, "greatly@@" + +_UnnamedText_3f683: ; 947c9 (25:47c9) + text " fell!" + prompt + +_UnnamedText_3f802: ; 947d1 (25:47d1) + text $5a + line "ran from battle!" + prompt + +_UnnamedText_3f807: ; 947e5 (25:47e5) + text $59 + line "ran away scared!" + prompt + +_UnnamedText_3f80c: ; 947f9 (25:47f9) + text $59 + line "was blown away!" + prompt + +_UnnamedText_3f8c8: ; 9480c (25:480c) + text $5a, "@@" + +_UnnamedText_3f8f9: ; 94810 (25:4810) + db $0 + line "made a whirlwind!" + prompt + +_UnnamedText_3f8fe: ; 94824 (25:4824) + db $0 + line "took in sunlight!" + prompt + +_UnnamedText_3f903: ; 94838 (25:4838) + db $0 + line "lowered its head!" + prompt + +_UnnamedText_3f908: ; 9484c (25:484c) + db $0 + line "is glowing!" + prompt + +_UnnamedText_3f90d: ; 9485a (25:485a) + db $0 + line "flew up high!" + prompt + +_UnnamedText_3f912: ; 9486a (25:486a) + db $0 + line "dug a hole!" + prompt + +_UnnamedText_3f9a1: ; 94878 (25:4878) + text $59 + line "became confused!" + prompt + +_UnnamedText_3fa77: ; 9488c (25:488c) + text $5a + line "learned" + cont "@" + TX_RAM $cd6d + text "!" + prompt + +_UnnamedText_3fb09: ; 9489e (25:489e) + text $59, "'s" + line "@" + TX_RAM $cd6d + text " was" + cont "disabled!" + prompt + +_UnnamedText_3fb3e: ; 948b6 (25:48b6) + text "Nothing happened!" + prompt + +_UnnamedText_3fb49: ; 948c9 (25:48c9) + text "No effect!" + prompt + +_UnnamedText_3fb59: ; 948d5 (25:48d5) + text "But, it failed! " + prompt + +_UnnamedText_3fb64: ; 948e7 (25:48e7) + text "It didn't affect" + line $59, "!" + prompt + +_UnnamedText_3fb69: ; 948fb (25:48fb) + text $59 + line "is unaffected!" + prompt + +_UnnamedText_3fb74: ; 9490d (25:490d) + text $59, "'s" + line "paralyzed! It may" + cont "not attack!" + prompt + +_UnnamedText_17e1d: ; 9492f (25:492f) + text "It created a" + line "SUBSTITUTE!" + prompt + +_UnnamedText_17e22: ; 94949 (25:4949) + text $5a + line "has a SUBSTITUTE!" + prompt + +_UnnamedText_17e27: ; 9495e (25:495e) + text "Too weak to make" + line "a SUBSTITUTE!" + prompt + +_UnnamedText_2ff04: ; 9497e (25:497e) + text "Coins scattered" + line "everywhere!" + prompt + +_UnnamedText_27fb3: ; 9499b (25:499b) + text $5a, "'s" + line "getting pumped!" + prompt + +_UnnamedText_2bef2: ; 949af (25:49af) + text $59 + line "was seeded!" + prompt + +_UnnamedText_2bef7: ; 949be (25:49be) + text $59 + line "evaded attack!" + prompt + +_UnnamedText_1399e: ; 949d0 (25:49d0) + text $5a, "'s" + line "hit with recoil!" + prompt + +_UnnamedText_139cd: ; 949e5 (25:49e5) + text "Converted type to" + line $59, "'s!" + prompt + +_UnnamedText_13a53: ; 949fc (25:49fc) + text "All STATUS changes" + line "are eliminated!" + prompt + +_UnnamedText_3baa2: ; 94a20 (25:4a20) + text $5a + line "started sleeping!" + done + +_UnnamedText_3baa7: ; 94a35 (25:4a35) + text $5a + line "fell asleep and" + cont "became healthy!" + done + +_UnnamedText_3baac: ; 94a58 (25:4a58) + text $5a + line "regained health!" + prompt + +_UnnamedText_3bb92: ; 94a6c (25:4a6c) + text $5a + line "transformed into" + cont "@" + TX_RAM $cd6d + text "!" + prompt + +_UnnamedText_3bbd7: ; 94a87 (25:4a87) + text $5a, "'s" + line "protected against" + cont "special attacks!" + prompt + +_UnnamedText_3bbdc: ; 94aae (25:4aae) + text $5a + line "gained armor!" + prompt + +_UnnamedText_33f52: ; 94abf (25:4abf) + text $5a, "'s" + line "shrouded in mist!" + prompt + +_UnnamedText_78dc: ; 94ad5 (25:4ad5) + text "Sucked health from" + line $59, "!" + prompt + +_UnnamedText_78e1: ; 94aec (25:4aec) + text $59, "'s" + line "dream was eaten!" + prompt + +_BattleCenterMText1: ; 94b01 (25:4b01) + text "!" + done + +_TradeCenterMText1: ; 94b04 (25:4b04) + text "!" + done + +INCLUDE "text/maps/reds_house_1f.asm" +INCLUDE "text/maps/blues_house.asm" +INCLUDE "text/maps/oaks_lab.asm" +INCLUDE "text/maps/viridian_mart.asm" +INCLUDE "text/maps/school.asm" +INCLUDE "text/maps/viridian_house.asm" +INCLUDE "text/maps/viridian_gym.asm" +INCLUDE "text/maps/museum_1f.asm" +INCLUDE "text/maps/museum_2f.asm" +INCLUDE "text/maps/pewter_gym_1.asm" + + +SECTION "bank26",ROMX,BANK[$26] + +INCLUDE "text/maps/pewter_gym_2.asm" +INCLUDE "text/maps/pewter_house_1.asm" +INCLUDE "text/maps/pewter_mart.asm" +INCLUDE "text/maps/pewter_house_2.asm" +INCLUDE "text/maps/pewter_pokecenter.asm" +INCLUDE "text/maps/cerulean_trashed_house.asm" +INCLUDE "text/maps/cerulean_trade_house.asm" +INCLUDE "text/maps/cerulean_pokecenter.asm" +INCLUDE "text/maps/cerulean_gym.asm" +INCLUDE "text/maps/bike_shop.asm" +INCLUDE "text/maps/cerulean_mart.asm" +INCLUDE "text/maps/cerulean_badge_house.asm" +INCLUDE "text/maps/lavender_pokecenter.asm" +INCLUDE "text/maps/pokemon_tower_1f.asm" +INCLUDE "text/maps/pokemon_tower_2f.asm" +INCLUDE "text/maps/pokemon_tower_3f.asm" +INCLUDE "text/maps/pokemon_tower_4f.asm" +INCLUDE "text/maps/pokemon_tower_5f.asm" +INCLUDE "text/maps/pokemon_tower_6f.asm" +INCLUDE "text/maps/pokemon_tower_7f.asm" +INCLUDE "text/maps/fujis_house.asm" +INCLUDE "text/maps/lavender_mart.asm" +INCLUDE "text/maps/lavender_house.asm" +INCLUDE "text/maps/name_rater.asm" +INCLUDE "text/maps/vermilion_pokecenter.asm" +INCLUDE "text/maps/fan_club.asm" +INCLUDE "text/maps/vermilion_mart.asm" +INCLUDE "text/maps/vermilion_gym_1.asm" + + +SECTION "bank27",ROMX,BANK[$27] + +INCLUDE "text/maps/vermilion_gym_2.asm" +INCLUDE "text/maps/vermilion_house.asm" +INCLUDE "text/maps/vermilion_dock.asm" +INCLUDE "text/maps/vermilion_fishing_house.asm" +INCLUDE "text/maps/celadon_dept_store_1f.asm" +INCLUDE "text/maps/celadon_dept_store_2f.asm" +INCLUDE "text/maps/celadon_dept_store_3f.asm" +INCLUDE "text/maps/celadon_dept_store_4f.asm" +INCLUDE "text/maps/celadon_dept_store_roof.asm" +INCLUDE "text/maps/celadon_mansion_1f.asm" +INCLUDE "text/maps/celadon_mansion_2f.asm" +INCLUDE "text/maps/celadon_mansion_3f.asm" +INCLUDE "text/maps/celadon_mansion_4f_outside.asm" +INCLUDE "text/maps/celadon_mansion_4f_inside.asm" +INCLUDE "text/maps/celadon_pokecenter.asm" +INCLUDE "text/maps/celadon_gym.asm" +INCLUDE "text/maps/celadon_game_corner.asm" +INCLUDE "text/maps/celadon_dept_store_5f.asm" +INCLUDE "text/maps/celadon_prize_room.asm" +INCLUDE "text/maps/celadon_diner.asm" +INCLUDE "text/maps/celadon_house.asm" +INCLUDE "text/maps/celadon_hotel.asm" +INCLUDE "text/maps/fuchsia_mart.asm" +INCLUDE "text/maps/fuchsia_house.asm" +INCLUDE "text/maps/fuchsia_pokecenter.asm" +INCLUDE "text/maps/wardens_house.asm" +INCLUDE "text/maps/safari_zone_entrance.asm" +INCLUDE "text/maps/fuchsia_gym_1.asm" + + +SECTION "bank28",ROMX,BANK[$28] + +INCLUDE "text/maps/fuchsia_gym_2.asm" +INCLUDE "text/maps/fuchsia_meeting_room.asm" +INCLUDE "text/maps/fuchsia_fishing_house.asm" +INCLUDE "text/maps/mansion_1f.asm" +INCLUDE "text/maps/cinnabar_gym.asm" +INCLUDE "text/maps/cinnabar_lab.asm" +INCLUDE "text/maps/cinnabar_lab_trade_room.asm" +INCLUDE "text/maps/cinnabar_lab_metronome_room.asm" +INCLUDE "text/maps/cinnabar_lab_fossil_room.asm" +INCLUDE "text/maps/cinnabar_pokecenter.asm" +INCLUDE "text/maps/cinnabar_mart.asm" +INCLUDE "text/maps/indigo_plateau_lobby.asm" +INCLUDE "text/maps/copycats_house_1f.asm" +INCLUDE "text/maps/copycats_house_2f.asm" +INCLUDE "text/maps/fighting_dojo.asm" +INCLUDE "text/maps/saffron_gym.asm" +INCLUDE "text/maps/saffron_house.asm" +INCLUDE "text/maps/saffron_mart.asm" +INCLUDE "text/maps/silph_co_1f.asm" +INCLUDE "text/maps/saffron_pokecenter.asm" +INCLUDE "text/maps/mr_psychics_house.asm" + +_PokemartGreetingText: ; a259c (28:659c) + text "Hi there!" + next "May I help you?" + done + +_PokemonFaintedText: ; a25b7 (28:65b7) + TX_RAM $cd6d + db $0 + line "fainted!" + done + +_PlayerBlackedOutText: ; a25c5 (28:65c5) + text $52, " is out of" + line "useable #MON!" + + para $52, " blacked" + line "out!" + prompt + +_RepelWoreOffText: ; a25ef (28:65ef) + text "REPEL's effect" + line "wore off." + done + +_PokemartBuyingGreetingText: ; a2608 (28:6608) + text "Take your time." + done + +_PokemartTellBuyPrice: ; a2619 (28:6619) + TX_RAM $cf4b + text "?" + line "That will be" + cont "¥@" + db $2, $9f, $ff, $c3 + text ". OK?" + done + +_PokemartBoughtItemText: ; a2639 (28:6639) + text "Here you are!" + line "Thank you!" + prompt + +_PokemartNotEnoughMoneyText: ; a2653 (28:6653) + text "You don't have" + line "enough money." + prompt + +_PokemartItemBagFullText: ; a2670 (28:6670) + text "You can't carry" + line "any more items." + prompt + +_PokemonSellingGreetingText: ; a2690 (28:6690) + text "What would you" + line "like to sell?" + done + +_PokemartTellSellPrice: ; a26ae (28:66ae) + text "I can pay you" + line "¥@" + db $2, $9f, $ff, $c3 ; XXX + text " for that." + done + +_PokemartItemBagEmptyText: ; a26cf (28:66cf) + text "You don't have" + line "anything to sell." + prompt + +_PokemartUnsellableItemText: ; a26f0 (28:66f0) + text "I can't put a" + line "price on that." + prompt + +_PokemartThankYouText: ; a270d (28:670d) + text "Thank you!" + done + +_PokemartAnythingElseText: ; a2719 (28:6719) + text "Is there anything" + line "else I can do?" + done + +UnnamedText_a273b: ; a273b (28:673b) + TX_RAM $d036 + text " learned" + line "@" + TX_RAM $cf4b + text "!@@" + +_UnnamedText_6fb4: ; a2750 (28:6750) + text "Which move should" + next "be forgotten?" + done + +_UnnamedText_6fb9: ; a2771 (28:6771) + text "Abandon learning" + line "@" + +UnnamedText_a2784: ; a2784 (28:6784) + TX_RAM $cf4b + text "?" + done + +_UnnamedText_6fbe: ; a278a (28:678a) + TX_RAM $d036 + db $0 + line "did not learn" + cont "@" + TX_RAM $cf4b + text "!" + prompt + +_UnnamedText_6fc3: ; a27a4 (28:67a4) + TX_RAM $d036 + text " is" + line "trying to learn" + cont "@" + TX_RAM $cf4b + text "!" + + para "But, @" + TX_RAM $d036 + db $0 + line "can't learn more" + cont "than 4 moves!" + + para "Delete an older" + line "move to make room" + cont "for @" + TX_RAM $cf4b + text "?" + done + +_UnnamedText_6fc8: ; a2819 (28:6819) + text "1, 2 and...@@" + +_UnnamedText_6fd7: ; a2827 (28:6827) + text " Poof!@@" + +_UnnamedText_6fdc: ; a2830 (28:6830) + db $0 + para "@" + TX_RAM $d036 + text " forgot" + line "@" + TX_RAM $cd6d + text "!" + + para "And..." + prompt + +_UnnamedText_6fe1: ; a284d (28:684d) + text "HM techniques" + line "can't be deleted!" + prompt + +_PokemonCenterWelcomeText: ; a286d (28:686d) + text "Welcome to our" + line "#MON CENTER!" + + para "We heal your" + line "#MON back to" + cont "perfect health!" + prompt + +_ShallWeHealYourPokemonText: ; a28b4 (28:68b4) + text "Shall we heal your" + line "#MON?" + done + +_NeedYourPokemonText: ; a28ce (28:68ce) + text "OK. We'll need" + line "your #MON." + done + +_PokemonFightingFitText: ; a28e8 (28:68e8) + text "Thank you!" + line "Your #MON are" + cont "fighting fit!" + prompt + +_PokemonCenterFarewellText: ; a2910 (28:6910) + text "We hope to see" + line "you again!" + done + +_CableClubNPCText7: ; a292b (28:692b) + text "This area is" + line "reserved for 2" + cont "friends who are" + cont "linked by cable." + done + +_CableClubNPCText1: ; a2969 (28:6969) + text "Welcome to the" + line "Cable Club!" + done + +_CableClubNPCText2: ; a2985 (28:6985) + text "Please apply here." + + para "Before opening" + line "the link, we have" + cont "to save the game." + done + +_CableClubNPCText3: ; a29cc (28:69cc) + text "Please wait.@@" + +_CableClubNPCText4: ; a29db (28:69db) + text "The link has been" + line "closed because of" + cont "inactivity." + + para "Please contact" + line "your friend and" + cont "come again!" + done + +SECTION "bank29",ROMX,BANK[$29] + +_CableClubNPCText5: ; a4000 (29:4000) + text "Please come again!" + done + +_CableClubNPCText6: ; a4014 (29:4014) + text "We're making" + line "preparations." + cont "Please wait." + done + +_UsedStrengthText: ; a403c (29:403c) + TX_RAM $cd6d + text " used" + line "STRENGTH.@@" + +_UnnamedText_cdbb: ; a4051 (29:4051) + TX_RAM $cd6d + text " can" + line "move boulders." + prompt + +_UnnamedText_cdfa: ; a4069 (29:4069) + text "The current is" + line "much too fast!" + prompt + +_UnnamedText_cdff: ; a4088 (29:4088) + text "Cycling is fun!" + line "Forget SURFing!" + prompt + +_FlashLightsAreaText: ; a40a9 (29:40a9) + text "A blinding FLASH" + line "lights the area!" + prompt + +_WarpToLastPokemonCenterText: ; a40cc (29:40cc) + text "Warp to the last" + line "#MON CENTER." + done + +_CannotUseTeleportNowText: ; a40eb (29:40eb) + TX_RAM $cd6d + text " can't" + line "use TELEPORT now." + prompt + +_CannotFlyHereText: ; a4107 (29:4107) + TX_RAM $cd6d + text " can't" + line "FLY here." + prompt + +_NotHealthyEnoughText: ; a411b (29:411b) + text "Not healthy" + line "enough." + prompt + +_NewBadgeRequiredText: ; a4130 (29:4130) + text "No! A new BADGE" + line "is required." + prompt + +_CannotUseItemsHereText: ; a414e (29:414e) + text "You can't use items" + line "here." + prompt + +_CannotGetOffHereText: ; a4168 (29:4168) + text "You can't get off" + line "here." + prompt + +_UnnamedText_4fe39: ; a4180 (29:4180) + text $52, " got" + line "@" + TX_RAM $cd6d + text "!@@" + +_UnnamedText_4fe3f: ; a418f (29:418f) + text "There's no more" + line "room for #MON!" + cont "@" + TX_RAM W_BOXMON1NAME + text " was" + cont "sent to #MON" + cont "BOX @" + TX_RAM $cf4b + text " on PC!" + done + +_UnnamedText_4fe44: ; a41d6 (29:41d6) + text "There's no more" + line "room for #MON!" + + para "The #MON BOX" + line "is full and can't" + cont "accept any more!" + + para "Change the BOX at" + line "a #MON CENTER!" + done + +INCLUDE "text/maps/pallet_town.asm" +INCLUDE "text/maps/viridian_city.asm" +INCLUDE "text/maps/pewter_city.asm" +INCLUDE "text/maps/cerulean_city.asm" +INCLUDE "text/maps/lavender_town.asm" +INCLUDE "text/maps/vermilion_city.asm" +INCLUDE "text/maps/celadon_city.asm" +INCLUDE "text/maps/fuchsia_city.asm" +INCLUDE "text/maps/cinnabar_island.asm" +INCLUDE "text/maps/saffron_city.asm" + +_ItemUseBallText00: ; a6729 (29:6729) + text "It dodged the" + line "thrown BALL!" + + para "This #MON" + line "can't be caught!" + prompt + +_ItemUseBallText01: ; a675f (29:675f) + text "You missed the" + line "#MON!" + prompt + +_ItemUseBallText02: ; a6775 (29:6775) + text "Darn! The #MON" + line "broke free!" + prompt + +_ItemUseBallText03: ; a6791 (29:6791) + text "Aww! It appeared" + line "to be caught! " + prompt + +_ItemUseBallText04: ; a67b2 (29:67b2) + text "Shoot! It was so" + line "close too!" + prompt + +_ItemUseBallText05: ; a67cf (29:67cf) + text "All right!" + line "@" + TX_RAM W_ENEMYMONNAME + text " was" + cont "caught!@@" + +_ItemUseBallText07: ; a67ee (29:67ee) + TX_RAM W_BOXMON1NAME + text " was" + line "transferred to" + cont "BILL's PC!" + prompt + +_ItemUseBallText08: ; a6810 (29:6810) + TX_RAM W_BOXMON1NAME + text " was" + line "transferred to" + cont "someone's PC!" + prompt + +_ItemUseBallText06: ; a6835 (29:6835) + text "New #DEX data" + line "will be added for" + cont "@" + TX_RAM W_ENEMYMONNAME + text "!@@" + +_SurfingGotOnText: ; a685e (29:685e) + text $52, " got on" + line "@" + TX_RAM $cd6d + text "!" + prompt + +_SurfingNoPlaceToGetOffText: ; a686f (29:686f) + text "There's no place" + line "to get off!" + prompt + +_VitaminStatRoseText: ; a688c (29:688c) + TX_RAM $cd6d + text "'s" + line "@" + TX_RAM $cf4b + text " rose." + prompt + +_VitaminNoEffectText: ; a689e (29:689e) + text "It won't have any" + line "effect." + prompt + +_ThrewBaitText: ; a68b8 (29:68b8) + text $52, " threw" + line "some BAIT." + done + +_ThrewRockText: ; a68cc (29:68cc) + text $52, " threw a" + line "ROCK." + done + +_PlayedFluteNoEffectText: ; a68dd (29:68dd) + text "Played the #" + line "FLUTE." + + para "Now, that's a" + line "catchy tune!" + prompt + +_FluteWokeUpText: ; a690c (29:690c) + text "All sleeping" + line "#MON woke up." + prompt + +_PlayedFluteHadEffectText: ; a6928 (29:6928) + text $52, " played the" + line "# FLUTE.@@" + +_CoinCaseNumCoinsText: ; a6940 (29:6940) + text "Coins" + line "@" + db $2, $a4, $d5, $c2 ; print BCD number + text " " + prompt + +_ItemfinderFoundItemText: ; a694f (29:694f) + text "Yes! ITEMFINDER" + line "indicates there's" + cont "an item nearby." + prompt + +_ItemfinderFoundNothingText: ; a6981 (29:6981) + text "Nope! ITEMFINDER" + line "isn't responding." + prompt + +_RaisePPWhichTechniqueText: ; a69a4 (29:69a4) + text "Raise PP of which" + line "technique?" + done + +_RestorePPWhichTechniqueText: ; a69c2 (29:69c2) + text "Restore PP of" + line "which technique?" + done + +_PPMaxedOutText: ; a69e2 (29:69e2) + TX_RAM $cf4b + text "'s PP" + line "is maxed out." + prompt + +_PPIncreasedText: ; a69f9 (29:69f9) + TX_RAM $cf4b + text "'s PP" + line "increased." + prompt + +_PPRestoredText: ; a6a0d (29:6a0d) + text "PP was restored." + prompt + +_BootedUpTMText: ; a6a1f (29:6a1f) + text "Booted up a TM!" + prompt + +_BootedUpHMText: ; a6a30 (29:6a30) + text "Booted up an HM!" + prompt + +_TeachMachineMoveText: ; a6a42 (29:6a42) + text "It contained" + line "@" + TX_RAM $cf4b + text "!" + + para "Teach @" + TX_RAM $cf4b + db $0 + line "to a #MON?" + done + +_MonCannotLearnMachineMoveText: ; a6a6e (29:6a6e) + TX_RAM $cd6d + text " is not" + line "compatible with" + cont "@" + TX_RAM $cf4b + text "." + + para "It can't learn" + line "@" + TX_RAM $cf4b + text "." + prompt + +_ItemUseNotTimeText: ; a6aa6 (29:6aa6) + text "OAK: ", $52, "!" + line "This isn't the" + cont "time to use that! " + prompt + +_ItemUseNotYoursToUseText: ; a6ad0 (29:6ad0) + text "This isn't yours" + line "to use!" + prompt + +_ItemUseNoEffectText: ; a6ae9 (29:6ae9) + text "It won't have any" + line "effect." + prompt + +_ThrowBallAtTrainerMonText1: ; a6b03 (29:6b03) + text "The trainer" + line "blocked the BALL!" + prompt + +_ThrowBallAtTrainerMonText2: ; a6b22 (29:6b22) + text "Don't be a thief!" + prompt + +_NoCyclingAllowedHereText: ; a6b34 (29:6b34) + text "No cycling" + next "allowed here." + prompt + +_NoSurfingHereText: ; a6b4e (29:6b4e) + text "No SURFing on" + line "@" + TX_RAM $cd6d + text " here!" + prompt + +_BoxFullCannotThrowBallText: ; a6b69 (29:6b69) + text "The #MON BOX" + line "is full! Can't" + cont "use that item!" + prompt + +SECTION "bank2A",ROMX,BANK[$2A] + +_ItemUseText001: ; a8000 (2a:4000) + text $52," used@@" + +_ItemUseText002: ; a8009 (2a:4009) + TX_RAM $cf4b + text "!" + done + +_GotOnBicycleText1: ; a800f (2a:400f) + text $52, " got on the@@" + +_GotOnBicycleText2: ; a801e (2a:401e) + TX_RAM $cf4b + text "!" + prompt + +_GotOffBicycleText1: ; a8024 (2a:4024) + text $52, " got off@@" + +_GotOffBicycleText2: ; a8030 (2a:4030) + text "the @" + TX_RAM $cf4b + text "." + prompt + +_ThrewAwayItemText: ; a803c (2a:403c) + text "Threw away" + line "@" + +UnnamedText_a8049: ; a8049 (2a:4049) + TX_RAM $cd6d + text "." + prompt + +_IsItOKToTossItemText: ; a804f (2a:404f) + text "Is it OK to toss" + line "@" + TX_RAM $cf4b + text "?" + prompt + +_TooImportantToTossText: ; a8068 (2a:4068) + text "That's too impor-" + line "tant to toss!" + prompt + +_UnnamedText_2fe3b: ; a8088 (2a:4088) + TX_RAM $cd6d + text " knows" + line "@" + TX_RAM $cf4b + text "!" + prompt + +_UnnamedText_71d88: ; a809a (2a:409a) + text "Okay, connect the" + line "cable like so!" + prompt + +_UnnamedText_71d8d: ; a80bc (2a:40bc) + text $52, " traded" + line "@" + TX_RAM $cd13 + text " for" + cont "@" + TX_RAM $cd1e + text "!@@" + +_UnnamedText_71d94: ; a80d8 (2a:40d8) + text "I'm looking for" + line "@" + TX_RAM $cd13 + text "! Wanna" + + para "trade one for" + line "@" + TX_RAM $cd1e + text "? " + done + +_UnnamedText_71d99: ; a810b (2a:410b) + text "Awww!" + line "Oh well..." + done + +_UnnamedText_71d9e: ; a811d (2a:411d) + text "What? That's not" + line "@" + +UnnamedText_a812f: ; a812f (2a:412f) + TX_RAM $cd13 + text "!" + + para "If you get one," + line "come back here!" + done + +_UnnamedText_71da3: ; a8155 (2a:4155) + text "Hey thanks!" + done + +_UnnamedText_71da8: ; a8162 (2a:4162) + text "Isn't my old" + line "@" + TX_RAM $cd1e + text " great?" + done + +_UnnamedText_71dad: ; a817c (2a:417c) + text "Hello there! Do" + line "you want to trade" + + para "your @" + TX_RAM $cd13 + db $0 + line "for @" + TX_RAM $cd1e + text "?" + done + +_UnnamedText_71db2: ; a81b5 (2a:41b5) + text "Well, if you" + line "don't want to..." + done + +_UnnamedText_71db7: ; a81d3 (2a:41d3) + text "Hmmm? This isn't" + line "@" + TX_RAM $cd13 + text "." + + para "Think of me when" + line "you get one." + done + +_UnnamedText_71dbc: ; a8209 (2a:4209) + text "Thanks!" + done + +_UnnamedText_71dc1: ; a8212 (2a:4212) + text "The @" + TX_RAM $cd13 + text " you" + line "traded to me" + + para "went and evolved!" + done + +_UnnamedText_71dc6: ; a8240 (2a:4240) + text "Hi! Do you have" + line "@" + TX_RAM $cd13 + text "?" + + para "Want to trade it" + line "for @" + TX_RAM $cd1e + text "?" + done + +_UnnamedText_71dcb: ; a8274 (2a:4274) + text "That's too bad." + done + +_UnnamedText_71dd0: ; a8284 (2a:4284) + text "...This is no" + line "@" + TX_RAM $cd13 + text "." + + para "If you get one," + line "trade it with me!" + done + +_UnnamedText_71dd5: ; a82bc (2a:42bc) + text "Thanks pal!" + done + +_UnnamedText_71dda: ; a82c9 (2a:42c9) + text "How is my old" + line "@" + TX_RAM $cd1e + text "?" + + para "My @" + TX_RAM $cd13 + text " is" + line "doing great!" + done + +_UnnamedText_ef7d ; a82f8 (2a:42f8) + text "There isn't" + line "anything to CUT!" + prompt + +_UsedCutText: ; a8315 (2a:4315) + TX_RAM $cd6d + text " hacked" + line "away with CUT!" + prompt + +SECTION "bank2B",ROMX,BANK[$2B] + +INCLUDE "text/pokedex.asm" + +SECTION "bank2C",ROMX,BANK[$2C] + +INCLUDE "text/move_names.asm" + From cf90d30e9ea236c9e06de1d1be0b9635192f6ed9 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:48:11 -0500 Subject: [PATCH 32/41] Bank constants for text.asm --- text.asm | 46 +++++++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/text.asm b/text.asm index c2628b3b..f8af577f 100644 --- a/text.asm +++ b/text.asm @@ -1,4 +1,20 @@ -SECTION "bank20",ROMX,BANK[$20] +TEXT_1 EQU $20 +TEXT_2 EQU $21 +TEXT_3 EQU $22 +TEXT_4 EQU $23 +TEXT_5 EQU $24 +TEXT_6 EQU $25 +TEXT_7 EQU $26 +TEXT_8 EQU $27 +TEXT_9 EQU $28 +TEXT_10 EQU $29 +TEXT_11 EQU $2a + +POKEDEX_TEXT EQU $2b +MOVE_NAMES EQU $2c + + +SECTION "Text 1", ROMX, BANK[TEXT_1] _CardKeySuccessText1: ; 80000 (20:4000) text "Bingo!@@" @@ -174,7 +190,7 @@ INCLUDE "text/maps/silph_co_4f.asm" INCLUDE "text/maps/silph_co_5f_1.asm" -SECTION "bank21",ROMX,BANK[$21] +SECTION "Text 2", ROMX, BANK[TEXT_2] INCLUDE "text/maps/silph_co_5f_2.asm" INCLUDE "text/maps/silph_co_6f.asm" @@ -208,7 +224,7 @@ INCLUDE "text/maps/agatha.asm" INCLUDE "text/maps/rock_tunnel_b2f_1.asm" -SECTION "bank22",ROMX,BANK[$22] +SECTION "Text 3", ROMX, BANK[TEXT_3] INCLUDE "text/maps/rock_tunnel_b2f_2.asm" INCLUDE "text/maps/seafoam_islands_1f.asm" @@ -1931,7 +1947,7 @@ INCLUDE "text/maps/saffron_gates.asm" INCLUDE "text/maps/daycare_1.asm" -SECTION "bank23",ROMX,BANK[$23] +SECTION "Text 4", ROMX, BANK[TEXT_4] INCLUDE "text/maps/daycare_2.asm" INCLUDE "text/maps/underground_path_route_5_entrance.asm" @@ -1971,7 +1987,7 @@ INCLUDE "text/maps/route_10.asm" INCLUDE "text/maps/route_11_1.asm" -SECTION "bank24",ROMX,BANK[$24] +SECTION "Text 5", ROMX, BANK[TEXT_5] INCLUDE "text/maps/route_11_2.asm" INCLUDE "text/maps/route_12.asm" @@ -1989,7 +2005,7 @@ INCLUDE "text/maps/route_23.asm" INCLUDE "text/maps/route_24_1.asm" -SECTION "bank25",ROMX,BANK[$25] +SECTION "Text 6", ROMX, BANK[TEXT_6] INCLUDE "text/maps/route_24_2.asm" INCLUDE "text/maps/route_25.asm" @@ -2331,7 +2347,7 @@ INCLUDE "text/maps/museum_2f.asm" INCLUDE "text/maps/pewter_gym_1.asm" -SECTION "bank26",ROMX,BANK[$26] +SECTION "Text 7", ROMX, BANK[TEXT_7] INCLUDE "text/maps/pewter_gym_2.asm" INCLUDE "text/maps/pewter_house_1.asm" @@ -2363,7 +2379,7 @@ INCLUDE "text/maps/vermilion_mart.asm" INCLUDE "text/maps/vermilion_gym_1.asm" -SECTION "bank27",ROMX,BANK[$27] +SECTION "Text 8", ROMX, BANK[TEXT_8] INCLUDE "text/maps/vermilion_gym_2.asm" INCLUDE "text/maps/vermilion_house.asm" @@ -2395,7 +2411,7 @@ INCLUDE "text/maps/safari_zone_entrance.asm" INCLUDE "text/maps/fuchsia_gym_1.asm" -SECTION "bank28",ROMX,BANK[$28] +SECTION "Text 9", ROMX, BANK[TEXT_9] INCLUDE "text/maps/fuchsia_gym_2.asm" INCLUDE "text/maps/fuchsia_meeting_room.asm" @@ -2639,7 +2655,8 @@ _CableClubNPCText4: ; a29db (28:69db) cont "come again!" done -SECTION "bank29",ROMX,BANK[$29] + +SECTION "Text 10", ROMX, BANK[TEXT_10] _CableClubNPCText5: ; a4000 (29:4000) text "Please come again!" @@ -2984,7 +3001,8 @@ _BoxFullCannotThrowBallText: ; a6b69 (29:6b69) cont "use that item!" prompt -SECTION "bank2A",ROMX,BANK[$2A] + +SECTION "Text 11", ROMX, BANK[TEXT_11] _ItemUseText001: ; a8000 (2a:4000) text $52," used@@" @@ -3187,11 +3205,13 @@ _UsedCutText: ; a8315 (2a:4315) line "away with CUT!" prompt -SECTION "bank2B",ROMX,BANK[$2B] + +SECTION "Pokedex Text", ROMX, BANK[POKEDEX_TEXT] INCLUDE "text/pokedex.asm" -SECTION "bank2C",ROMX,BANK[$2C] + +SECTION "Move Names", ROMX, BANK[MOVE_NAMES] INCLUDE "text/move_names.asm" From b4e8ec0901da238bf89ef8685355403a6960c29d Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:55:33 -0500 Subject: [PATCH 33/41] Make text.asm an object --- Makefile | 6 ++++-- main.asm | 2 -- text.asm | 5 +++++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a61875e9..6c673590 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,13 @@ TEXTQUEUE := RED_OBJS := \ pokered.o \ -audio_red.o +audio_red.o \ +text.o BLUE_OBJS := \ pokeblue.o \ -audio_blue.o +audio_blue.o \ +text.o OBJS := $(RED_OBJS) $(BLUE_OBJS) diff --git a/main.asm b/main.asm index aad5c05a..1f0d663c 100644 --- a/main.asm +++ b/main.asm @@ -115622,5 +115622,3 @@ TechnicalMachinePrices: ; 7bfa7 (1e:7fa7) db $22, $52, $24, $34, $42 -INCLUDE "text.asm" - diff --git a/text.asm b/text.asm index f8af577f..7f159502 100644 --- a/text.asm +++ b/text.asm @@ -1,3 +1,5 @@ +INCLUDE "globals.asm" + TEXT_1 EQU $20 TEXT_2 EQU $21 TEXT_3 EQU $22 @@ -13,6 +15,9 @@ TEXT_11 EQU $2a POKEDEX_TEXT EQU $2b MOVE_NAMES EQU $2c +INCLUDE "macros.asm" + + SECTION "Text 1", ROMX, BANK[TEXT_1] From fbe9cdde27f2fad18a68168769bcdca647712260 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 15:56:49 -0500 Subject: [PATCH 34/41] Give a : to label def _UnnamedText_ef7d --- text.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text.asm b/text.asm index 7f159502..d09c9d8c 100644 --- a/text.asm +++ b/text.asm @@ -3199,7 +3199,7 @@ _UnnamedText_71dda: ; a82c9 (2a:42c9) line "doing great!" done -_UnnamedText_ef7d ; a82f8 (2a:42f8) +_UnnamedText_ef7d: ; a82f8 (2a:42f8) text "There isn't" line "anything to CUT!" prompt From 896cc790d1c6b3ce1d84ec74df2199069ef42aed Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 23 Jan 2014 18:18:07 -0500 Subject: [PATCH 35/41] Makefile: remove duplicates when consolidating objects --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 6c673590..f889f2aa 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ audio_blue.o \ text.o OBJS := $(RED_OBJS) $(BLUE_OBJS) +OBJS := $(sort $(OBJS)) ROMS := pokered.gbc pokeblue.gbc From 7e4febba58e2ad2ca0cec38785ae44eed571f160 Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 24 Jan 2014 12:42:31 -0500 Subject: [PATCH 36/41] Get rid of more unnecessary labels in text.asm --- text.asm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/text.asm b/text.asm index d09c9d8c..cc1548ef 100644 --- a/text.asm +++ b/text.asm @@ -116,8 +116,6 @@ _UnnamedText_59096: ; 801e4 (20:41e4) text "Let's see..." line "Uh-oh! You have" cont "caught only @" - -UnnamedText_8020e: ; 8020e (20:420e) TX_NUM $ffdd, 1, 3 db $0 cont "kinds of #MON!" @@ -1908,8 +1906,6 @@ _DoYouWantToNicknameText: ; 0x8a605 text "Do you want to" line "give a nickname" cont "to @" - -UnnamedText_8a629: ; 8a629 (22:6629) TX_RAM $cd6d text "?" done @@ -2538,8 +2534,6 @@ _UnnamedText_6fb4: ; a2750 (28:6750) _UnnamedText_6fb9: ; a2771 (28:6771) text "Abandon learning" line "@" - -UnnamedText_a2784: ; a2784 (28:6784) TX_RAM $cf4b text "?" done @@ -3037,8 +3031,6 @@ _GotOffBicycleText2: ; a8030 (2a:4030) _ThrewAwayItemText: ; a803c (2a:403c) text "Threw away" line "@" - -UnnamedText_a8049: ; a8049 (2a:4049) TX_RAM $cd6d text "." prompt @@ -3097,8 +3089,6 @@ _UnnamedText_71d99: ; a810b (2a:410b) _UnnamedText_71d9e: ; a811d (2a:411d) text "What? That's not" line "@" - -UnnamedText_a812f: ; a812f (2a:412f) TX_RAM $cd13 text "!" From 6bde08504fdc336b1d458bab0bed4ef649cae25a Mon Sep 17 00:00:00 2001 From: Adam AKA Coolboyman Date: Sun, 26 Jan 2014 23:59:48 -0800 Subject: [PATCH 37/41] added a couple of new moves constants --- constants/move_constants.asm | 2 ++ main.asm | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/constants/move_constants.asm b/constants/move_constants.asm index dd287fde..524e7814 100644 --- a/constants/move_constants.asm +++ b/constants/move_constants.asm @@ -165,7 +165,9 @@ SUBSTITUTE EQU $A4 STRUGGLE EQU $A5 ; these do double duty as animation identifiers SHOWPIC_ANIM EQU $A6 ; redraw monster pic +STATUS_AFFECTED_ANIM EQU $A7 ; effect when monster receives a status aliment XSTATITEM_ANIM EQU $AE ; use X Attack/Defense/Speed/Special +BURN_PSN_ANIM EQU $BA ; Plays when a monster is burned or poisoned SLP_ANIM EQU $BD ; sleeping monster CONF_ANIM EQU $BF ; confused monster TOSS_ANIM EQU $C1 ; toss Poké Ball diff --git a/main.asm b/main.asm index 1f0d663c..aa8968e8 100644 --- a/main.asm +++ b/main.asm @@ -56741,7 +56741,7 @@ HandlePoisonBurnLeechSeed: ; 3c3bd (f:43bd) call PrintText xor a ld [$cc5b], a - ld a, $ba + ld a,BURN_PSN_ANIM call PlayMoveAnimation ; play burn/poison animation pop hl call HandlePoisonBurnLeechSeed_DecreaseOwnHP @@ -56762,7 +56762,7 @@ HandlePoisonBurnLeechSeed: ; 3c3bd (f:43bd) ld [H_WHOSETURN], a ; $FF00+$f3 xor a ld [$cc5b], a - ld a, $47 + ld a,ABSORB call PlayMoveAnimation ; play leech seed animation (from opposing mon) pop af ld [H_WHOSETURN], a ; $FF00+$f3 @@ -57971,7 +57971,7 @@ Func_3cca4: ; 3cca4 (f:4ca4) res 5, [hl] ld a, $1 ld [H_WHOSETURN], a ; $FF00+$f3 - ld a, $c3 + ld a, POOF_ANIM call PlayMoveAnimation FuncCoord 4, 11 ; $c480 ld hl, Coord @@ -59389,7 +59389,7 @@ asm_3d74b .next5 xor a ld [$CC5B],a - ld a,$A7 + ld a,STATUS_AFFECTED_ANIM call PlayMoveAnimation asm_3d766 ld a,[W_PLAYERMOVEEFFECT] @@ -59657,7 +59657,7 @@ HyperBeamCheck: ; 3d8c2 (f:58c2) .next8 xor a ld [$CC5B],a - ld a,$A7 + ld a,STATUS_AFFECTED_ANIM call PlayMoveAnimation .next9 ld hl,Func_3d80a ; $580a @@ -61938,7 +61938,7 @@ Func_3e7d1: ; 3e7d1 (f:67d1) .asm_3e7e6 xor a ld [$cc5b], a - ld a, $a7 + ld a,STATUS_AFFECTED_ANIM call PlayMoveAnimation asm_3e7ef: ; 3e7ef (f:67ef) ld a, [W_ENEMYMOVEEFFECT] ; $cfcd @@ -62030,7 +62030,7 @@ Func_3e88f: ; 3e88f (f:688f) call PrintText xor a ld [$cc5b], a - ld a, $bd + ld a,SLP_ANIM call PlayMoveAnimation jr .asm_3e8b5 .asm_3e8af @@ -62108,7 +62108,7 @@ Func_3e8fd: ; 3e8fd (f:68fd) call PrintText xor a ld [$cc5b], a - ld a, $bf + ld a,CONF_ANIM call PlayMoveAnimation call GenRandomInBattle cp $80 @@ -62152,7 +62152,7 @@ Func_3e8fd: ; 3e8fd (f:68fd) xor a ld [$cc5b], a ld [H_WHOSETURN], a ; $FF00+$f3 - ld a, $1 + ld a, POUND call PlayMoveAnimation ld a, $1 ld [H_WHOSETURN], a ; $FF00+$f3 @@ -62192,7 +62192,7 @@ asm_3e9d3: ; 3e9d3 (f:69d3) .asm_3e9e7 xor a ld [$cc5b], a - ld a, $a7 + ld a, STATUS_AFFECTED_ANIM call PlayMoveAnimation .asm_3e9f0 ld hl, Func_3e88c ; $688c From 1b9ee46af9f8baac0d266a54130115a719788377 Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 27 Jan 2014 16:22:41 -0500 Subject: [PATCH 38/41] Get rid of globals.asm. Use ::s to export labels between objects. globals.asm was a hack that: - gave rgbasm an extra 100k lines to read - increased reliance on the python preprocessor - made the makefile a mess - gave object creation an extra step - wasn't even necessary This speeds up build time by at least a third. --- Makefile | 17 +- audio.asm | 5 +- audio/engine_1.asm | 4 +- audio/engine_2.asm | 4 +- audio/engine_3.asm | 4 +- main.asm | 982 +++++++++--------- menu/pc.asm | 16 +- music/bikeriding.asm | 22 +- music/celadon.asm | 12 +- music/cinnabar.asm | 12 +- music/cinnabarmansion.asm | 22 +- music/cities1.asm | 40 +- music/cities2.asm | 12 +- music/credits.asm | 22 +- music/defeatedgymleader.asm | 12 +- music/defeatedtrainer.asm | 12 +- music/defeatedwildmon.asm | 12 +- music/dungeon1.asm | 72 +- music/dungeon2.asm | 20 +- music/dungeon3.asm | 36 +- music/finalbattle.asm | 20 +- music/gamecorner.asm | 28 +- music/gym.asm | 18 +- music/gymleaderbattle.asm | 12 +- music/halloffame.asm | 12 +- music/headers/musicheaders02.asm | 40 +- music/headers/musicheaders08.asm | 14 +- music/headers/musicheaders1f.asm | 36 +- music/headers/sfxheaders02.asm | 192 ++-- music/headers/sfxheaders08.asm | 240 ++--- music/headers/sfxheaders1f.asm | 208 ++-- music/indigoplateau.asm | 28 +- music/introbattle.asm | 8 +- music/jigglypuffsong.asm | 4 +- music/lavender.asm | 16 +- music/meeteviltrainer.asm | 12 +- music/meetfemaletrainer.asm | 14 +- music/meetmaletrainer.asm | 12 +- music/meetprofoak.asm | 18 +- music/meetrival.asm | 26 +- music/museumguy.asm | 24 +- music/oakslab.asm | 12 +- music/pallettown.asm | 12 +- music/pkmnhealed.asm | 6 +- music/pokecenter.asm | 22 +- music/pokemontower.asm | 12 +- music/routes1.asm | 20 +- music/routes2.asm | 14 +- music/routes3.asm | 16 +- music/routes4.asm | 16 +- music/safarizone.asm | 18 +- music/silphco.asm | 14 +- music/ssanne.asm | 10 +- music/surfing.asm | 12 +- music/titlescreen.asm | 44 +- music/trainerbattle.asm | 12 +- music/unusedsong.asm | 8 +- music/vermilion.asm | 18 +- music/wildbattle.asm | 14 +- pokeblue.asm | 1 - pokered.asm | 1 - preprocessor.py | 1 - prequeue.py | 2 - text.asm | 955 +++++++++-------- text/maps/agatha.asm | 8 +- text/maps/bike_shop.asm | 22 +- text/maps/bills_house.asm | 16 +- text/maps/blues_house.asm | 14 +- text/maps/bruno.asm | 8 +- text/maps/celadon_city.asm | 40 +- text/maps/celadon_dept_store_1f.asm | 6 +- text/maps/celadon_dept_store_2f.asm | 6 +- text/maps/celadon_dept_store_3f.asm | 30 +- text/maps/celadon_dept_store_4f.asm | 6 +- text/maps/celadon_dept_store_5f.asm | 6 +- text/maps/celadon_dept_store_roof.asm | 42 +- text/maps/celadon_diner.asm | 16 +- text/maps/celadon_game_corner.asm | 60 +- text/maps/celadon_gym.asm | 56 +- text/maps/celadon_hotel.asm | 6 +- text/maps/celadon_house.asm | 6 +- text/maps/celadon_mansion_1f.asm | 10 +- text/maps/celadon_mansion_2f.asm | 2 +- text/maps/celadon_mansion_3f.asm | 18 +- text/maps/celadon_mansion_4f_inside.asm | 2 +- text/maps/celadon_mansion_4f_outside.asm | 2 +- text/maps/celadon_pokecenter.asm | 4 +- text/maps/celadon_prize_room.asm | 4 +- text/maps/cerulean_badge_house.asm | 22 +- text/maps/cerulean_city.asm | 54 +- text/maps/cerulean_gym.asm | 28 +- text/maps/cerulean_mart.asm | 4 +- text/maps/cerulean_pokecenter.asm | 4 +- text/maps/cerulean_trade_house.asm | 2 +- text/maps/cerulean_trashed_house.asm | 8 +- text/maps/champion.asm | 16 +- text/maps/cinnabar_gym.asm | 60 +- text/maps/cinnabar_island.asm | 12 +- text/maps/cinnabar_lab.asm | 10 +- text/maps/cinnabar_lab_fossil_room.asm | 16 +- text/maps/cinnabar_lab_metronome_room.asm | 14 +- text/maps/cinnabar_lab_trade_room.asm | 2 +- text/maps/cinnabar_mart.asm | 4 +- text/maps/cinnabar_pokecenter.asm | 6 +- text/maps/copycats_house_1f.asm | 6 +- text/maps/copycats_house_2f.asm | 22 +- text/maps/daycare_1.asm | 18 +- text/maps/daycare_2.asm | 14 +- text/maps/digletts_cave_route_11_entrance.asm | 2 +- text/maps/digletts_cave_route_2_entrance.asm | 2 +- text/maps/fan_club.asm | 32 +- text/maps/fighting_dojo.asm | 38 +- text/maps/fuchsia_city.asm | 36 +- text/maps/fuchsia_fishing_house.asm | 10 +- text/maps/fuchsia_gym_1.asm | 4 +- text/maps/fuchsia_gym_2.asm | 50 +- text/maps/fuchsia_house.asm | 6 +- text/maps/fuchsia_mart.asm | 4 +- text/maps/fuchsia_meeting_room.asm | 6 +- text/maps/fuchsia_pokecenter.asm | 4 +- text/maps/fujis_house.asm | 24 +- text/maps/hall_of_fame.asm | 2 +- text/maps/indigo_plateau_lobby.asm | 4 +- text/maps/lance.asm | 6 +- text/maps/lavender_house.asm | 6 +- text/maps/lavender_mart.asm | 6 +- text/maps/lavender_pokecenter.asm | 8 +- text/maps/lavender_town.asm | 18 +- text/maps/lorelei.asm | 8 +- text/maps/mansion_1f.asm | 12 +- text/maps/mansion_2f.asm | 16 +- text/maps/mansion_3f.asm | 14 +- text/maps/mansion_b1f.asm | 14 +- text/maps/mr_psychics_house.asm | 8 +- text/maps/mt_moon_1f.asm | 44 +- text/maps/mt_moon_b1f.asm | 2 +- text/maps/mt_moon_b2f.asm | 42 +- text/maps/mt_moon_pokecenter.asm | 14 +- text/maps/museum_1f.asm | 32 +- text/maps/museum_2f.asm | 14 +- text/maps/name_rater.asm | 14 +- text/maps/oaks_lab.asm | 118 +-- text/maps/pallet_town.asm | 16 +- text/maps/pewter_city.asm | 32 +- text/maps/pewter_gym_1.asm | 2 +- text/maps/pewter_gym_2.asm | 30 +- text/maps/pewter_house_1.asm | 6 +- text/maps/pewter_house_2.asm | 4 +- text/maps/pewter_mart.asm | 4 +- text/maps/pewter_pokecenter.asm | 4 +- text/maps/pokemon_league_gate.asm | 6 +- text/maps/pokemon_tower_1f.asm | 10 +- text/maps/pokemon_tower_2f.asm | 10 +- text/maps/pokemon_tower_3f.asm | 18 +- text/maps/pokemon_tower_4f.asm | 18 +- text/maps/pokemon_tower_5f.asm | 28 +- text/maps/pokemon_tower_6f.asm | 24 +- text/maps/pokemon_tower_7f.asm | 20 +- text/maps/power_plant.asm | 4 +- text/maps/reds_house_1f.asm | 10 +- text/maps/rock_tunnel_b1f.asm | 44 +- text/maps/rock_tunnel_b2f_1.asm | 40 +- text/maps/rock_tunnel_b2f_2.asm | 8 +- text/maps/rock_tunnel_pokecenter.asm | 4 +- text/maps/rocket_hideout_b1f.asm | 30 +- text/maps/rocket_hideout_b2f.asm | 6 +- text/maps/rocket_hideout_b3f.asm | 12 +- text/maps/rocket_hideout_b4f.asm | 24 +- text/maps/rocket_hideout_elevator.asm | 2 +- text/maps/route_1.asm | 12 +- text/maps/route_10.asm | 42 +- text/maps/route_11_1.asm | 50 +- text/maps/route_11_2.asm | 12 +- text/maps/route_11_gate.asm | 2 +- text/maps/route_11_gate_upstairs.asm | 8 +- text/maps/route_12.asm | 52 +- text/maps/route_12_gate.asm | 2 +- text/maps/route_12_gate_upstairs.asm | 12 +- text/maps/route_12_house.asm | 12 +- text/maps/route_13.asm | 66 +- text/maps/route_14.asm | 62 +- text/maps/route_15.asm | 62 +- text/maps/route_15_gate.asm | 2 +- text/maps/route_15_gate_upstairs.asm | 4 +- text/maps/route_16.asm | 46 +- text/maps/route_16_gate.asm | 8 +- text/maps/route_16_gate_upstairs.asm | 8 +- text/maps/route_16_house.asm | 10 +- text/maps/route_17.asm | 72 +- text/maps/route_18.asm | 22 +- text/maps/route_18_gate.asm | 6 +- text/maps/route_18_gate_upstairs.asm | 4 +- text/maps/route_19.asm | 62 +- text/maps/route_2.asm | 4 +- text/maps/route_20.asm | 64 +- text/maps/route_21.asm | 54 +- text/maps/route_22.asm | 18 +- text/maps/route_23.asm | 8 +- text/maps/route_24_1.asm | 16 +- text/maps/route_24_2.asm | 34 +- text/maps/route_25.asm | 56 +- text/maps/route_2_gate.asm | 4 +- text/maps/route_2_house.asm | 2 +- text/maps/route_3.asm | 52 +- text/maps/route_4.asm | 12 +- text/maps/route_5.asm | 2 +- text/maps/route_6.asm | 36 +- text/maps/route_7.asm | 2 +- text/maps/route_8.asm | 56 +- text/maps/route_9.asm | 56 +- text/maps/safari_zone_center.asm | 4 +- text/maps/safari_zone_east.asm | 6 +- text/maps/safari_zone_entrance.asm | 26 +- text/maps/safari_zone_north.asm | 10 +- text/maps/safari_zone_rest_house_1.asm | 4 +- text/maps/safari_zone_rest_house_2.asm | 6 +- text/maps/safari_zone_rest_house_3.asm | 6 +- text/maps/safari_zone_rest_house_4.asm | 6 +- text/maps/safari_zone_secret_house.asm | 8 +- text/maps/safari_zone_west.asm | 8 +- text/maps/saffron_city.asm | 46 +- text/maps/saffron_gates.asm | 8 +- text/maps/saffron_gym.asm | 60 +- text/maps/saffron_house.asm | 8 +- text/maps/saffron_mart.asm | 4 +- text/maps/saffron_pokecenter.asm | 4 +- text/maps/school.asm | 4 +- text/maps/seafoam_islands_b4f.asm | 6 +- text/maps/silph_co_10f.asm | 16 +- text/maps/silph_co_11f.asm | 30 +- text/maps/silph_co_1f.asm | 2 +- text/maps/silph_co_2f.asm | 32 +- text/maps/silph_co_3f.asm | 16 +- text/maps/silph_co_4f.asm | 22 +- text/maps/silph_co_5f_1.asm | 18 +- text/maps/silph_co_5f_2.asm | 16 +- text/maps/silph_co_6f.asm | 38 +- text/maps/silph_co_7f.asm | 44 +- text/maps/silph_co_8f.asm | 32 +- text/maps/silph_co_9f.asm | 24 +- text/maps/ss_anne_1.asm | 4 +- text/maps/ss_anne_10.asm | 40 +- text/maps/ss_anne_2.asm | 10 +- text/maps/ss_anne_3.asm | 2 +- text/maps/ss_anne_5.asm | 18 +- text/maps/ss_anne_6.asm | 20 +- text/maps/ss_anne_7.asm | 14 +- text/maps/ss_anne_8.asm | 36 +- text/maps/ss_anne_9.asm | 38 +- .../underground_path_route_6_entrance.asm | 2 +- .../underground_path_route_7_entrance.asm | 2 +- ...derground_path_route_7_entrance_unused.asm | 8 +- .../underground_path_route_8_entrance.asm | 2 +- text/maps/unknown_dungeon_b1f.asm | 2 +- text/maps/vermilion_city.asm | 34 +- text/maps/vermilion_dock.asm | 2 +- text/maps/vermilion_fishing_house.asm | 12 +- text/maps/vermilion_gym_1.asm | 2 +- text/maps/vermilion_gym_2.asm | 34 +- text/maps/vermilion_house.asm | 6 +- text/maps/vermilion_mart.asm | 4 +- text/maps/vermilion_pokecenter.asm | 6 +- text/maps/victory_road_1f.asm | 12 +- text/maps/victory_road_2f.asm | 32 +- text/maps/victory_road_3f.asm | 24 +- text/maps/viridian_city.asm | 44 +- text/maps/viridian_forest.asm | 34 +- text/maps/viridian_forest_entrance.asm | 4 +- text/maps/viridian_forest_exit.asm | 4 +- text/maps/viridian_gym.asm | 66 +- text/maps/viridian_house.asm | 8 +- text/maps/viridian_mart.asm | 16 +- text/maps/wardens_house.asm | 22 +- text/move_names.asm | 2 +- text/oakspeech.asm | 12 +- text/pokedex.asm | 302 +++--- wram.asm | 888 ++++++++-------- 277 files changed, 4346 insertions(+), 4358 deletions(-) diff --git a/Makefile b/Makefile index f889f2aa..ad93c02b 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ ROMS := pokered.gbc pokeblue.gbc # generate dependencies for each object $(shell $(foreach obj, $(OBJS), \ - $(eval $(obj:.o=)_DEPENDENCIES := $(shell $(PYTHON) extras/pokemontools/scan_includes.py $(obj:.o=.asm) | sed s/globals.asm//g)) \ + $(eval $(obj:.o=)_DEPENDENCIES := $(shell $(PYTHON) extras/pokemontools/scan_includes.py $(obj:.o=.asm))) \ )) $(shell $(foreach obj, $(OBJS), \ $(eval ALL_DEPENDENCIES += $($(obj:.o=)_DEPENDENCIES)) \ @@ -41,7 +41,6 @@ redrle: extras/redtools/redrle.c clean: rm -f $(ROMS) rm -f $(OBJS) - rm -f globals.asm @echo "removing *.tx" && find . -iname '*.tx' -exec rm {} + rm -f redrle @@ -51,23 +50,19 @@ baserom.gbc: ; %.asm: ; .asm.tx: - $(eval TEXTQUEUE := $(TEXTQUEUE) $<) + $(eval TEXTQUEUE += $<) @rm -f $@ -globals.asm: $(ALL_DEPENDENCIES:.asm=.tx) $(OBJS:.o=.tx) - @touch $@ - @$(PYTHON) prequeue.py $(TEXTQUEUE) -globals.tx: globals.asm - @cp $< $@ - $(OBJS): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_DEPENDENCIES)) + @$(PYTHON) prequeue.py $(TEXTQUEUE) + @$(eval TEXTQUEUE :=) rgbasm -o $@ $*.tx -pokered.gbc: globals.tx $(RED_OBJS) +pokered.gbc: $(RED_OBJS) rgblink -n $*.sym -m $*.map -o $@ $(RED_OBJS) rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED" $@ -pokeblue.gbc: globals.tx $(BLUE_OBJS) +pokeblue.gbc: $(BLUE_OBJS) rgblink -n $*.sym -m $*.map -o $@ $(BLUE_OBJS) rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE" $@ diff --git a/audio.asm b/audio.asm index a77f6f0c..60d00e8a 100644 --- a/audio.asm +++ b/audio.asm @@ -1,4 +1,3 @@ -INCLUDE "globals.asm" AUDIO_1 EQU $2 AUDIO_2 EQU $8 @@ -463,7 +462,7 @@ Music_Cities1AlternateTempo:: ; 0x9b81 SECTION "Audio Engine 2", ROMX, BANK[AUDIO_2] -Func_2136e: ; 2136e (8:536e) +Func_2136e:: ; 2136e (8:536e) ld a, [$d083] cp $ff jr z, .asm_2139b @@ -528,7 +527,7 @@ INCLUDE "menu/pc.asm" INCLUDE "audio/engine_2.asm" -Music_PokeFluteInBattle: ; 22306 (8:6306) +Music_PokeFluteInBattle:: ; 22306 (8:6306) ld a, (SFX_08_46 - $4000) / 3 ; PokeFlute outside of battle call PlaySoundWaitForCurrent ld hl, $c00e diff --git a/audio/engine_1.asm b/audio/engine_1.asm index 0d60308a..8534b325 100644 --- a/audio/engine_1.asm +++ b/audio/engine_1.asm @@ -1,6 +1,6 @@ ; The first of three duplicated sound engines. -Func_9103: ; 0x9103 +Func_9103:: ; 0x9103 ld c, CH0 .loop ld b, $0 @@ -1273,7 +1273,7 @@ Func_9858: ; 0x9858 ld d, a ret -Func_9876: ; 0x9876 +Func_9876:: ; 0x9876 ld [$c001], a cp $ff jp z, Func_9a34 diff --git a/audio/engine_2.asm b/audio/engine_2.asm index deb65357..56834b90 100644 --- a/audio/engine_2.asm +++ b/audio/engine_2.asm @@ -1,6 +1,6 @@ ; The second of three duplicated sound engines. -Func_21879: ; 21879 (8:5879) +Func_21879:: ; 21879 (8:5879) ld c, CH0 .loop ld b, $0 @@ -1324,7 +1324,7 @@ Func_22017: ; 22017 (8:6017) ld d, a ret -Func_22035: ; 22035 (8:6035) +Func_22035:: ; 22035 (8:6035) ld [$c001], a cp $ff jp z, Func_221f3 diff --git a/audio/engine_3.asm b/audio/engine_3.asm index 1f285ee6..15237f57 100644 --- a/audio/engine_3.asm +++ b/audio/engine_3.asm @@ -1,6 +1,6 @@ ; The third of three duplicated sound engines. -Func_7d177: ; 7d177 (1f:5177) +Func_7d177:: ; 7d177 (1f:5177) ld c, CH0 .loop ld b, $0 @@ -1273,7 +1273,7 @@ Func_7d8cc: ; 7d8cc (1f:58cc) ld d, a ret -Func_7d8ea: ; 7d8ea (1f:58ea) +Func_7d8ea:: ; 7d8ea (1f:58ea) ld [$c001], a cp $ff jp z, Func_7daa8 diff --git a/main.asm b/main.asm index aa8968e8..bc02e811 100644 --- a/main.asm +++ b/main.asm @@ -32,7 +32,7 @@ SECTION "joypad",ROM0[$60] SECTION "bank0",ROM0[$61] -DisableLCD: ; 0061 (0:0061) +DisableLCD:: ; 0061 (0:0061) xor a ld [$ff0f],a ld a,[$ffff] @@ -50,13 +50,13 @@ DisableLCD: ; 0061 (0:0061) ld [$ffff],a ret -EnableLCD: ; 007b (0:007b) +EnableLCD:: ; 007b (0:007b) ld a,[$ff40] set 7,a ld [$ff40],a ret -CleanLCD_OAM: ; 0082 (0:0082) +CleanLCD_OAM:: ; 0082 (0:0082) xor a ld hl,wOAMBuffer ld b,$a0 @@ -66,7 +66,7 @@ CleanLCD_OAM: ; 0082 (0:0082) jr nz,.loop ret -ResetLCD_OAM: ; 008d (0:008d) +ResetLCD_OAM:: ; 008d (0:008d) ld a,$a0 ld hl,wOAMBuffer ld de,$0004 @@ -78,7 +78,7 @@ ResetLCD_OAM: ; 008d (0:008d) jr nz,.loop ret -FarCopyData: ; 009d (0:009d) +FarCopyData:: ; 009d (0:009d) ; copy bc bytes of data from a:hl to de ld [$CEE9],a ; save future bank # for later ld a,[H_LOADEDROMBANK] ; get current bank # @@ -91,7 +91,7 @@ FarCopyData: ; 009d (0:009d) ld [H_LOADEDROMBANK],a ld [$2000],a ret -CopyData: ; 00b5 (0:00b5) +CopyData:: ; 00b5 (0:00b5) ; copy bc bytes of data from hl to de ld a,[hli] ld [de],a @@ -107,7 +107,7 @@ nop jp Start SECTION "start",ROM0[$150] -Start: ; 0150 (0:0150) +Start:: ; 0150 (0:0150) cp $11 ; value that indicates Gameboy Color jr z,.gbcDetected xor a @@ -130,7 +130,7 @@ Start: ; 0150 (0:0150) ; bit 5 - Left ; bit 6 - Up ; bit 7 - Down -ReadJoypadRegister: ; 015f (0:015f) +ReadJoypadRegister:: ; 015f (0:015f) ld a,%00100000 ; select direction keys ld c,$00 ld [rJOYP],a @@ -169,7 +169,7 @@ ReadJoypadRegister: ; 015f (0:015f) ; [H_NEWLYRELEASEDBUTTONS] = keys released since last time ; [H_NEWLYPRESSEDBUTTONS] = keys pressed since last time ; [H_CURRENTPRESSEDBUTTONS] = currently pressed keys -GetJoypadState: ; 019a (0:019a) +GetJoypadState:: ; 019a (0:019a) ld a, [H_LOADEDROMBANK] push af ld a,Bank(_GetJoypadState) @@ -182,7 +182,7 @@ GetJoypadState: ; 019a (0:019a) ret ; see also MapHeaderBanks -MapHeaderPointers: ; 01ae (0:01ae) +MapHeaderPointers:: ; 01ae (0:01ae) dw PalletTown_h dw ViridianCity_h dw PewterCity_h @@ -436,13 +436,13 @@ MapHeaderPointers: ; 01ae (0:01ae) ; at the beginning of each overworld loop iteration as the player jumps ; down a ledge ; it also ends the jump when it's completed -HandleMidJump: ; 039e (0:039e) +HandleMidJump:: ; 039e (0:039e) ld b, BANK(_HandleMidJump) ld hl, _HandleMidJump jp Bankswitch ; this is jumped to immediately after loading a save / starting a new game / loading a new map -EnterMap: ; 03a6 (0:03a6) +EnterMap:: ; 03a6 (0:03a6) ld a,$ff ld [wJoypadForbiddenButtonsMask],a call LoadMapData ; load map data @@ -482,9 +482,9 @@ EnterMap: ; 03a6 (0:03a6) xor a ld [wJoypadForbiddenButtonsMask],a -OverworldLoop: ; 03ff (0:03ff) +OverworldLoop:: ; 03ff (0:03ff) call DelayFrame -OverworldLoopLessDelay: ; 0402 (0:0402) +OverworldLoopLessDelay:: ; 0402 (0:0402) call DelayFrame call LoadGBPal ld a,[$d736] @@ -798,7 +798,7 @@ OverworldLoopLessDelay: ; 0402 (0:0402) ; function to determine if there will be a battle and execute it (either a trainer battle or wild battle) ; sets carry if a battle occurred and unsets carry if not -NewBattle: ; 0683 (0:0683) +NewBattle:: ; 0683 (0:0683) ld a,[$d72d] bit 4,a jr nz,.noBattle @@ -815,7 +815,7 @@ NewBattle: ; 0683 (0:0683) ret ; function to make bikes twice as fast as walking -BikeSpeedup: ; 06a0 (0:06a0) +BikeSpeedup:: ; 06a0 (0:06a0) ld a,[$cc57] and a ret nz @@ -829,7 +829,7 @@ BikeSpeedup: ; 06a0 (0:06a0) jp AdvancePlayerSprite ; check if the player has stepped onto a warp after having not collided -CheckWarpsNoCollision: ; 06b4 (0:06b4) +CheckWarpsNoCollision:: ; 06b4 (0:06b4) ld a,[$d3ae] ; number of warps and a jp z,CheckMapConnections @@ -841,7 +841,7 @@ CheckWarpsNoCollision: ; 06b4 (0:06b4) ld a,[W_XCOORD] ld e,a ld hl,$d3af ; start of warp entries -CheckWarpsNoCollisionLoop: ; 06cc (0:06cc) +CheckWarpsNoCollisionLoop:: ; 06cc (0:06cc) ld a,[hli] ; check if the warp's Y position matches cp d jr nz,CheckWarpsNoCollisionRetry1 @@ -880,7 +880,7 @@ CheckWarpsNoCollisionLoop: ; 06cc (0:06cc) jr WarpFound1 ; check if the player has stepped onto a warp after having collided -CheckWarpsCollision: ; 0706 (0:0706) +CheckWarpsCollision:: ; 0706 (0:0706) ld a,[$d3ae] ; number of warps ld c,a ld hl,$d3af ; start of warp entries @@ -909,20 +909,20 @@ CheckWarpsCollision: ; 0706 (0:0706) jr nz,.loop jp OverworldLoop -CheckWarpsNoCollisionRetry1: ; 072f (0:072f) +CheckWarpsNoCollisionRetry1:: ; 072f (0:072f) inc hl -CheckWarpsNoCollisionRetry2: ; 0730 (0:0730) +CheckWarpsNoCollisionRetry2:: ; 0730 (0:0730) inc hl inc hl jp ContinueCheckWarpsNoCollisionLoop -WarpFound1: ; 0735 (0:0735) +WarpFound1:: ; 0735 (0:0735) ld a,[hli] ld [$d42f],a ; save target warp ID ld a,[hli] ld [$ff8b],a ; save target map -WarpFound2: ; 073c (0:073c) +WarpFound2:: ; 073c (0:073c) ld a,[$d3ae] ; number of warps sub c ld [$d73b],a ; save ID of used warp @@ -982,13 +982,13 @@ WarpFound2: ; 073c (0:073c) call Func_12da jp EnterMap -ContinueCheckWarpsNoCollisionLoop: ; 07b5 (0:07b5) +ContinueCheckWarpsNoCollisionLoop:: ; 07b5 (0:07b5) inc b ; increment warp number dec c ; decrement number of warps jp nz,CheckWarpsNoCollisionLoop ; if no matching warp was found -CheckMapConnections: ; 07ba (0:07ba) +CheckMapConnections:: ; 07ba (0:07ba) .checkWestMap ld a,[W_XCOORD] cp a,$ff @@ -1128,7 +1128,7 @@ CheckMapConnections: ; 07ba (0:07ba) jp OverworldLoop ; function to play a sound when changing maps -PlayMapChangeSound: ; 08c9 (0:08c9) +PlayMapChangeSound:: ; 08c9 (0:08c9) FuncCoord 8, 8 ; $c448 ld a,[Coord] ; upper left tile of the 4x4 square the player's sprite is standing on cp a,$0b ; door tile in tileset 0 @@ -1144,7 +1144,7 @@ PlayMapChangeSound: ; 08c9 (0:08c9) ret nz jp GBFadeIn1 -CheckIfInOutsideMap: ; 08e1 (0:08e1) +CheckIfInOutsideMap:: ; 08e1 (0:08e1) ; If the player is in an outside map (a town or route), set the z flag ld a,[W_CURMAPTILESET] and a ; most towns/routes have tileset 0 @@ -1158,7 +1158,7 @@ CheckIfInOutsideMap: ; 08e1 (0:08e1) ; "function 1" passes when the player is at the edge of the map and is facing towards the outside of the map ; "function 2" passes when the the tile in front of the player is among a certain set ; sets carry if the check passes, otherwise clears carry -ExtraWarpCheck: ; 08e9 (0:08e9) +ExtraWarpCheck:: ; 08e9 (0:08e9) ld a,[W_CURMAP] cp a,SS_ANNE_3 jr z,.useFunction1 @@ -1188,7 +1188,7 @@ ExtraWarpCheck: ; 08e9 (0:08e9) ld b, BANK(Func_c44e) jp Bankswitch -MapEntryAfterBattle: ; 091f (0:091f) +MapEntryAfterBattle:: ; 091f (0:091f) ld b, BANK(Func_c35f) ld hl, Func_c35f call Bankswitch ; function that appears to disable warp testing after collisions if the player is standing on a warp @@ -1199,7 +1199,7 @@ MapEntryAfterBattle: ; 091f (0:091f) ; for when all the player's pokemon faint ; other code prints the "you blacked out" message before this is called -HandleBlackOut: ; 0931 (0:0931) +HandleBlackOut:: ; 0931 (0:0931) call GBFadeIn1 ld a,$08 call StopMusic @@ -1213,7 +1213,7 @@ HandleBlackOut: ; 0931 (0:0931) call Func_2312 jp Func_5d5f -StopMusic: ; 0951 (0:0951) +StopMusic:: ; 0951 (0:0951) ld [wMusicHeaderPointer],a ld a,$ff ld [$c0ee],a @@ -1224,7 +1224,7 @@ StopMusic: ; 0951 (0:0951) jr nz,.waitLoop jp StopAllSounds -HandleFlyOrTeleportAway: ; 0965 (0:0965) +HandleFlyOrTeleportAway:: ; 0965 (0:0965) call UpdateSprites ; move sprites call Delay3 xor a @@ -1243,13 +1243,13 @@ HandleFlyOrTeleportAway: ; 0965 (0:0965) jp Func_5d5f ; function that calls a function to do fly away or teleport away graphics -DoFlyOrTeleportAwayGraphics: ; 098f (0:098f) +DoFlyOrTeleportAwayGraphics:: ; 098f (0:098f) ld b, BANK(_DoFlyOrTeleportAwayGraphics) ld hl, _DoFlyOrTeleportAwayGraphics jp Bankswitch ; load sprite graphics based on whether the player is standing, biking, or surfing -LoadPlayerSpriteGraphics: ; 0997 (0:0997) +LoadPlayerSpriteGraphics:: ; 0997 (0:0997) ld a,[$d700] dec a jr z,.ridingBike @@ -1277,7 +1277,7 @@ LoadPlayerSpriteGraphics: ; 0997 (0:0997) ; function to check if bike riding is allowed on the current map ; sets carry if bike is allowed, clears carry otherwise -IsBikeRidingAllowed: ; 09c5 (0:09c5) +IsBikeRidingAllowed:: ; 09c5 (0:09c5) ld a,[W_CURMAP] cp a,ROUTE_23 jr z,.allowed @@ -1298,11 +1298,11 @@ IsBikeRidingAllowed: ; 09c5 (0:09c5) scf ret -BikeRidingTilesets: ; 09e2 (0:09e2) +BikeRidingTilesets:: ; 09e2 (0:09e2) db $00, $03, $0B, $0E, $11, $FF ; load the tile pattern data of the current tileset into VRAM -LoadTilesetTilePatternData: ; 09e8 (0:09e8) +LoadTilesetTilePatternData:: ; 09e8 (0:09e8) ld a,[$d52e] ld l,a ld a,[$d52f] @@ -1314,7 +1314,7 @@ LoadTilesetTilePatternData: ; 09e8 (0:09e8) ; this loads the current maps complete tile map (which references blocks, not individual tiles) to C6E8 ; it can also load partial tile maps of connected maps into a border of length 3 around the current map -LoadTileBlockMap: ; 09fc (0:09fc) +LoadTileBlockMap:: ; 09fc (0:09fc) ; fill C6E8-CBFB with the background tile ld hl,$c6e8 ld a,[$d3ad] ; background tile number @@ -1443,7 +1443,7 @@ LoadTileBlockMap: ; 09fc (0:09fc) .done ret -LoadNorthSouthConnectionsTileMap: ; 0ade (0:0ade) +LoadNorthSouthConnectionsTileMap:: ; 0ade (0:0ade) ld c,$03 .loop push de @@ -1475,7 +1475,7 @@ LoadNorthSouthConnectionsTileMap: ; 0ade (0:0ade) jr nz,.loop ret -LoadEastWestConnectionsTileMap: ; 0b02 (0:0b02) +LoadEastWestConnectionsTileMap:: ; 0b02 (0:0b02) push hl push de ld c,$03 @@ -1507,7 +1507,7 @@ LoadEastWestConnectionsTileMap: ; 0b02 (0:0b02) ; function to check if there is a sign or sprite in front of the player ; if so, it is stored in [$FF8C] ; if not, [$FF8C] is set to 0 -IsSpriteOrSignInFrontOfPlayer: ; 0b23 (0:0b23) +IsSpriteOrSignInFrontOfPlayer:: ; 0b23 (0:0b23) xor a ld [$ff8c],a ld a,[$d4b0] ; number of signs in the map @@ -1563,9 +1563,9 @@ IsSpriteOrSignInFrontOfPlayer: ; 0b23 (0:0b23) ; part of the above function, but sometimes its called on its own, when signs are irrelevant ; the caller must zero [$FF8C] -IsSpriteInFrontOfPlayer: ; 0b6b (0:0b6b) +IsSpriteInFrontOfPlayer:: ; 0b6b (0:0b6b) ld d,$10 ; talking range in pixels (normal range) -IsSpriteInFrontOfPlayer2: ; 0b6d (0:0b6d) +IsSpriteInFrontOfPlayer2:: ; 0b6d (0:0b6d) ld bc,$3c40 ; Y and X position of player sprite ld a,[$c109] ; direction the player is facing .checkIfPlayerFacingUp @@ -1649,7 +1649,7 @@ IsSpriteInFrontOfPlayer2: ; 0b6d (0:0b6d) ; function to check if the player will jump down a ledge and check if the tile ahead is passable (when not surfing) ; sets the carry flag if there is a collision, and unsets it if there isn't a collision -CollisionCheckOnLand: ; 0bd1 (0:0bd1) +CollisionCheckOnLand:: ; 0bd1 (0:0bd1) ld a,[$d736] bit 6,a ; is the player jumping? jr nz,.noCollision @@ -1689,7 +1689,7 @@ CollisionCheckOnLand: ; 0bd1 (0:0bd1) ; function that checks if the tile in front of the player is passable ; clears carry if it is, sets carry if not -CheckTilePassable: ; 0c10 (0:0c10) +CheckTilePassable:: ; 0c10 (0:0c10) ld a,$35 call Predef ; get tile in front of player ld a,[$cfc6] ; tile in front of player @@ -1713,7 +1713,7 @@ CheckTilePassable: ; 0c10 (0:0c10) ; and check for collisions that only occur between certain pairs of tiles ; Input: hl - address of directional collision data ; sets carry if there is a collision and unsets carry if not -CheckForJumpingAndTilePairCollisions: ; 0c2a (0:0c2a) +CheckForJumpingAndTilePairCollisions:: ; 0c2a (0:0c2a) push hl ld a,$35 call Predef ; get the tile in front of the player @@ -1731,12 +1731,12 @@ CheckForJumpingAndTilePairCollisions: ; 0c2a (0:0c2a) ret nz ; if not jumping -Func_c44: ; 0c44 (0:0c44) +Func_c44:: ; 0c44 (0:0c44) FuncCoord 8, 9 ; $c45c ld a,[Coord] ; tile the player is on ld [$cf0e],a -CheckForTilePairCollisions: ; 0c4a (0:0c4a) +CheckForTilePairCollisions:: ; 0c4a (0:0c4a) ld a,[$cfc6] ; tile in front of the player ld c,a .tilePairCollisionLoop @@ -1786,7 +1786,7 @@ CheckForTilePairCollisions: ; 0c4a (0:0c4a) ; these entries indicate that the player may not cross between tile 1 and tile 2 ; it's mainly used to simulate differences in elevation -TilePairCollisionsLand: ; 0c7e (0:0c7e) +TilePairCollisionsLand:: ; 0c7e (0:0c7e) db $11, $20, $05; db $11, $41, $05; db $03, $30, $2E; @@ -1800,14 +1800,14 @@ TilePairCollisionsLand: ; 0c7e (0:0c7e) db $03, $5F, $2E; db $FF; -TilePairCollisionsWater: ; 0ca0 (0:0ca0) +TilePairCollisionsWater:: ; 0ca0 (0:0ca0) db $03, $14, $2E; db $03, $48, $2E; db $11, $14, $05; db $FF; ; this builds a tile map from the tile block map based on the current X/Y coordinates of the player's character -LoadCurrentMapView: ; 0caa (0:0caa) +LoadCurrentMapView:: ; 0caa (0:0caa) ld a,[H_LOADEDROMBANK] push af ld a,[$d52b] ; tile data ROM bank @@ -1897,7 +1897,7 @@ LoadCurrentMapView: ; 0caa (0:0caa) ld [$2000],a ; restore previous ROM bank ret -AdvancePlayerSprite: ; 0d27 (0:0d27) +AdvancePlayerSprite:: ; 0d27 (0:0d27) ld a,[$c103] ; delta Y ld b,a ld a,[$c105] ; delta X @@ -2095,7 +2095,7 @@ AdvancePlayerSprite: ; 0d27 (0:0d27) ; the following four functions are used to move the pointer to the upper left ; corner of the tile block map in the direction of motion -MoveTileBlockMapPointerEast: ; 0e65 (0:0e65) +MoveTileBlockMapPointerEast:: ; 0e65 (0:0e65) ld a,[de] add a,$01 ld [de],a @@ -2106,7 +2106,7 @@ MoveTileBlockMapPointerEast: ; 0e65 (0:0e65) ld [de],a ret -MoveTileBlockMapPointerWest: ; 0e6f (0:0e6f) +MoveTileBlockMapPointerWest:: ; 0e6f (0:0e6f) ld a,[de] sub a,$01 ld [de],a @@ -2117,7 +2117,7 @@ MoveTileBlockMapPointerWest: ; 0e6f (0:0e6f) ld [de],a ret -MoveTileBlockMapPointerSouth: ; 0e79 (0:0e79) +MoveTileBlockMapPointerSouth:: ; 0e79 (0:0e79) add a,$06 ld b,a ld a,[de] @@ -2130,7 +2130,7 @@ MoveTileBlockMapPointerSouth: ; 0e79 (0:0e79) ld [de],a ret -MoveTileBlockMapPointerNorth: ; 0e85 (0:0e85) +MoveTileBlockMapPointerNorth:: ; 0e85 (0:0e85) add a,$06 ld b,a ld a,[de] @@ -2146,7 +2146,7 @@ MoveTileBlockMapPointerNorth: ; 0e85 (0:0e85) ; the following 6 functions are used to tell the V-blank handler to redraw ; the portion of the map that was newly exposed due to the player's movement -ScheduleNorthRowRedraw: ; 0e91 (0:0e91) +ScheduleNorthRowRedraw:: ; 0e91 (0:0e91) FuncCoord 0, 0 ld hl,Coord call ScheduleRowRedrawHelper @@ -2158,7 +2158,7 @@ ScheduleNorthRowRedraw: ; 0e91 (0:0e91) ld [H_SCREENEDGEREDRAW],a ret -ScheduleRowRedrawHelper: ; 0ea6 (0:0ea6) +ScheduleRowRedrawHelper:: ; 0ea6 (0:0ea6) ld de,wScreenEdgeTiles ld c,$28 .loop @@ -2169,7 +2169,7 @@ ScheduleRowRedrawHelper: ; 0ea6 (0:0ea6) jr nz,.loop ret -ScheduleSouthRowRedraw: ; 0eb2 (0:0eb2) +ScheduleSouthRowRedraw:: ; 0eb2 (0:0eb2) FuncCoord 0,16 ld hl,Coord call ScheduleRowRedrawHelper @@ -2189,7 +2189,7 @@ ScheduleSouthRowRedraw: ; 0eb2 (0:0eb2) ld [H_SCREENEDGEREDRAW],a ret -ScheduleEastColumnRedraw: ; 0ed3 (0:0ed3) +ScheduleEastColumnRedraw:: ; 0ed3 (0:0ed3) FuncCoord 18,0 ld hl,Coord call ScheduleColumnRedrawHelper @@ -2208,7 +2208,7 @@ ScheduleEastColumnRedraw: ; 0ed3 (0:0ed3) ld [H_SCREENEDGEREDRAW],a ret -ScheduleColumnRedrawHelper: ; 0ef2 (0:0ef2) +ScheduleColumnRedrawHelper:: ; 0ef2 (0:0ef2) ld de,wScreenEdgeTiles ld c,$12 .loop @@ -2228,7 +2228,7 @@ ScheduleColumnRedrawHelper: ; 0ef2 (0:0ef2) jr nz,.loop ret -ScheduleWestColumnRedraw: ; 0f08 (0:0f08) +ScheduleWestColumnRedraw:: ; 0f08 (0:0f08) FuncCoord 0,0 ld hl,Coord call ScheduleColumnRedrawHelper @@ -2242,7 +2242,7 @@ ScheduleWestColumnRedraw: ; 0f08 (0:0f08) ; function to write the tiles that make up a tile block to memory ; Input: c = tile block ID, hl = destination address -DrawTileBlock: ; 0f1d (0:0f1d) +DrawTileBlock:: ; 0f1d (0:0f1d) push hl ld a,[$d52c] ; pointer to tiles ld l,a @@ -2283,7 +2283,7 @@ DrawTileBlock: ; 0f1d (0:0f1d) ret ; function to update joypad state and simulate button presses -GetJoypadStateOverworld: ; 0f4d (0:0f4d) +GetJoypadStateOverworld:: ; 0f4d (0:0f4d) xor a ld [$c103],a ld [$c105],a @@ -2354,7 +2354,7 @@ GetJoypadStateOverworld: ; 0f4d (0:0f4d) ; so the old value of c is used. 2429 is always called before this function, ; and 2429 always sets c to 0xF0. There is no 0xF0 background tile, so it ; is considered impassable and it is detected as a collision. -CollisionCheckOnWater: ; 0fb7 (0:0fb7) +CollisionCheckOnWater:: ; 0fb7 (0:0fb7) ld a,[$d730] bit 7,a jp nz,.noCollision ; return and clear carry if button presses are being simulated @@ -2414,7 +2414,7 @@ CollisionCheckOnWater: ; 0fb7 (0:0fb7) jr .stopSurfing ; if it is the boarding platform tile, stop surfing ; function to run the current map's script -RunMapScript: ; 101b (0:101b) +RunMapScript:: ; 101b (0:101b) push hl push de push bc @@ -2444,21 +2444,21 @@ RunMapScript: ; 101b (0:101b) .return ret -LoadWalkingPlayerSpriteGraphics: ; 104d (0:104d) +LoadWalkingPlayerSpriteGraphics:: ; 104d (0:104d) ld de,RedSprite ; $4180 ld hl,$8000 jr LoadPlayerSpriteGraphicsCommon -LoadSurfingPlayerSpriteGraphics: ; 1055 (0:1055) +LoadSurfingPlayerSpriteGraphics:: ; 1055 (0:1055) ld de,SeelSprite ld hl,$8000 jr LoadPlayerSpriteGraphicsCommon -LoadBikePlayerSpriteGraphics: ; 105d (0:105d) +LoadBikePlayerSpriteGraphics:: ; 105d (0:105d) ld de,RedCyclingSprite ld hl,$8000 -LoadPlayerSpriteGraphicsCommon: ; 1063 (0:1063) +LoadPlayerSpriteGraphicsCommon:: ; 1063 (0:1063) push de push hl ld bc,(BANK(RedSprite) << 8) + $0c @@ -2476,7 +2476,7 @@ LoadPlayerSpriteGraphicsCommon: ; 1063 (0:1063) jp CopyVideoData ; function to load data from the map header -LoadMapHeader: ; 107c (0:107c) +LoadMapHeader:: ; 107c (0:107c) ld b, BANK(Func_f113) ld hl, Func_f113 call Bankswitch @@ -2760,7 +2760,7 @@ LoadMapHeader: ; 107c (0:107c) ; function to copy map connection data from ROM to WRAM ; Input: hl = source, de = destination -CopyMapConnectionHeader: ; 1238 (0:1238) +CopyMapConnectionHeader:: ; 1238 (0:1238) ld c,$0b .loop ld a,[hli] @@ -2771,7 +2771,7 @@ CopyMapConnectionHeader: ; 1238 (0:1238) ret ; function to load map data -LoadMapData: ; 1241 (0:1241) +LoadMapData:: ; 1241 (0:1241) ld a,[H_LOADEDROMBANK] push af call DisableLCD @@ -2835,7 +2835,7 @@ LoadMapData: ; 1241 (0:1241) ; function to switch to the ROM bank that a map is stored in ; Input: a = map number -SwitchToMapRomBank: ; 12bc (0:12bc) +SwitchToMapRomBank:: ; 12bc (0:12bc) push hl push bc ld c,a @@ -2854,7 +2854,7 @@ SwitchToMapRomBank: ; 12bc (0:12bc) pop hl ret -Func_12da: ; 12da (0:12da) +Func_12da:: ; 12da (0:12da) ld a, $1e ld [$d13a], a ld hl, $d730 @@ -2863,7 +2863,7 @@ Func_12da: ; 12da (0:12da) ld [hl], a ret -Func_12e7: ; 12e7 (0:12e7) +Func_12e7:: ; 12e7 (0:12e7) ld hl, $d728 res 0, [hl] ret @@ -2871,7 +2871,7 @@ Func_12e7: ; 12e7 (0:12e7) ;appears to be called twice inside function $C38B ;if $d700,$d11a == $1 then biking ;if $d700,$d11a == $2 then surfing -ForceBikeOrSurf: ; 12ed (0:12ed) +ForceBikeOrSurf:: ; 12ed (0:12ed) ld b,5 ;graphics bank 5 ld hl,LoadPlayerSpriteGraphics ;load player sprite graphics call Bankswitch ;loads bank 5 and then calls LoadPlayerSpriteGraphics @@ -2883,7 +2883,7 @@ ForceBikeOrSurf: ; 12ed (0:12ed) ; c = number of frames to wait ; sets carry if Up+Select+B, Start, or A is pressed within c frames ; unsets carry otherwise -CheckForUserInterruption: ; 12f8 (0:12f8) +CheckForUserInterruption:: ; 12f8 (0:12f8) call DelayFrame push bc call GetJoypadStateLowSensitivity @@ -2906,7 +2906,7 @@ CheckForUserInterruption: ; 12f8 (0:12f8) ; function to load position data for destination warp when switching maps ; INPUT: ; a = ID of destination warp within destination map -LoadDestinationWarpPosition: ; 1313 (0:1313) +LoadDestinationWarpPosition:: ; 1313 (0:1313) ld b,a ld a,[H_LOADEDROMBANK] push af @@ -2931,7 +2931,7 @@ LoadDestinationWarpPosition: ; 1313 (0:1313) ; c: if nonzero, show at least a sliver of health ; d = number of HP bar sections (normally 6) ; e = health (in eighths of bar sections) (normally out of 48) -DrawHPBar: ; 1336 (0:1336) +DrawHPBar:: ; 1336 (0:1336) push hl push de push bc @@ -2997,13 +2997,13 @@ DrawHPBar: ; 1336 (0:1336) ; [$cf91] = pokemon ID ; $cf98 = base address of pokemon data ; $d0b8 = base address of base stats -LoadMonData: ; 1372 (0:1372) +LoadMonData:: ; 1372 (0:1372) ld hl,LoadMonData_ ld b,BANK(LoadMonData_) jp Bankswitch ; writes c to $d0dc+b -Func_137a: ; 137a (0:137a) +Func_137a:: ; 137a (0:137a) ld hl, $d0dc ld e, b ld d, $0 @@ -3012,11 +3012,11 @@ Func_137a: ; 137a (0:137a) ld [hl], a ret -LoadFlippedFrontSpriteByMonIndex: ; 1384 (0:1384) +LoadFlippedFrontSpriteByMonIndex:: ; 1384 (0:1384) ld a, $1 ld [W_SPRITEFLIPPED], a -LoadFrontSpriteByMonIndex: ; 1389 (0:1389) +LoadFrontSpriteByMonIndex:: ; 1389 (0:1389) push hl ld a, [$d11e] push af @@ -3060,7 +3060,7 @@ LoadFrontSpriteByMonIndex: ; 1389 (0:1389) ; plays the cry of a pokemon ; INPUT: ; a = pokemon ID -PlayCry: ; 13d0 (0:13d0) +PlayCry:: ; 13d0 (0:13d0) call GetCryData call PlaySound ; play cry jp WaitForSoundToFinish ; wait for sound to be done playing @@ -3068,7 +3068,7 @@ PlayCry: ; 13d0 (0:13d0) ; gets a pokemon's cry data ; INPUT: ; a = pokemon ID -GetCryData: ; 13d9 (0:13d9) +GetCryData:: ; 13d9 (0:13d9) dec a ld c,a ld b,0 @@ -3092,7 +3092,7 @@ GetCryData: ; 13d9 (0:13d9) add c ; a = $14 + cryID * 3 ret -DisplayPartyMenu: ; 13fc (0:13fc) +DisplayPartyMenu:: ; 13fc (0:13fc) ld a,[$ffd7] push af xor a @@ -3103,7 +3103,7 @@ DisplayPartyMenu: ; 13fc (0:13fc) call DrawPartyMenu jp HandlePartyMenuInput -GoBackToPartyMenu: ; 1411 (0:1411) +GoBackToPartyMenu:: ; 1411 (0:1411) ld a,[$ffd7] push af xor a @@ -3112,7 +3112,7 @@ GoBackToPartyMenu: ; 1411 (0:1411) call RedrawPartyMenu jp HandlePartyMenuInput -PartyMenuInit: ; 1420 (0:1420) +PartyMenuInit:: ; 1420 (0:1420) ld a,$01 call BankswitchHome call LoadHpBarAndStatusTilePatterns @@ -3151,7 +3151,7 @@ PartyMenuInit: ; 1420 (0:1420) ld [hl],a ; old menu item ID ret -HandlePartyMenuInput: ; 145a (0:145a) +HandlePartyMenuInput:: ; 145a (0:145a) ld a,1 ld [$cc4a],a ld a,$40 @@ -3211,14 +3211,14 @@ HandlePartyMenuInput: ; 145a (0:145a) call Bankswitch jr HandlePartyMenuInput -DrawPartyMenu: ; 14d4 (0:14d4) +DrawPartyMenu:: ; 14d4 (0:14d4) ld hl, DrawPartyMenu_ jr DrawPartyMenuCommon -RedrawPartyMenu: ; 14d9 (0:14d9) +RedrawPartyMenu:: ; 14d9 (0:14d9) ld hl, RedrawPartyMenu_ -DrawPartyMenuCommon: ; 14dc (0:14dc) +DrawPartyMenuCommon:: ; 14dc (0:14dc) ld b, BANK(RedrawPartyMenu_) jp Bankswitch @@ -3226,7 +3226,7 @@ DrawPartyMenuCommon: ; 14dc (0:14dc) ; INPUT: ; de = address of status condition ; hl = destination address -PrintStatusCondition: ; 14e1 (0:14e1) +PrintStatusCondition:: ; 14e1 (0:14e1) push de dec de dec de ; de = address of current HP @@ -3262,7 +3262,7 @@ PrintStatusConditionNotFainted ; 14f6 ; INPUT: ; hl = destination address ; [$cfb9] = level -PrintLevel: ; 150b (0:150b) +PrintLevel:: ; 150b (0:150b) ld a,$6e ; ":L" tile ID ld [hli],a ld c,2 ; number of digits @@ -3278,19 +3278,19 @@ PrintLevel: ; 150b (0:150b) ; INPUT: ; hl = destination address ; [$cfb9] = level -PrintLevelFull: ; 151b (0:151b) +PrintLevelFull:: ; 151b (0:151b) ld a,$6e ; ":L" tile ID ld [hli],a ld c,3 ; number of digits ld a,[$cfb9] ; level -PrintLevelCommon: ; 1523 (0:1523) +PrintLevelCommon:: ; 1523 (0:1523) ld [$d11e],a ld de,$d11e ld b,$41 ; no leading zeroes, left-aligned, one byte jp PrintNumber -Func_152e: ; 152e (0:152e) +Func_152e:: ; 152e (0:152e) ld hl,$d0dc ld c,a ld b,0 @@ -3301,7 +3301,7 @@ Func_152e: ; 152e (0:152e) ; copies the base stat data of a pokemon to $D0B8 (W_MONHEADER) ; INPUT: ; [$D0B5] = pokemon ID -GetMonHeader: ; 1537 (0:1537) +GetMonHeader:: ; 1537 (0:1537) ld a,[H_LOADEDROMBANK] push af ld a,BANK(BulbasaurBaseStats) @@ -3366,12 +3366,12 @@ GetMonHeader: ; 1537 (0:1537) ret ; copy party pokemon's name to $CD6D -GetPartyMonName2: ; 15b4 (0:15b4) +GetPartyMonName2:: ; 15b4 (0:15b4) ld a,[wWhichPokemon] ; index within party ld hl,W_PARTYMON1NAME ; this is called more often -GetPartyMonName: ; 15ba (0:15ba) +GetPartyMonName:: ; 15ba (0:15ba) push hl push bc call SkipFixedLengthTextEntries ; add 11 to hl, a times @@ -3397,7 +3397,7 @@ GetPartyMonName: ; 15ba (0:15ba) ; bits 0-4: length of BCD number in bytes ; Note that bits 5 and 7 are modified during execution. The above reflects ; their meaning at the beginning of the functions's execution. -PrintBCDNumber: ; 15cd (0:15cd) +PrintBCDNumber:: ; 15cd (0:15cd) ld b,c ; save flags in b res 7,c res 6,c @@ -3435,7 +3435,7 @@ PrintBCDNumber: ; 15cd (0:15cd) .done ret -PrintBCDDigit: ; 1604 (0:1604) +PrintBCDDigit:: ; 1604 (0:1604) and a,%00001111 and a jr z,.zeroDigit @@ -3465,7 +3465,7 @@ PrintBCDDigit: ; 1604 (0:1604) ; uncompresses the front or back sprite of the specified mon ; assumes the corresponding mon header is already loaded ; hl contains offset to sprite pointer ($b for front or $d for back) -UncompressMonSprite: ; 1627 (0:1627) +UncompressMonSprite:: ; 1627 (0:1627) ld bc,W_MONHEADER add hl,bc ld a,[hli] @@ -3510,7 +3510,7 @@ UncompressMonSprite: ; 1627 (0:1627) jp UncompressSpriteData ; de: destination location -LoadMonFrontSprite: ; 1665 (0:1665) +LoadMonFrontSprite:: ; 1665 (0:1665) push de ld hl, W_MONHFRONTSPRITE - W_MONHEADER call UncompressMonSprite @@ -3524,7 +3524,7 @@ LoadMonFrontSprite: ; 1665 (0:1665) ; calculates alignment parameters to place both sprite chunks in the center of the 7*7 tile sprite buffers ; de: destination location ; a,c: sprite dimensions (in tiles of 8x8 each) -LoadUncompressedSpriteData: ; 1672 (0:1672) +LoadUncompressedSpriteData:: ; 1672 (0:1672) push de and $f ld [H_SPRITEWIDTH], a ; each byte contains 8 pixels (in 1bpp), so tiles=bytes for width @@ -3573,7 +3573,7 @@ LoadUncompressedSpriteData: ; 1672 (0:1672) ; copies and aligns the sprite data properly inside the sprite buffer ; sprite buffers are 7*7 tiles in size, the loaded sprite is centered within this area -AlignSpriteDataCentered: ; 16c2 (0:16c2) +AlignSpriteDataCentered:: ; 16c2 (0:16c2) ld a, [H_SPRITEOFFSET] ld b, $0 ld c, a @@ -3599,7 +3599,7 @@ AlignSpriteDataCentered: ; 16c2 (0:16c2) ret ; fills the sprite buffer (pointed to in hl) with zeros -ZeroSpriteBuffer: ; 16df (0:16df) +ZeroSpriteBuffer:: ; 16df (0:16df) ld bc, SPRITEBUFFERSIZE .nextByteLoop xor a @@ -3613,7 +3613,7 @@ ZeroSpriteBuffer: ; 16df (0:16df) ; combines the (7*7 tiles, 1bpp) sprite chunks in buffer 0 and 1 into a 2bpp sprite located in buffer 1 through 2 ; in the resulting sprite, the rows of the two source sprites are interlaced ; de: output address -InterlaceMergeSpriteBuffers: ; 16ea (0:16ea) +InterlaceMergeSpriteBuffers:: ; 16ea (0:16ea) xor a ld [$4000], a push de @@ -3659,50 +3659,50 @@ InterlaceMergeSpriteBuffers: ; 16ea (0:16ea) ld b, a jp CopyVideoData -Tset0B_Coll: ; 172f (0:172f) +Tset0B_Coll:: ; 172f (0:172f) INCBIN "gfx/tilesets/0b.tilecoll" -Tset00_Coll: ; 1735 (0:1735) +Tset00_Coll:: ; 1735 (0:1735) INCBIN "gfx/tilesets/00.tilecoll" -Tset01_Coll: ; 1749 (0:1749) +Tset01_Coll:: ; 1749 (0:1749) INCBIN "gfx/tilesets/01.tilecoll" -Tset02_Coll: ; 1753 (0:1753) +Tset02_Coll:: ; 1753 (0:1753) INCBIN "gfx/tilesets/02.tilecoll" -Tset05_Coll: ; 1759 (0:1759) +Tset05_Coll:: ; 1759 (0:1759) INCBIN "gfx/tilesets/05.tilecoll" -Tset03_Coll: ; 1765 (0:1765) +Tset03_Coll:: ; 1765 (0:1765) INCBIN "gfx/tilesets/03.tilecoll" -Tset08_Coll: ; 1775 (0:1775) +Tset08_Coll:: ; 1775 (0:1775) INCBIN "gfx/tilesets/08.tilecoll" -Tset09_Coll: ; 177f (0:177f) +Tset09_Coll:: ; 177f (0:177f) INCBIN "gfx/tilesets/09.tilecoll" -Tset0D_Coll: ; 178a (0:178a) +Tset0D_Coll:: ; 178a (0:178a) INCBIN "gfx/tilesets/0d.tilecoll" -Tset0E_Coll: ; 1795 (0:1795) +Tset0E_Coll:: ; 1795 (0:1795) INCBIN "gfx/tilesets/0e.tilecoll" -Tset0F_Coll: ; 179a (0:179a) +Tset0F_Coll:: ; 179a (0:179a) INCBIN "gfx/tilesets/0f.tilecoll" -Tset10_Coll: ; 17a2 (0:17a2) +Tset10_Coll:: ; 17a2 (0:17a2) INCBIN "gfx/tilesets/10.tilecoll" -Tset11_Coll: ; 17ac (0:17ac) +Tset11_Coll:: ; 17ac (0:17ac) INCBIN "gfx/tilesets/11.tilecoll" -Tset12_Coll: ; 17b8 (0:17b8) +Tset12_Coll:: ; 17b8 (0:17b8) INCBIN "gfx/tilesets/12.tilecoll" -Tset13_Coll: ; 17c0 (0:17c0) +Tset13_Coll:: ; 17c0 (0:17c0) INCBIN "gfx/tilesets/13.tilecoll" -Tset14_Coll: ; 17ca (0:17ca) +Tset14_Coll:: ; 17ca (0:17ca) INCBIN "gfx/tilesets/14.tilecoll" -Tset15_Coll: ; 17d1 (0:17d1) +Tset15_Coll:: ; 17d1 (0:17d1) INCBIN "gfx/tilesets/15.tilecoll" -Tset16_Coll: ; 17dd (0:17dd) +Tset16_Coll:: ; 17dd (0:17dd) INCBIN "gfx/tilesets/16.tilecoll" -Tset17_Coll: ; 17f0 (0:17f0) +Tset17_Coll:: ; 17f0 (0:17f0) INCBIN "gfx/tilesets/17.tilecoll" ;Tile Collision ends 0x17f7 ; does the same thing as FarCopyData at 009D ; only difference is that it uses [$ff8b] instead of [$cee9] for a temp value ; copy bc bytes of data from a:hl to de -FarCopyData2: ; 17f7 (0:17f7) +FarCopyData2:: ; 17f7 (0:17f7) ld [$ff8b],a ld a,[H_LOADEDROMBANK] push af @@ -3717,7 +3717,7 @@ FarCopyData2: ; 17f7 (0:17f7) ; does a far copy but the source is de and the destination is hl ; copy bc bytes of data from a:de to hl -FarCopyData3: ; 180d (0:180d) +FarCopyData3:: ; 180d (0:180d) ld [$ff8b],a ld a,[H_LOADEDROMBANK] push af @@ -3740,7 +3740,7 @@ FarCopyData3: ; 180d (0:180d) ; copies each source byte to the destination twice (next to each other) ; copy bc source bytes from a:hl to de -FarCopyDataDouble: ; 182b (0:182b) +FarCopyDataDouble:: ; 182b (0:182b) ld [$ff8b],a ld a,[H_LOADEDROMBANK] push af @@ -3764,7 +3764,7 @@ FarCopyDataDouble: ; 182b (0:182b) ; copy (c * 16) bytes from b:de to hl during V-blank ; transfers up to 128 bytes per V-blank -CopyVideoData: ; 1848 (0:1848) +CopyVideoData:: ; 1848 (0:1848) ld a,[H_AUTOBGTRANSFERENABLED] ; save auto-transfer enabled flag push af xor a @@ -3807,7 +3807,7 @@ CopyVideoData: ; 1848 (0:1848) ; copy (c * 8) source bytes from b:de to hl during V-blank ; copies each source byte to the destination twice (next to each other) ; transfers up to 64 source bytes per V-blank -CopyVideoDataDouble: ; 1886 (0:1886) +CopyVideoDataDouble:: ; 1886 (0:1886) ld a,[H_AUTOBGTRANSFERENABLED] ; save auto-transfer enabled flag push af xor a @@ -3852,7 +3852,7 @@ CopyVideoDataDouble: ; 1886 (0:1886) ; hl = address of upper left corner of the area ; b = height ; c = width -ClearScreenArea: ; 18c4 (0:18c4) +ClearScreenArea:: ; 18c4 (0:18c4) ld a,$7F ; blank tile ld de,20 ; screen width .loop @@ -3872,7 +3872,7 @@ ClearScreenArea: ; 18c4 (0:18c4) ; copies the screen tile buffer from WRAM to VRAM ; copying is done in 3 chunks of 6 rows each ; b: high byte of VRAM destination address ($98 or $9c for window tile map 0 or 1 resp.) -CopyScreenTileBufferToVRAM: ; 18d6 (0:18d6) +CopyScreenTileBufferToVRAM:: ; 18d6 (0:18d6) ld c, $6 ld hl, $0000 ld de, wTileMap @@ -3887,7 +3887,7 @@ CopyScreenTileBufferToVRAM: ; 18d6 (0:18d6) call InitScreenTileBufferTransferParameters jp DelayFrame -InitScreenTileBufferTransferParameters: ; 18fc (0:18fc) +InitScreenTileBufferTransferParameters:: ; 18fc (0:18fc) ld a, d ld [H_VBCOPYBGSRC+1], a call GetRowColAddressBgMap @@ -3901,7 +3901,7 @@ InitScreenTileBufferTransferParameters: ; 18fc (0:18fc) ld [H_VBCOPYBGSRC], a ; $FF00+$c1 ret -ClearScreen: ; 190f (0:190f) +ClearScreen:: ; 190f (0:190f) ; clears all tiles in the tilemap, ; then wait three frames ld bc,$0168 ; tilemap size @@ -3916,7 +3916,7 @@ ClearScreen: ; 190f (0:190f) jr nz,.loop jp Delay3 -TextBoxBorder: ; 1922 (0:1922) +TextBoxBorder:: ; 1922 (0:1922) ; draw a text box ; upper-left corner at coordinates hl ; height b @@ -3958,7 +3958,7 @@ TextBoxBorder: ; 1922 (0:1922) ld [hl],"┘" ret ; -NPlaceChar: ; 194f (0:194f) +NPlaceChar:: ; 194f (0:194f) ; place a row of width c of identical characters ld d,c .loop @@ -3967,9 +3967,9 @@ NPlaceChar: ; 194f (0:194f) jr nz,.loop ret -PlaceString: ; 1955 (0:1955) +PlaceString:: ; 1955 (0:1955) push hl -PlaceNextChar: ; 1956 (0:1956) +PlaceNextChar:: ; 1956 (0:1956) ld a,[de] cp "@" @@ -4045,11 +4045,11 @@ PlaceNextChar: ; 1956 (0:1956) jp z,Char5A ld [hli],a call PrintLetterDelay -Next19E8: ; 19e8 (0:19e8) +Next19E8:: ; 19e8 (0:19e8) inc de jp PlaceNextChar -Char00: ; 19ec (0:19ec) +Char00:: ; 19ec (0:19ec) ld b,h ld c,l pop hl @@ -4057,56 +4057,56 @@ Char00: ; 19ec (0:19ec) dec de ret -Char00Text: ; 0x19f4 “%d ERROR.” +Char00Text:: ; 0x19f4 “%d ERROR.” TX_FAR _Char00Text db "@" -Char52: ; 0x19f9 player’s name +Char52:: ; 0x19f9 player’s name push de ld de,W_PLAYERNAME jr FinishDTE -Char53: ; 19ff (0:19ff) ; rival’s name +Char53:: ; 19ff (0:19ff) ; rival’s name push de ld de,W_RIVALNAME jr FinishDTE -Char5D: ; 1a05 (0:1a05) ; TRAINER +Char5D:: ; 1a05 (0:1a05) ; TRAINER push de ld de,Char5DText jr FinishDTE -Char5C: ; 1a0b (0:1a0b) ; TM +Char5C:: ; 1a0b (0:1a0b) ; TM push de ld de,Char5CText jr FinishDTE -Char5B: ; 1a11 (0:1a11) ; PC +Char5B:: ; 1a11 (0:1a11) ; PC push de ld de,Char5BText jr FinishDTE -Char5E: ; 1a17 (0:1a17) ; ROCKET +Char5E:: ; 1a17 (0:1a17) ; ROCKET push de ld de,Char5EText jr FinishDTE -Char54: ; 1a1d (0:1a1d) ; POKé +Char54:: ; 1a1d (0:1a1d) ; POKé push de ld de,Char54Text jr FinishDTE -Char56: ; 1a23 (0:1a23) ; …… +Char56:: ; 1a23 (0:1a23) ; …… push de ld de,Char56Text jr FinishDTE -Char4A: ; 1a29 (0:1a29) ; PKMN +Char4A:: ; 1a29 (0:1a29) ; PKMN push de ld de,Char4AText jr FinishDTE -Char59: ; 1a2f (0:1a2f) +Char59:: ; 1a2f (0:1a2f) ; depending on whose turn it is, print ; enemy active monster’s name, prefixed with “Enemy ” ; or @@ -4116,13 +4116,13 @@ Char59: ; 1a2f (0:1a2f) xor 1 jr MonsterNameCharsCommon -Char5A: ; 1a35 (0:1a35) +Char5A:: ; 1a35 (0:1a35) ; depending on whose turn it is, print ; player active monster’s name ; or ; enemy active monster’s name, prefixed with “Enemy ” ld a,[H_WHOSETURN] -MonsterNameCharsCommon: ; 1a37 (0:1a37) +MonsterNameCharsCommon:: ; 1a37 (0:1a37) push de and a jr nz,.Enemy @@ -4138,7 +4138,7 @@ MonsterNameCharsCommon: ; 1a37 (0:1a37) ld l,c ld de,W_ENEMYMONNAME ; enemy active monster name -FinishDTE: ; 1a4b (0:1a4b) +FinishDTE:: ; 1a4b (0:1a4b) call PlaceString ld h,b ld l,c @@ -4146,24 +4146,24 @@ FinishDTE: ; 1a4b (0:1a4b) inc de jp PlaceNextChar -Char5CText: ; 1a55 (0:1a55) +Char5CText:: ; 1a55 (0:1a55) db "TM@" -Char5DText: ; 1a58 (0:1a58) +Char5DText:: ; 1a58 (0:1a58) db "TRAINER@" -Char5BText: ; 1a60 (0:1a60) +Char5BText:: ; 1a60 (0:1a60) db "PC@" -Char5EText: ; 1a63 (0:1a63) +Char5EText:: ; 1a63 (0:1a63) db "ROCKET@" -Char54Text: ; 1a6a (0:1a6a) +Char54Text:: ; 1a6a (0:1a6a) db "POKé@" -Char56Text: ; 1a6f (0:1a6f) +Char56Text:: ; 1a6f (0:1a6f) db "……@" -Char5AText: ; 1a72 (0:1a72) +Char5AText:: ; 1a72 (0:1a72) db "Enemy @" -Char4AText: ; 1a79 (0:1a79) +Char4AText:: ; 1a79 (0:1a79) db $E1,$E2,"@" ; PKMN -Char55: ; 1a7c (0:1a7c) +Char55:: ; 1a7c (0:1a7c) push de ld b,h ld c,l @@ -4175,40 +4175,40 @@ Char55: ; 1a7c (0:1a7c) inc de jp PlaceNextChar -Char55Text: ; 1a8c (0:1a8c) +Char55Text:: ; 1a8c (0:1a8c) ; equivalent to Char4B TX_FAR _Char55Text db "@" -Char5F: ; 1a91 (0:1a91) +Char5F:: ; 1a91 (0:1a91) ; ends a Pokédex entry ld [hl],"." pop hl ret -Char58: ; 1a95 (0:1a95) +Char58:: ; 1a95 (0:1a95) ld a,[$D12B] cp 4 jp z,Next1AA2 ld a,$EE FuncCoord 18, 16 ; $c4f2 ld [Coord],a -Next1AA2: ; 1aa2 (0:1aa2) +Next1AA2:: ; 1aa2 (0:1aa2) call ProtectedDelay3 call ManualTextScroll ld a,$7F FuncCoord 18, 16 ; $c4f2 ld [Coord],a -Char57: ; 1aad (0:1aad) +Char57:: ; 1aad (0:1aad) pop hl ld de,Char58Text dec de ret -Char58Text: ; 1ab3 (0:1ab3) +Char58Text:: ; 1ab3 (0:1ab3) db "@" -Char51: ; 1ab4 (0:1ab4) +Char51:: ; 1ab4 (0:1ab4) push de ld a,$EE FuncCoord 18, 16 ; $c4f2 @@ -4226,7 +4226,7 @@ Char51: ; 1ab4 (0:1ab4) ld hl,Coord jp Next19E8 -Char49: ; 1ad5 (0:1ad5) +Char49:: ; 1ad5 (0:1ad5) push de ld a,$EE FuncCoord 18, 16 ; $c4f2 @@ -4246,7 +4246,7 @@ Char49: ; 1ad5 (0:1ad5) push hl jp Next19E8 -Char4B: ; 1af8 (0:1af8) +Char4B:: ; 1af8 (0:1af8) ld a,$EE FuncCoord 18, 16 ; $c4f2 ld [Coord],a @@ -4258,7 +4258,7 @@ Char4B: ; 1af8 (0:1af8) FuncCoord 18, 16 ; $c4f2 ld [Coord],a ;fall through -Char4C: ; 1b0a (0:1b0a) +Char4C:: ; 1b0a (0:1b0a) push de call Next1B18 call Next1B18 @@ -4267,7 +4267,7 @@ Char4C: ; 1b0a (0:1b0a) pop de jp Next19E8 -Next1B18: ; 1b18 (0:1b18) +Next1B18:: ; 1b18 (0:1b18) FuncCoord 0, 14 ; $c4b8 ld hl,Coord FuncCoord 0, 13 ; $c4a4 @@ -4297,13 +4297,13 @@ Next1B18: ; 1b18 (0:1b18) ret -ProtectedDelay3: ; 1b3a (0:1b3a) +ProtectedDelay3:: ; 1b3a (0:1b3a) push bc call Delay3 pop bc ret -TextCommandProcessor: ; 1b40 (0:1b40) +TextCommandProcessor:: ; 1b40 (0:1b40) ld a,[$d358] push af set 1,a @@ -4316,7 +4316,7 @@ TextCommandProcessor: ; 1b40 (0:1b40) ld a,b ld [$cc3b],a -NextTextCommand: ; 1b55 (0:1b55) +NextTextCommand:: ; 1b55 (0:1b55) ld a,[hli] cp a, "@" ; terminator jr nz,.doTextCommand @@ -4347,7 +4347,7 @@ NextTextCommand: ; 1b55 (0:1b55) ; AAAA = address of upper left corner ; BB = height ; CC = width -TextCommand04: ; 1b78 (0:1b78) +TextCommand04:: ; 1b78 (0:1b78) pop hl ld a,[hli] ld e,a @@ -4366,7 +4366,7 @@ TextCommand04: ; 1b78 (0:1b78) ; place string inline ; 00{string} -TextCommand00: ; 1b8a (0:1b8a) +TextCommand00:: ; 1b8a (0:1b8a) pop hl ld d,h ld e,l @@ -4381,7 +4381,7 @@ TextCommand00: ; 1b8a (0:1b8a) ; place string from RAM ; 01AAAA ; AAAA = address of string -TextCommand01: ; 1b97 (0:1b97) +TextCommand01:: ; 1b97 (0:1b97) pop hl ld a,[hli] ld e,a @@ -4400,7 +4400,7 @@ TextCommand01: ; 1b97 (0:1b97) ; BB ; bits 0-4 = length in bytes ; bits 5-7 = unknown flags -TextCommand02: ; 1ba5 (0:1ba5) +TextCommand02:: ; 1ba5 (0:1ba5) pop hl ld a,[hli] ld e,a @@ -4420,7 +4420,7 @@ TextCommand02: ; 1ba5 (0:1ba5) ; repoint destination address ; 03AAAA ; AAAA = new destination address -TextCommand03: ; 1bb7 (0:1bb7) +TextCommand03:: ; 1bb7 (0:1bb7) pop hl ld a,[hli] ld [$cc3a],a @@ -4433,7 +4433,7 @@ TextCommand03: ; 1bb7 (0:1bb7) ; repoint destination to second line of dialogue text box ; 05 ; (no arguments) -TextCommand05: ; 1bc5 (0:1bc5) +TextCommand05:: ; 1bc5 (0:1bc5) pop hl FuncCoord 1, 16 ; $c4e1 ld bc,Coord ; address of second line of dialogue text box @@ -4442,7 +4442,7 @@ TextCommand05: ; 1bc5 (0:1bc5) ; blink arrow and wait for A or B to be pressed ; 06 ; (no arguments) -TextCommand06: ; 1bcc (0:1bcc) +TextCommand06:: ; 1bcc (0:1bcc) ld a,[W_ISLINKBATTLE] cp a,$04 jp z,TextCommand0D @@ -4461,7 +4461,7 @@ TextCommand06: ; 1bcc (0:1bcc) ; scroll text up one line ; 07 ; (no arguments) -TextCommand07: ; 1be7 (0:1be7) +TextCommand07:: ; 1be7 (0:1be7) ld a," " FuncCoord 18, 16 ; $c4f2 ld [Coord],a ; place blank space in lower right corner of dialogue text box @@ -4474,7 +4474,7 @@ TextCommand07: ; 1be7 (0:1be7) ; execute asm inline ; 08{code} -TextCommand08: ; 1bf9 (0:1bf9) +TextCommand08:: ; 1bf9 (0:1bf9) pop hl ld de,NextTextCommand push de ; return address @@ -4486,7 +4486,7 @@ TextCommand08: ; 1bf9 (0:1bf9) ; BB ; bits 0-3 = how many digits to display ; bits 4-7 = how long the number is in bytes -TextCommand09: ; 1bff (0:1bff) +TextCommand09:: ; 1bff (0:1bff) pop hl ld a,[hli] ld e,a @@ -4513,7 +4513,7 @@ TextCommand09: ; 1bff (0:1bff) ; wait half a second if the user doesn't hold A or B ; 0A ; (no arguments) -TextCommand0A: ; 1c1d (0:1c1d) +TextCommand0A:: ; 1c1d (0:1c1d) push bc call GetJoypadState ld a,[H_CURRENTPRESSEDBUTTONS] @@ -4529,7 +4529,7 @@ TextCommand0A: ; 1c1d (0:1c1d) ; plays sounds ; this actually handles various command ID's, not just 0B ; (no arguments) -TextCommand0B: ; 1c31 (0:1c31) +TextCommand0B:: ; 1c31 (0:1c31) pop hl push bc dec hl @@ -4566,7 +4566,7 @@ TextCommand0B: ; 1c31 (0:1c31) jp NextTextCommand ; format: text command ID, sound ID or cry ID -TextCommandSounds: ; 1c64 (0:1c64) +TextCommandSounds:: ; 1c64 (0:1c64) db $0B,$86 db $12,$9A db $0E,$91 @@ -4581,7 +4581,7 @@ TextCommandSounds: ; 1c64 (0:1c64) ; draw ellipses ; 0CAA ; AA = number of ellipses to draw -TextCommand0C: ; 1c78 (0:1c78) +TextCommand0C:: ; 1c78 (0:1c78) pop hl ld a,[hli] ld d,a @@ -4610,7 +4610,7 @@ TextCommand0C: ; 1c78 (0:1c78) ; wait for A or B to be pressed ; 0D ; (no arguments) -TextCommand0D: ; 1c9a (0:1c9a) +TextCommand0D:: ; 1c9a (0:1c9a) push bc call ManualTextScroll ; wait for A or B to be pressed pop bc @@ -4621,7 +4621,7 @@ TextCommand0D: ; 1c9a (0:1c9a) ; 17AAAABB ; AAAA = address of text commands ; BB = bank -TextCommand17: ; 1ca3 (0:1ca3) +TextCommand17:: ; 1ca3 (0:1ca3) pop hl ld a,[H_LOADEDROMBANK] push af @@ -4642,7 +4642,7 @@ TextCommand17: ; 1ca3 (0:1ca3) ld [$2000],a jp NextTextCommand -TextCommandJumpTable: ; 1cc1 (0:1cc1) +TextCommandJumpTable:: ; 1cc1 (0:1cc1) dw TextCommand00 dw TextCommand01 dw TextCommand02 @@ -4661,7 +4661,7 @@ TextCommandJumpTable: ; 1cc1 (0:1cc1) ; this function seems to be used only once ; it store the address of a row and column of the VRAM background map in hl ; INPUT: h - row, l - column, b - high byte of background tile map address in VRAM -GetRowColAddressBgMap: ; 1cdd (0:1cdd) +GetRowColAddressBgMap:: ; 1cdd (0:1cdd) xor a srl h rr a @@ -4678,7 +4678,7 @@ GetRowColAddressBgMap: ; 1cdd (0:1cdd) ; clears a VRAM background map with blank space tiles ; INPUT: h - high byte of background tile map address in VRAM -ClearBgMap: ; 1cf0 (0:1cf0) +ClearBgMap:: ; 1cf0 (0:1cf0) ld a," " jr .next ld a,l @@ -4696,7 +4696,7 @@ ClearBgMap: ; 1cf0 (0:1cf0) ; When the player takes a step, a row or column of 2x2 tile blocks at the edge ; of the screen toward which they moved is exposed and has to be redrawn. ; This function does the redrawing. -RedrawExposedScreenEdge: ; 1d01 (0:1d01) +RedrawExposedScreenEdge:: ; 1d01 (0:1d01) ld a,[H_SCREENEDGEREDRAW] and a ret z @@ -4775,7 +4775,7 @@ RedrawExposedScreenEdge: ; 1d01 (0:1d01) ; on when talking to sprites, battling, using menus, etc. This is because ; the above function, RedrawExposedScreenEdge, is used when walking to ; improve efficiency. -AutoBgMapTransfer: ; 1d57 (0:1d57) +AutoBgMapTransfer:: ; 1d57 (0:1d57) ld a,[H_AUTOBGTRANSFERENABLED] and a ret z @@ -4827,7 +4827,7 @@ AutoBgMapTransfer: ; 1d57 (0:1d57) ld b,6 ; unrolled loop and using pop for speed -TransferBgRows: ; 1d9e (0:1d9e) +TransferBgRows:: ; 1d9e (0:1d9e) pop de ld [hl],e inc l @@ -4894,7 +4894,7 @@ TransferBgRows: ; 1d9e (0:1d9e) ; Copies [H_VBCOPYBGNUMROWS] rows from H_VBCOPYBGSRC to H_VBCOPYBGDEST. ; If H_VBCOPYBGSRC is XX00, the transfer is disabled. -VBlankCopyBgMap: ; 1de1 (0:1de1) +VBlankCopyBgMap:: ; 1de1 (0:1de1) ld a,[H_VBCOPYBGSRC] ; doubles as enabling byte and a ret z @@ -4923,7 +4923,7 @@ VBlankCopyBgMap: ; 1de1 (0:1de1) ; It copies each source byte to the destination twice (next to each other). ; The function updates the source and destination addresses, so the transfer ; can be continued easily by repeatingly calling this function. -VBlankCopyDouble: ; 1e02 (0:1e02) +VBlankCopyDouble:: ; 1e02 (0:1e02) ld a,[H_VBCOPYDOUBLESIZE] and a ; are there any bytes to copy? ret z @@ -5003,7 +5003,7 @@ VBlankCopyDouble: ; 1e02 (0:1e02) ; Copies ([H_VBCOPYSIZE] * 16) bytes from H_VBCOPYSRC to H_VBCOPYDEST. ; The function updates the source and destination addresses, so the transfer ; can be continued easily by repeatingly calling this function. -VBlankCopy: ; 1e5e (0:1e5e) +VBlankCopy:: ; 1e5e (0:1e5e) ld a,[H_VBCOPYSIZE] and a ; are there any bytes to copy? ret z @@ -5085,7 +5085,7 @@ VBlankCopy: ; 1e5e (0:1e5e) ret ; This function updates the moving water and flower background tiles. -UpdateMovingBgTiles: ; 1ebe (0:1ebe) +UpdateMovingBgTiles:: ; 1ebe (0:1ebe) ld a,[$ffd7] and a ret z @@ -5146,16 +5146,16 @@ UpdateMovingBgTiles: ; 1ebe (0:1ebe) jr nz,.flowerTileLoop ret -FlowerTilePattern1: ; 1f19 (0:1f19) +FlowerTilePattern1:: ; 1f19 (0:1f19) INCBIN "gfx/tilesets/flower/flower1.2bpp" -FlowerTilePattern2: ; 1f29 (0:1f29) +FlowerTilePattern2:: ; 1f29 (0:1f29) INCBIN "gfx/tilesets/flower/flower2.2bpp" -FlowerTilePattern3: ; 1f39 (0:1f39) +FlowerTilePattern3:: ; 1f39 (0:1f39) INCBIN "gfx/tilesets/flower/flower3.2bpp" -SoftReset: ; 1f49 (0:1f49) +SoftReset:: ; 1f49 (0:1f49) call StopAllSounds call GBPalWhiteOut ld c, $20 @@ -5172,7 +5172,7 @@ SoftReset: ; 1f49 (0:1f49) ; * 8x8 OBJ size ; * OBJ display enabled ; * BG display enabled -InitGame: ; 1f54 (0:1f54) +InitGame:: ; 1f54 (0:1f54) di ; zero I/O registers xor a @@ -5258,14 +5258,14 @@ InitGame: ; 1f54 (0:1f54) jp Func_42b7 ; zeroes all VRAM -ZeroVram: ; 2004 (0:2004) +ZeroVram:: ; 2004 (0:2004) ld hl,$8000 ld bc,$2000 xor a jp FillMemory ; immediately stops all sounds -StopAllSounds: ; 200e (0:200e) +StopAllSounds:: ; 200e (0:200e) ld a, Bank(Func_9876) ld [$c0ef], a ld [$c0f0], a @@ -5276,7 +5276,7 @@ StopAllSounds: ; 200e (0:200e) dec a jp PlaySound -VBlankHandler: ; 2024 (0:2024) +VBlankHandler:: ; 2024 (0:2024) push af push bc push de @@ -5351,7 +5351,7 @@ VBlankHandler: ; 2024 (0:2024) pop af reti -DelayFrame: ; 20af (0:20af) +DelayFrame:: ; 20af (0:20af) ; delay for one frame ld a,1 ld [H_VBLANKOCCURRED],a @@ -5366,7 +5366,7 @@ DelayFrame: ; 20af (0:20af) ; These routines manage gradual fading ; (e.g., entering a doorway) -LoadGBPal: ; 20ba (0:20ba) +LoadGBPal:: ; 20ba (0:20ba) ld a,[$d35d] ;tells if cur.map is dark (requires HM5_FLASH?) ld b,a ld hl,GBPalTable_00 ;16 @@ -5384,16 +5384,16 @@ LoadGBPal: ; 20ba (0:20ba) ld [rOBP1],a ret -GBFadeOut1: ; 20d1 (0:20d1) +GBFadeOut1:: ; 20d1 (0:20d1) ld hl,IncGradGBPalTable_01 ;0d ld b,$04 jr GBFadeOutCommon -GBFadeOut2: ; 20d8 (0:20d8) +GBFadeOut2:: ; 20d8 (0:20d8) ld hl,IncGradGBPalTable_02 ;1c ld b,$03 -GBFadeOutCommon: ; 20dd (0:20dd) +GBFadeOutCommon:: ; 20dd (0:20dd) ld a,[hli] ld [rBGP],a ld a,[hli] @@ -5406,16 +5406,16 @@ GBFadeOutCommon: ; 20dd (0:20dd) jr nz,GBFadeOutCommon ret -GBFadeIn1: ; 20ef (0:20ef) +GBFadeIn1:: ; 20ef (0:20ef) ld hl,DecGradGBPalTable_01 ;18 ld b,$04 jr GBFadeInCommon -GBFadeIn2: ; 20f6 (0:20f6) +GBFadeIn2:: ; 20f6 (0:20f6) ld hl,DecGradGBPalTable_02 ;21 ld b,$03 -GBFadeInCommon: ; 20fb (0:20fb) +GBFadeInCommon:: ; 20fb (0:20fb) ld a,[hld] ld [rOBP1],a ld a,[hld] @@ -5428,7 +5428,7 @@ GBFadeInCommon: ; 20fb (0:20fb) jr nz,GBFadeInCommon ret -IncGradGBPalTable_01: ; 210d (0:210d) +IncGradGBPalTable_01:: ; 210d (0:210d) db %11111111 ;BG Pal db %11111111 ;OBJ Pal 1 db %11111111 ;OBJ Pal 2 @@ -5440,30 +5440,30 @@ IncGradGBPalTable_01: ; 210d (0:210d) db %11111001 db %11100100 db %11100100 -GBPalTable_00: ; 2116 (0:2116) +GBPalTable_00:: ; 2116 (0:2116) db %11100100 db %11010000 -DecGradGBPalTable_01: ; 2118 (0:2118) +DecGradGBPalTable_01:: ; 2118 (0:2118) db %11100000 ;19 db %11100100 db %11010000 db %11100000 -IncGradGBPalTable_02: ; 211c (0:211c) +IncGradGBPalTable_02:: ; 211c (0:211c) db %10010000 db %10000000 db %10010000 db %01000000 db %01000000 -DecGradGBPalTable_02: ; 2121 (0:2121) +DecGradGBPalTable_02:: ; 2121 (0:2121) db %01000000 db %00000000 db %00000000 db %00000000 -SerialInterruptHandler: ; 2125 (0:2125) +SerialInterruptHandler:: ; 2125 (0:2125) push af push bc push de @@ -5512,7 +5512,7 @@ SerialInterruptHandler: ; 2125 (0:2125) pop af reti -Func_216f: ; 216f (0:216f) +Func_216f:: ; 216f (0:216f) ld a, $1 ld [$FF00+$ab], a .asm_2173 @@ -5546,7 +5546,7 @@ Func_216f: ; 216f (0:216f) jr nz, .asm_2173 ret -Func_219a: ; 219a (0:219a) +Func_219a:: ; 219a (0:219a) xor a ld [$FF00+$a9], a ld a, [$FF00+$aa] @@ -5634,14 +5634,14 @@ Func_219a: ; 219a (0:219a) call DelayFrame jp Func_219a -Func_2231: ; 2231 (0:2231) +Func_2231:: ; 2231 (0:2231) ld a, $f .asm_2233 dec a jr nz, .asm_2233 ret -Func_2237: ; 2237 (0:2237) +Func_2237:: ; 2237 (0:2237) push hl ld hl, $cc47 ld a, [hli] @@ -5649,13 +5649,13 @@ Func_2237: ; 2237 (0:2237) pop hl ret -Func_223f: ; 223f (0:223f) +Func_223f:: ; 223f (0:223f) dec a ld [$cc47], a ld [$cc48], a ret -Func_2247: ; 2247 (0:2247) +Func_2247:: ; 2247 (0:2247) ld hl, $cc42 ld de, $cc3d ld c, $2 @@ -5680,7 +5680,7 @@ Func_2247: ; 2247 (0:2247) jr nz, .asm_2253 ret -Func_226e: ; 226e (0:226e) +Func_226e:: ; 226e (0:226e) call SaveScreenTilesToBuffer1 ld hl, Func_4c05 ld b, BANK(Func_4c05) @@ -5688,7 +5688,7 @@ Func_226e: ; 226e (0:226e) call Func_227f jp LoadScreenTilesFromBuffer1 -Func_227f: ; 227f (0:227f) +Func_227f:: ; 227f (0:227f) ld a, $ff ld [$cc3e], a .asm_2284 @@ -5728,7 +5728,7 @@ Func_227f: ; 227f (0:227f) ld [$cc3d], a ret -Func_22c3: ; 22c3 (0:22c3) +Func_22c3:: ; 22c3 (0:22c3) call asm_22d7 ld a, [$cc42] add $60 @@ -5738,7 +5738,7 @@ Func_22c3: ; 22c3 (0:22c3) jr nz, asm_22d7 ld a, $81 ld [$FF00+$2], a -asm_22d7: ; 22d7 (0:22d7) +asm_22d7:: ; 22d7 (0:22d7) ld a, [$FF00+$ad] ld [$cc3d], a and $f0 @@ -5751,7 +5751,7 @@ asm_22d7: ; 22d7 (0:22d7) ld [$cc3e], a ret -Func_22ed: ; 22ed (0:22ed) +Func_22ed:: ; 22ed (0:22ed) xor a ld [$FF00+$ac], a ld a, [$FF00+$aa] @@ -5761,7 +5761,7 @@ Func_22ed: ; 22ed (0:22ed) ld [$FF00+$2], a ret -Func_22fa: ; 22fa (0:22fa) +Func_22fa:: ; 22fa (0:22fa) ld a, $2 ld [$FF00+$1], a xor a @@ -5771,10 +5771,10 @@ Func_22fa: ; 22fa (0:22fa) ret ; timer interrupt is apparently not invoked anyway -TimerHandler: ; 2306 (0:2306) +TimerHandler:: ; 2306 (0:2306) reti -Func_2307: ; 2307 (0:2307) +Func_2307:: ; 2307 (0:2307) call WaitForSoundToFinish xor a ld c, a @@ -5782,7 +5782,7 @@ Func_2307: ; 2307 (0:2307) ld [$cfca], a jr asm_2324 -Func_2312: ; 2312 (0:2312) +Func_2312:: ; 2312 (0:2312) ld c, $a ld d, $0 ld a, [$d72e] @@ -5792,7 +5792,7 @@ Func_2312: ; 2312 (0:2312) ld [$cfca], a ld c, $8 ld d, c -asm_2324: ; 2324 (0:2324) +asm_2324:: ; 2324 (0:2324) ld a, [$d700] and a jr z, .asm_2343 @@ -5829,7 +5829,7 @@ asm_2324: ; 2324 (0:2324) ld [$c0ee], a jp PlaySound -Func_235f: ; 235f (0:235f) +Func_235f:: ; 235f (0:235f) ld a, [$c0ef] ld b, a cp $2 @@ -5857,7 +5857,7 @@ Func_235f: ; 235f (0:235f) jr nz, .asm_237a ret -Func_2385: ; 2385 (0:2385) +Func_2385:: ; 2385 (0:2385) ld a, [$d35c] ld e, a ld a, [$c0ef] @@ -5877,7 +5877,7 @@ Func_2385: ; 2385 (0:2385) scf ret -PlayMusic: ; 23a1 (0:23a1) +PlayMusic:: ; 23a1 (0:23a1) ld b, a ld [$c0ee], a xor a @@ -5888,7 +5888,7 @@ PlayMusic: ; 23a1 (0:23a1) ld a, b ; plays music specified by a. If value is $ff, music is stopped -PlaySound: ; 23b1 (0:23b1) +PlaySound:: ; 23b1 (0:23b1) push hl push de push bc @@ -5958,7 +5958,7 @@ PlaySound: ; 23b1 (0:23b1) pop hl ret -UpdateSprites: ; 2429 (0:2429) +UpdateSprites:: ; 2429 (0:2429) ld a, [$cfcb] dec a ret nz @@ -5978,16 +5978,16 @@ UpdateSprites: ; 2429 (0:2429) ; first byte $FE, next byte # of items, last byte $FF ; Viridian -ViridianMartText6: ; 2442 (0:2442) +ViridianMartText6:: ; 2442 (0:2442) db $FE,4,POKE_BALL,ANTIDOTE,PARLYZ_HEAL,BURN_HEAL,$FF ; Pewter -PewterMartText1: ; 2449 (0:2449) +PewterMartText1:: ; 2449 (0:2449) db $FE,7,POKE_BALL,POTION,ESCAPE_ROPE,ANTIDOTE,BURN_HEAL,AWAKENING db PARLYZ_HEAL,$FF ; Cerulean -CeruleanMartText1: ; 2453 (0:2453) +CeruleanMartText1:: ; 2453 (0:2453) db $FE,7,POKE_BALL,POTION,REPEL,ANTIDOTE,BURN_HEAL,AWAKENING db PARLYZ_HEAL,$FF @@ -5995,39 +5995,39 @@ CeruleanMartText1: ; 2453 (0:2453) db $FE,1,BICYCLE,$FF ; Vermilion -VermilionMartText1: ; 2461 (0:2461) +VermilionMartText1:: ; 2461 (0:2461) db $FE,6,POKE_BALL,SUPER_POTION,ICE_HEAL,AWAKENING,PARLYZ_HEAL db REPEL,$FF ; Lavender -LavenderMartText1: ; 246a (0:246a) +LavenderMartText1:: ; 246a (0:246a) db $FE,9,GREAT_BALL,SUPER_POTION,REVIVE,ESCAPE_ROPE,SUPER_REPEL db ANTIDOTE,BURN_HEAL,ICE_HEAL,PARLYZ_HEAL,$FF ; Celadon Dept. Store 2F (1) -CeladonMart2Text1: ; 2476 (0:2476) +CeladonMart2Text1:: ; 2476 (0:2476) db $FE,9,GREAT_BALL,SUPER_POTION,REVIVE,SUPER_REPEL,ANTIDOTE db BURN_HEAL,ICE_HEAL,AWAKENING,PARLYZ_HEAL,$FF ; Celadon Dept. Store 2F (2) -CeladonMart2Text2: ; 2482 (0:2482) +CeladonMart2Text2:: ; 2482 (0:2482) db $FE,9,TM_32,TM_33,TM_02,TM_07,TM_37,TM_01,TM_05,TM_09,TM_17,$FF ; Celadon Dept. Store 4F -CeladonMart4Text1: ; 248e (0:248e) +CeladonMart4Text1:: ; 248e (0:248e) db $FE,5,POKE_DOLL,FIRE_STONE,THUNDER_STONE,WATER_STONE,LEAF_STONE,$FF ; Celadon Dept. Store 5F (1) -CeladonMart5Text3: ; 2496 (0:2496) +CeladonMart5Text3:: ; 2496 (0:2496) db $FE,7,X_ACCURACY,GUARD_SPEC_,DIRE_HIT,X_ATTACK,X_DEFEND,X_SPEED db X_SPECIAL,$FF ; Celadon Dept. Store 5F (2) -CeladonMart5Text4: ; 24a0 (0:24a0) +CeladonMart5Text4:: ; 24a0 (0:24a0) db $FE,5,HP_UP,PROTEIN,IRON,CARBOS,CALCIUM,$FF ; Fuchsia -FuchsiaMartText1: ; 24a8 (0:24a8) +FuchsiaMartText1:: ; 24a8 (0:24a8) db $FE,6,ULTRA_BALL,GREAT_BALL,SUPER_POTION,REVIVE,FULL_HEAL db SUPER_REPEL,$FF @@ -6035,47 +6035,47 @@ FuchsiaMartText1: ; 24a8 (0:24a8) db $FE,5,GREAT_BALL,HYPER_POTION,SUPER_POTION,FULL_HEAL,REVIVE,$FF ; Cinnabar -CinnabarMartText1: ; 24b9 (0:24b9) +CinnabarMartText1:: ; 24b9 (0:24b9) db $FE,7,ULTRA_BALL,GREAT_BALL,HYPER_POTION,MAX_REPEL,ESCAPE_ROPE db FULL_HEAL,REVIVE,$FF ; Saffron -SaffronMartText1: ; 24c3 (0:24c3) +SaffronMartText1:: ; 24c3 (0:24c3) db $FE,6,GREAT_BALL,HYPER_POTION,MAX_REPEL,ESCAPE_ROPE,FULL_HEAL db REVIVE,$FF ; Indigo -IndigoPlateauLobbyText4: ; 24cc (0:24cc) +IndigoPlateauLobbyText4:: ; 24cc (0:24cc) db $FE,7,ULTRA_BALL,GREAT_BALL,FULL_RESTORE,MAX_POTION,FULL_HEAL db REVIVE,MAX_REPEL,$FF -TextScriptEndingChar: ; 24d6 (0:24d6) +TextScriptEndingChar:: ; 24d6 (0:24d6) db "@" -TextScriptEnd: ; 24d7 (0:24d7) +TextScriptEnd:: ; 24d7 (0:24d7) ld hl,TextScriptEndingChar ret -UnnamedText_24db: ; 24db (0:24db) +UnnamedText_24db:: ; 24db (0:24db) TX_FAR _UnnamedText_24db db "@" -UnnamedText_24e0: ; 24e0 (0:24e0) +UnnamedText_24e0:: ; 24e0 (0:24e0) TX_FAR _UnnamedText_24e0 db "@" -BoulderText: ; 24e5 (0:24e5) +BoulderText:: ; 24e5 (0:24e5) TX_FAR _BoulderText db "@" -MartSignText: ; 24ea (0:24ea) +MartSignText:: ; 24ea (0:24ea) TX_FAR _MartSignText db "@" -PokeCenterSignText: ; 24ef (0:24ef) +PokeCenterSignText:: ; 24ef (0:24ef) TX_FAR _PokeCenterSignText db "@" -Predef5CText: ; 24f4 (0:24f4) +Predef5CText:: ; 24f4 (0:24f4) ; XXX better label (what does predef $5C do?) db $08 ; asm ld a, $5c @@ -6084,7 +6084,7 @@ Predef5CText: ; 24f4 (0:24f4) ; bankswitches and runs _UncompressSpriteData ; bank is given in a, sprite input stream is pointed to in W_SPRITEINPUTPTR -UncompressSpriteData: ; 24fd (0:24fd) +UncompressSpriteData:: ; 24fd (0:24fd) ld b, a ld a, [H_LOADEDROMBANK] push af @@ -6102,7 +6102,7 @@ UncompressSpriteData: ; 24fd (0:24fd) ret ; initializes necessary data to load a sprite and runs UncompressSpriteDataLoop -_UncompressSpriteData: ; 251a (0:251a) +_UncompressSpriteData:: ; 251a (0:251a) ld hl, S_SPRITEBUFFER1 ld c, (2*SPRITEBUFFERSIZE) % $100 ld b, (2*SPRITEBUFFERSIZE) / $100 @@ -6139,7 +6139,7 @@ _UncompressSpriteData: ; 251a (0:251a) ; uncompresses a chunk from the sprite input data stream (pointed to at $d0da) into S_SPRITEBUFFER1 or S_SPRITEBUFFER2 ; each chunk is a 1bpp sprite. A 2bpp sprite consist of two chunks which are merged afterwards ; note that this is an endless loop which is terminated during a call to MoveToNextBufferPosition by manipulating the stack -UncompressSpriteDataLoop: ; 2556 (0:2556) +UncompressSpriteDataLoop:: ; 2556 (0:2556) ld hl, S_SPRITEBUFFER1 ld a, [W_SPRITELOADFLAGS] ; $d0a8 bit 0, a @@ -6229,7 +6229,7 @@ UncompressSpriteDataLoop: ; 2556 (0:2556) ; moves output pointer to next position ; also cancels the calling function if the all output is done (by removing the return pointer from stack) ; and calls postprocessing functions according to the unpack mode -MoveToNextBufferPosition: ; 25d8 (0:25d8) +MoveToNextBufferPosition:: ; 25d8 (0:25d8) ld a, [W_SPRITEHEIGHT] ld b, a ld a, [W_SPRITECURPOSY] @@ -6290,7 +6290,7 @@ MoveToNextBufferPosition: ; 25d8 (0:25d8) jp UnpackSprite ; writes 2 bits (from a) to the output buffer (pointed to from W_SPRITEOUTPUTPTR) -WriteSpriteBitsToBuffer: ; 2649 (0:2649) +WriteSpriteBitsToBuffer:: ; 2649 (0:2649) ld e, a ld a, [W_SPRITEOUTPUTBITOFFSET] and a @@ -6318,7 +6318,7 @@ WriteSpriteBitsToBuffer: ; 2649 (0:2649) ret ; reads next bit from input stream and returns it in a -ReadNextInputBit: ; 2670 (0:2670) +ReadNextInputBit:: ; 2670 (0:2670) ld a, [W_SPRITEINPUTBITCOUNTER] dec a jr nz, .curByteHasMoreBitsToRead @@ -6334,7 +6334,7 @@ ReadNextInputBit: ; 2670 (0:2670) ret ; reads next byte from input stream and returns it in a -ReadNextInputByte: ; 268b (0:268b) +ReadNextInputByte:: ; 268b (0:268b) ld a, [W_SPRITEINPUTPTR] ld l, a ld a, [W_SPRITEINPUTPTR+1] @@ -6349,7 +6349,7 @@ ReadNextInputByte: ; 268b (0:268b) ret ; the nth item is 2^n - 1 -LengthEncodingOffsetList: ; 269f (0:269f) +LengthEncodingOffsetList:: ; 269f (0:269f) dw %0000000000000001 dw %0000000000000011 dw %0000000000000111 @@ -6368,7 +6368,7 @@ LengthEncodingOffsetList: ; 269f (0:269f) dw %1111111111111111 ; unpacks the sprite data depending on the unpack mode -UnpackSprite: ; 26bf (0:26bf) +UnpackSprite:: ; 26bf (0:26bf) ld a, [W_SPRITEUNPACKMODE] cp $2 jp z, UnpackSpriteMode2 @@ -6381,7 +6381,7 @@ UnpackSprite: ; 26bf (0:26bf) ; decodes differential encoded sprite data ; input bit value 0 preserves the current bit value and input bit value 1 toggles it (starting from initial value 0). -SpriteDifferentialDecode: ; 26d4 (0:26d4) +SpriteDifferentialDecode:: ; 26d4 (0:26d4) xor a ld [W_SPRITECURPOSX], a ld [W_SPRITECURPOSY], a @@ -6466,7 +6466,7 @@ SpriteDifferentialDecode: ; 26d4 (0:26d4) ret ; decodes the nybble stored in a. Last decoded data is assumed to be in e (needed to determine if initial value is 0 or 1) -DifferentialDecodeNybble: ; 276d (0:276d) +DifferentialDecodeNybble:: ; 276d (0:276d) srl a ; c=a%2, a/=2 ld c, $0 jr nc, .evenNumber @@ -6508,7 +6508,7 @@ DifferentialDecodeNybble: ; 276d (0:276d) ld e, a ; update last decoded data ret -DecodeNybble0Table: ; 27a7 (0:27a7) +DecodeNybble0Table:: ; 27a7 (0:27a7) dn $0, $1 dn $3, $2 dn $7, $6 @@ -6517,7 +6517,7 @@ DecodeNybble0Table: ; 27a7 (0:27a7) dn $c, $d dn $8, $9 dn $b, $a -DecodeNybble1Table: ; 27af (0:27af) +DecodeNybble1Table:: ; 27af (0:27af) dn $f, $e dn $c, $d dn $8, $9 @@ -6526,7 +6526,7 @@ DecodeNybble1Table: ; 27af (0:27af) dn $3, $2 dn $7, $6 dn $4, $5 -DecodeNybble0TableFlipped: ; 27b7 (0:27b7) +DecodeNybble0TableFlipped:: ; 27b7 (0:27b7) dn $0, $8 dn $c, $4 dn $e, $6 @@ -6535,7 +6535,7 @@ DecodeNybble0TableFlipped: ; 27b7 (0:27b7) dn $3, $b dn $1, $9 dn $d, $5 -DecodeNybble1TableFlipped: ; 27bf (0:27bf) +DecodeNybble1TableFlipped:: ; 27bf (0:27bf) dn $f, $7 dn $3, $b dn $1, $9 @@ -6546,7 +6546,7 @@ DecodeNybble1TableFlipped: ; 27bf (0:27bf) dn $2, $a ; combines the two loaded chunks with xor (the chunk loaded second is the destination). The source chunk is differeintial decoded beforehand. -XorSpriteChunks: ; 27c7 (0:27c7) +XorSpriteChunks:: ; 27c7 (0:27c7) xor a ld [W_SPRITECURPOSX], a ld [W_SPRITECURPOSY], a @@ -6611,7 +6611,7 @@ XorSpriteChunks: ; 27c7 (0:27c7) ret ; reverses the bits in the nybble given in register a -ReverseNybble: ; 2837 (0:2837) +ReverseNybble:: ; 2837 (0:2837) ld de, NybbleReverseTable add e ld e, a @@ -6622,7 +6622,7 @@ ReverseNybble: ; 2837 (0:2837) ret ; resets sprite buffer pointers to buffer 1 and 2, depending on W_SPRITELOADFLAGS -ResetSpriteBufferPointers: ; 2841 (0:2841) +ResetSpriteBufferPointers:: ; 2841 (0:2841) ld a, [W_SPRITELOADFLAGS] ; $d0a8 bit 0, a jr nz, .buffer2Selected @@ -6644,11 +6644,11 @@ ResetSpriteBufferPointers: ; 2841 (0:2841) ret ; maps each nybble to its reverse -NybbleReverseTable: ; 2867 (0:2867) +NybbleReverseTable:: ; 2867 (0:2867) db $0, $8, $4, $c, $2, $a, $6 ,$e, $1, $9, $5, $d, $3, $b, $7 ,$f ; combines the two loaded chunks with xor (the chunk loaded second is the destination). Both chunks are differeintial decoded beforehand. -UnpackSpriteMode2: ; 2877 (0:2877) +UnpackSpriteMode2:: ; 2877 (0:2877) call ResetSpriteBufferPointers ld a, [W_SPRITEFLIPPED] push af @@ -6665,7 +6665,7 @@ UnpackSpriteMode2: ; 2877 (0:2877) jp XorSpriteChunks ; stores hl into the output pointers -StoreSpriteOutputPointer: ; 2897 (0:2897) +StoreSpriteOutputPointer:: ; 2897 (0:2897) ld a, l ld [W_SPRITEOUTPUTPTR], a ld [W_SPRITEOUTPUTPTRCACHED], a @@ -6674,7 +6674,7 @@ StoreSpriteOutputPointer: ; 2897 (0:2897) ld [W_SPRITEOUTPUTPTRCACHED+1], a ret -ResetPlayerSpriteData: ; 28a6 (0:28a6) +ResetPlayerSpriteData:: ; 28a6 (0:28a6) ld hl, wSpriteStateData1 call ResetPlayerSpriteData_ClearSpriteData ld hl, wSpriteStateData2 @@ -6690,12 +6690,12 @@ ResetPlayerSpriteData: ; 28a6 (0:28a6) ret ; overwrites sprite data with zeroes -ResetPlayerSpriteData_ClearSpriteData: ; 28c4 (0:28c4) +ResetPlayerSpriteData_ClearSpriteData:: ; 28c4 (0:28c4) ld bc, $10 xor a jp FillMemory -Func_28cb: ; 28cb (0:28cb) +Func_28cb:: ; 28cb (0:28cb) ld a, [wMusicHeaderPointer] and a jr nz, .asm_28dc @@ -6746,7 +6746,7 @@ Func_28cb: ; 28cb (0:28cb) ; this function is used to display sign messages, sprite dialog, etc. ; INPUT: [$ff8c] = sprite ID or text ID -DisplayTextID: ; 2920 (0:2920) +DisplayTextID:: ; 2920 (0:2920) ld a,[H_LOADEDROMBANK] push af ld b,BANK(DisplayTextIDInit) @@ -6848,20 +6848,20 @@ DisplayTextID: ; 2920 (0:2920) and a jr nz,HoldTextDisplayOpen -AfterDisplayingTextID: ; 29d6 (0:29d6) +AfterDisplayingTextID:: ; 29d6 (0:29d6) ld a,[$cc47] and a jr nz,HoldTextDisplayOpen call WaitForTextScrollButtonPress ; wait for a button press after displaying all the text ; loop to hold the dialogue box open as long as the player keeps holding down the A button -HoldTextDisplayOpen: ; 29df (0:29df) +HoldTextDisplayOpen:: ; 29df (0:29df) call GetJoypadState ld a,[H_CURRENTPRESSEDBUTTONS] bit 0,a ; is the A button being pressed? jr nz,HoldTextDisplayOpen -CloseTextDisplay: ; 29e8 (0:29e8) +CloseTextDisplay:: ; 29e8 (0:29e8) ld a,[W_CURMAP] call SwitchToMapRomBank ld a,$90 @@ -6897,7 +6897,7 @@ CloseTextDisplay: ; 29e8 (0:29e8) ld [$2000],a jp UpdateSprites ; move sprites -DisplayPokemartDialogue: ; 2a2e (0:2a2e) +DisplayPokemartDialogue:: ; 2a2e (0:2a2e) push hl ld hl,PokemartGreetingText call PrintText @@ -6917,11 +6917,11 @@ DisplayPokemartDialogue: ; 2a2e (0:2a2e) ld [$2000],a jp AfterDisplayingTextID -PokemartGreetingText: ; 2a55 (0:2a55) +PokemartGreetingText:: ; 2a55 (0:2a55) TX_FAR _PokemartGreetingText db "@" -LoadItemList: ; 2a5a (0:2a5a) +LoadItemList:: ; 2a5a (0:2a5a) ld a,$01 ld [$cfcb],a ld a,h @@ -6937,7 +6937,7 @@ LoadItemList: ; 2a5a (0:2a5a) jr nz,.loop ret -DisplayPokemonCenterDialogue: ; 2a72 (0:2a72) +DisplayPokemonCenterDialogue:: ; 2a72 (0:2a72) xor a ld [$ff8b],a ld [$ff8c],a @@ -6954,22 +6954,22 @@ DisplayPokemonCenterDialogue: ; 2a72 (0:2a72) ld [$2000],a jp AfterDisplayingTextID -DisplaySafariGameOverText: ; 2a90 (0:2a90) +DisplaySafariGameOverText:: ; 2a90 (0:2a90) ld hl, Func_1e9ed ld b, BANK(Func_1e9ed) call Bankswitch jp AfterDisplayingTextID -DisplayPokemonFaintedText: ; 2a9b (0:2a9b) +DisplayPokemonFaintedText:: ; 2a9b (0:2a9b) ld hl,PokemonFaintedText call PrintText jp AfterDisplayingTextID -PokemonFaintedText: ; 2aa4 (0:2aa4) +PokemonFaintedText:: ; 2aa4 (0:2aa4) TX_FAR _PokemonFaintedText db "@" -DisplayPlayerBlackedOutText: ; 2aa9 (0:2aa9) +DisplayPlayerBlackedOutText:: ; 2aa9 (0:2aa9) ld hl,PlayerBlackedOutText call PrintText ld a,[$d732] @@ -6977,20 +6977,20 @@ DisplayPlayerBlackedOutText: ; 2aa9 (0:2aa9) ld [$d732],a jp HoldTextDisplayOpen -PlayerBlackedOutText: ; 2aba (0:2aba) +PlayerBlackedOutText:: ; 2aba (0:2aba) TX_FAR _PlayerBlackedOutText db "@" -DisplayRepelWoreOffText: ; 2abf (0:2abf) +DisplayRepelWoreOffText:: ; 2abf (0:2abf) ld hl,RepelWoreOffText call PrintText jp AfterDisplayingTextID -RepelWoreOffText: ; 2ac8 (0:2ac8) +RepelWoreOffText:: ; 2ac8 (0:2ac8) TX_FAR _RepelWoreOffText db "@" -DisplayStartMenu: ; 2acd (0:2acd) +DisplayStartMenu:: ; 2acd (0:2acd) ld a,$04 ; hardcoded Bank, not sure what's it refers to ld [H_LOADEDROMBANK],a ld [$2000],a ; ROM bank 4 @@ -6999,7 +6999,7 @@ DisplayStartMenu: ; 2acd (0:2acd) ld a, (SFX_02_3f - $4000) / 3 ; Start menu sound call PlaySound -RedisplayStartMenu: ; 2adf (0:2adf) +RedisplayStartMenu:: ; 2adf (0:2adf) ld b,BANK(DrawStartMenu) ld hl,DrawStartMenu call Bankswitch @@ -7075,7 +7075,7 @@ RedisplayStartMenu: ; 2adf (0:2adf) jp z,StartMenu_Option ; EXIT falls through to here -CloseStartMenu: ; 2b70 (0:2b70) +CloseStartMenu:: ; 2b70 (0:2b70) call GetJoypadState ld a,[H_NEWLYPRESSEDBUTTONS] bit 0,a ; was A button newly pressed? @@ -7089,7 +7089,7 @@ CloseStartMenu: ; 2b70 (0:2b70) ; b = length of string of bytes ; OUTPUT: ; [$D11E] = number of set bits -CountSetBits: ; 2b7f (0:2b7f) +CountSetBits:: ; 2b7f (0:2b7f) ld c,0 .loop ld a,[hli] @@ -7110,13 +7110,13 @@ CountSetBits: ; 2b7f (0:2b7f) ; subtracts the amount the player paid from their money ; sets carry flag if there is enough money and unsets carry flag if not -SubtractAmountPaidFromMoney: ; 2b96 (0:2b96) +SubtractAmountPaidFromMoney:: ; 2b96 (0:2b96) ld b,BANK(SubtractAmountPaidFromMoney_) ld hl,SubtractAmountPaidFromMoney_ jp Bankswitch ; adds the amount the player sold to their money -AddAmountSoldToMoney: ; 2b9e (0:2b9e) +AddAmountSoldToMoney:: ; 2b9e (0:2b9e) ld de,wPlayerMoney + 2 ld hl,$ffa1 ; total price of items ld c,3 ; length of money in bytes @@ -7134,7 +7134,7 @@ AddAmountSoldToMoney: ; 2b9e (0:2b9e) ; HL = address of inventory (either wNumBagItems or wNumBoxItems) ; [$CF92] = index (within the inventory) of the item to remove ; [$CF96] = quantity to remove -RemoveItemFromInventory: ; 2bbb (0:2bbb) +RemoveItemFromInventory:: ; 2bbb (0:2bbb) ld a,[H_LOADEDROMBANK] push af ld a,BANK(RemoveItemFromInventory_) @@ -7152,7 +7152,7 @@ RemoveItemFromInventory: ; 2bbb (0:2bbb) ; [$CF91] = item ID ; [$CF96] = item quantity ; sets carry flag if successful, unsets carry flag if unsuccessful -AddItemToInventory: ; 2bcf (0:2bcf) +AddItemToInventory:: ; 2bcf (0:2bcf) push bc ld a,[H_LOADEDROMBANK] push af @@ -7170,7 +7170,7 @@ AddItemToInventory: ; 2bcf (0:2bcf) ; INPUT: ; [wListMenuID] = list menu ID ; [$cf8b] = address of the list (2 bytes) -DisplayListMenuID: ; 2be6 (0:2be6) +DisplayListMenuID:: ; 2be6 (0:2be6) xor a ld [H_AUTOBGTRANSFERENABLED],a ; disable auto-transfer ld a,1 @@ -7224,7 +7224,7 @@ DisplayListMenuID: ; 2be6 (0:2be6) ld c,10 call DelayFrames -DisplayListMenuIDLoop: ; 2c53 (0:2c53) +DisplayListMenuIDLoop:: ; 2c53 (0:2c53) xor a ld [H_AUTOBGTRANSFERENABLED],a ; disable transfer call PrintListMenuEntries @@ -7359,7 +7359,7 @@ DisplayListMenuIDLoop: ; 2c53 (0:2c53) dec [hl] jp DisplayListMenuIDLoop -DisplayChooseQuantityMenu: ; 2d57 (0:2d57) +DisplayChooseQuantityMenu:: ; 2d57 (0:2d57) ; text box dimensions/coordinates for just quantity FuncCoord 15,9 ld hl,Coord @@ -7487,13 +7487,13 @@ DisplayChooseQuantityMenu: ; 2d57 (0:2d57) ld a,$ff ret -InitialQuantityText: ; 2e30 (0:2e30) +InitialQuantityText:: ; 2e30 (0:2e30) db "×01@" -SpacesBetweenQuantityAndPriceText: ; 2e34 (0:2e34) +SpacesBetweenQuantityAndPriceText:: ; 2e34 (0:2e34) db " @" -ExitListMenu: ; 2e3b (0:2e3b) +ExitListMenu:: ; 2e3b (0:2e3b) ld a,[wCurrentMenuItem] ld [$d12d],a ld a,$02 @@ -7509,7 +7509,7 @@ ExitListMenu: ; 2e3b (0:2e3b) scf ret -PrintListMenuEntries: ; 2e5a (0:2e5a) +PrintListMenuEntries:: ; 2e5a (0:2e5a) FuncCoord 5, 3 ; $c3e1 ld hl,Coord ld b,$09 @@ -7700,10 +7700,10 @@ PrintListMenuEntries: ; 2e5a (0:2e5a) ld de,ListMenuCancelText jp PlaceString -ListMenuCancelText: ; 2f97 (0:2f97) +ListMenuCancelText:: ; 2f97 (0:2f97) db "CANCEL@" -GetMonName: ; 2f9e (0:2f9e) +GetMonName:: ; 2f9e (0:2f9e) push hl ld a,[H_LOADEDROMBANK] push af @@ -7729,7 +7729,7 @@ GetMonName: ; 2f9e (0:2f9e) pop hl ret -GetItemName: ; 2fcf (0:2fcf) +GetItemName:: ; 2fcf (0:2fcf) ; given an item ID at [$D11E], store the name of the item into a string ; starting at $CD6D push hl @@ -7754,7 +7754,7 @@ GetItemName: ; 2fcf (0:2fcf) pop hl ret -GetMachineName: ; 2ff3 (0:2ff3) +GetMachineName:: ; 2ff3 (0:2ff3) ; copies the name of the TM/HM in [$D11E] to $CD6D push hl push de @@ -7807,14 +7807,14 @@ GetMachineName: ; 2ff3 (0:2ff3) pop hl ret -TechnicalPrefix: ; 303c (0:303c) +TechnicalPrefix:: ; 303c (0:303c) db "TM" -HiddenPrefix: ; 303e (0:303e) +HiddenPrefix:: ; 303e (0:303e) db "HM" ; sets carry if item is HM, clears carry if item is not HM ; Input: a = item ID -IsItemHM: ; 3040 (0:3040) +IsItemHM:: ; 3040 (0:3040) cp a,HM_01 jr c,.notHM cp a,TM_01 @@ -7825,16 +7825,16 @@ IsItemHM: ; 3040 (0:3040) ; sets carry if move is an HM, clears carry if move is not an HM ; Input: a = move ID -IsMoveHM: ; 3049 (0:3049) +IsMoveHM:: ; 3049 (0:3049) ld hl,HMMoves ld de,1 jp IsInArray -HMMoves: ; 3052 (0:3052) +HMMoves:: ; 3052 (0:3052) db CUT,FLY,SURF,STRENGTH,FLASH db $ff ; terminator -GetMoveName: ; 3058 (0:3058) +GetMoveName:: ; 3058 (0:3058) push hl ld a,MOVE_NAME ld [W_LISTTYPE],a @@ -7848,7 +7848,7 @@ GetMoveName: ; 3058 (0:3058) ret ; reloads text box tile patterns, current map view, and tileset tile patterns -ReloadMapData: ; 3071 (0:3071) +ReloadMapData:: ; 3071 (0:3071) ld a,[H_LOADEDROMBANK] push af ld a,[W_CURMAP] @@ -7864,7 +7864,7 @@ ReloadMapData: ; 3071 (0:3071) ret ; reloads tileset tile patterns -ReloadTilesetTilePatterns: ; 3090 (0:3090) +ReloadTilesetTilePatterns:: ; 3090 (0:3090) ld a,[H_LOADEDROMBANK] push af ld a,[W_CURMAP] @@ -7878,7 +7878,7 @@ ReloadTilesetTilePatterns: ; 3090 (0:3090) ret ; shows the town map and lets the player choose a destination to fly to -ChooseFlyDestination: ; 30a9 (0:30a9) +ChooseFlyDestination:: ; 30a9 (0:30a9) ld hl,$d72e res 4,[hl] ld b, BANK(Func_70f90) @@ -7886,7 +7886,7 @@ ChooseFlyDestination: ; 30a9 (0:30a9) jp Bankswitch ; causes the text box to close waithout waiting for a button press after displaying text -DisableWaitingAfterTextDisplay: ; 30b6 (0:30b6) +DisableWaitingAfterTextDisplay:: ; 30b6 (0:30b6) ld a,$01 ld [$cc3c],a ret @@ -7900,7 +7900,7 @@ DisableWaitingAfterTextDisplay: ; 30b6 (0:30b6) ; 00: unsucessful ; 01: successful ; 02: not able to be used right now, no extra menu displayed (only certain items use this) -UseItem: ; 30bc (0:30bc) +UseItem:: ; 30bc (0:30bc) ld b,BANK(UseItem_) ld hl,UseItem_ jp Bankswitch @@ -7913,7 +7913,7 @@ UseItem: ; 30bc (0:30bc) ; [$cf96] = quantity to toss ; OUTPUT: ; clears carry flag if the item is tossed, sets carry flag if not -TossItem: ; 30c4 (0:30c4) +TossItem:: ; 30c4 (0:30c4) ld a,[H_LOADEDROMBANK] push af ld a,BANK(TossItem_) @@ -7933,7 +7933,7 @@ TossItem: ; 30c4 (0:30c4) ; [$d124] = result ; 00: item is not key item ; 01: item is key item -IsKeyItem: ; 30d9 (0:30d9) +IsKeyItem:: ; 30d9 (0:30d9) push hl push de push bc @@ -7948,7 +7948,7 @@ IsKeyItem: ; 30d9 (0:30d9) ; function to draw various text boxes ; INPUT: ; [$D125] = text box ID -DisplayTextBoxID: ; 30e8 (0:30e8) +DisplayTextBoxID:: ; 30e8 (0:30e8) ld a,[H_LOADEDROMBANK] push af ld a,BANK(DisplayTextBoxID_) @@ -7961,7 +7961,7 @@ DisplayTextBoxID: ; 30e8 (0:30e8) ld [$2000],a ret -Func_30fd: ; 30fd (0:30fd) +Func_30fd:: ; 30fd (0:30fd) ld a, [$cc57] and a ret nz @@ -7972,7 +7972,7 @@ Func_30fd: ; 30fd (0:30fd) and $80 ret -Func_310e: ; 310e (0:310e) +Func_310e:: ; 310e (0:310e) ld hl, $d736 bit 0, [hl] res 0, [hl] @@ -8009,16 +8009,16 @@ Func_310e: ; 310e (0:310e) ld hl, Func_1a3e0 jp Bankswitch ; indirect jump to Func_1a3e0 (1a3e0 (6:63e0)) -Func_314e: ; 314e (0:314e) +Func_314e:: ; 314e (0:314e) ld b, BANK(Func_1a41d) ld hl, Func_1a41d jp Bankswitch ; indirect jump to Func_1a41d (1a41d (6:641d)) -Func_3156: ; 3156 (0:3156) +Func_3156:: ; 3156 (0:3156) ret ; stores hl in [W_TRAINERHEADERPTR] -StoreTrainerHeaderPointer: ; 3157 (0:3157) +StoreTrainerHeaderPointer:: ; 3157 (0:3157) ld a, h ld [W_TRAINERHEADERPTR], a ld a, l @@ -8027,7 +8027,7 @@ StoreTrainerHeaderPointer: ; 3157 (0:3157) ; executes the current map script from the function pointer array provided in hl. ; a: map script index to execute (unless overridden by [$d733] bit 4) -ExecuteCurMapScriptInTable: ; 3160 (0:3160) +ExecuteCurMapScriptInTable:: ; 3160 (0:3160) push af push de call StoreTrainerHeaderPointer @@ -8046,7 +8046,7 @@ ExecuteCurMapScriptInTable: ; 3160 (0:3160) ld a, [W_CURMAPSCRIPT] ret -LoadGymLeaderAndCityName: ; 317f (0:317f) +LoadGymLeaderAndCityName:: ; 317f (0:317f) push de ld de, wGymCityName ld bc, $11 @@ -8063,7 +8063,7 @@ LoadGymLeaderAndCityName: ; 317f (0:317f) ; 4 -> before battle text (into hl) ; 6 -> after battle text (into hl) ; 8 -> end battle text (into hl) -ReadTrainerHeaderInfo: ; 3193 (0:3193) +ReadTrainerHeaderInfo:: ; 3193 (0:3193) push de push af ld d, $0 @@ -8103,12 +8103,12 @@ ReadTrainerHeaderInfo: ; 3193 (0:3193) ret ; calls HandleBitArray -HandleBitArray_Bank0: ; 31c7 (0:31c7) +HandleBitArray_Bank0:: ; 31c7 (0:31c7) ld a, $10 jp Predef ; indirect jump to HandleBitArray (f666 (3:7666)) ; direct talking to a trainer (rather than getting seen by one) -TalkToTrainer: ; 31cc (0:31cc) +TalkToTrainer:: ; 31cc (0:31cc) call StoreTrainerHeaderPointer xor a call ReadTrainerHeaderInfo ; read flag's bit @@ -8146,7 +8146,7 @@ TalkToTrainer: ; 31cc (0:31cc) jp Func_325d ; checks if any trainers are seeing the player and wanting to fight -CheckFightingMapTrainers: ; 3219 (0:3219) +CheckFightingMapTrainers:: ; 3219 (0:3219) call CheckForEngagingTrainers ld a, [$cf13] cp $ff @@ -8172,7 +8172,7 @@ CheckFightingMapTrainers: ; 3219 (0:3219) inc [hl] ; progress to battle phase 1 (engaging) ret -Func_324c: ; 324c (0:324c) +Func_324c:: ; 324c (0:324c) ld a, [$d730] and $1 ret nz @@ -8181,7 +8181,7 @@ Func_324c: ; 324c (0:324c) ld [H_DOWNARROWBLINKCNT2], a ; $FF00+$8c call DisplayTextID -Func_325d: ; 325d (0:325d) +Func_325d:: ; 325d (0:325d) xor a ld [wJoypadForbiddenButtonsMask], a call InitBattleEnemyParameters @@ -8194,7 +8194,7 @@ Func_325d: ; 325d (0:325d) inc [hl] ; progress to battle phase 2 (battling) ret -EndTrainerBattle: ; 3275 (0:3275) +EndTrainerBattle:: ; 3275 (0:3275) ld hl, $d126 set 5, [hl] set 6, [hl] @@ -8229,7 +8229,7 @@ EndTrainerBattle: ; 3275 (0:3275) res 4, [hl] ret nz -ResetButtonPressedAndMapScript: ; 32c1 (0:32c1) +ResetButtonPressedAndMapScript:: ; 32c1 (0:32c1) xor a ld [wJoypadForbiddenButtonsMask], a ld [H_CURRENTPRESSEDBUTTONS], a @@ -8239,13 +8239,13 @@ ResetButtonPressedAndMapScript: ; 32c1 (0:32c1) ret ; calls TrainerWalkUpToPlayer -TrainerWalkUpToPlayer_Bank0: ; 32cf (0:32cf) +TrainerWalkUpToPlayer_Bank0:: ; 32cf (0:32cf) ld b, BANK(TrainerWalkUpToPlayer) ld hl, TrainerWalkUpToPlayer jp Bankswitch ; indirect jump to TrainerWalkUpToPlayer (56881 (15:6881)) ; sets opponent type and mon set/lvl based on the engaging trainer data -InitBattleEnemyParameters: ; 32d7 (0:32d7) +InitBattleEnemyParameters:: ; 32d7 (0:32d7) ld a, [wEngagedTrainerClass] ld [W_CUROPPONENT], a ; $d059 ld [W_ENEMYMONORTRAINERCLASS], a @@ -8258,25 +8258,25 @@ InitBattleEnemyParameters: ; 32d7 (0:32d7) ld [W_CURENEMYLVL], a ; $d127 ret -Func_32ef: ; 32ef (0:32ef) +Func_32ef:: ; 32ef (0:32ef) ld hl, Func_567f9 jr asm_3301 -Func_32f4: ; 32f4 (0:32f4) +Func_32f4:: ; 32f4 (0:32f4) ld hl, Func_56819 jr asm_3301 ; 0x32f7 $8 -Func_32f9: ; 32f9 (0:32f9) +Func_32f9:: ; 32f9 (0:32f9) ld hl, Func_5683d jr asm_3301 -Func_32fe: ; 32fe (0:32fe) +Func_32fe:: ; 32fe (0:32fe) ld hl, Func_5685d -asm_3301: ; 3301 (0:3301) +asm_3301:: ; 3301 (0:3301) ld b, $15 jp Bankswitch ; indirect jump to one of the four functions -CheckForEngagingTrainers: ; 3306 (0:3306) +CheckForEngagingTrainers:: ; 3306 (0:3306) xor a call ReadTrainerHeaderInfo ; read trainer flag's bit (unused) ld d, h ; store trainer header address in de @@ -8324,7 +8324,7 @@ CheckForEngagingTrainers: ; 3306 (0:3306) jr .trainerLoop ; saves loaded rom bank and hl as well as de registers -PreBattleSaveRegisters: ; 3354 (0:3354) +PreBattleSaveRegisters:: ; 3354 (0:3354) ld a, [H_LOADEDROMBANK] ld [W_PBSTOREDROMBANK], a ld a, h @@ -8339,7 +8339,7 @@ PreBattleSaveRegisters: ; 3354 (0:3354) ; loads data of some trainer on the current map and plays pre-battle music ; [$cf13]: sprite ID of trainer who is engaged -EngageMapTrainer: ; 336a (0:336a) +EngageMapTrainer:: ; 336a (0:336a) ld hl, W_MAPSPRITEEXTRADATA ld d, $0 ld a, [$cf13] @@ -8353,7 +8353,7 @@ EngageMapTrainer: ; 336a (0:336a) ld [wEnemyMonAttackMod], a ; $cd2e jp PlayTrainerMusic -Func_3381: ; 3381 (0:3381) +Func_3381:: ; 3381 (0:3381) push hl ld hl, $d72d bit 7, [hl] @@ -8380,7 +8380,7 @@ Func_3381: ; 3381 (0:3381) call Bankswitch ; indirect jump to Func_1a5e7 (1a5e7 (6:65e7)) jp WaitForSoundToFinish -Func_33b7: ; 33b7 (0:33b7) +Func_33b7:: ; 33b7 (0:33b7) ld a, [$cf0b] and a jr nz, .asm_33c6 @@ -8396,16 +8396,16 @@ Func_33b7: ; 33b7 (0:33b7) ld l, a ret -UnnamedText_33cf: ; 33cf (0:33cf) +UnnamedText_33cf:: ; 33cf (0:33cf) TX_FAR _UnnamedText_33cf db $08 -Func_33d4: ; 33d4 (0:33d4) +Func_33d4:: ; 33d4 (0:33d4) call Func_33b7 call TextCommandProcessor jp TextScriptEnd -Func_33dd: ; 33dd (0:33dd) +Func_33dd:: ; 33dd (0:33dd) ld a, [wFlags_0xcd60] bit 0, a ret nz @@ -8413,7 +8413,7 @@ Func_33dd: ; 33dd (0:33dd) xor a ret -PlayTrainerMusic: ; 33e8 (0:33e8) +PlayTrainerMusic:: ; 33e8 (0:33e8) ld a, [wEngagedTrainerClass] cp $c8 + SONY1 ret z @@ -8458,14 +8458,14 @@ PlayTrainerMusic: ; 33e8 (0:33e8) ld [$c0ee], a jp PlaySound -FemaleTrainerList: ; 3434 (0:3434) +FemaleTrainerList:: ; 3434 (0:3434) db $c8+LASS db $c8+JR__TRAINER_F db $c8+BEAUTY db $c8+COOLTRAINER_F db $FF -EvilTrainerList: ; 3439 (0:3439) +EvilTrainerList:: ; 3439 (0:3439) db $c8+JUGGLER_X db $c8+GAMBLER db $c8+ROCKER @@ -8476,7 +8476,7 @@ EvilTrainerList: ; 3439 (0:3439) db $c8+ROCKET db $FF -Func_3442: ; 3442 (0:3442) +Func_3442:: ; 3442 (0:3442) ld a, [hli] cp $ff ret z @@ -8500,33 +8500,33 @@ Func_3442: ; 3442 (0:3442) inc hl jr Func_3442 -FuncTX_ItemStoragePC: ; 3460 (0:3460) +FuncTX_ItemStoragePC:: ; 3460 (0:3460) call SaveScreenTilesToBuffer2 ld b, BANK(Func_78e6) ld hl, Func_78e6 jr bankswitchAndContinue -FuncTX_BillsPC: ; 346a (0:346a) +FuncTX_BillsPC:: ; 346a (0:346a) call SaveScreenTilesToBuffer2 ld b, BANK(Func_214c2) ld hl, Func_214c2 jr bankswitchAndContinue -FuncTX_SlotMachine: ; 3474 (0:3474) +FuncTX_SlotMachine:: ; 3474 (0:3474) ; XXX find a better name for this function ; special_F7 ld b,BANK(CeladonPrizeMenu) ld hl,CeladonPrizeMenu -bankswitchAndContinue: ; 3479 (0:3479) +bankswitchAndContinue:: ; 3479 (0:3479) call Bankswitch jp HoldTextDisplayOpen ; continue to main text-engine function -FuncTX_PokemonCenterPC: ; 347f (0:347f) +FuncTX_PokemonCenterPC:: ; 347f (0:347f) ld b, BANK(ActivatePC) ld hl, ActivatePC jr bankswitchAndContinue -Func_3486: ; 3486 (0:3486) +Func_3486:: ; 3486 (0:3486) xor a ld [$cd3b], a ld [$c206], a @@ -8534,7 +8534,7 @@ Func_3486: ; 3486 (0:3486) set 7, [hl] ret -IsItemInBag: ; 3493 (0:3493) +IsItemInBag:: ; 3493 (0:3493) ; given an item_id in b ; set zero flag if item isn't in player's bag ; else reset zero flag @@ -8545,18 +8545,18 @@ IsItemInBag: ; 3493 (0:3493) and a ret -DisplayPokedex: ; 349b (0:349b) +DisplayPokedex:: ; 349b (0:349b) ld [$d11e], a ld b, BANK(Func_7c18) ld hl, Func_7c18 jp Bankswitch -Func_34a6: ; 34a6 (0:34a6) +Func_34a6:: ; 34a6 (0:34a6) call Func_34ae ld c, $6 jp DelayFrames -Func_34ae: ; 34ae (0:34ae) +Func_34ae:: ; 34ae (0:34ae) ld a, $9 ld [H_DOWNARROWBLINKCNT1], a ; $FF00+$8b call Func_34fc @@ -8564,7 +8564,7 @@ Func_34ae: ; 34ae (0:34ae) ld [hl], a ret -Func_34b9: ; 34b9 (0:34b9) +Func_34b9:: ; 34b9 (0:34b9) ld de, $fff9 add hl, de ld [hl], a @@ -8576,14 +8576,14 @@ Func_34b9: ; 34b9 (0:34b9) ; OUTPUT: ; [$cd3d] = if there is match, the matching array index ; sets carry if the coordinates are in the array, clears carry if not -ArePlayerCoordsInArray: ; 34bf (0:34bf) +ArePlayerCoordsInArray:: ; 34bf (0:34bf) ld a,[W_YCOORD] ld b,a ld a,[W_XCOORD] ld c,a ; fallthrough -CheckCoords: ; 34c7 (0:34c7) +CheckCoords:: ; 34c7 (0:34c7) xor a ld [$cd3d],a .loop @@ -8617,7 +8617,7 @@ CheckCoords: ; 34c7 (0:34c7) ; OUTPUT: ; [$cd3d] = if there is match, the matching array index ; sets carry if the coordinates are in the array, clears carry if not -CheckBoulderCoords: ; 34e4 (0:34e4) +CheckBoulderCoords:: ; 34e4 (0:34e4) push hl ld hl, $c204 ld a, [$ff00+$8c] @@ -8634,13 +8634,13 @@ CheckBoulderCoords: ; 34e4 (0:34e4) pop hl jp CheckCoords -Func_34fc: ; 34fc (0:34fc) +Func_34fc:: ; 34fc (0:34fc) ld h, $c1 jr asm_3502 -Func_3500: ; 3500 (0:3500) +Func_3500:: ; 3500 (0:3500) ld h, $c2 -asm_3502: ; 3502 (0:3502) +asm_3502:: ; 3502 (0:3502) ld a, [H_DOWNARROWBLINKCNT1] ; $FF00+$8b ld b, a ld a, [H_DOWNARROWBLINKCNT2] ; $FF00+$8c @@ -8654,7 +8654,7 @@ asm_3502: ; 3502 (0:3502) ; the final $ff will be replicated in the output list and a contains the number of bytes written ; de: input list ; hl: output list -DecodeRLEList: ; 350c (0:350c) +DecodeRLEList:: ; 350c (0:350c) xor a ld [wRLEByteCount], a ; count written bytes here .listLoop @@ -8681,7 +8681,7 @@ DecodeRLEList: ; 350c (0:350c) ret ; sets movement byte 1 for sprite [$FF8C] to $FE and byte 2 to [$FF8D] -SetSpriteMovementBytesToFE: ; 3533 (0:3533) +SetSpriteMovementBytesToFE:: ; 3533 (0:3533) push hl call GetSpriteMovementByte1Pointer ld [hl], $fe @@ -8692,7 +8692,7 @@ SetSpriteMovementBytesToFE: ; 3533 (0:3533) ret ; sets both movement bytes for sprite [$FF8C] to $FF -SetSpriteMovementBytesToFF: ; 3541 (0:3541) +SetSpriteMovementBytesToFF:: ; 3541 (0:3541) push hl call GetSpriteMovementByte1Pointer ld [hl],$FF @@ -8702,7 +8702,7 @@ SetSpriteMovementBytesToFF: ; 3541 (0:3541) ret ; returns the sprite movement byte 1 pointer for sprite [$FF8C] in hl -GetSpriteMovementByte1Pointer: ; 354e (0:354e) +GetSpriteMovementByte1Pointer:: ; 354e (0:354e) ld h,$C2 ld a,[$FF8C] ; the sprite to move swap a @@ -8711,7 +8711,7 @@ GetSpriteMovementByte1Pointer: ; 354e (0:354e) ret ; returns the sprite movement byte 2 pointer for sprite [$FF8C] in hl -GetSpriteMovementByte2Pointer: ; 3558 (0:3558) +GetSpriteMovementByte2Pointer:: ; 3558 (0:3558) push de ld hl,W_MAPSPRITEDATA ld a,[$FF8C] ; the sprite to move @@ -8723,7 +8723,7 @@ GetSpriteMovementByte2Pointer: ; 3558 (0:3558) pop de ret -Func_3566: ; 3566 (0:3566) +Func_3566:: ; 3566 (0:3566) call Func_359e ld a, [W_ISLINKBATTLE] ; $d12b and a @@ -8756,7 +8756,7 @@ Func_3566: ; 3566 (0:3566) ld [hl], d ret -Func_359e: ; 359e (0:359e) +Func_359e:: ; 359e (0:359e) ld b, BANK(Func_13a58) ld hl, Func_13a58 jp Bankswitch ; indirect jump to Func_13a58 (13a58 (4:7a58)) @@ -8764,7 +8764,7 @@ Func_359e: ; 359e (0:359e) ; tests if player's money are at least as much as [$ff9f] ; sets carry flag if not enough money ; sets zero flag if amounts match exactly -HasEnoughMoney: ; 35a6 (0:35a6) +HasEnoughMoney:: ; 35a6 (0:35a6) ld de, wPlayerMoney ; $d347 ld hl, $ff9f ld c, $3 @@ -8773,13 +8773,13 @@ HasEnoughMoney: ; 35a6 (0:35a6) ; tests if player's game corner coins are at least as many as [$ffa0] ; sets carry flag if not enough coins ; sets zero flag if amounts match exactly -HasEnoughCoins: ; 35b1 (0:35b1) +HasEnoughCoins:: ; 35b1 (0:35b1) ld de, wPlayerCoins ld hl, $ffa0 ld c, $2 jp StringCmp -BankswitchHome: ; 35bc (0:35bc) +BankswitchHome:: ; 35bc (0:35bc) ; switches to bank # in a ; Only use this when in the home bank! ld [$CF09],a @@ -8790,14 +8790,14 @@ BankswitchHome: ; 35bc (0:35bc) ld [$2000],a ret -BankswitchBack: ; 35cd (0:35cd) +BankswitchBack:: ; 35cd (0:35cd) ; returns from BankswitchHome ld a,[$CF08] ld [H_LOADEDROMBANK],a ld [$2000],a ret -Bankswitch: ; 35d6 (0:35d6) +Bankswitch:: ; 35d6 (0:35d6) ; self-contained bankswitch, use this when not in the home bank ; switches to the bank in b ld a,[H_LOADEDROMBANK] @@ -8817,18 +8817,18 @@ Bankswitch: ; 35d6 (0:35d6) ; displays yes/no choice ; yes -> set carry -YesNoChoice: ; 35ec (0:35ec) +YesNoChoice:: ; 35ec (0:35ec) call SaveScreenTilesToBuffer1 call InitYesNoTextBoxParameters jr DisplayYesNoChoice -Func_35f4: ; 35f4 (0:35f4) +Func_35f4:: ; 35f4 (0:35f4) ld a, $14 ld [$d125], a call InitYesNoTextBoxParameters jp DisplayTextBoxID -InitYesNoTextBoxParameters: ; 35ff (0:35ff) +InitYesNoTextBoxParameters:: ; 35ff (0:35ff) xor a ld [$d12c], a FuncCoord 14, 7 ; $c43a @@ -8836,7 +8836,7 @@ InitYesNoTextBoxParameters: ; 35ff (0:35ff) ld bc, $80f ret -YesNoChoicePokeCenter: ; 360a (0:360a) +YesNoChoicePokeCenter:: ; 360a (0:360a) call SaveScreenTilesToBuffer1 ld a, $6 ld [$d12c], a @@ -8845,21 +8845,21 @@ YesNoChoicePokeCenter: ; 360a (0:360a) ld bc, $80c jr DisplayYesNoChoice -Func_361a: ; 361a (0:361a) +Func_361a:: ; 361a (0:361a) call SaveScreenTilesToBuffer1 ld a, $3 ld [$d12c], a FuncCoord 12, 7 ; $c438 ld hl, Coord ld bc, $080d -DisplayYesNoChoice: ; 3628 (0:3628) +DisplayYesNoChoice:: ; 3628 (0:3628) ld a, $14 ld [$d125], a call DisplayTextBoxID jp LoadScreenTilesFromBuffer1 ; calculates the difference |a-b|, setting carry flag if a XX000000 1st column ; 2 -> 00XX0000 2nd column ; 1 -> 0000XX00 3rd column ; 0 -> 000000XX 4th column ds 1 -W_SPRITELOADFLAGS: ; d0a8 +W_SPRITELOADFLAGS:: ; d0a8 ; bit 0 determines used buffer (0 -> $a188, 1 -> $a310) ; bit 1 loading last sprite chunk? (there are at most 2 chunks per load operation) ds 1 -W_SPRITEUNPACKMODE: ; d0a9 +W_SPRITEUNPACKMODE:: ; d0a9 ds 1 -W_SPRITEFLIPPED: ; d0aa +W_SPRITEFLIPPED:: ; d0aa ds 1 -W_SPRITEINPUTPTR: ; d0ab +W_SPRITEINPUTPTR:: ; d0ab ; pointer to next input byte ds 2 -W_SPRITEOUTPUTPTR: ; d0ad +W_SPRITEOUTPUTPTR:: ; d0ad ; pointer to current output byte ds 2 -W_SPRITEOUTPUTPTRCACHED: ; d0af +W_SPRITEOUTPUTPTRCACHED:: ; d0af ; used to revert pointer for different bit offsets ds 2 -W_SPRITEDECODETABLE0PTR: ; d0b1 +W_SPRITEDECODETABLE0PTR:: ; d0b1 ; pointer to differential decoding table (assuming initial value 0) ds 2 -W_SPRITEDECODETABLE1PTR: ; d0b3 +W_SPRITEDECODETABLE1PTR:: ; d0b3 ; pointer to differential decoding table (assuming initial value 1) ds 2 ds 1 -W_LISTTYPE: ; d0b6 +W_LISTTYPE:: ; d0b6 ds 1 ds 1 -W_MONHEADER: ; d0b8 -W_MONHDEXNUM: ; d0b8 +W_MONHEADER:: ; d0b8 +W_MONHDEXNUM:: ; d0b8 ds 1 -W_MONHBASESTATS: ; d0b9 -W_MONHBASEHP: ; d0b9 +W_MONHBASESTATS:: ; d0b9 +W_MONHBASEHP:: ; d0b9 ds 1 -W_MONHBASEATTACK: ; d0ba +W_MONHBASEATTACK:: ; d0ba ds 1 -W_MONHBASEDEFENSE: ; d0bb +W_MONHBASEDEFENSE:: ; d0bb ds 1 -W_MONHBASESPEED: ; d0bc +W_MONHBASESPEED:: ; d0bc ds 1 -W_MONHBASESPECIAL: ; d0bd +W_MONHBASESPECIAL:: ; d0bd ds 1 -W_MONHTYPES: ; d0be -W_MONHTYPE1: ; d0be +W_MONHTYPES:: ; d0be +W_MONHTYPE1:: ; d0be ds 1 -W_MONHTYPE2: ; d0bf +W_MONHTYPE2:: ; d0bf ds 1 -W_MONHCATCHRATE: ; d0c0 +W_MONHCATCHRATE:: ; d0c0 ds 1 -W_MONHBASEXP: ; d0c1 +W_MONHBASEXP:: ; d0c1 ds 1 -W_MONHSPRITEDIM: ; d0c2 +W_MONHSPRITEDIM:: ; d0c2 ds 1 -W_MONHFRONTSPRITE: ; d0c3 +W_MONHFRONTSPRITE:: ; d0c3 ds 2 -W_MONHBACKSPRITE: ; d0c5 +W_MONHBACKSPRITE:: ; d0c5 ds 2 -W_MONHMOVES: ; d0c7 +W_MONHMOVES:: ; d0c7 ds 4 -W_MONHGROWTHRATE: ; d0cb +W_MONHGROWTHRATE:: ; d0cb ds 1 -W_MONHLEARNSET: ; d0cc +W_MONHLEARNSET:: ; d0cc ; bit field ds 7 ds 4 -W_MONHPADDING: ; d0d7 +W_MONHPADDING:: ; d0d7 -W_DAMAGE: ; d0d7 +W_DAMAGE:: ; d0d7 ds 1 ds 79 -W_CURENEMYLVL: ; d127 +W_CURENEMYLVL:: ; d127 ds 1 ds 3 -W_ISLINKBATTLE: ; d12b +W_ISLINKBATTLE:: ; d12b ds 1 ds 17 -W_PRIZE1: ; d13d +W_PRIZE1:: ; d13d ds 1 -W_PRIZE2: ; d13e +W_PRIZE2:: ; d13e ds 1 -W_PRIZE3: ; d13f +W_PRIZE3:: ; d13f ds 1 ds 24 -W_PLAYERNAME: ; d158 +W_PLAYERNAME:: ; d158 ds 11 -W_NUMINPARTY: ; d163 +W_NUMINPARTY:: ; d163 ds 1 -W_PARTYMON1: ; d164 +W_PARTYMON1:: ; d164 ds 1 -W_PARTYMON2: ; d165 +W_PARTYMON2:: ; d165 ds 1 -W_PARTYMON3: ; d166 +W_PARTYMON3:: ; d166 ds 1 -W_PARTYMON4: ; d167 +W_PARTYMON4:: ; d167 ds 1 -W_PARTYMON5: ; d168 +W_PARTYMON5:: ; d168 ds 1 -W_PARTYMON6: ; d169 +W_PARTYMON6:: ; d169 ds 1 -W_PARTYMONEND: ; d16a +W_PARTYMONEND:: ; d16a ds 1 -W_PARTYMON1DATA: ; d16b -W_PARTYMON1_NUM: ; d16b +W_PARTYMON1DATA:: ; d16b +W_PARTYMON1_NUM:: ; d16b ds 1 -W_PARTYMON1_HP: ; d16c +W_PARTYMON1_HP:: ; d16c ds 2 -W_PARTYMON1_BOXLEVEL: ; d16e +W_PARTYMON1_BOXLEVEL:: ; d16e ds 1 -W_PARTYMON1_STATUS: ; d16f +W_PARTYMON1_STATUS:: ; d16f ds 1 -W_PARTYMON1_TYPE1: ; d170 +W_PARTYMON1_TYPE1:: ; d170 ds 1 -W_PARTYMON1_TYPE2: ; d171 +W_PARTYMON1_TYPE2:: ; d171 ds 1 -W_PARTYMON1_CRATE: ; d172 +W_PARTYMON1_CRATE:: ; d172 ds 1 -W_PARTYMON1_MOVE1: ; d173 +W_PARTYMON1_MOVE1:: ; d173 ds 1 -W_PARTYMON1_MOVE2: ; d174 +W_PARTYMON1_MOVE2:: ; d174 ds 1 -W_PARTYMON1_MOVE3: ; d175 +W_PARTYMON1_MOVE3:: ; d175 ds 1 -W_PARTYMON1_MOVE4: ; d176 +W_PARTYMON1_MOVE4:: ; d176 ds 1 -W_PARTYMON1_OTID: ; d177 +W_PARTYMON1_OTID:: ; d177 ds 2 -W_PARTYMON1_EXP: ; d179 +W_PARTYMON1_EXP:: ; d179 ds 3 -W_PARTYMON1_EVHP: ; d17c +W_PARTYMON1_EVHP:: ; d17c ds 2 -W_PARTYMON1_EVATTACK: ; d17e +W_PARTYMON1_EVATTACK:: ; d17e ds 2 -W_PARTYMON1_EVDEFENSE: ; d180 +W_PARTYMON1_EVDEFENSE:: ; d180 ds 2 -W_PARTYMON1_EVSPEED: ; d182 +W_PARTYMON1_EVSPEED:: ; d182 ds 2 -W_PARTYMON1_EVSECIAL: ; d184 +W_PARTYMON1_EVSECIAL:: ; d184 ds 2 -W_PARTYMON1_IV: ; d186 +W_PARTYMON1_IV:: ; d186 ds 2 -W_PARTYMON1_MOVE1PP: ; d188 +W_PARTYMON1_MOVE1PP:: ; d188 ds 1 -W_PARTYMON1_MOVE2PP: ; d189 +W_PARTYMON1_MOVE2PP:: ; d189 ds 1 -W_PARTYMON1_MOVE3PP: ; d18a +W_PARTYMON1_MOVE3PP:: ; d18a ds 1 -W_PARTYMON1_MOVE4PP: ; d18b +W_PARTYMON1_MOVE4PP:: ; d18b ds 1 -W_PARTYMON1_LEVEL: ; d18c +W_PARTYMON1_LEVEL:: ; d18c ds 1 -W_PARTYMON1_MAXHP: ; d18d +W_PARTYMON1_MAXHP:: ; d18d ds 2 -W_PARTYMON1_ATACK: ; d18f +W_PARTYMON1_ATACK:: ; d18f ds 2 -W_PARTYMON1_DEFENSE: ; d191 +W_PARTYMON1_DEFENSE:: ; d191 ds 2 -W_PARTYMON1_SPEED: ; d193 +W_PARTYMON1_SPEED:: ; d193 ds 2 -W_PARTYMON1_SPECIAL: ; d195 +W_PARTYMON1_SPECIAL:: ; d195 ds 2 -W_PARTYMON2DATA: ; d197 +W_PARTYMON2DATA:: ; d197 ds 44 -W_PARTYMON3DATA: ; d1c3 +W_PARTYMON3DATA:: ; d1c3 ds 44 -W_PARTYMON4DATA: ; d1ef +W_PARTYMON4DATA:: ; d1ef ds 44 -W_PARTYMON5DATA: ; d21b +W_PARTYMON5DATA:: ; d21b ds 44 -W_PARTYMON6DATA: ; d247 +W_PARTYMON6DATA:: ; d247 ds 44 -W_PARTYMON1OT: ; d273 +W_PARTYMON1OT:: ; d273 ds 11 -W_PARTYMON2OT: ; d27e +W_PARTYMON2OT:: ; d27e ds 11 -W_PARTYMON3OT: ; d289 +W_PARTYMON3OT:: ; d289 ds 11 -W_PARTYMON4OT: ; d294 +W_PARTYMON4OT:: ; d294 ds 11 -W_PARTYMON5OT: ; d29f +W_PARTYMON5OT:: ; d29f ds 11 -W_PARTYMON6OT: ; d2aa +W_PARTYMON6OT:: ; d2aa ds 11 -W_PARTYMON1NAME: ; d2b5 +W_PARTYMON1NAME:: ; d2b5 ds 11 -W_PARTYMON2NAME: ; d2c0 +W_PARTYMON2NAME:: ; d2c0 ds 11 -W_PARTYMON3NAME: ; d2cb +W_PARTYMON3NAME:: ; d2cb ds 11 -W_PARTYMON4NAME: ; d2d6 +W_PARTYMON4NAME:: ; d2d6 ds 11 -W_PARTYMON5NAME: ; d2e1 +W_PARTYMON5NAME:: ; d2e1 ds 11 -W_PARTYMON6NAME: ; d2ec +W_PARTYMON6NAME:: ; d2ec ds 11 SECTION "Pokedex", WRAMX[$d2f7], BANK[1] -wPokedexOwned: ; d2f7 +wPokedexOwned:: ; d2f7 ds (150 / 8) + 1 wPokedexOwnedEnd: -wPokedexSeen: ; d30a +wPokedexSeen:: ; d30a ds (150 / 8) + 1 wPokedexSeenEnd: -wNumBagItems: ; d31d +wNumBagItems:: ; d31d ds 1 -wBagItems: ; d31e +wBagItems:: ; d31e ; item, quantity ds 20 * 2 ds 1 ; end ; money is in decimal -wPlayerMoney: ; d347 +wPlayerMoney:: ; d347 ds 3 -W_RIVALNAME: ; d34a +W_RIVALNAME:: ; d34a ds 11 -W_OPTIONS: ; d355 +W_OPTIONS:: ; d355 ; bit 7 = battle animation ; 0: On ; 1: Off @@ -937,123 +937,123 @@ W_OPTIONS: ; d355 ; 5: Slow ds 1 -W_OBTAINEDBADGES: ; d356 +W_OBTAINEDBADGES:: ; d356 ds 1 ds 2 -wPlayerID: ; d359 +wPlayerID:: ; d359 ds 2 ds 3 -W_CURMAP: ; d35e +W_CURMAP:: ; d35e ds 1 ds 2 -W_YCOORD: ; d361 +W_YCOORD:: ; d361 ; player’s position on the current map ds 1 -W_XCOORD: ; d362 +W_XCOORD:: ; d362 ds 1 -W_YBLOCKCOORD: ; d363 +W_YBLOCKCOORD:: ; d363 ; player's y position (by block) ds 1 -W_XBLOCKCOORD: ; d364 +W_XBLOCKCOORD:: ; d364 ds 3 -W_CURMAPTILESET: ; d367 +W_CURMAPTILESET:: ; d367 ds 1 -W_CURMAPHEIGHT: ; d368 +W_CURMAPHEIGHT:: ; d368 ; blocks ds 1 -W_CURMAPWIDTH: ; d369 +W_CURMAPWIDTH:: ; d369 ; blocks ds 1 -W_MAPDATAPTR: ; d36a +W_MAPDATAPTR:: ; d36a ds 2 -W_MAPTEXTPTR: ; d36c +W_MAPTEXTPTR:: ; d36c ds 2 -W_MAPSCRIPTPTR: ; d36e +W_MAPSCRIPTPTR:: ; d36e ds 2 -W_MAPCONNECTIONS: ; d370 +W_MAPCONNECTIONS:: ; d370 ; connection byte ds 1 -W_MAPCONN1PTR: ; d371 +W_MAPCONN1PTR:: ; d371 ds 2 ds 9 -W_MAPCONN2PTR: ; d37c +W_MAPCONN2PTR:: ; d37c ds 2 ds 9 -W_MAPCONN3PTR: ; d387 +W_MAPCONN3PTR:: ; d387 ds 2 ds 9 -W_MAPCONN4PTR: ; d392 +W_MAPCONN4PTR:: ; d392 ds 2 ds 9 -W_SPRITESET: ; d39d +W_SPRITESET:: ; d39d ; sprite set for the current map (11 sprite picture ID's) ds 11 -W_SPRITESETID: ; d3a8 +W_SPRITESETID:: ; d3a8 ; sprite set ID for the current map ds 1 ds 312 -W_NUMSPRITES: ; d4e1 +W_NUMSPRITES:: ; d4e1 ; number of sprites on the current map ; two bytes per sprite (movement byte 2 , text ID) ds 3 -W_MAPSPRITEDATA: ; d4e4 +W_MAPSPRITEDATA:: ; d4e4 ; two bytes per sprite (trainer class/item ID , trainer set ID) ds 32 -W_MAPSPRITEEXTRADATA: ; d504 +W_MAPSPRITEEXTRADATA:: ; d504 ds 39 -W_TILESETBANK: ; d52b +W_TILESETBANK:: ; d52b ds 1 -W_TILESETBLOCKSPTR: ; d52c +W_TILESETBLOCKSPTR:: ; d52c ; maps blocks (4x4 tiles) to tiles ds 2 -W_TILESETGFXPTR: ; d52e +W_TILESETGFXPTR:: ; d52e ds 2 -W_TILESETCOLLISIONPTR: ; d530 +W_TILESETCOLLISIONPTR:: ; d530 ; list of all walkable tiles ds 2 -W_TILESETTALKINGOVERTILES: ; d532 +W_TILESETTALKINGOVERTILES:: ; d532 ds 3 -W_GRASSTILE: ; d535 +W_GRASSTILE:: ; d535 ds 1 SECTION "Items", WRAMX[$d53a], BANK[1] -wNumBoxItems: ; d53a +wNumBoxItems:: ; d53a ds 1 -wBoxItems: ; d53b +wBoxItems:: ; d53b ; item, quantity ds 50 * 2 ds 1 ; end @@ -1061,284 +1061,284 @@ wBoxItems: ; d53b ds 4 ; coins are in decimal -wPlayerCoins: ; d5a4 +wPlayerCoins:: ; d5a4 ds 2 -W_MISSABLEOBJECTFLAGS: ; d5a6 +W_MISSABLEOBJECTFLAGS:: ; d5a6 ; bit array of missable objects. set = removed ds 40 -W_MISSABLEOBJECTLIST: ; d5ce +W_MISSABLEOBJECTLIST:: ; d5ce ; each entry consists of 2 bytes ; * the sprite ID (depending on the current map) ; * the missable object index (global, used for W_MISSABLEOBJECTFLAGS) ; terminated with $FF ds 17 * 2 -W_GAMEPROGRESSFLAGS: ; d5f0 +W_GAMEPROGRESSFLAGS:: ; d5f0 ; $c8 bytes ds 0 -W_OAKSLABCURSCRIPT: ; d5f0 +W_OAKSLABCURSCRIPT:: ; d5f0 ds 1 -W_PALLETTOWNCURSCRIPT: ; d5f1 +W_PALLETTOWNCURSCRIPT:: ; d5f1 ds 1 ds 1 -W_BLUESHOUSECURSCRIPT: ; d5f3 +W_BLUESHOUSECURSCRIPT:: ; d5f3 ds 1 -W_VIRIDIANCITYCURSCRIPT: ; d5f4 +W_VIRIDIANCITYCURSCRIPT:: ; d5f4 ds 1 ds 2 -W_PEWTERCITYCURSCRIPT: ; d5f7 +W_PEWTERCITYCURSCRIPT:: ; d5f7 ds 1 -W_ROUTE3CURSCRIPT: ; d5f8 +W_ROUTE3CURSCRIPT:: ; d5f8 ds 1 -W_ROUTE4CURSCRIPT: ; d5f9 +W_ROUTE4CURSCRIPT:: ; d5f9 ds 1 ds 1 -W_VIRIDIANGYMCURSCRIPT: ; d5fb +W_VIRIDIANGYMCURSCRIPT:: ; d5fb ds 1 -W_PEWTERGYMCURSCRIPT: ; d5fc +W_PEWTERGYMCURSCRIPT:: ; d5fc ds 1 -W_CERULEANGYMCURSCRIPT: ; d5fd +W_CERULEANGYMCURSCRIPT:: ; d5fd ds 1 -W_VERMILIONGYMCURSCRIPT: ; d5fe +W_VERMILIONGYMCURSCRIPT:: ; d5fe ds 1 -W_CELADONGYMCURSCRIPT: ; d5ff +W_CELADONGYMCURSCRIPT:: ; d5ff ds 1 -W_ROUTE6CURSCRIPT: ; d600 +W_ROUTE6CURSCRIPT:: ; d600 ds 1 -W_ROUTE8CURSCRIPT: ; d601 +W_ROUTE8CURSCRIPT:: ; d601 ds 1 -W_ROUTE24CURSCRIPT: ; d602 +W_ROUTE24CURSCRIPT:: ; d602 ds 1 -W_ROUTE25CURSCRIPT: ; d603 +W_ROUTE25CURSCRIPT:: ; d603 ds 1 -W_ROUTE9CURSCRIPT: ; d604 +W_ROUTE9CURSCRIPT:: ; d604 ds 1 -W_ROUTE10CURSCRIPT: ; d605 +W_ROUTE10CURSCRIPT:: ; d605 ds 1 -W_MTMOON1CURSCRIPT: ; d606 +W_MTMOON1CURSCRIPT:: ; d606 ds 1 -W_MTMOON3CURSCRIPT: ; d607 +W_MTMOON3CURSCRIPT:: ; d607 ds 1 -W_SSANNE8CURSCRIPT: ; d608 +W_SSANNE8CURSCRIPT:: ; d608 ds 1 -W_SSANNE9CURSCRIPT: ; d609 +W_SSANNE9CURSCRIPT:: ; d609 ds 1 -W_ROUTE22CURSCRIPT: ; d60a +W_ROUTE22CURSCRIPT:: ; d60a ds 1 ds 1 -W_REDSHOUSE2CURSCRIPT: ; d60c +W_REDSHOUSE2CURSCRIPT:: ; d60c ds 1 -W_VIRIDIANMARKETCURSCRIPT: ; d60d +W_VIRIDIANMARKETCURSCRIPT:: ; d60d ds 1 -W_ROUTE22GATECURSCRIPT: ; d60e +W_ROUTE22GATECURSCRIPT:: ; d60e ds 1 -W_CERULEANCITYCURSCRIPT: ; d60f +W_CERULEANCITYCURSCRIPT:: ; d60f ds 1 ds 7 -W_SSANNE5CURSCRIPT: ; d617 +W_SSANNE5CURSCRIPT:: ; d617 ds 1 -W_VIRIDIANFORESTCURSCRIPT: ; d618 +W_VIRIDIANFORESTCURSCRIPT:: ; d618 ds 1 -W_MUSEUMF1CURSCRIPT: ; d619 +W_MUSEUMF1CURSCRIPT:: ; d619 ds 1 -W_ROUTE13CURSCRIPT: ; d61a +W_ROUTE13CURSCRIPT:: ; d61a ds 1 -W_ROUTE14CURSCRIPT: ; d61b +W_ROUTE14CURSCRIPT:: ; d61b ds 1 -W_ROUTE17CURSCRIPT: ; d61c +W_ROUTE17CURSCRIPT:: ; d61c ds 1 -W_ROUTE19CURSCRIPT: ; d61d +W_ROUTE19CURSCRIPT:: ; d61d ds 1 -W_ROUTE21CURSCRIPT: ; d61e +W_ROUTE21CURSCRIPT:: ; d61e ds 1 -W_SAFARIZONEENTRANCECURSCRIPT: ; d61f +W_SAFARIZONEENTRANCECURSCRIPT:: ; d61f ds 1 -W_ROCKTUNNEL2CURSCRIPT: ; d620 +W_ROCKTUNNEL2CURSCRIPT:: ; d620 ds 1 -W_ROCKTUNNEL1CURSCRIPT: ; d621 +W_ROCKTUNNEL1CURSCRIPT:: ; d621 ds 1 ds 1 -W_ROUTE11CURSCRIPT: ; d623 +W_ROUTE11CURSCRIPT:: ; d623 ds 1 -W_ROUTE12CURSCRIPT: ; d624 +W_ROUTE12CURSCRIPT:: ; d624 ds 1 -W_ROUTE15CURSCRIPT: ; d625 +W_ROUTE15CURSCRIPT:: ; d625 ds 1 -W_ROUTE16CURSCRIPT: ; d626 +W_ROUTE16CURSCRIPT:: ; d626 ds 1 -W_ROUTE18CURSCRIPT: ; d627 +W_ROUTE18CURSCRIPT:: ; d627 ds 1 -W_ROUTE20CURSCRIPT: ; d628 +W_ROUTE20CURSCRIPT:: ; d628 ds 1 -W_SSANNE10CURSCRIPT: ; d629 +W_SSANNE10CURSCRIPT:: ; d629 ds 1 -W_VERMILIONCITYCURSCRIPT: ; d62a +W_VERMILIONCITYCURSCRIPT:: ; d62a ds 1 -W_POKEMONTOWER2CURSCRIPT: ; d62b +W_POKEMONTOWER2CURSCRIPT:: ; d62b ds 1 -W_POKEMONTOWER3CURSCRIPT: ; d62c +W_POKEMONTOWER3CURSCRIPT:: ; d62c ds 1 -W_POKEMONTOWER4CURSCRIPT: ; d62d +W_POKEMONTOWER4CURSCRIPT:: ; d62d ds 1 -W_POKEMONTOWER5CURSCRIPT: ; d62e +W_POKEMONTOWER5CURSCRIPT:: ; d62e ds 1 -W_POKEMONTOWER6CURSCRIPT: ; d62f +W_POKEMONTOWER6CURSCRIPT:: ; d62f ds 1 -W_POKEMONTOWER7CURSCRIPT: ; d630 +W_POKEMONTOWER7CURSCRIPT:: ; d630 ds 1 -W_ROCKETHIDEOUT1CURSCRIPT: ; d631 +W_ROCKETHIDEOUT1CURSCRIPT:: ; d631 ds 1 -W_ROCKETHIDEOUT2CURSCRIPT: ; d632 +W_ROCKETHIDEOUT2CURSCRIPT:: ; d632 ds 1 -W_ROCKETHIDEOUT3CURSCRIPT: ; d633 +W_ROCKETHIDEOUT3CURSCRIPT:: ; d633 ds 1 -W_ROCKETHIDEOUT4CURSCRIPT: ; d634 +W_ROCKETHIDEOUT4CURSCRIPT:: ; d634 ds 2 -W_ROUTE6GATECURSCRIPT: ; d636 +W_ROUTE6GATECURSCRIPT:: ; d636 ds 1 -W_ROUTE8GATECURSCRIPT: ; d637 +W_ROUTE8GATECURSCRIPT:: ; d637 ds 2 -W_CINNABARISLANDCURSCRIPT: ; d639 +W_CINNABARISLANDCURSCRIPT:: ; d639 ds 1 -W_MANSION1CURSCRIPT: ; d63a +W_MANSION1CURSCRIPT:: ; d63a ds 2 -W_MANSION2CURSCRIPT: ; d63c +W_MANSION2CURSCRIPT:: ; d63c ds 1 -W_MANSION3CURSCRIPT: ; d63d +W_MANSION3CURSCRIPT:: ; d63d ds 1 -W_MANSION4CURSCRIPT: ; d63e +W_MANSION4CURSCRIPT:: ; d63e ds 1 -W_VICTORYROAD2CURSCRIPT: ; d63f +W_VICTORYROAD2CURSCRIPT:: ; d63f ds 1 -W_VICTORYROAD3CURSCRIPT: ; d640 +W_VICTORYROAD3CURSCRIPT:: ; d640 ds 2 -W_FIGHTINGDOJOCURSCRIPT: ; d642 +W_FIGHTINGDOJOCURSCRIPT:: ; d642 ds 1 -W_SILPHCO2CURSCRIPT: ; d643 +W_SILPHCO2CURSCRIPT:: ; d643 ds 1 -W_SILPHCO3CURSCRIPT: ; d644 +W_SILPHCO3CURSCRIPT:: ; d644 ds 1 -W_SILPHCO4CURSCRIPT: ; d645 +W_SILPHCO4CURSCRIPT:: ; d645 ds 1 -W_SILPHCO5CURSCRIPT: ; d646 +W_SILPHCO5CURSCRIPT:: ; d646 ds 1 -W_SILPHCO6CURSCRIPT: ; d647 +W_SILPHCO6CURSCRIPT:: ; d647 ds 1 -W_SILPHCO7CURSCRIPT: ; d648 +W_SILPHCO7CURSCRIPT:: ; d648 ds 1 -W_SILPHCO8CURSCRIPT: ; d649 +W_SILPHCO8CURSCRIPT:: ; d649 ds 1 -W_SILPHCO9CURSCRIPT: ; d64a +W_SILPHCO9CURSCRIPT:: ; d64a ds 1 -W_HALLOFFAMEROOMCURSCRIPT: ; d64b +W_HALLOFFAMEROOMCURSCRIPT:: ; d64b ds 1 -W_GARYCURSCRIPT: ; d64c +W_GARYCURSCRIPT:: ; d64c ds 1 -W_LORELEICURSCRIPT: ; d64d +W_LORELEICURSCRIPT:: ; d64d ds 1 -W_BRUNOCURSCRIPT: ; d64e +W_BRUNOCURSCRIPT:: ; d64e ds 1 -W_AGATHACURSCRIPT: ; d64f +W_AGATHACURSCRIPT:: ; d64f ds 1 -W_UNKNOWNDUNGEON3CURSCRIPT: ; d650 +W_UNKNOWNDUNGEON3CURSCRIPT:: ; d650 ds 1 -W_VICTORYROAD1CURSCRIPT: ; d651 +W_VICTORYROAD1CURSCRIPT:: ; d651 ds 1 ds 1 -W_LANCECURSCRIPT: ; d653 +W_LANCECURSCRIPT:: ; d653 ds 1 ds 4 -W_SILPHCO10CURSCRIPT: ; d658 +W_SILPHCO10CURSCRIPT:: ; d658 ds 1 -W_SILPHCO11CURSCRIPT: ; d659 +W_SILPHCO11CURSCRIPT:: ; d659 ds 1 ds 1 -W_FUCHSIAGYMCURSCRIPT: ; d65b +W_FUCHSIAGYMCURSCRIPT:: ; d65b ds 1 -W_SAFFRONGYMCURSCRIPT: ; d65c +W_SAFFRONGYMCURSCRIPT:: ; d65c ds 1 ds 1 -W_CINNABARGYMCURSCRIPT: ; d65e +W_CINNABARGYMCURSCRIPT:: ; d65e ds 1 -W_CELADONGAMECORNERCURSCRIPT: ; d65f +W_CELADONGAMECORNERCURSCRIPT:: ; d65f ds 1 -W_ROUTE16GATECURSCRIPT: ; d660 +W_ROUTE16GATECURSCRIPT:: ; d660 ds 1 -W_BILLSHOUSECURSCRIPT: ; d661 +W_BILLSHOUSECURSCRIPT:: ; d661 ds 1 -W_ROUTE5GATECURSCRIPT: ; d662 +W_ROUTE5GATECURSCRIPT:: ; d662 ds 1 -W_POWERPLANTCURSCRIPT: ; d663 +W_POWERPLANTCURSCRIPT:: ; d663 ; overload ds 0 -W_ROUTE7GATECURSCRIPT: ; d663 +W_ROUTE7GATECURSCRIPT:: ; d663 ; overload ds 1 ds 1 -W_SSANNE2CURSCRIPT: ; d665 +W_SSANNE2CURSCRIPT:: ; d665 ds 1 -W_SEAFOAMISLANDS4CURSCRIPT: ; d666 +W_SEAFOAMISLANDS4CURSCRIPT:: ; d666 ds 1 -W_ROUTE23CURSCRIPT: ; d667 +W_ROUTE23CURSCRIPT:: ; d667 ds 1 -W_SEAFOAMISLANDS5CURSCRIPT: ; d668 +W_SEAFOAMISLANDS5CURSCRIPT:: ; d668 ds 1 -W_ROUTE18GATECURSCRIPT: ; d669 +W_ROUTE18GATECURSCRIPT:: ; d669 ds 1 ds 161 -W_TOWNVISITEDFLAG: ; d70b +W_TOWNVISITEDFLAG:: ; d70b ; 2 bytes bit array, 1 means visited ds 2 -wSafariSteps: ; d70d +wSafariSteps:: ; d70d ; starts at 502 ds 2 -W_FOSSILITEM: ; d70f +W_FOSSILITEM:: ; d70f ; item given to cinnabar lab ds 1 -W_FOSSILMON: ; d710 +W_FOSSILMON:: ; d710 ; mon that will result from the item ds 1 ds 2 -W_ENEMYMONORTRAINERCLASS: ; d713 +W_ENEMYMONORTRAINERCLASS:: ; d713 ; trainer classes start at $c8 ds 1 ds 1 -W_RIVALSTARTER: ; d715 +W_RIVALSTARTER:: ; d715 ds 1 ds 1 -W_PLAYERSTARTER: ; d717 +W_PLAYERSTARTER:: ; d717 ds 1 ds 27 -W_FLAGS_D733: ; d733 +W_FLAGS_D733:: ; d733 ; bit 4: use variable [W_CURMAPSCRIPT] instead of the provided index for next frame's map script (used to start battle when talking to trainers) ds 340 -W_GRASSRATE: ; d887 +W_GRASSRATE:: ; d887 ds 1 -W_GRASSMONS: ; d888 +W_GRASSMONS:: ; d888 ds 20 -wEnemyPartyCount: ; d89c +wEnemyPartyCount:: ; d89c ds 1 -wEnemyPartyMons: ; d89d +wEnemyPartyMons:: ; d89d ds 6 ds 1 ; end @@ -1348,110 +1348,110 @@ W_WATERMONS EQU $d8a5 wEnemyMons: -wEnemyMon1: ; d8a4 -wEnemyMon1Species: ; d8a4 +wEnemyMon1:: ; d8a4 +wEnemyMon1Species:: ; d8a4 ds 1 -W_ENEMYMON1HP: ; d8a5 +W_ENEMYMON1HP:: ; d8a5 ds 2 ds 7 -W_ENEMYMON1MOVE3: ; d8ae +W_ENEMYMON1MOVE3:: ; d8ae ds 44 -W_ENEMYMON2MOVE3: ; d8da +W_ENEMYMON2MOVE3:: ; d8da ds 44 -W_ENEMYMON3MOVE3: ; d906 +W_ENEMYMON3MOVE3:: ; d906 ds 44 -W_ENEMYMON4MOVE3: ; d932 +W_ENEMYMON4MOVE3:: ; d932 ds 44 -W_ENEMYMON5MOVE3: ; d95e +W_ENEMYMON5MOVE3:: ; d95e ds 44 -W_ENEMYMON6MOVE3: ; d98a +W_ENEMYMON6MOVE3:: ; d98a ds 34 -W_ENEMYMON1OT: ; d9ac +W_ENEMYMON1OT:: ; d9ac ds 11 -W_ENEMYMON2OT: ; d9b7 +W_ENEMYMON2OT:: ; d9b7 ds 11 -W_ENEMYMON3OT: ; d9c2 +W_ENEMYMON3OT:: ; d9c2 ds 11 -W_ENEMYMON4OT: ; d9cd +W_ENEMYMON4OT:: ; d9cd ds 11 -W_ENEMYMON5OT: ; d9d8 +W_ENEMYMON5OT:: ; d9d8 ds 11 -W_ENEMYMON6OT: ; d9e3 +W_ENEMYMON6OT:: ; d9e3 ds 11 -W_ENEMYMON1NAME: ; d9ee +W_ENEMYMON1NAME:: ; d9ee ds 11 -W_ENEMYMON2NAME: ; d9f9 +W_ENEMYMON2NAME:: ; d9f9 ds 11 -W_ENEMYMON3NAME: ; da04 +W_ENEMYMON3NAME:: ; da04 ds 11 -W_ENEMYMON4NAME: ; da0f +W_ENEMYMON4NAME:: ; da0f ds 11 -W_ENEMYMON5NAME: ; da1a +W_ENEMYMON5NAME:: ; da1a ds 11 -W_ENEMYMON6NAME: ; da25 +W_ENEMYMON6NAME:: ; da25 ds 11 -W_TRAINERHEADERPTR: ; da30 +W_TRAINERHEADERPTR:: ; da30 ds 2 ds 7 -W_CURMAPSCRIPT: ; da39 +W_CURMAPSCRIPT:: ; da39 ; index of current map script, mostly used as index for function pointer array ; mostly copied from map-specific map script pointer and wirtten back later ds 1 ds 6 -W_PLAYTIMEHOURS: ; da40 +W_PLAYTIMEHOURS:: ; da40 ds 2 -W_PLAYTIMEMINUTES: ; da42 +W_PLAYTIMEMINUTES:: ; da42 ds 2 -W_PLAYTIMESECONDS: ; da44 +W_PLAYTIMESECONDS:: ; da44 ds 1 -W_PLAYTIMEFRAMES: ; da45 +W_PLAYTIMEFRAMES:: ; da45 ds 1 ds 1 -W_NUMSAFARIBALLS: ; da47 +W_NUMSAFARIBALLS:: ; da47 ds 1 -W_DAYCARE_IN_USE: ; da48 +W_DAYCARE_IN_USE:: ; da48 ; 0 if no pokemon is in the daycare ; 1 if pokemon is in the daycare ds 1 -W_DAYCAREMONNAME: ; da49 +W_DAYCAREMONNAME:: ; da49 ds 11 -W_DAYCAREMONOT: ; da54 +W_DAYCAREMONOT:: ; da54 ds 11 -W_DAYCAREMONDATA: ; da5f +W_DAYCAREMONDATA:: ; da5f ds 33 -W_NUMINBOX: ; da80 +W_NUMINBOX:: ; da80 ; number of mons in current box ds 22 -W_BOXMON1DATA: ; da96 +W_BOXMON1DATA:: ; da96 ds 33 -W_BOXMON2DATA: ; dab7 +W_BOXMON2DATA:: ; dab7 ds 33 * 19 -W_BOXMON1OT: ; dd2a +W_BOXMON1OT:: ; dd2a ds 11 -W_BOXMON2OT: ; dd35 +W_BOXMON2OT:: ; dd35 ds 11 * 19 -W_BOXMON1NAME: ; de06 +W_BOXMON1NAME:: ; de06 ds 11 -W_BOXMON2NAME: ; de11 +W_BOXMON2NAME:: ; de11 ds 11 * 19 ; dee2 From 2b961ceaf41c88edf4625d66aa35acf1dada825e Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 27 Jan 2014 16:37:16 -0500 Subject: [PATCH 39/41] Clean up makefile messages and prerequisite handling --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ad93c02b..9beb2c04 100644 --- a/Makefile +++ b/Makefile @@ -41,12 +41,12 @@ redrle: extras/redtools/redrle.c clean: rm -f $(ROMS) rm -f $(OBJS) - @echo "removing *.tx" && find . -iname '*.tx' -exec rm {} + + find . -iname '*.tx' -exec rm {} + rm -f redrle baserom.gbc: ; - @echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false + @echo "Wait! Need baserom.gbc first. Check README for details." && false %.asm: ; .asm.tx: @@ -59,10 +59,10 @@ $(OBJS): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_DEPENDENCIES)) rgbasm -o $@ $*.tx pokered.gbc: $(RED_OBJS) - rgblink -n $*.sym -m $*.map -o $@ $(RED_OBJS) + rgblink -n $*.sym -m $*.map -o $@ $^ rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED" $@ pokeblue.gbc: $(BLUE_OBJS) - rgblink -n $*.sym -m $*.map -o $@ $(BLUE_OBJS) + rgblink -n $*.sym -m $*.map -o $@ $^ rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE" $@ From c49dd99a986b58a9a19f6e53c6e132aa5c18c1de Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 27 Jan 2014 17:09:09 -0500 Subject: [PATCH 40/41] Split wram.asm from poke{red,blue}.o into wram.o wram.asm still defines some constants. They're moved into constants/wram_constants.asm. --- Makefile | 2 ++ constants.asm | 2 ++ constants/wram_constants.asm | 7 +++++++ pokeblue.asm | 1 - pokered.asm | 1 - wram.asm | 17 +++++++---------- 6 files changed, 18 insertions(+), 12 deletions(-) create mode 100644 constants/wram_constants.asm diff --git a/Makefile b/Makefile index 9beb2c04..9a309790 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,13 @@ TEXTQUEUE := RED_OBJS := \ pokered.o \ audio_red.o \ +wram.o \ text.o BLUE_OBJS := \ pokeblue.o \ audio_blue.o \ +wram.o \ text.o OBJS := $(RED_OBJS) $(BLUE_OBJS) diff --git a/constants.asm b/constants.asm index 2d5b3d9b..3496aa6a 100644 --- a/constants.asm +++ b/constants.asm @@ -9,6 +9,8 @@ INCLUDE "hram.asm" INCLUDE "constants/hardware_constants.asm" INCLUDE "constants/oam_constants.asm" +INCLUDE "constants/wram_constants.asm" + INCLUDE "constants/pokemon_constants.asm" INCLUDE "constants/pokedex_constants.asm" INCLUDE "constants/trainer_constants.asm" diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm new file mode 100644 index 00000000..111ae584 --- /dev/null +++ b/constants/wram_constants.asm @@ -0,0 +1,7 @@ + +SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile) + +; Overload enemy party data +W_WATERRATE EQU $d8a4 +W_WATERMONS EQU $d8a5 + diff --git a/pokeblue.asm b/pokeblue.asm index 10dcf979..3fcef980 100644 --- a/pokeblue.asm +++ b/pokeblue.asm @@ -1,3 +1,2 @@ INCLUDE "blue.asm" -INCLUDE "wram.asm" INCLUDE "main.asm" diff --git a/pokered.asm b/pokered.asm index 827b6019..ff8de04f 100644 --- a/pokered.asm +++ b/pokered.asm @@ -1,3 +1,2 @@ INCLUDE "red.asm" -INCLUDE "wram.asm" INCLUDE "main.asm" diff --git a/wram.asm b/wram.asm index d2346815..d96fdaf8 100644 --- a/wram.asm +++ b/wram.asm @@ -1,4 +1,6 @@ +INCLUDE "constants/wram_constants.asm" + SECTION "WRAM Bank 0", WRAM0 @@ -189,7 +191,7 @@ SECTION "Stat Modifiers", WRAM0[$cd1a] ; value can range from 1 - 13 ($1 to $D) ; 7 is normal -wPlayerMonStatMods: +wPlayerMonStatMods:: wPlayerMonAttackMod:: ; cd1a ds 1 wPlayerMonDefenseMod:: ; cd1b @@ -214,7 +216,7 @@ wEngagedTrainerSet:: ; cd2e ; value can range from 1 - 13 ($1 to $D) ; 7 is normal -wEnemyMonStatMods: +wEnemyMonStatMods:: wEnemyMonAttackMod:: ; cd2e ds 1 wEnemyMonDefenseMod:: ; cd2f @@ -643,8 +645,6 @@ W_FBMODE:: ; d09e SECTION "Sprite Buffers", SRAM -SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile) - S_SPRITEBUFFER0:: ; a000 ds SPRITEBUFFERSIZE S_SPRITEBUFFER1:: ; a188 @@ -903,11 +903,11 @@ SECTION "Pokedex", WRAMX[$d2f7], BANK[1] wPokedexOwned:: ; d2f7 ds (150 / 8) + 1 -wPokedexOwnedEnd: +wPokedexOwnedEnd:: wPokedexSeen:: ; d30a ds (150 / 8) + 1 -wPokedexSeenEnd: +wPokedexSeenEnd:: wNumBagItems:: ; d31d @@ -1342,11 +1342,8 @@ wEnemyPartyMons:: ; d89d ds 6 ds 1 ; end -; Overload enemy party data -W_WATERRATE EQU $d8a4 -W_WATERMONS EQU $d8a5 -wEnemyMons: +wEnemyMons:: wEnemyMon1:: ; d8a4 wEnemyMon1Species:: ; d8a4 From b48435bb260e87bd27cc954eb5f2473c4f80c8f4 Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 27 Jan 2014 17:24:19 -0500 Subject: [PATCH 41/41] Makefile: condense dependency scanning into one loop --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 9a309790..f7cc2092 100644 --- a/Makefile +++ b/Makefile @@ -26,8 +26,6 @@ ROMS := pokered.gbc pokeblue.gbc # generate dependencies for each object $(shell $(foreach obj, $(OBJS), \ $(eval $(obj:.o=)_DEPENDENCIES := $(shell $(PYTHON) extras/pokemontools/scan_includes.py $(obj:.o=.asm))) \ -)) -$(shell $(foreach obj, $(OBJS), \ $(eval ALL_DEPENDENCIES += $($(obj:.o=)_DEPENDENCIES)) \ ))