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_events.h | |
parent | 4c53392a3f0ade1cc7b5e262be5ebb5d64320a57 (diff) |
Redump easy chat to C
Diffstat (limited to 'src/data/easy_chat/easy_chat_group_events.h')
-rw-r--r-- | src/data/easy_chat/easy_chat_group_events.h | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/src/data/easy_chat/easy_chat_group_events.h b/src/data/easy_chat/easy_chat_group_events.h new file mode 100644 index 000000000..15b5ab7f8 --- /dev/null +++ b/src/data/easy_chat/easy_chat_group_events.h @@ -0,0 +1,172 @@ + +const u8 gEasyChatWord_Appeal[] = _("APPEAL"); +const u8 gEasyChatWord_Events[] = _("EVENTS"); +const u8 gEasyChatWord_StayAtHome[] = _("STAY-AT-HOME"); +const u8 gEasyChatWord_Berry[] = _("BERRY"); +const u8 gEasyChatWord_Contest[] = _("CONTEST"); +const u8 gEasyChatWord_Mc[] = _("MC"); +const u8 gEasyChatWord_Judge[] = _("JUDGE"); +const u8 gEasyChatWord_Super[] = _("SUPER"); +const u8 gEasyChatWord_Stage[] = _("STAGE"); +const u8 gEasyChatWord_HallOfFame[] = _("HALL OF FAME"); +const u8 gEasyChatWord_Evolution[] = _("EVOLUTION"); +const u8 gEasyChatWord_Hyper[] = _("HYPER"); +const u8 gEasyChatWord_BattleTower[] = _("BATTLE TOWER"); +const u8 gEasyChatWord_Leaders[] = _("LEADERS"); +const u8 gEasyChatWord_BattleRoom[] = _("BATTLE ROOM"); +const u8 gEasyChatWord_Hidden[] = _("HIDDEN"); +const u8 gEasyChatWord_SecretBase[] = _("SECRET BASE"); +const u8 gEasyChatWord_Blend[] = _("BLEND"); +const u8 gEasyChatWord_POKEBLOCK[] = _("{POKEBLOCK}"); +const u8 gEasyChatWord_Master[] = _("MASTER"); +const u8 gEasyChatWord_Rank[] = _("RANK"); +const u8 gEasyChatWord_Ribbon[] = _("RIBBON"); +const u8 gEasyChatWord_Crush[] = _("CRUSH"); +const u8 gEasyChatWord_Direct[] = _("DIRECT"); +const u8 gEasyChatWord_Tower[] = _("TOWER"); +const u8 gEasyChatWord_Union[] = _("UNION"); +const u8 gEasyChatWord_Room[] = _("ROOM"); +const u8 gEasyChatWord_Wireless[] = _("WIRELESS"); + +const struct EasyChatWordInfo gEasyChatGroup_Events[] = { + { + .text = gEasyChatWord_Appeal, + .alphabeticalOrder = 0, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Events, + .alphabeticalOrder = 14, + .enabled = TRUE + }, + { + .text = gEasyChatWord_StayAtHome, + .alphabeticalOrder = 12, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Berry, + .alphabeticalOrder = 3, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Contest, + .alphabeticalOrder = 17, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Mc, + .alphabeticalOrder = 4, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Judge, + .alphabeticalOrder = 22, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Super, + .alphabeticalOrder = 23, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Stage, + .alphabeticalOrder = 1, + .enabled = TRUE + }, + { + .text = gEasyChatWord_HallOfFame, + .alphabeticalOrder = 10, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Evolution, + .alphabeticalOrder = 9, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Hyper, + .alphabeticalOrder = 15, + .enabled = TRUE + }, + { + .text = gEasyChatWord_BattleTower, + .alphabeticalOrder = 11, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Leaders, + .alphabeticalOrder = 6, + .enabled = FALSE + }, + { + .text = gEasyChatWord_BattleRoom, + .alphabeticalOrder = 13, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Hidden, + .alphabeticalOrder = 19, + .enabled = TRUE + }, + { + .text = gEasyChatWord_SecretBase, + .alphabeticalOrder = 5, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Blend, + .alphabeticalOrder = 18, + .enabled = FALSE + }, + { + .text = gEasyChatWord_POKEBLOCK, + .alphabeticalOrder = 20, + .enabled = FALSE + }, + { + .text = gEasyChatWord_Master, + .alphabeticalOrder = 21, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Rank, + .alphabeticalOrder = 26, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Ribbon, + .alphabeticalOrder = 16, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Crush, + .alphabeticalOrder = 8, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Direct, + .alphabeticalOrder = 2, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Tower, + .alphabeticalOrder = 7, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Union, + .alphabeticalOrder = 24, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Room, + .alphabeticalOrder = 25, + .enabled = TRUE + }, + { + .text = gEasyChatWord_Wireless, + .alphabeticalOrder = 27, + .enabled = TRUE + } +}; |