mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
More charmap and home/text.asm documentation for JP chars
This commit is contained in:
parent
676b585375
commit
2acaa96cf1
50
charmap.asm
50
charmap.asm
@ -1,20 +1,21 @@
|
|||||||
; Control characters
|
; $00-$16 are TX_* constants (see macros/scripts/text.asm)
|
||||||
charmap "<START>", $00
|
|
||||||
charmap "<PLAY_G>", $14 ; gendered PlayerName; same as "<PLAYER>" in English
|
; Control characters (see home/text.asm)
|
||||||
charmap "<DAY>", $15
|
|
||||||
|
charmap "<PLAY_G>", $14 ; "<PLAYER>くん" or "<PLAYER>ちゃん"; same as "<PLAYER>" in English
|
||||||
charmap "¯", $1f ; soft linebreak
|
charmap "¯", $1f ; soft linebreak
|
||||||
charmap "<LNBRK>", $22
|
charmap "<LNBRK>", $22
|
||||||
charmap "<KOUGEKI>", $23 ; "こうげき"
|
|
||||||
charmap "<POKE>", $24 ; "<PO><KE>"
|
charmap "<POKE>", $24 ; "<PO><KE>"
|
||||||
charmap "%", $25
|
charmap "%", $25
|
||||||
charmap "<RED>", $38 ; RedsName
|
charmap "<RED>", $38 ; RedsName
|
||||||
charmap "<GREEN>", $39 ; GreensName
|
charmap "<GREEN>", $39 ; GreensName
|
||||||
charmap "<ENEMY>", $3f
|
|
||||||
charmap "<MOM>", $49 ; MomsName
|
charmap "<MOM>", $49 ; MomsName
|
||||||
|
charmap "<ENEMY>", $3f
|
||||||
charmap "<PKMN>", $4a ; "<PK><MN>"
|
charmap "<PKMN>", $4a ; "<PK><MN>"
|
||||||
|
charmap "<CONT2>", $4b ; implements "<CONT>"
|
||||||
|
charmap "<CONT3>", $4c ; unused
|
||||||
charmap "<NEXT>", $4e
|
charmap "<NEXT>", $4e
|
||||||
charmap "<LINE>", $4f
|
charmap "<LINE>", $4f
|
||||||
|
|
||||||
charmap "@", $50 ; string terminator
|
charmap "@", $50 ; string terminator
|
||||||
charmap "<PARA>", $51
|
charmap "<PARA>", $51
|
||||||
charmap "<PLAYER>", $52 ; PlayerName
|
charmap "<PLAYER>", $52 ; PlayerName
|
||||||
@ -207,17 +208,29 @@
|
|||||||
|
|
||||||
; Japanese kana, for those bits of text that were not translated to English
|
; Japanese kana, for those bits of text that were not translated to English
|
||||||
|
|
||||||
charmap "ガ", $5
|
charmap "<NI>", $1d ; "に "
|
||||||
charmap "ギ", $6
|
charmap "<TTE>", $1e ; "って"
|
||||||
charmap "グ", $7
|
charmap "<O>", $1e ; "を "
|
||||||
charmap "ゲ", $8
|
charmap "<TA!>", $22 ; "た!"
|
||||||
charmap "ゴ", $9
|
charmap "<KOUGEKI>", $23 ; "こうげき"
|
||||||
charmap "ザ", $a
|
charmap "<WA>", $24 ; "は "
|
||||||
charmap "ジ", $b
|
charmap "<NO>", $25 ; "の "
|
||||||
charmap "ズ", $c
|
charmap "<ROUTE>", $35 ; "ばん どうろ"
|
||||||
charmap "ゼ", $d
|
charmap "<WATASHI>", $36 ; "わたし"
|
||||||
charmap "ゾ", $e
|
charmap "<KOKO_WA>", $37 ; "ここは"
|
||||||
charmap "ダ", $f
|
charmap "<GA>", $4a ; "が "
|
||||||
|
|
||||||
|
charmap "ガ", $05
|
||||||
|
charmap "ギ", $06
|
||||||
|
charmap "グ", $07
|
||||||
|
charmap "ゲ", $08
|
||||||
|
charmap "ゴ", $09
|
||||||
|
charmap "ザ", $0a
|
||||||
|
charmap "ジ", $0b
|
||||||
|
charmap "ズ", $0c
|
||||||
|
charmap "ゼ", $0d
|
||||||
|
charmap "ゾ", $0e
|
||||||
|
charmap "ダ", $0f
|
||||||
charmap "ヂ", $10
|
charmap "ヂ", $10
|
||||||
charmap "ヅ", $11
|
charmap "ヅ", $11
|
||||||
charmap "デ", $12
|
charmap "デ", $12
|
||||||
@ -227,7 +240,6 @@
|
|||||||
charmap "ビ", $1a
|
charmap "ビ", $1a
|
||||||
charmap "ブ", $1b
|
charmap "ブ", $1b
|
||||||
charmap "ボ", $1c
|
charmap "ボ", $1c
|
||||||
; charmap "ベ", $1d
|
|
||||||
|
|
||||||
charmap "が", $26
|
charmap "が", $26
|
||||||
charmap "ぎ", $27
|
charmap "ぎ", $27
|
||||||
|
@ -132,10 +132,6 @@ OBJECT_LENGTH EQU const_value
|
|||||||
MAPOBJECT_SCREEN_HEIGHT EQU 11
|
MAPOBJECT_SCREEN_HEIGHT EQU 11
|
||||||
MAPOBJECT_SCREEN_WIDTH EQU 12
|
MAPOBJECT_SCREEN_WIDTH EQU 12
|
||||||
|
|
||||||
; NPCs disappear if standing on tile $60-$7f or $e0-$ff,
|
|
||||||
; since those IDs are for text characters and textbox frames.
|
|
||||||
MAPOBJECT_VISIBLE_TILE_LIMIT EQU $60
|
|
||||||
|
|
||||||
|
|
||||||
; object_struct members (see macros/wram.asm)
|
; object_struct members (see macros/wram.asm)
|
||||||
const_def
|
const_def
|
||||||
|
@ -39,3 +39,7 @@ const_value set 5
|
|||||||
PRINTNUM_MONEY EQU 1 << PRINTNUM_MONEY_F
|
PRINTNUM_MONEY EQU 1 << PRINTNUM_MONEY_F
|
||||||
PRINTNUM_RIGHTALIGN EQU 1 << PRINTNUM_RIGHTALIGN_F
|
PRINTNUM_RIGHTALIGN EQU 1 << PRINTNUM_RIGHTALIGN_F
|
||||||
PRINTNUM_LEADINGZEROS EQU 1 << PRINTNUM_LEADINGZEROS_F
|
PRINTNUM_LEADINGZEROS EQU 1 << PRINTNUM_LEADINGZEROS_F
|
||||||
|
|
||||||
|
; character sets (see charmap.asm)
|
||||||
|
FIRST_REGULAR_TEXT_CHAR EQU $60
|
||||||
|
FIRST_HIRAGANA_DAKUTEN_CHAR EQU $20
|
||||||
|
@ -11,7 +11,7 @@ BattleText_PlayerPickedUpPayDayMoney: ; 0x80730
|
|||||||
WildPokemonAppearedText: ; 0x80746
|
WildPokemonAppearedText: ; 0x80746
|
||||||
text "Wild @"
|
text "Wild @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "appeared!"
|
line "appeared!"
|
||||||
prompt
|
prompt
|
||||||
; 0x8075c
|
; 0x8075c
|
||||||
@ -20,7 +20,7 @@ HookedPokemonAttackedText: ; 0x8075c
|
|||||||
text "The hooked"
|
text "The hooked"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
cont "attacked!"
|
cont "attacked!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80778
|
; 0x80778
|
||||||
@ -35,7 +35,7 @@ PokemonFellFromTreeText: ; 0x80778
|
|||||||
WildCelebiAppearedText: ; 0x80793
|
WildCelebiAppearedText: ; 0x80793
|
||||||
text "Wild @"
|
text "Wild @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "appeared!"
|
line "appeared!"
|
||||||
prompt
|
prompt
|
||||||
; 0x807a9
|
; 0x807a9
|
||||||
@ -49,7 +49,7 @@ WantsToBattleText:: ; 0x807a9
|
|||||||
BattleText_WildFled: ; 0x807bd
|
BattleText_WildFled: ; 0x807bd
|
||||||
text "Wild @"
|
text "Wild @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "fled!"
|
line "fled!"
|
||||||
prompt
|
prompt
|
||||||
; 0x807cf
|
; 0x807cf
|
||||||
@ -57,7 +57,7 @@ BattleText_WildFled: ; 0x807bd
|
|||||||
BattleText_EnemyFled: ; 0x807cf
|
BattleText_EnemyFled: ; 0x807cf
|
||||||
text "Enemy @"
|
text "Enemy @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "fled!"
|
line "fled!"
|
||||||
prompt
|
prompt
|
||||||
; 0x807e2
|
; 0x807e2
|
||||||
@ -189,7 +189,7 @@ BattleText_TheSandstormSubsided: ; 0x8098f
|
|||||||
BattleText_EnemyPkmnFainted: ; 0x809a8
|
BattleText_EnemyPkmnFainted: ; 0x809a8
|
||||||
text "Enemy @"
|
text "Enemy @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "fainted!"
|
line "fainted!"
|
||||||
prompt
|
prompt
|
||||||
; 0x809be
|
; 0x809be
|
||||||
@ -197,7 +197,7 @@ BattleText_EnemyPkmnFainted: ; 0x809a8
|
|||||||
GotMoneyForWinningText:
|
GotMoneyForWinningText:
|
||||||
text "<PLAYER> got ¥@"
|
text "<PLAYER> got ¥@"
|
||||||
deciram wBattleReward, 3, 6
|
deciram wBattleReward, 3, 6
|
||||||
text ""
|
text_start
|
||||||
line "for winning!"
|
line "for winning!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
@ -216,7 +216,7 @@ TiedAgainstText: ; 0x809eb
|
|||||||
SentSomeToMomText:
|
SentSomeToMomText:
|
||||||
text "<PLAYER> got ¥@"
|
text "<PLAYER> got ¥@"
|
||||||
deciram wBattleReward, 3, 6
|
deciram wBattleReward, 3, 6
|
||||||
text ""
|
text_start
|
||||||
line "for winning!"
|
line "for winning!"
|
||||||
cont "Sent some to MOM!"
|
cont "Sent some to MOM!"
|
||||||
prompt
|
prompt
|
||||||
@ -238,7 +238,7 @@ BattleText_0x80a4f: ; 0x80a4f
|
|||||||
|
|
||||||
BattleText_PkmnFainted: ; 0x80a75
|
BattleText_PkmnFainted: ; 0x80a75
|
||||||
text_from_ram BattleMonNick
|
text_from_ram BattleMonNick
|
||||||
text ""
|
text_start
|
||||||
line "fainted!"
|
line "fainted!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80a83
|
; 0x80a83
|
||||||
@ -342,7 +342,7 @@ BattleText_UsersStringBuffer1Activated: ; 0x80bde
|
|||||||
text "<USER>'s"
|
text "<USER>'s"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
cont "activated!"
|
cont "activated!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80bf3
|
; 0x80bf3
|
||||||
@ -355,14 +355,14 @@ BattleText_ItemsCantBeUsedHere: ; 0x80bf3
|
|||||||
|
|
||||||
BattleText_PkmnIsAlreadyOut: ; 0x80c0d
|
BattleText_PkmnIsAlreadyOut: ; 0x80c0d
|
||||||
text_from_ram BattleMonNick
|
text_from_ram BattleMonNick
|
||||||
text ""
|
text_start
|
||||||
line "is already out."
|
line "is already out."
|
||||||
prompt
|
prompt
|
||||||
; 0x80c22
|
; 0x80c22
|
||||||
|
|
||||||
BattleText_PkmnCantBeRecalled: ; 0x80c22
|
BattleText_PkmnCantBeRecalled: ; 0x80c22
|
||||||
text_from_ram BattleMonNick
|
text_from_ram BattleMonNick
|
||||||
text ""
|
text_start
|
||||||
line "can't be recalled!"
|
line "can't be recalled!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80c39
|
; 0x80c39
|
||||||
@ -381,7 +381,7 @@ BattleText_TheMoveIsDisabled: ; 0x80c5b
|
|||||||
|
|
||||||
BattleText_PkmnHasNoMovesLeft: ; 0x80c72
|
BattleText_PkmnHasNoMovesLeft: ; 0x80c72
|
||||||
text_from_ram BattleMonNick
|
text_from_ram BattleMonNick
|
||||||
text ""
|
text_start
|
||||||
line "has no moves left!"
|
line "has no moves left!"
|
||||||
done
|
done
|
||||||
; 0x80c8a
|
; 0x80c8a
|
||||||
@ -405,7 +405,7 @@ BattleText_StringBuffer1GrewToLevel: ; 0x80c9c
|
|||||||
BattleText_WildPkmnIsEating: ; 0x80cba
|
BattleText_WildPkmnIsEating: ; 0x80cba
|
||||||
text "Wild @"
|
text "Wild @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "is eating!"
|
line "is eating!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80cd1
|
; 0x80cd1
|
||||||
@ -413,7 +413,7 @@ BattleText_WildPkmnIsEating: ; 0x80cba
|
|||||||
BattleText_WildPkmnIsAngry: ; 0x80cd1
|
BattleText_WildPkmnIsAngry: ; 0x80cd1
|
||||||
text "Wild @"
|
text "Wild @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "is angry!"
|
line "is angry!"
|
||||||
prompt
|
prompt
|
||||||
; 0x80ce7
|
; 0x80ce7
|
||||||
@ -1103,7 +1103,7 @@ StoleText: ; 0x815da
|
|||||||
text "<USER>"
|
text "<USER>"
|
||||||
line "stole @"
|
line "stole @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
cont "from its foe!"
|
cont "from its foe!"
|
||||||
prompt
|
prompt
|
||||||
; 0x815f7
|
; 0x815f7
|
||||||
|
@ -39,7 +39,7 @@ UnknownText_0x1bc089::
|
|||||||
|
|
||||||
UnknownText_0x1bc0a2::
|
UnknownText_0x1bc0a2::
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "recovered @"
|
line "recovered @"
|
||||||
deciram wd1f3, 2, 3
|
deciram wd1f3, 2, 3
|
||||||
text "HP!"
|
text "HP!"
|
||||||
@ -65,13 +65,13 @@ UnknownText_0x1bc0ea::
|
|||||||
|
|
||||||
UnknownText_0x1bc101::
|
UnknownText_0x1bc101::
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "was defrosted."
|
line "was defrosted."
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1bc115::
|
UnknownText_0x1bc115::
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "woke up."
|
line "woke up."
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ UnknownText_0x1bc123::
|
|||||||
|
|
||||||
UnknownText_0x1bc13a::
|
UnknownText_0x1bc13a::
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "is revitalized."
|
line "is revitalized."
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -292,7 +292,7 @@ UnknownText_0x1bc51c::
|
|||||||
text "Put away the"
|
text "Put away the"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
|
|
||||||
para "and set up the"
|
para "and set up the"
|
||||||
line "@"
|
line "@"
|
||||||
@ -376,7 +376,7 @@ UnknownText_0x1bc6e9::
|
|||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1bc701::
|
UnknownText_0x1bc701::
|
||||||
text ""
|
text_start
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1bc703::
|
UnknownText_0x1bc703::
|
||||||
@ -485,202 +485,202 @@ UnknownText_0x1bc80a::
|
|||||||
; Oak's Pokémon Talk
|
; Oak's Pokémon Talk
|
||||||
|
|
||||||
_OPT_IntroText1::
|
_OPT_IntroText1::
|
||||||
text ""
|
text_start
|
||||||
line "MARY: PROF.OAK'S"
|
line "MARY: PROF.OAK'S"
|
||||||
done
|
done
|
||||||
|
|
||||||
_OPT_IntroText2::
|
_OPT_IntroText2::
|
||||||
text ""
|
text_start
|
||||||
line "#MON TALK!"
|
line "#MON TALK!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_OPT_IntroText3::
|
_OPT_IntroText3::
|
||||||
text ""
|
text_start
|
||||||
line "With me, MARY!"
|
line "With me, MARY!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_OPT_OakText1::
|
_OPT_OakText1::
|
||||||
text ""
|
text_start
|
||||||
line "OAK: @"
|
line "OAK: @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
db "@@"
|
db "@@"
|
||||||
|
|
||||||
_OPT_OakText2::
|
_OPT_OakText2::
|
||||||
text ""
|
text_start
|
||||||
line "may be seen around"
|
line "may be seen around"
|
||||||
done
|
done
|
||||||
|
|
||||||
_OPT_OakText3::
|
_OPT_OakText3::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text "."
|
text "."
|
||||||
done
|
done
|
||||||
|
|
||||||
_OPT_MaryText1::
|
_OPT_MaryText1::
|
||||||
text ""
|
text_start
|
||||||
line "MARY: @"
|
line "MARY: @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text "'s"
|
text "'s"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_SweetAdorably::
|
OPT_SweetAdorably::
|
||||||
text ""
|
text_start
|
||||||
line "sweet and adorably"
|
line "sweet and adorably"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_WigglySlickly::
|
OPT_WigglySlickly::
|
||||||
text ""
|
text_start
|
||||||
line "wiggly and slickly"
|
line "wiggly and slickly"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_AptlyNamed::
|
OPT_AptlyNamed::
|
||||||
text ""
|
text_start
|
||||||
line "aptly named and"
|
line "aptly named and"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_UndeniablyKindOf::
|
OPT_UndeniablyKindOf::
|
||||||
text ""
|
text_start
|
||||||
line "undeniably kind of"
|
line "undeniably kind of"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Unbearably::
|
OPT_Unbearably::
|
||||||
text ""
|
text_start
|
||||||
line "so, so unbearably"
|
line "so, so unbearably"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_WowImpressively::
|
OPT_WowImpressively::
|
||||||
text ""
|
text_start
|
||||||
line "wow, impressively"
|
line "wow, impressively"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_AlmostPoisonously::
|
OPT_AlmostPoisonously::
|
||||||
text ""
|
text_start
|
||||||
line "almost poisonously"
|
line "almost poisonously"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Sensually::
|
OPT_Sensually::
|
||||||
text ""
|
text_start
|
||||||
line "ooh, so sensually"
|
line "ooh, so sensually"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Mischievously::
|
OPT_Mischievously::
|
||||||
text ""
|
text_start
|
||||||
line "so mischievously"
|
line "so mischievously"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Topically::
|
OPT_Topically::
|
||||||
text ""
|
text_start
|
||||||
line "so very topically"
|
line "so very topically"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Addictively::
|
OPT_Addictively::
|
||||||
text ""
|
text_start
|
||||||
line "sure addictively"
|
line "sure addictively"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_LooksInWater::
|
OPT_LooksInWater::
|
||||||
text ""
|
text_start
|
||||||
line "looks in water is"
|
line "looks in water is"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_EvolutionMustBe::
|
OPT_EvolutionMustBe::
|
||||||
text ""
|
text_start
|
||||||
line "evolution must be"
|
line "evolution must be"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Provocatively::
|
OPT_Provocatively::
|
||||||
text ""
|
text_start
|
||||||
line "provocatively"
|
line "provocatively"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_FlippedOut::
|
OPT_FlippedOut::
|
||||||
text ""
|
text_start
|
||||||
line "so flipped out and"
|
line "so flipped out and"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_HeartMeltingly::
|
OPT_HeartMeltingly::
|
||||||
text ""
|
text_start
|
||||||
line "heart-meltingly"
|
line "heart-meltingly"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Cute::
|
OPT_Cute::
|
||||||
text ""
|
text_start
|
||||||
line "cute."
|
line "cute."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Weird::
|
OPT_Weird::
|
||||||
text ""
|
text_start
|
||||||
line "weird."
|
line "weird."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Pleasant::
|
OPT_Pleasant::
|
||||||
text ""
|
text_start
|
||||||
line "pleasant."
|
line "pleasant."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_BoldSortOf::
|
OPT_BoldSortOf::
|
||||||
text ""
|
text_start
|
||||||
line "bold, sort of."
|
line "bold, sort of."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Frightening::
|
OPT_Frightening::
|
||||||
text ""
|
text_start
|
||||||
line "frightening."
|
line "frightening."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_SuaveDebonair::
|
OPT_SuaveDebonair::
|
||||||
text ""
|
text_start
|
||||||
line "suave & debonair!"
|
line "suave & debonair!"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Powerful::
|
OPT_Powerful::
|
||||||
text ""
|
text_start
|
||||||
line "powerful."
|
line "powerful."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Exciting::
|
OPT_Exciting::
|
||||||
text ""
|
text_start
|
||||||
line "exciting."
|
line "exciting."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Groovy::
|
OPT_Groovy::
|
||||||
text ""
|
text_start
|
||||||
line "groovy!"
|
line "groovy!"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Inspiring::
|
OPT_Inspiring::
|
||||||
text ""
|
text_start
|
||||||
line "inspiring."
|
line "inspiring."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Friendly::
|
OPT_Friendly::
|
||||||
text ""
|
text_start
|
||||||
line "friendly."
|
line "friendly."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_HotHotHot::
|
OPT_HotHotHot::
|
||||||
text ""
|
text_start
|
||||||
line "hot, hot, hot!"
|
line "hot, hot, hot!"
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Stimulating::
|
OPT_Stimulating::
|
||||||
text ""
|
text_start
|
||||||
line "stimulating."
|
line "stimulating."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Guarded::
|
OPT_Guarded::
|
||||||
text ""
|
text_start
|
||||||
line "guarded."
|
line "guarded."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Lovely::
|
OPT_Lovely::
|
||||||
text ""
|
text_start
|
||||||
line "lovely."
|
line "lovely."
|
||||||
done
|
done
|
||||||
|
|
||||||
OPT_Speedy::
|
OPT_Speedy::
|
||||||
text ""
|
text_start
|
||||||
line "speedy."
|
line "speedy."
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -689,7 +689,7 @@ _OPT_PokemonChannelText::
|
|||||||
done
|
done
|
||||||
|
|
||||||
_PokedexShowText::
|
_PokedexShowText::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
db "@@"
|
db "@@"
|
||||||
@ -697,96 +697,96 @@ _PokedexShowText::
|
|||||||
; Pokémon Music Channel / Pokémusic
|
; Pokémon Music Channel / Pokémusic
|
||||||
|
|
||||||
_BenIntroText1::
|
_BenIntroText1::
|
||||||
text ""
|
text_start
|
||||||
line "BEN: #MON MUSIC"
|
line "BEN: #MON MUSIC"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenIntroText2::
|
_BenIntroText2::
|
||||||
text ""
|
text_start
|
||||||
line "CHANNEL!"
|
line "CHANNEL!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenIntroText3::
|
_BenIntroText3::
|
||||||
text ""
|
text_start
|
||||||
line "It's me, DJ BEN!"
|
line "It's me, DJ BEN!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_FernIntroText1::
|
_FernIntroText1::
|
||||||
text ""
|
text_start
|
||||||
line "FERN: #MUSIC!"
|
line "FERN: #MUSIC!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_FernIntroText2::
|
_FernIntroText2::
|
||||||
text ""
|
text_start
|
||||||
line "With DJ FERN!"
|
line "With DJ FERN!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenFernText1::
|
_BenFernText1::
|
||||||
text ""
|
text_start
|
||||||
line "Today's @"
|
line "Today's @"
|
||||||
current_day
|
current_day
|
||||||
text ","
|
text ","
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenFernText2A::
|
_BenFernText2A::
|
||||||
text ""
|
text_start
|
||||||
line "so let us jam to"
|
line "so let us jam to"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenFernText2B::
|
_BenFernText2B::
|
||||||
text ""
|
text_start
|
||||||
line "so chill out to"
|
line "so chill out to"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenFernText3A::
|
_BenFernText3A::
|
||||||
text ""
|
text_start
|
||||||
line "#MON March!"
|
line "#MON March!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BenFernText3B::
|
_BenFernText3B::
|
||||||
text ""
|
text_start
|
||||||
line "#MON Lullaby!"
|
line "#MON Lullaby!"
|
||||||
done
|
done
|
||||||
|
|
||||||
; Lucky Channel
|
; Lucky Channel
|
||||||
|
|
||||||
_LC_Text1::
|
_LC_Text1::
|
||||||
text ""
|
text_start
|
||||||
line "REED: Yeehaw! How"
|
line "REED: Yeehaw! How"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text2::
|
_LC_Text2::
|
||||||
text ""
|
text_start
|
||||||
line "y'all doin' now?"
|
line "y'all doin' now?"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text3::
|
_LC_Text3::
|
||||||
text ""
|
text_start
|
||||||
line "Whether you're up"
|
line "Whether you're up"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text4::
|
_LC_Text4::
|
||||||
text ""
|
text_start
|
||||||
line "or way down low,"
|
line "or way down low,"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text5::
|
_LC_Text5::
|
||||||
text ""
|
text_start
|
||||||
line "don't you miss the"
|
line "don't you miss the"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text6::
|
_LC_Text6::
|
||||||
text ""
|
text_start
|
||||||
line "LUCKY NUMBER SHOW!"
|
line "LUCKY NUMBER SHOW!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text7::
|
_LC_Text7::
|
||||||
text ""
|
text_start
|
||||||
line "This week's Lucky"
|
line "This week's Lucky"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text8::
|
_LC_Text8::
|
||||||
text ""
|
text_start
|
||||||
line "Number is @"
|
line "Number is @"
|
||||||
interpret_data
|
interpret_data
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
@ -794,49 +794,49 @@ _LC_Text8::
|
|||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text9::
|
_LC_Text9::
|
||||||
text ""
|
text_start
|
||||||
line "I'll repeat that!"
|
line "I'll repeat that!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text10::
|
_LC_Text10::
|
||||||
text ""
|
text_start
|
||||||
line "Match it and go to"
|
line "Match it and go to"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_Text11::
|
_LC_Text11::
|
||||||
text ""
|
text_start
|
||||||
line "the RADIO TOWER!"
|
line "the RADIO TOWER!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_DragText1::
|
_LC_DragText1::
|
||||||
text ""
|
text_start
|
||||||
line "…Repeating myself"
|
line "…Repeating myself"
|
||||||
done
|
done
|
||||||
|
|
||||||
_LC_DragText2::
|
_LC_DragText2::
|
||||||
text ""
|
text_start
|
||||||
line "gets to be a drag…"
|
line "gets to be a drag…"
|
||||||
done
|
done
|
||||||
|
|
||||||
; Places and People
|
; Places and People
|
||||||
|
|
||||||
_PnP_Text1::
|
_PnP_Text1::
|
||||||
text ""
|
text_start
|
||||||
line "PLACES AND PEOPLE!"
|
line "PLACES AND PEOPLE!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_Text2::
|
_PnP_Text2::
|
||||||
text ""
|
text_start
|
||||||
line "Brought to you by"
|
line "Brought to you by"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_Text3::
|
_PnP_Text3::
|
||||||
text ""
|
text_start
|
||||||
line "me, DJ LILY!"
|
line "me, DJ LILY!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_Text4::
|
_PnP_Text4::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text " @"
|
text " @"
|
||||||
@ -844,223 +844,223 @@ _PnP_Text4::
|
|||||||
db "@@"
|
db "@@"
|
||||||
|
|
||||||
_PnP_cute::
|
_PnP_cute::
|
||||||
text ""
|
text_start
|
||||||
line "is cute."
|
line "is cute."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_lazy::
|
_PnP_lazy::
|
||||||
text ""
|
text_start
|
||||||
line "is sort of lazy."
|
line "is sort of lazy."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_happy::
|
_PnP_happy::
|
||||||
text ""
|
text_start
|
||||||
line "is always happy."
|
line "is always happy."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_noisy::
|
_PnP_noisy::
|
||||||
text ""
|
text_start
|
||||||
line "is quite noisy."
|
line "is quite noisy."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_precocious::
|
_PnP_precocious::
|
||||||
text ""
|
text_start
|
||||||
line "is precocious."
|
line "is precocious."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_bold::
|
_PnP_bold::
|
||||||
text ""
|
text_start
|
||||||
line "is somewhat bold."
|
line "is somewhat bold."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_picky::
|
_PnP_picky::
|
||||||
text ""
|
text_start
|
||||||
line "is too picky!"
|
line "is too picky!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_sortofok::
|
_PnP_sortofok::
|
||||||
text ""
|
text_start
|
||||||
line "is sort of OK."
|
line "is sort of OK."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_soso::
|
_PnP_soso::
|
||||||
text ""
|
text_start
|
||||||
line "is just so-so."
|
line "is just so-so."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_great::
|
_PnP_great::
|
||||||
text ""
|
text_start
|
||||||
line "is actually great."
|
line "is actually great."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_mytype::
|
_PnP_mytype::
|
||||||
text ""
|
text_start
|
||||||
line "is just my type."
|
line "is just my type."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_cool::
|
_PnP_cool::
|
||||||
text ""
|
text_start
|
||||||
line "is so cool, no?"
|
line "is so cool, no?"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_inspiring::
|
_PnP_inspiring::
|
||||||
text ""
|
text_start
|
||||||
line "is inspiring!"
|
line "is inspiring!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_weird::
|
_PnP_weird::
|
||||||
text ""
|
text_start
|
||||||
line "is kind of weird."
|
line "is kind of weird."
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_rightforme::
|
_PnP_rightforme::
|
||||||
text ""
|
text_start
|
||||||
line "is right for me?"
|
line "is right for me?"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_odd::
|
_PnP_odd::
|
||||||
text ""
|
text_start
|
||||||
line "is definitely odd!"
|
line "is definitely odd!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_PnP_Text5::
|
_PnP_Text5::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
db "@@"
|
db "@@"
|
||||||
|
|
||||||
_RocketRadioText1::
|
_RocketRadioText1::
|
||||||
text ""
|
text_start
|
||||||
line "… …Ahem, we are"
|
line "… …Ahem, we are"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText2::
|
_RocketRadioText2::
|
||||||
text ""
|
text_start
|
||||||
line "TEAM ROCKET!"
|
line "TEAM ROCKET!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText3::
|
_RocketRadioText3::
|
||||||
text ""
|
text_start
|
||||||
line "After three years"
|
line "After three years"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText4::
|
_RocketRadioText4::
|
||||||
text ""
|
text_start
|
||||||
line "of preparation, we"
|
line "of preparation, we"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText5::
|
_RocketRadioText5::
|
||||||
text ""
|
text_start
|
||||||
line "have risen again"
|
line "have risen again"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText6::
|
_RocketRadioText6::
|
||||||
text ""
|
text_start
|
||||||
line "from the ashes!"
|
line "from the ashes!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText7::
|
_RocketRadioText7::
|
||||||
text ""
|
text_start
|
||||||
line "GIOVANNI! @"
|
line "GIOVANNI! @"
|
||||||
interpret_data
|
interpret_data
|
||||||
text "Can you"
|
text "Can you"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText8::
|
_RocketRadioText8::
|
||||||
text ""
|
text_start
|
||||||
line "hear?@"
|
line "hear?@"
|
||||||
interpret_data
|
interpret_data
|
||||||
text " We did it!"
|
text " We did it!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText9::
|
_RocketRadioText9::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
interpret_data
|
interpret_data
|
||||||
text "Where is our boss?"
|
text "Where is our boss?"
|
||||||
done
|
done
|
||||||
|
|
||||||
_RocketRadioText10::
|
_RocketRadioText10::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
interpret_data
|
interpret_data
|
||||||
text "Is he listening?"
|
text "Is he listening?"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText1::
|
_BuenaRadioText1::
|
||||||
text ""
|
text_start
|
||||||
line "BUENA: BUENA here!"
|
line "BUENA: BUENA here!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText2::
|
_BuenaRadioText2::
|
||||||
text ""
|
text_start
|
||||||
line "Today's password!"
|
line "Today's password!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText3::
|
_BuenaRadioText3::
|
||||||
text ""
|
text_start
|
||||||
line "Let me think… It's"
|
line "Let me think… It's"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText4::
|
_BuenaRadioText4::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text "!"
|
text "!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText5::
|
_BuenaRadioText5::
|
||||||
text ""
|
text_start
|
||||||
line "Don't forget it!"
|
line "Don't forget it!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText6::
|
_BuenaRadioText6::
|
||||||
text ""
|
text_start
|
||||||
line "I'm in GOLDENROD's"
|
line "I'm in GOLDENROD's"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioText7::
|
_BuenaRadioText7::
|
||||||
text ""
|
text_start
|
||||||
line "RADIO TOWER!"
|
line "RADIO TOWER!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText1::
|
_BuenaRadioMidnightText1::
|
||||||
text ""
|
text_start
|
||||||
line "BUENA: Oh my…"
|
line "BUENA: Oh my…"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText2::
|
_BuenaRadioMidnightText2::
|
||||||
text ""
|
text_start
|
||||||
line "It's midnight! I"
|
line "It's midnight! I"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText3::
|
_BuenaRadioMidnightText3::
|
||||||
text ""
|
text_start
|
||||||
line "have to shut down!"
|
line "have to shut down!"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText4::
|
_BuenaRadioMidnightText4::
|
||||||
text ""
|
text_start
|
||||||
line "Thanks for tuning"
|
line "Thanks for tuning"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText5::
|
_BuenaRadioMidnightText5::
|
||||||
text ""
|
text_start
|
||||||
line "in to the end! But"
|
line "in to the end! But"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText6::
|
_BuenaRadioMidnightText6::
|
||||||
text ""
|
text_start
|
||||||
line "don't stay up too"
|
line "don't stay up too"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText7::
|
_BuenaRadioMidnightText7::
|
||||||
text ""
|
text_start
|
||||||
line "late! Presented to"
|
line "late! Presented to"
|
||||||
done
|
done
|
||||||
|
|
||||||
_BuenaRadioMidnightText8::
|
_BuenaRadioMidnightText8::
|
||||||
text ""
|
text_start
|
||||||
line "you by DJ BUENA!"
|
line "you by DJ BUENA!"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -1073,7 +1073,7 @@ _BuenaRadioMidnightText10::
|
|||||||
done
|
done
|
||||||
|
|
||||||
_BuenaOffTheAirText::
|
_BuenaOffTheAirText::
|
||||||
text ""
|
text_start
|
||||||
line ""
|
line ""
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -1089,7 +1089,7 @@ Text_EnemyUsedOn::
|
|||||||
text "<ENEMY>"
|
text "<ENEMY>"
|
||||||
line "used @"
|
line "used @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text ""
|
text_start
|
||||||
cont "on @"
|
cont "on @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text "!"
|
text "!"
|
||||||
@ -1108,7 +1108,7 @@ Text_ThatItemCantBePutInThePack::
|
|||||||
Text_TheItemWasPutInThePack::
|
Text_TheItemWasPutInThePack::
|
||||||
text "The @"
|
text "The @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "was put in the"
|
line "was put in the"
|
||||||
cont "PACK."
|
cont "PACK."
|
||||||
done
|
done
|
||||||
@ -1248,7 +1248,7 @@ UnknownText_0x1bd266::
|
|||||||
UnknownText_0x1bd286::
|
UnknownText_0x1bd286::
|
||||||
text "Trading @"
|
text "Trading @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text ""
|
text_start
|
||||||
line "for @"
|
line "for @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text "…"
|
text "…"
|
||||||
@ -1432,7 +1432,7 @@ UnknownText_0x1bd5cc::
|
|||||||
UnknownText_0x1bd5f4::
|
UnknownText_0x1bd5f4::
|
||||||
text "Hi! The @"
|
text "Hi! The @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text ""
|
text_start
|
||||||
line "you traded me is"
|
line "you traded me is"
|
||||||
cont "doing great!"
|
cont "doing great!"
|
||||||
done
|
done
|
||||||
@ -1621,7 +1621,7 @@ UnknownText_0x1bda90::
|
|||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1bdaa7::
|
UnknownText_0x1bdaa7::
|
||||||
text ""
|
text_start
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1bdaa9::
|
UnknownText_0x1bdaa9::
|
||||||
@ -1725,7 +1725,7 @@ UnknownText_0x1bdd64::
|
|||||||
UnknownText_0x1bdd96::
|
UnknownText_0x1bdd96::
|
||||||
text "Your @"
|
text "Your @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "has grown a lot."
|
line "has grown a lot."
|
||||||
|
|
||||||
para "By level, it's"
|
para "By level, it's"
|
||||||
@ -1756,7 +1756,7 @@ UnknownText_0x1bde32::
|
|||||||
text "Huh? Back already?"
|
text "Huh? Back already?"
|
||||||
line "Your @"
|
line "Your @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
para "needs a little"
|
para "needs a little"
|
||||||
line "more time with us."
|
line "more time with us."
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ UnknownText_0x1c01be::
|
|||||||
|
|
||||||
para "Treat @"
|
para "Treat @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "with loving care."
|
line "with loving care."
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -99,7 +99,7 @@ Text_Gained::
|
|||||||
text " gained@@"
|
text " gained@@"
|
||||||
|
|
||||||
Text_ABoostedStringBuffer2ExpPoints::
|
Text_ABoostedStringBuffer2ExpPoints::
|
||||||
text ""
|
text_start
|
||||||
line "a boosted"
|
line "a boosted"
|
||||||
cont "@"
|
cont "@"
|
||||||
deciram StringBuffer2, 2, 4
|
deciram StringBuffer2, 2, 4
|
||||||
@ -107,7 +107,7 @@ Text_ABoostedStringBuffer2ExpPoints::
|
|||||||
prompt
|
prompt
|
||||||
|
|
||||||
Text_StringBuffer2ExpPoints::
|
Text_StringBuffer2ExpPoints::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
deciram StringBuffer2, 2, 4
|
deciram StringBuffer2, 2, 4
|
||||||
text " EXP. Points!"
|
text " EXP. Points!"
|
||||||
@ -169,7 +169,7 @@ UnknownText_0x1c0396::
|
|||||||
|
|
||||||
para "Teach @"
|
para "Teach @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text ""
|
text_start
|
||||||
line "to a #MON?"
|
line "to a #MON?"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -245,7 +245,7 @@ UnknownText_0x1c04fa::
|
|||||||
text " sent"
|
text " sent"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
cont "to @"
|
cont "to @"
|
||||||
text_from_ram wMysteryGiftPlayerName
|
text_from_ram wMysteryGiftPlayerName
|
||||||
text "'s home."
|
text "'s home."
|
||||||
@ -546,7 +546,7 @@ UnknownText_0x1c0aa9::
|
|||||||
|
|
||||||
UnknownText_0x1c0acc::
|
UnknownText_0x1c0acc::
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "fainted!"
|
line "fainted!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
@ -599,7 +599,7 @@ UnknownText_0x1c0ba5::
|
|||||||
UnknownText_0x1c0bbb::
|
UnknownText_0x1c0bbb::
|
||||||
text "Throw away @"
|
text "Throw away @"
|
||||||
deciram wItemQuantityChangeBuffer, 1, 2
|
deciram wItemQuantityChangeBuffer, 1, 2
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text "(S)?"
|
text "(S)?"
|
||||||
@ -641,7 +641,7 @@ UnknownText_0x1c0c63::
|
|||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1c0c83::
|
UnknownText_0x1c0c83::
|
||||||
text ""
|
text_start
|
||||||
done
|
done
|
||||||
|
|
||||||
Text_YouCantUseItInABattle::
|
Text_YouCantUseItInABattle::
|
||||||
@ -688,32 +688,32 @@ UnknownText_0x1c0d0e::
|
|||||||
text "<USER>@@"
|
text "<USER>@@"
|
||||||
|
|
||||||
UnknownText_0x1c0d12::
|
UnknownText_0x1c0d12::
|
||||||
text ""
|
text_start
|
||||||
line "made a whirlwind!"
|
line "made a whirlwind!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c0d26::
|
UnknownText_0x1c0d26::
|
||||||
text ""
|
text_start
|
||||||
line "took in sunlight!"
|
line "took in sunlight!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c0d3a::
|
UnknownText_0x1c0d3a::
|
||||||
text ""
|
text_start
|
||||||
line "lowered its head!"
|
line "lowered its head!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c0d4e::
|
UnknownText_0x1c0d4e::
|
||||||
text ""
|
text_start
|
||||||
line "is glowing!"
|
line "is glowing!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c0d5c::
|
UnknownText_0x1c0d5c::
|
||||||
text ""
|
text_start
|
||||||
line "flew up high!"
|
line "flew up high!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c0d6c::
|
UnknownText_0x1c0d6c::
|
||||||
text ""
|
text_start
|
||||||
line "dug a hole!"
|
line "dug a hole!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
@ -721,11 +721,11 @@ _ActorNameText::
|
|||||||
text "<USER>@@"
|
text "<USER>@@"
|
||||||
|
|
||||||
_UsedMove1Text::
|
_UsedMove1Text::
|
||||||
text ""
|
text_start
|
||||||
line "used @@"
|
line "used @@"
|
||||||
|
|
||||||
_UsedMove2Text::
|
_UsedMove2Text::
|
||||||
text ""
|
text_start
|
||||||
line "used @@"
|
line "used @@"
|
||||||
|
|
||||||
_UsedInsteadText::
|
_UsedInsteadText::
|
||||||
@ -761,7 +761,7 @@ UnknownText_0x1c0db0::
|
|||||||
para "@@"
|
para "@@"
|
||||||
|
|
||||||
UnknownText_0x1c0db8::
|
UnknownText_0x1c0db8::
|
||||||
text ""
|
text_start
|
||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1c0dba::
|
UnknownText_0x1c0dba::
|
||||||
@ -782,7 +782,7 @@ UnknownText_0x1c0dd8::
|
|||||||
UnknownText_0x1c0df3::
|
UnknownText_0x1c0df3::
|
||||||
text "It's @"
|
text "It's @"
|
||||||
text_from_ram wBreedMon2Nick
|
text_from_ram wBreedMon2Nick
|
||||||
text ""
|
text_start
|
||||||
line "that was left with"
|
line "that was left with"
|
||||||
cont "the DAY-CARE LADY."
|
cont "the DAY-CARE LADY."
|
||||||
done
|
done
|
||||||
@ -790,7 +790,7 @@ UnknownText_0x1c0df3::
|
|||||||
UnknownText_0x1c0e24::
|
UnknownText_0x1c0e24::
|
||||||
text "It's @"
|
text "It's @"
|
||||||
text_from_ram wBreedMon1
|
text_from_ram wBreedMon1
|
||||||
text ""
|
text_start
|
||||||
line "that was left with"
|
line "that was left with"
|
||||||
cont "the DAY-CARE MAN."
|
cont "the DAY-CARE MAN."
|
||||||
done
|
done
|
||||||
@ -874,7 +874,7 @@ UnknownText_0x1c0fbc::
|
|||||||
deciram wcf64, 1, 3
|
deciram wcf64, 1, 3
|
||||||
text " @"
|
text " @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "Animation type @"
|
line "Animation type @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
db "@@"
|
db "@@"
|
||||||
@ -953,7 +953,7 @@ ContestJudging_FirstPlaceText::
|
|||||||
text "!@@"
|
text "!@@"
|
||||||
|
|
||||||
ContestJudging_FirstPlaceScoreText::
|
ContestJudging_FirstPlaceScoreText::
|
||||||
text ""
|
text_start
|
||||||
|
|
||||||
para "The winning score"
|
para "The winning score"
|
||||||
line "was @"
|
line "was @"
|
||||||
@ -972,7 +972,7 @@ ContestJudging_SecondPlaceText::
|
|||||||
text "!@@"
|
text "!@@"
|
||||||
|
|
||||||
ContestJudging_SecondPlaceScoreText::
|
ContestJudging_SecondPlaceScoreText::
|
||||||
text ""
|
text_start
|
||||||
para "The score was"
|
para "The score was"
|
||||||
line "@"
|
line "@"
|
||||||
deciram wBugContestSecondPlaceScore, 2, 3
|
deciram wBugContestSecondPlaceScore, 2, 3
|
||||||
@ -990,7 +990,7 @@ ContestJudging_ThirdPlaceText::
|
|||||||
text "!@@"
|
text "!@@"
|
||||||
|
|
||||||
ContestJudging_ThirdPlaceScoreText::
|
ContestJudging_ThirdPlaceScoreText::
|
||||||
text ""
|
text_start
|
||||||
para "The score was"
|
para "The score was"
|
||||||
line "@"
|
line "@"
|
||||||
deciram wBugContestThirdPlaceScore, 2, 3
|
deciram wBugContestThirdPlaceScore, 2, 3
|
||||||
@ -1073,7 +1073,7 @@ _KrissPCHowManyWithdrawText::
|
|||||||
_KrissPCWithdrewItemsText::
|
_KrissPCWithdrewItemsText::
|
||||||
text "Withdrew @"
|
text "Withdrew @"
|
||||||
deciram wItemQuantityChangeBuffer, 1, 2
|
deciram wItemQuantityChangeBuffer, 1, 2
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text "(S)."
|
text "(S)."
|
||||||
@ -1096,7 +1096,7 @@ _KrissPCHowManyDepositText::
|
|||||||
_KrissPCDepositItemsText::
|
_KrissPCDepositItemsText::
|
||||||
text "Deposited @"
|
text "Deposited @"
|
||||||
deciram wItemQuantityChangeBuffer, 1, 2
|
deciram wItemQuantityChangeBuffer, 1, 2
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text "(S)."
|
text "(S)."
|
||||||
@ -1349,7 +1349,7 @@ UnknownText_0x1c1a90::
|
|||||||
UnknownText_0x1c1aad::
|
UnknownText_0x1c1aad::
|
||||||
text "Throw away @"
|
text "Throw away @"
|
||||||
deciram wItemQuantityChangeBuffer, 1, 2
|
deciram wItemQuantityChangeBuffer, 1, 2
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text "(S)?"
|
text "(S)?"
|
||||||
@ -1390,7 +1390,7 @@ UnknownText_0x1c1b2c::
|
|||||||
UnknownText_0x1c1b57::
|
UnknownText_0x1c1b57::
|
||||||
text "Made @"
|
text "Made @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text ""
|
text_start
|
||||||
line "hold @"
|
line "hold @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text "."
|
text "."
|
||||||
@ -1415,7 +1415,7 @@ UnknownText_0x1c1baa::
|
|||||||
UnknownText_0x1c1bc4::
|
UnknownText_0x1c1bc4::
|
||||||
text "Took @"
|
text "Took @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "from @"
|
line "from @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text "."
|
text "."
|
||||||
|
@ -73,7 +73,7 @@ UnknownText_0x1c41e6::
|
|||||||
UnknownText_0x1c4212::
|
UnknownText_0x1c4212::
|
||||||
text "Trade @"
|
text "Trade @"
|
||||||
text_from_ram wd004
|
text_from_ram wd004
|
||||||
text ""
|
text_start
|
||||||
line "for @"
|
line "for @"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text "?"
|
text "?"
|
||||||
@ -134,7 +134,7 @@ UnknownText_0x1c439c::
|
|||||||
UnknownText_0x1c43dc::
|
UnknownText_0x1c43dc::
|
||||||
text "There are only @"
|
text "There are only @"
|
||||||
deciram StringBuffer2, 1, 2
|
deciram StringBuffer2, 1, 2
|
||||||
text ""
|
text_start
|
||||||
line "min. left today."
|
line "min. left today."
|
||||||
|
|
||||||
para "Want a quick"
|
para "Want a quick"
|
||||||
@ -274,7 +274,7 @@ UnknownText_0x1c472c::
|
|||||||
UnknownText_0x1c474b::
|
UnknownText_0x1c474b::
|
||||||
text "The @"
|
text "The @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "is full…"
|
line "is full…"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
@ -320,18 +320,18 @@ UnknownText_0x1c47fa::
|
|||||||
UnknownText_0x1c4837::
|
UnknownText_0x1c4837::
|
||||||
text "Hm… @"
|
text "Hm… @"
|
||||||
text_from_ram wSeerNickname
|
text_from_ram wSeerNickname
|
||||||
text ""
|
text_start
|
||||||
line "came from @"
|
line "came from @"
|
||||||
text_from_ram wSeerOTName
|
text_from_ram wSeerOTName
|
||||||
text ""
|
text_start
|
||||||
cont "in a trade?"
|
cont "in a trade?"
|
||||||
|
|
||||||
para "@"
|
para "@"
|
||||||
text_from_ram wSeerCaughtLocation
|
text_from_ram wSeerCaughtLocation
|
||||||
text ""
|
text_start
|
||||||
line "was where @"
|
line "was where @"
|
||||||
text_from_ram wSeerOTName
|
text_from_ram wSeerOTName
|
||||||
text ""
|
text_start
|
||||||
cont "met @"
|
cont "met @"
|
||||||
text_from_ram wSeerNickname
|
text_from_ram wSeerNickname
|
||||||
text "!"
|
text "!"
|
||||||
@ -410,7 +410,7 @@ UnknownText_0x1c4a5b::
|
|||||||
|
|
||||||
para "This @"
|
para "This @"
|
||||||
text_from_ram wSeerNickname
|
text_from_ram wSeerNickname
|
||||||
text ""
|
text_start
|
||||||
line "must have come"
|
line "must have come"
|
||||||
|
|
||||||
para "through numerous"
|
para "through numerous"
|
||||||
@ -438,7 +438,7 @@ UnknownText_0x1c4ae5::
|
|||||||
para "I'm sure that"
|
para "I'm sure that"
|
||||||
line "seeing @"
|
line "seeing @"
|
||||||
text_from_ram wSeerNickname
|
text_from_ram wSeerNickname
|
||||||
text ""
|
text_start
|
||||||
para "in battle would"
|
para "in battle would"
|
||||||
line "excite anyone."
|
line "excite anyone."
|
||||||
done
|
done
|
||||||
@ -450,7 +450,7 @@ UnknownText_0x1c4b92::
|
|||||||
db "@@"
|
db "@@"
|
||||||
|
|
||||||
UnknownText_0x1c4baf::
|
UnknownText_0x1c4baf::
|
||||||
text ""
|
text_start
|
||||||
para "evolved into"
|
para "evolved into"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
@ -460,14 +460,14 @@ UnknownText_0x1c4baf::
|
|||||||
UnknownText_0x1c4bc5::
|
UnknownText_0x1c4bc5::
|
||||||
text "Huh? @"
|
text "Huh? @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text ""
|
text_start
|
||||||
line "stopped evolving!"
|
line "stopped evolving!"
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
UnknownText_0x1c4be3::
|
UnknownText_0x1c4be3::
|
||||||
text "What? @"
|
text "What? @"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
text ""
|
text_start
|
||||||
line "is evolving!"
|
line "is evolving!"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -937,7 +937,7 @@ UnknownText_0x1c5699::
|
|||||||
|
|
||||||
UnknownText_0x1c56af::
|
UnknownText_0x1c56af::
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text ""
|
text_start
|
||||||
line "did not learn"
|
line "did not learn"
|
||||||
cont "@"
|
cont "@"
|
||||||
text_from_ram StringBuffer2
|
text_from_ram StringBuffer2
|
||||||
@ -954,7 +954,7 @@ UnknownText_0x1c56c9::
|
|||||||
|
|
||||||
para "But @"
|
para "But @"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text ""
|
text_start
|
||||||
line "can't learn more"
|
line "can't learn more"
|
||||||
cont "than four moves."
|
cont "than four moves."
|
||||||
|
|
||||||
@ -973,7 +973,7 @@ UnknownText_0x1c5740::
|
|||||||
UnknownText_0x1c574e::
|
UnknownText_0x1c574e::
|
||||||
text " Poof!@"
|
text " Poof!@"
|
||||||
interpret_data
|
interpret_data
|
||||||
text ""
|
text_start
|
||||||
para "@"
|
para "@"
|
||||||
text_from_ram wMonOrItemNameBuffer
|
text_from_ram wMonOrItemNameBuffer
|
||||||
text " forgot"
|
text " forgot"
|
||||||
@ -1179,7 +1179,7 @@ UnknownText_0x1c5afa::
|
|||||||
UnknownText_0x1c5b17::
|
UnknownText_0x1c5b17::
|
||||||
text "Gotcha! @"
|
text "Gotcha! @"
|
||||||
text_from_ram EnemyMonNick
|
text_from_ram EnemyMonNick
|
||||||
text ""
|
text_start
|
||||||
line "was caught!@"
|
line "was caught!@"
|
||||||
sound_caught_mon
|
sound_caught_mon
|
||||||
db "@@"
|
db "@@"
|
||||||
@ -1291,7 +1291,7 @@ UnknownText_0x1c5d03::
|
|||||||
text "There was a trophy"
|
text "There was a trophy"
|
||||||
line "inside!@"
|
line "inside!@"
|
||||||
sound_dex_fanfare_50_79
|
sound_dex_fanfare_50_79
|
||||||
text ""
|
text_start
|
||||||
para "@"
|
para "@"
|
||||||
text_from_ram PlayerName
|
text_from_ram PlayerName
|
||||||
text " sent the"
|
text " sent the"
|
||||||
|
@ -45,7 +45,7 @@ BillPhoneNotFullText: ; 0x1b452a
|
|||||||
para "<PLAY_G>, your BOX"
|
para "<PLAY_G>, your BOX"
|
||||||
line "has room for @"
|
line "has room for @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
cont "more #MON."
|
cont "more #MON."
|
||||||
|
|
||||||
para "Get out there and"
|
para "Get out there and"
|
||||||
|
@ -491,7 +491,7 @@ UnknownText_0x64e2f: ; 0x64e2f
|
|||||||
|
|
||||||
para "to @"
|
para "to @"
|
||||||
text_from_ram StringBuffer5
|
text_from_ram StringBuffer5
|
||||||
text ""
|
text_start
|
||||||
line "and pick it up?"
|
line "and pick it up?"
|
||||||
done
|
done
|
||||||
; 0x64e90
|
; 0x64e90
|
||||||
@ -561,7 +561,7 @@ UnknownText_0x6501c: ; 0x6501c
|
|||||||
text "You know what?"
|
text "You know what?"
|
||||||
line "A wild @"
|
line "A wild @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "got away from me"
|
para "got away from me"
|
||||||
line "again."
|
line "again."
|
||||||
|
|
||||||
@ -918,7 +918,7 @@ DerekCheekPincherText: ; 0x65ab2
|
|||||||
text "Listen to this."
|
text "Listen to this."
|
||||||
line "My @"
|
line "My @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "grins happily when"
|
para "grins happily when"
|
||||||
line "I pinch its cheek."
|
line "I pinch its cheek."
|
||||||
|
|
||||||
@ -1497,7 +1497,7 @@ UnknownText_0x669ed: ; 0x669ed
|
|||||||
text "But get this, a"
|
text "But get this, a"
|
||||||
line "wild @"
|
line "wild @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "just barely eluded"
|
para "just barely eluded"
|
||||||
line "us."
|
line "us."
|
||||||
|
|
||||||
@ -1808,7 +1808,7 @@ UnknownText_0x6717a: ; 0x6717a
|
|||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text "'s @"
|
text "'s @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "is much stronger"
|
line "is much stronger"
|
||||||
cont "than before!"
|
cont "than before!"
|
||||||
done
|
done
|
||||||
@ -1831,7 +1831,7 @@ UnknownText_0x671eb: ; 0x671eb
|
|||||||
|
|
||||||
para "A wild @"
|
para "A wild @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "got away from me"
|
line "got away from me"
|
||||||
|
|
||||||
para "again. It's just"
|
para "again. It's just"
|
||||||
|
@ -316,7 +316,7 @@ UnknownText_0x174895: ; 0x174895
|
|||||||
|
|
||||||
para "in @"
|
para "in @"
|
||||||
text_from_ram StringBuffer5
|
text_from_ram StringBuffer5
|
||||||
text ""
|
text_start
|
||||||
line "when you can."
|
line "when you can."
|
||||||
done
|
done
|
||||||
; 0x1748ea
|
; 0x1748ea
|
||||||
@ -372,7 +372,7 @@ UnknownText_0x1749c7: ; 0x1749c7
|
|||||||
GavenGreaterText: ; 0x174a24
|
GavenGreaterText: ; 0x174a24
|
||||||
text "My @"
|
text "My @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "might be greater"
|
line "might be greater"
|
||||||
cont "than I imagined."
|
cont "than I imagined."
|
||||||
|
|
||||||
@ -485,7 +485,7 @@ UnknownText_0x174cf6: ; 0x174cf6
|
|||||||
text "Oh, have you ever"
|
text "Oh, have you ever"
|
||||||
line "seen a @"
|
line "seen a @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
cont "before?"
|
cont "before?"
|
||||||
|
|
||||||
para "I just battled"
|
para "I just battled"
|
||||||
@ -823,7 +823,7 @@ UnknownText_0x175591: ; 0x175591
|
|||||||
text "Oh yeah, I took"
|
text "Oh yeah, I took"
|
||||||
line "down a @"
|
line "down a @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "in the wild the"
|
para "in the wild the"
|
||||||
line "other day."
|
line "other day."
|
||||||
|
|
||||||
@ -927,7 +927,7 @@ UnknownText_0x175869: ; 0x175869
|
|||||||
text "Oh yeah, we KO'd a"
|
text "Oh yeah, we KO'd a"
|
||||||
line "wild @"
|
line "wild @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "with one hit a"
|
para "with one hit a"
|
||||||
line "while back."
|
line "while back."
|
||||||
|
|
||||||
@ -1549,7 +1549,7 @@ UnknownText_0x176aef: ; 0x176aef
|
|||||||
|
|
||||||
para "wild @"
|
para "wild @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "quite often."
|
line "quite often."
|
||||||
|
|
||||||
para "They're easily"
|
para "They're easily"
|
||||||
@ -1605,20 +1605,20 @@ UnknownText_0x176c61: ; 0x176c61
|
|||||||
para "I took a hike in"
|
para "I took a hike in"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer5
|
text_from_ram StringBuffer5
|
||||||
text ""
|
text_start
|
||||||
cont "yesterday, see?"
|
cont "yesterday, see?"
|
||||||
|
|
||||||
para "Well, there were"
|
para "Well, there were"
|
||||||
line "tons of @"
|
line "tons of @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "around! You have"
|
para "around! You have"
|
||||||
line "to see it!"
|
line "to see it!"
|
||||||
|
|
||||||
para "I get this feeling"
|
para "I get this feeling"
|
||||||
line "that @"
|
line "that @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "may be timid."
|
para "may be timid."
|
||||||
line "I didn't see any"
|
line "I didn't see any"
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
JoseAskNumber1Text:
|
JoseAskNumber1Text:
|
||||||
text "If my @"
|
text "If my @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "sees anything"
|
line "sees anything"
|
||||||
|
|
||||||
para "pretty, it goes"
|
para "pretty, it goes"
|
||||||
|
@ -14,7 +14,7 @@ MomPhoneLandmarkText: ; 0x1b4021
|
|||||||
para "Isn't that where"
|
para "Isn't that where"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "is? Did you go"
|
para "is? Did you go"
|
||||||
line "take a look?"
|
line "take a look?"
|
||||||
done
|
done
|
||||||
|
@ -739,7 +739,7 @@ UnknownText_0x1b5d51: ; 0x1b5d51
|
|||||||
UnknownText_0x1b5d9f: ; 0x1b5d9f
|
UnknownText_0x1b5d9f: ; 0x1b5d9f
|
||||||
text "Hello, @"
|
text "Hello, @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "speaking."
|
line "speaking."
|
||||||
|
|
||||||
para "Oh, <PLAY_G>."
|
para "Oh, <PLAY_G>."
|
||||||
@ -749,7 +749,7 @@ UnknownText_0x1b5d9f: ; 0x1b5d9f
|
|||||||
UnknownText_0x1b5dcc: ; 0x1b5dcc
|
UnknownText_0x1b5dcc: ; 0x1b5dcc
|
||||||
text "Hello, @"
|
text "Hello, @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "speaking."
|
line "speaking."
|
||||||
|
|
||||||
para "Oh, <PLAY_G>."
|
para "Oh, <PLAY_G>."
|
||||||
@ -759,7 +759,7 @@ UnknownText_0x1b5dcc: ; 0x1b5dcc
|
|||||||
UnknownText_0x1b5df8: ; 0x1b5df8
|
UnknownText_0x1b5df8: ; 0x1b5df8
|
||||||
text "Hello, @"
|
text "Hello, @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "speaking."
|
line "speaking."
|
||||||
|
|
||||||
para "Oh, <PLAY_G>."
|
para "Oh, <PLAY_G>."
|
||||||
@ -852,7 +852,7 @@ UnknownText_0x1b5ff6: ; 0x1b5ff6
|
|||||||
|
|
||||||
para "This is @"
|
para "This is @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "the HIKER!"
|
line "the HIKER!"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -862,7 +862,7 @@ UnknownText_0x1b6017: ; 0x1b6017
|
|||||||
|
|
||||||
para "This is @"
|
para "This is @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "the HIKER!"
|
line "the HIKER!"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -872,7 +872,7 @@ UnknownText_0x1b6041: ; 0x1b6041
|
|||||||
|
|
||||||
para "This is @"
|
para "This is @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "the HIKER!"
|
line "the HIKER!"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -1033,7 +1033,7 @@ UnknownText_0x1b6352: ; 0x1b6352
|
|||||||
UnknownText_0x1b638c: ; 0x1b638c
|
UnknownText_0x1b638c: ; 0x1b638c
|
||||||
text "Hello? @"
|
text "Hello? @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "here…"
|
line "here…"
|
||||||
|
|
||||||
para "Hey, <PLAY_G>!"
|
para "Hey, <PLAY_G>!"
|
||||||
@ -1042,7 +1042,7 @@ UnknownText_0x1b638c: ; 0x1b638c
|
|||||||
UnknownText_0x1b63a8: ; 0x1b63a8
|
UnknownText_0x1b63a8: ; 0x1b63a8
|
||||||
text "Hello? @"
|
text "Hello? @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "here…"
|
line "here…"
|
||||||
|
|
||||||
para "Wow, <PLAY_G>!"
|
para "Wow, <PLAY_G>!"
|
||||||
@ -1051,7 +1051,7 @@ UnknownText_0x1b63a8: ; 0x1b63a8
|
|||||||
UnknownText_0x1b63c4: ; 0x1b63c4
|
UnknownText_0x1b63c4: ; 0x1b63c4
|
||||||
text "Hello? @"
|
text "Hello? @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "here…"
|
line "here…"
|
||||||
|
|
||||||
para "Yippee, <PLAY_G>!"
|
para "Yippee, <PLAY_G>!"
|
||||||
@ -1563,7 +1563,7 @@ UnknownText_0x1b6db9: ; 0x1b6db9
|
|||||||
|
|
||||||
para "Heh, my @"
|
para "Heh, my @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "is so tough, it"
|
line "is so tough, it"
|
||||||
|
|
||||||
para "doesn't need to go"
|
para "doesn't need to go"
|
||||||
@ -1722,7 +1722,7 @@ UnknownText_0x1b7161: ; 0x1b7161
|
|||||||
|
|
||||||
para "My @"
|
para "My @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
line "looks like it will"
|
line "looks like it will"
|
||||||
|
|
||||||
para "get tough enough"
|
para "get tough enough"
|
||||||
|
@ -232,7 +232,7 @@ ContestResults_ReadyToJudgeText:
|
|||||||
ContestResults_PlayerWonAPrizeText:
|
ContestResults_PlayerWonAPrizeText:
|
||||||
text "<PLAYER>, the No.@"
|
text "<PLAYER>, the No.@"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "finisher, wins"
|
line "finisher, wins"
|
||||||
cont "@"
|
cont "@"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
@ -280,14 +280,14 @@ ContestResults_PartyFullText:
|
|||||||
|
|
||||||
GymStatue_CityGymText:
|
GymStatue_CityGymText:
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "#MON GYM"
|
line "#MON GYM"
|
||||||
done
|
done
|
||||||
|
|
||||||
GymStatue_WinningTrainersText:
|
GymStatue_WinningTrainersText:
|
||||||
text "LEADER: @"
|
text "LEADER: @"
|
||||||
text_from_ram StringBuffer4
|
text_from_ram StringBuffer4
|
||||||
text ""
|
text_start
|
||||||
para "WINNING TRAINERS:"
|
para "WINNING TRAINERS:"
|
||||||
line "<PLAYER>"
|
line "<PLAYER>"
|
||||||
done
|
done
|
||||||
|
@ -567,7 +567,7 @@ This is a bug with `Text_ABoostedStringBuffer2ExpPoints` and `Text_StringBuffer2
|
|||||||
|
|
||||||
```asm
|
```asm
|
||||||
Text_ABoostedStringBuffer2ExpPoints::
|
Text_ABoostedStringBuffer2ExpPoints::
|
||||||
text ""
|
text_start
|
||||||
line "a boosted"
|
line "a boosted"
|
||||||
cont "@"
|
cont "@"
|
||||||
deciram StringBuffer2, 2, 4
|
deciram StringBuffer2, 2, 4
|
||||||
@ -575,7 +575,7 @@ Text_ABoostedStringBuffer2ExpPoints::
|
|||||||
prompt
|
prompt
|
||||||
|
|
||||||
Text_StringBuffer2ExpPoints::
|
Text_StringBuffer2ExpPoints::
|
||||||
text ""
|
text_start
|
||||||
line "@"
|
line "@"
|
||||||
deciram StringBuffer2, 2, 4
|
deciram StringBuffer2, 2, 4
|
||||||
text " EXP. Points!"
|
text " EXP. Points!"
|
||||||
|
@ -101,9 +101,9 @@ Exit.
|
|||||||
Play `SFX_DEX_FANFARE_50_79`.
|
Play `SFX_DEX_FANFARE_50_79`.
|
||||||
|
|
||||||
|
|
||||||
## `$0C`: <code>limited_interpret_data <i>number</i></code>
|
## `$0C`: <code>limited_interpret_data <i>n</i></code>
|
||||||
|
|
||||||
Print *number* `"…"`s.
|
Print *n* `"…"`s.
|
||||||
|
|
||||||
|
|
||||||
## `$0D`: `link_wait_button`
|
## `$0D`: `link_wait_button`
|
||||||
@ -143,7 +143,7 @@ Play `SFX_SLOT_MACHINE_START`.
|
|||||||
|
|
||||||
## `$14`: <code>text_buffer <i>id</i></code>
|
## `$14`: <code>text_buffer <i>id</i></code>
|
||||||
|
|
||||||
Write text from one of the following addresses (listed in `StringBufferPointers`):
|
Write text from one of the following addresses (listed in [data/text_buffers.asm](/data/text_buffers.asm)):
|
||||||
|
|
||||||
0. `StringBuffer3`
|
0. `StringBuffer3`
|
||||||
1. `StringBuffer4`
|
1. `StringBuffer4`
|
||||||
@ -162,3 +162,8 @@ Print the weekday.
|
|||||||
## `$16`: <code>text_jump <i>address</i></code>
|
## `$16`: <code>text_jump <i>address</i></code>
|
||||||
|
|
||||||
Write text from a different bank.
|
Write text from a different bank.
|
||||||
|
|
||||||
|
|
||||||
|
## `$00`: `text_start`
|
||||||
|
|
||||||
|
Start writing regular text again after a special command.
|
||||||
|
@ -2474,8 +2474,10 @@ Function56cd: ; 56cd
|
|||||||
push bc
|
push bc
|
||||||
call Coord2Tile
|
call Coord2Tile
|
||||||
pop bc
|
pop bc
|
||||||
|
; NPCs disappear if standing on tile $60-$7f (or $e0-$ff),
|
||||||
|
; since those IDs are for text characters and textbox frames.
|
||||||
ld a, [hl]
|
ld a, [hl]
|
||||||
cp MAPOBJECT_VISIBLE_TILE_LIMIT
|
cp FIRST_REGULAR_TEXT_CHAR
|
||||||
jr nc, .nope
|
jr nc, .nope
|
||||||
.ok8
|
.ok8
|
||||||
dec d
|
dec d
|
||||||
|
@ -134,7 +134,7 @@ PrintRadioLine:
|
|||||||
cp 2
|
cp 2
|
||||||
jr nc, .print
|
jr nc, .print
|
||||||
inc hl
|
inc hl
|
||||||
ld [hl], "<START>"
|
ld [hl], TX_START
|
||||||
inc a
|
inc a
|
||||||
ld [wNumRadioLinesPrinted], a
|
ld [wNumRadioLinesPrinted], a
|
||||||
cp 2
|
cp 2
|
||||||
@ -813,7 +813,7 @@ CopyDexEntryPart1:
|
|||||||
ld bc, SCREEN_WIDTH - 1
|
ld bc, SCREEN_WIDTH - 1
|
||||||
call FarCopyBytes
|
call FarCopyBytes
|
||||||
ld hl, wPokedexShowPointerAddr
|
ld hl, wPokedexShowPointerAddr
|
||||||
ld [hl], "<START>"
|
ld [hl], TX_START
|
||||||
inc hl
|
inc hl
|
||||||
ld [hl], "<LINE>"
|
ld [hl], "<LINE>"
|
||||||
inc hl
|
inc hl
|
||||||
|
@ -64,10 +64,10 @@ CheckNickErrors:: ; 669f
|
|||||||
; table defining which characters are actually text commands
|
; table defining which characters are actually text commands
|
||||||
; format:
|
; format:
|
||||||
; ≥ <
|
; ≥ <
|
||||||
db "<START>", TX_BOX + 1
|
db TX_START, TX_BOX + 1
|
||||||
db "<PLAY_G>", $18 + 1
|
db "<PLAY_G>", $18 + 1
|
||||||
db $1d, "%" + 1
|
db "<NI>", "%" + 1
|
||||||
db $35, "<GREEN>" + 1
|
db "<ROUTE>", "<GREEN>" + 1
|
||||||
db "<ENEMY>", "<ENEMY>" + 1
|
db "<ENEMY>", "<ENEMY>" + 1
|
||||||
db "<MOM>", "<TM>" + 1
|
db "<MOM>", "<TM>" + 1
|
||||||
db "<ROCKET>", "┘" + 1
|
db "<ROCKET>", "┘" + 1
|
||||||
|
@ -214,20 +214,20 @@ dict2: MACRO
|
|||||||
._\@:
|
._\@:
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
dict "<DAY>", Char15
|
dict TX_DAY, DayOfWeekChar
|
||||||
dict "<LINE>", LineChar
|
dict "<LINE>", LineChar
|
||||||
dict "<NEXT>", NextLineChar
|
dict "<NEXT>", NextLineChar
|
||||||
dict TX_FAR, TextFar
|
dict TX_FAR, TextFar
|
||||||
dict $00, NullChar
|
dict TX_START, NullChar
|
||||||
dict $4c, Char4C
|
dict "<CONT3>", _ContTextNoPause
|
||||||
dict $4b, Char4B
|
dict "<CONT2>", _ContText
|
||||||
dict "<PARA>", Paragraph
|
dict "<PARA>", Paragraph
|
||||||
dict "<MOM>", PrintMomsName
|
dict "<MOM>", PrintMomsName
|
||||||
dict "<PLAYER>", PrintPlayerName
|
dict "<PLAYER>", PrintPlayerName
|
||||||
dict "<RIVAL>", PrintRivalName
|
dict "<RIVAL>", PrintRivalName
|
||||||
dict $35, Char35
|
dict "<ROUTE>", PlaceJPRoute
|
||||||
dict $36, Char36
|
dict "<WATASHI>", PlaceWatashi
|
||||||
dict $37, Char37
|
dict "<KOKO_WA>", PlaceKokoWa
|
||||||
dict "<RED>", PrintRedsName
|
dict "<RED>", PrintRedsName
|
||||||
dict "<GREEN>", PrintGreensName
|
dict "<GREEN>", PrintGreensName
|
||||||
dict "#", PlacePOKe
|
dict "#", PlacePOKe
|
||||||
@ -236,7 +236,7 @@ ENDM
|
|||||||
dict "<TM>", TMChar
|
dict "<TM>", TMChar
|
||||||
dict "<TRNER>", TrainerChar
|
dict "<TRNER>", TrainerChar
|
||||||
dict "<KOUGEKI>", PlaceKougeki
|
dict "<KOUGEKI>", PlaceKougeki
|
||||||
dict "<LNBRK>", Char22
|
dict "<LNBRK>", LineBreakChar
|
||||||
dict "<CONT>", ContText
|
dict "<CONT>", ContText
|
||||||
dict "<......>", SixDotsChar
|
dict "<......>", SixDotsChar
|
||||||
dict "<DONE>", DoneText
|
dict "<DONE>", DoneText
|
||||||
@ -263,32 +263,32 @@ ENDM
|
|||||||
jp NextChar
|
jp NextChar
|
||||||
|
|
||||||
.not_diacritic
|
.not_diacritic
|
||||||
cp $60 ; Regular characters
|
cp FIRST_REGULAR_TEXT_CHAR
|
||||||
jr nc, .place
|
jr nc, .place
|
||||||
|
|
||||||
cp "パ"
|
cp "パ"
|
||||||
jr nc, .handakuten
|
jr nc, .handakuten
|
||||||
|
|
||||||
.dakuten
|
.dakuten
|
||||||
cp $20
|
cp FIRST_HIRAGANA_DAKUTEN_CHAR
|
||||||
jr nc, .daku1
|
jr nc, .hiragana_dakuten
|
||||||
add "カ" - "ガ"
|
add "カ" - "ガ"
|
||||||
jr .daku2
|
jr .katakana_dakuten
|
||||||
.daku1
|
.hiragana_dakuten
|
||||||
add "か" - "が"
|
add "か" - "が"
|
||||||
.daku2
|
.katakana_dakuten
|
||||||
ld b, "゙" ; dakuten
|
ld b, "゙" ; dakuten
|
||||||
call Diacritic
|
call Diacritic
|
||||||
jr .place
|
jr .place
|
||||||
|
|
||||||
.handakuten
|
.handakuten
|
||||||
cp "ぱ"
|
cp "ぱ"
|
||||||
jr nc, .han1
|
jr nc, .hiragana_handakuten
|
||||||
add "ハ" - "パ"
|
add "ハ" - "パ"
|
||||||
jr .han2
|
jr .katakana_handakuten
|
||||||
.han1
|
.hiragana_handakuten
|
||||||
add "は" - "ぱ"
|
add "は" - "ぱ"
|
||||||
.han2
|
.katakana_handakuten
|
||||||
ld b, "゚" ; handakuten
|
ld b, "゚" ; handakuten
|
||||||
call Diacritic
|
call Diacritic
|
||||||
|
|
||||||
@ -299,7 +299,7 @@ ENDM
|
|||||||
; 0x117b
|
; 0x117b
|
||||||
|
|
||||||
|
|
||||||
Char15:: ; 117b
|
DayOfWeekChar:: ; 117b
|
||||||
ld c, l
|
ld c, l
|
||||||
ld b, h
|
ld b, h
|
||||||
farcall Function17f036
|
farcall Function17f036
|
||||||
@ -328,9 +328,9 @@ PlaceKougeki: print_name KougekiText ; 11cc
|
|||||||
SixDotsChar: print_name SixDotsCharText ; 11d3
|
SixDotsChar: print_name SixDotsCharText ; 11d3
|
||||||
PlacePKMN: print_name PlacePKMNText ; 11da
|
PlacePKMN: print_name PlacePKMNText ; 11da
|
||||||
PlacePOKE: print_name PlacePOKEText ; 11e1
|
PlacePOKE: print_name PlacePOKEText ; 11e1
|
||||||
Char35: print_name Char35Text ; 11e8
|
PlaceJPRoute: print_name PlaceJPRouteText ; 11e8
|
||||||
Char36: print_name Char36Text ; 11ef
|
PlaceWatashi: print_name PlaceWatashiText ; 11ef
|
||||||
Char37: print_name Char37Text ; 11f6
|
PlaceKokoWa: print_name PlaceKokoWaText ; 11f6
|
||||||
|
|
||||||
|
|
||||||
PlaceMoveTargetsName:: ; 11fd
|
PlaceMoveTargetsName:: ; 11fd
|
||||||
@ -350,7 +350,7 @@ PlaceMoveTargetsName_5A: ; 1205
|
|||||||
jr PlaceCommandCharacter
|
jr PlaceCommandCharacter
|
||||||
|
|
||||||
.enemy
|
.enemy
|
||||||
ld de, EnemyText ; Enemy
|
ld de, EnemyText
|
||||||
call PlaceString
|
call PlaceString
|
||||||
ld h, b
|
ld h, b
|
||||||
ld l, c
|
ld l, c
|
||||||
@ -375,7 +375,7 @@ PlaceEnemysName:: ; 121b
|
|||||||
call PlaceString
|
call PlaceString
|
||||||
ld h, b
|
ld h, b
|
||||||
ld l, c
|
ld l, c
|
||||||
ld de, String12a2
|
ld de, String_Space
|
||||||
call PlaceString
|
call PlaceString
|
||||||
push bc
|
push bc
|
||||||
callfar Battle_GetTrainerName
|
callfar Battle_GetTrainerName
|
||||||
@ -400,9 +400,9 @@ PlaceGenderedPlayerName:: ; 1252
|
|||||||
ld l, c
|
ld l, c
|
||||||
ld a, [wPlayerGender]
|
ld a, [wPlayerGender]
|
||||||
bit 0, a
|
bit 0, a
|
||||||
ld de, String_kun
|
ld de, KunSuffixText
|
||||||
jr z, PlaceCommandCharacter
|
jr z, PlaceCommandCharacter
|
||||||
ld de, String_chan
|
ld de, ChanSuffixText
|
||||||
jr PlaceCommandCharacter
|
jr PlaceCommandCharacter
|
||||||
|
|
||||||
|
|
||||||
@ -414,22 +414,23 @@ PlaceCommandCharacter:: ; 126a
|
|||||||
jp NextChar
|
jp NextChar
|
||||||
; 0x1273
|
; 0x1273
|
||||||
|
|
||||||
TMCharText:: db "TM@" ; 1273
|
TMCharText:: db "TM@"
|
||||||
TrainerCharText:: db "TRAINER@" ; 1276
|
TrainerCharText:: db "TRAINER@"
|
||||||
PCCharText:: db "PC@" ; 127e
|
PCCharText:: db "PC@"
|
||||||
RocketCharText:: db "ROCKET@" ; 1281
|
RocketCharText:: db "ROCKET@"
|
||||||
PlacePOKeText:: db "POKé@" ; 1288
|
PlacePOKeText:: db "POKé@"
|
||||||
KougekiText:: db "こうげき@" ; 128d
|
KougekiText:: db "こうげき@"
|
||||||
SixDotsCharText:: db "……@" ; 1292
|
SixDotsCharText:: db "……@"
|
||||||
EnemyText:: db "Enemy @" ; 1295
|
EnemyText:: db "Enemy @"
|
||||||
PlacePKMNText:: db "<PK><MN>@" ; PK MN ; 129c
|
PlacePKMNText:: db "<PK><MN>@"
|
||||||
PlacePOKEText:: db "<PO><KE>@" ; PO KE ; 129f
|
PlacePOKEText:: db "<PO><KE>@"
|
||||||
String12a2:: db " @" ; 12a2
|
String_Space:: db " @"
|
||||||
Char35Text::
|
; These strings have been dummied out.
|
||||||
Char36Text::
|
PlaceJPRouteText::
|
||||||
Char37Text:: db "@" ; 12a4
|
PlaceWatashiText::
|
||||||
String_kun:: db "@" ; 12a5
|
PlaceKokoWaText:: db "@"
|
||||||
String_chan:: db "@" ; 12a6
|
KunSuffixText:: db "@"
|
||||||
|
ChanSuffixText:: db "@"
|
||||||
; 12a7
|
; 12a7
|
||||||
|
|
||||||
NextLineChar:: ; 12a7
|
NextLineChar:: ; 12a7
|
||||||
@ -440,7 +441,7 @@ NextLineChar:: ; 12a7
|
|||||||
jp NextChar
|
jp NextChar
|
||||||
; 12b0
|
; 12b0
|
||||||
|
|
||||||
Char22:: ; 12b0
|
LineBreakChar:: ; 12b0
|
||||||
pop hl
|
pop hl
|
||||||
ld bc, SCREEN_WIDTH
|
ld bc, SCREEN_WIDTH
|
||||||
add hl, bc
|
add hl, bc
|
||||||
@ -523,7 +524,7 @@ Paragraph:: ; 12f2
|
|||||||
; 131f
|
; 131f
|
||||||
|
|
||||||
|
|
||||||
Char4B:: ; 131f
|
_ContText:: ; 131f
|
||||||
ld a, [wLinkMode]
|
ld a, [wLinkMode]
|
||||||
or a
|
or a
|
||||||
jr nz, .communication
|
jr nz, .communication
|
||||||
@ -539,8 +540,9 @@ Char4B:: ; 131f
|
|||||||
ld a, [wLinkMode]
|
ld a, [wLinkMode]
|
||||||
or a
|
or a
|
||||||
call z, UnloadBlinkingCursor
|
call z, UnloadBlinkingCursor
|
||||||
|
; fallthrough
|
||||||
|
|
||||||
Char4C:: ; 1337
|
_ContTextNoPause:: ; 1337
|
||||||
push de
|
push de
|
||||||
call TextScroll
|
call TextScroll
|
||||||
call TextScroll
|
call TextScroll
|
||||||
@ -561,7 +563,7 @@ ContText:: ; 1345
|
|||||||
pop de
|
pop de
|
||||||
jp NextChar
|
jp NextChar
|
||||||
|
|
||||||
.cont db $4b, "@"
|
.cont: db "<CONT2>@"
|
||||||
; 1356
|
; 1356
|
||||||
|
|
||||||
|
|
||||||
@ -596,7 +598,8 @@ DoneText:: ; 137c
|
|||||||
ld de, .stop
|
ld de, .stop
|
||||||
dec de
|
dec de
|
||||||
ret
|
ret
|
||||||
.stop db "@"
|
|
||||||
|
.stop: db "@"
|
||||||
; 1383
|
; 1383
|
||||||
|
|
||||||
NullChar:: ; 1383
|
NullChar:: ; 1383
|
||||||
@ -688,7 +691,7 @@ PokeFluteTerminatorCharacter:: ; 13e0
|
|||||||
ld hl, .stop
|
ld hl, .stop
|
||||||
ret
|
ret
|
||||||
|
|
||||||
.stop db "@"
|
.stop: db "@"
|
||||||
; 13e5
|
; 13e5
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
text EQUS "db \"<START>\"," ; Start writing text.
|
text EQUS "db TX_START," ; Start writing text.
|
||||||
next EQUS "db \"<NEXT>\"," ; Move a line down.
|
next EQUS "db \"<NEXT>\"," ; Move a line down.
|
||||||
line EQUS "db \"<LINE>\"," ; Start writing at the bottom line.
|
line EQUS "db \"<LINE>\"," ; Start writing at the bottom line.
|
||||||
page EQUS "db \"@\"," ; Start a new Pokédex page.
|
page EQUS "db \"@\"," ; Start a new Pokédex page.
|
||||||
@ -8,7 +8,12 @@ done EQUS "db \"<DONE>\"" ; End a text box.
|
|||||||
prompt EQUS "db \"<PROMPT>\"" ; Prompt the player to end a text box (initiating some other event).
|
prompt EQUS "db \"<PROMPT>\"" ; Prompt the player to end a text box (initiating some other event).
|
||||||
|
|
||||||
; TextCommands indexes (see home/text.asm)
|
; TextCommands indexes (see home/text.asm)
|
||||||
enum_start $01
|
enum_start
|
||||||
|
|
||||||
|
enum TX_START ; $00
|
||||||
|
text_start: MACRO
|
||||||
|
db TX_START
|
||||||
|
ENDM
|
||||||
|
|
||||||
enum TX_RAM ; $01
|
enum TX_RAM ; $01
|
||||||
text_from_ram: MACRO
|
text_from_ram: MACRO
|
||||||
|
@ -110,7 +110,7 @@ CeladonClangText:
|
|||||||
|
|
||||||
para "@"
|
para "@"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "popped out."
|
line "popped out."
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -548,7 +548,7 @@ UnknownText_0x1991ac:
|
|||||||
done
|
done
|
||||||
|
|
||||||
UnknownText_0x1991cf:
|
UnknownText_0x1991cf:
|
||||||
text ""
|
text_start
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodCity_MapEvents:
|
GoldenrodCity_MapEvents:
|
||||||
|
@ -103,7 +103,7 @@ GoldenrodClangText:
|
|||||||
text "Clang! A can of"
|
text "Clang! A can of"
|
||||||
line "@"
|
line "@"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
cont "popped out!"
|
cont "popped out!"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -915,7 +915,7 @@ Text_PleaseEnter:
|
|||||||
Text_RejectNewMon:
|
Text_RejectNewMon:
|
||||||
text "Sorry--@"
|
text "Sorry--@"
|
||||||
text_from_ram StringBuffer1
|
text_from_ram StringBuffer1
|
||||||
text ""
|
text_start
|
||||||
line "can't be taken."
|
line "can't be taken."
|
||||||
prompt
|
prompt
|
||||||
|
|
||||||
|
@ -374,7 +374,7 @@ UnknownText_0x6a71f:
|
|||||||
UnknownText_0x6a79a:
|
UnknownText_0x6a79a:
|
||||||
text "You still have @"
|
text "You still have @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "minute(s) left."
|
line "minute(s) left."
|
||||||
|
|
||||||
para "Do you want to"
|
para "Do you want to"
|
||||||
|
@ -624,7 +624,7 @@ UnknownText_0x6b209:
|
|||||||
UnknownText_0x6b284:
|
UnknownText_0x6b284:
|
||||||
text "You still have @"
|
text "You still have @"
|
||||||
text_from_ram StringBuffer3
|
text_from_ram StringBuffer3
|
||||||
text ""
|
text_start
|
||||||
line "minute(s) left."
|
line "minute(s) left."
|
||||||
|
|
||||||
para "Do you want to"
|
para "Do you want to"
|
||||||
|
Loading…
Reference in New Issue
Block a user