diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-11-01 13:36:16 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-11-01 13:36:16 -0400 |
commit | a8c2fecbd5427ad504d5b9be543edf549e792508 (patch) | |
tree | bf3cf22abf677eb657544774b29ce7cf006dd740 /src/data/easy_chat/easy_chat_group_trainer.h | |
parent | 4c53392a3f0ade1cc7b5e262be5ebb5d64320a57 (diff) |
Redump easy chat to C
Diffstat (limited to 'src/data/easy_chat/easy_chat_group_trainer.h')
-rw-r--r-- | src/data/easy_chat/easy_chat_group_trainer.h | 160 |
1 files changed, 160 insertions, 0 deletions
diff --git a/src/data/easy_chat/easy_chat_group_trainer.h b/src/data/easy_chat/easy_chat_group_trainer.h new file mode 100644 index 000000000..ea36d4268 --- /dev/null +++ b/src/data/easy_chat/easy_chat_group_trainer.h @@ -0,0 +1,160 @@ + +const u8 gEasyChatWord_IChooseYou[] = _("I CHOOSE YOU"); +const u8 gEasyChatWord_Gotcha[] = _("GOTCHA"); +const u8 gEasyChatWord_Trade[] = _("TRADE"); +const u8 gEasyChatWord_Sapphire[] = _("SAPPHIRE"); +const u8 gEasyChatWord_Evolve[] = _("EVOLVE"); +const u8 gEasyChatWord_Encyclopedia[] = _("ENCYCLOPEDIA"); +const u8 gEasyChatWord_Nature[] = _("NATURE"); +const u8 gEasyChatWord_Center[] = _("CENTER"); +const u8 gEasyChatWord_Egg[] = _("EGG"); +const u8 gEasyChatWord_Link[] = _("LINK"); +const u8 gEasyChatWord_SpAbility[] = _("SP. ABILITY"); +const u8 gEasyChatWord_Trainer[] = _("TRAINER"); +const u8 gEasyChatWord_Version[] = _("VERSION"); +const u8 gEasyChatWord_Pokenav[] = _("POKéNAV"); +const u8 gEasyChatWord_Pokemon[] = _("POKéMON"); +const u8 gEasyChatWord_Get[] = _("GET"); +const u8 gEasyChatWord_Pokedex[] = _("POKéDEX"); +const u8 gEasyChatWord_Ruby[] = _("RUBY"); +const u8 gEasyChatWord_Level[] = _("LEVEL"); +const u8 gEasyChatWord_Red[] = _("RED"); +const u8 gEasyChatWord_Green[] = _("GREEN"); +const u8 gEasyChatWord_Bag[] = _("BAG"); +const u8 gEasyChatWord_Flame[] = _("FLAME"); +const u8 gEasyChatWord_Gold[] = _("GOLD"); +const u8 gEasyChatWord_Leaf[] = _("LEAF"); +const u8 gEasyChatWord_Silver[] = _("SILVER"); + +const struct EasyChatWordInfo gEasyChatGroup_Trainer[] = { + { + .text = gEasyChatWord_IChooseYou, + .alphabeticalOrder = 21, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Gotcha, + .alphabeticalOrder = 7, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Trade, + .alphabeticalOrder = 8, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Sapphire, + .alphabeticalOrder = 5, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Evolve, + .alphabeticalOrder = 4, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Encyclopedia, + .alphabeticalOrder = 22, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Nature, + .alphabeticalOrder = 15, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Center, + .alphabeticalOrder = 23, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Egg, + .alphabeticalOrder = 1, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Link, + .alphabeticalOrder = 20, + .enabled = TRUE + }, + { + .text = gEasyChatWord_SpAbility, + .alphabeticalOrder = 0, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Trainer, + .alphabeticalOrder = 24, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Version, + .alphabeticalOrder = 18, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Pokenav, + .alphabeticalOrder = 9, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Pokemon, + .alphabeticalOrder = 6, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Get, + .alphabeticalOrder = 16, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Pokedex, + .alphabeticalOrder = 14, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Ruby, + .alphabeticalOrder = 13, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Level, + .alphabeticalOrder = 19, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Red, + .alphabeticalOrder = 17, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Green, + .alphabeticalOrder = 3, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Bag, + .alphabeticalOrder = 25, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Flame, + .alphabeticalOrder = 10, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Gold, + .alphabeticalOrder = 2, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Leaf, + .alphabeticalOrder = 11, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Silver, + .alphabeticalOrder = 12, + .enabled = TRUE + } +}; |