diff options
author | scnorton <scnorton@biociphers.org> | 2017-08-30 09:43:48 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-08-30 09:43:48 -0400 |
commit | 7755869cd2b521cb0a608f5f71c8a272e81cb214 (patch) | |
tree | 4a580984bc0786e535cb029fea13197a24fb7a5e /src | |
parent | b9cf26cd89505d5340343adeb41312012714fd0a (diff) |
Convert egg moves and daycare strings/pointers to C objects
Diffstat (limited to 'src')
-rw-r--r-- | src/daycare.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/daycare.c b/src/daycare.c index 3fc1ecd99..8096904b0 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -10,6 +10,18 @@ #include "name_string_util.h" #include "pokemon_storage_system.h" #include "rng.h" +#include "moves.h" +#include "strings2.h" +#include "data/pokemon/egg_moves.h" + +const u8 *const gUnknown_08209AC4[] = { + DaycareText_GetAlongVeryWell, + DaycareText_GetAlong, + DaycareText_DontLikeOther, + DaycareText_PlayOther +}; + +const u8 gUnknown_08209AD4[] = _("タマゴ"); extern u8 gLastFieldPokeMenuOpened; |