diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-04-05 22:05:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 22:05:09 -0500 |
commit | d316d1e359c7672277a9cf644acd4e40170f5968 (patch) | |
tree | 82bc44e67d6219e53fac89caff5db22c5a394b1e /src/personality_test.c | |
parent | 22fec43f1812cb863ad699b357bd593222ae140c (diff) |
Preproc all the data (#35)
* actually put C files in preproc and use it for formatted type names. Cleaned up makefile like pokeemerald
* finish adding all colors and text macros to charmap
* preproc all the data and use text macros
* move all of wonder_mail_1 to src
* unify wonder_mail and wonder_mail_mid
* small code cleanup
* name two more exclusive pokemon funcs
* decomp a few more wonder mail funcs
* clean up MemoryFill call
* doc more of wonder mail in main menu
Diffstat (limited to 'src/personality_test.c')
-rw-r--r-- | src/personality_test.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/personality_test.c b/src/personality_test.c index 67f0f9f..974ca03 100644 --- a/src/personality_test.c +++ b/src/personality_test.c @@ -89,10 +89,7 @@ struct stack_PartnerSprite }; extern const char gStarterReveal[]; -extern const char gPartnerPrompt[]; -extern const char gPartnerNickPrompt[]; extern const char gGenderText[]; -extern const char gEndIntroText[]; extern u32 gGenderMenu; extern const char gUnknown_80F42C0; @@ -113,7 +110,24 @@ extern const char gRelaxedDescription[]; extern const char gLonelyDescription[]; extern const char gQuirkyDescription[]; +const char gStarterReveal[] = _("\n{CENTER_ALIGN}The Pokémon $m0!"); +const char * const gStarterRevealPtr = gStarterReveal; +const char gPartnerPrompt[] = _( + "{CENTER_ALIGN}This is the final step.{WAIT_PRESS}\n" + "{CENTER_ALIGN}Who would you like to have as a partner?{EXTRA_MSG}" + "{CENTER_ALIGN}Choose the Pokémon you want\n" + "{CENTER_ALIGN}as your partner from this group."); +const char * const gPartnerPromptPtr = gPartnerPrompt; + +const char gPartnerNickPrompt[] = _("{CENTER_ALIGN}What is your partner~27s nickname?"); +const char * const gPartnerNickPromptPtr = gPartnerNickPrompt; + +ALIGNED(4) const char gEndIntroText[] = _( + "{CENTER_ALIGN}OK! We~27re all set!{EXTRA_MSG}" + "{CENTER_ALIGN}Let~27s get you into the\n" + "{CENTER_ALIGN}world of Pokémon!{EXTRA_MSG}" + "{CENTER_ALIGN}Go for it!"); const char * const gEndIntroTextPtr = gEndIntroText; const char * const gPersonalityTypeDescriptionTable[NUM_PERSONALITIES] = |