summaryrefslogtreecommitdiff
path: root/src/data/easy_chat/easy_chat_group_trainer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/easy_chat/easy_chat_group_trainer.h')
-rwxr-xr-xsrc/data/easy_chat/easy_chat_group_trainer.h165
1 files changed, 165 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 100755
index 000000000..a4e1ddfd6
--- /dev/null
+++ b/src/data/easy_chat/easy_chat_group_trainer.h
@@ -0,0 +1,165 @@
+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 u8 gEasyChatWord_Emerald[] = _("EMERALD");
+
+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 = 26,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Evolve,
+ .alphabeticalOrder = 5,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Encyclopedia,
+ .alphabeticalOrder = 4,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Nature,
+ .alphabeticalOrder = 22,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Center,
+ .alphabeticalOrder = 15,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Egg,
+ .alphabeticalOrder = 23,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Link,
+ .alphabeticalOrder = 1,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_SpAbility,
+ .alphabeticalOrder = 20,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Trainer,
+ .alphabeticalOrder = 0,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Version,
+ .alphabeticalOrder = 24,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Pokenav,
+ .alphabeticalOrder = 18,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Pokemon,
+ .alphabeticalOrder = 9,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Get,
+ .alphabeticalOrder = 6,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Pokedex,
+ .alphabeticalOrder = 16,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Ruby,
+ .alphabeticalOrder = 14,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Level,
+ .alphabeticalOrder = 13,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Red,
+ .alphabeticalOrder = 19,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Green,
+ .alphabeticalOrder = 17,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Bag,
+ .alphabeticalOrder = 3,
+ .enabled = TRUE,
+ },
+ {
+ .text = gEasyChatWord_Flame,
+ .alphabeticalOrder = 25,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Gold,
+ .alphabeticalOrder = 10,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Leaf,
+ .alphabeticalOrder = 2,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Silver,
+ .alphabeticalOrder = 11,
+ .enabled = FALSE,
+ },
+ {
+ .text = gEasyChatWord_Emerald,
+ .alphabeticalOrder = 12,
+ .enabled = TRUE,
+ },
+};