mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
Easy chat data refactor (#8271)
This commit is contained in:
parent
ad6469718b
commit
578b5c0a8d
|
|
@ -98,6 +98,7 @@ typedef union
|
|||
|
||||
struct EasyChatGroup
|
||||
{
|
||||
const u8 *name;
|
||||
EasyChatGroupWordData wordData;
|
||||
u16 numWords;
|
||||
u16 numEnabledWords;
|
||||
|
|
|
|||
|
|
@ -1889,28 +1889,6 @@ extern const u8 gText_Cancel5[];
|
|||
extern const u8 gText_Ok2[];
|
||||
extern const u8 gText_Quiz[];
|
||||
extern const u8 gText_Answer[];
|
||||
extern const u8 gEasyChatGroupName_Pokemon[];
|
||||
extern const u8 gEasyChatGroupName_Trainer[];
|
||||
extern const u8 gEasyChatGroupName_Status[];
|
||||
extern const u8 gEasyChatGroupName_Battle[];
|
||||
extern const u8 gEasyChatGroupName_Greetings[];
|
||||
extern const u8 gEasyChatGroupName_People[];
|
||||
extern const u8 gEasyChatGroupName_Voices[];
|
||||
extern const u8 gEasyChatGroupName_Speech[];
|
||||
extern const u8 gEasyChatGroupName_Endings[];
|
||||
extern const u8 gEasyChatGroupName_Feelings[];
|
||||
extern const u8 gEasyChatGroupName_Conditions[];
|
||||
extern const u8 gEasyChatGroupName_Actions[];
|
||||
extern const u8 gEasyChatGroupName_Lifestyle[];
|
||||
extern const u8 gEasyChatGroupName_Hobbies[];
|
||||
extern const u8 gEasyChatGroupName_Time[];
|
||||
extern const u8 gEasyChatGroupName_Misc[];
|
||||
extern const u8 gEasyChatGroupName_Adjectives[];
|
||||
extern const u8 gEasyChatGroupName_Events[];
|
||||
extern const u8 gEasyChatGroupName_Move1[];
|
||||
extern const u8 gEasyChatGroupName_Move2[];
|
||||
extern const u8 gEasyChatGroupName_TrendySaying[];
|
||||
extern const u8 gEasyChatGroupName_Pokemon2[];
|
||||
|
||||
// Text Input Strings
|
||||
extern const u8 gText_EasyChatKeyboard_ABCDEFothers[];
|
||||
|
|
|
|||
45
migration_scripts/1.15/consolidate_easy_chat.py
Normal file
45
migration_scripts/1.15/consolidate_easy_chat.py
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
import re
|
||||
import os
|
||||
|
||||
if not os.path.exists("Makefile"):
|
||||
print("Please run this script from your root folder.")
|
||||
quit()
|
||||
|
||||
for easy_chat_file in ["actions", "adjectives", "battle", "conditions", "endings", "events", "feelings", "greetings",
|
||||
"hobbies", "lifestyle", "misc", "people", "speech", "status", "time", "trainer",
|
||||
"trendy_saying", "voices"]:
|
||||
filePath = f"./src/data/easy_chat/easy_chat_group_{easy_chat_file}.h"
|
||||
|
||||
# Read easy chat file
|
||||
with open(filePath, "r") as f:
|
||||
source_content = f.read()
|
||||
|
||||
# Extract text from easy chat file
|
||||
source_pattern = re.compile(r'const u8 gEasyChatWord_(.*)\[\]\s*=\s_(\(".*"\))*')
|
||||
source_data = {}
|
||||
for match in source_pattern.findall(source_content):
|
||||
if len(match) == 2:
|
||||
var_name, easy_chat_text = match
|
||||
source_data[var_name] = (easy_chat_text)
|
||||
|
||||
# Read easy chat file content
|
||||
with open(filePath, "r") as f:
|
||||
destination_content = f.read()
|
||||
|
||||
# Modify easy chat file content
|
||||
def add_filter_data(match):
|
||||
var_name = match.group(1)
|
||||
if var_name in source_data:
|
||||
easy_chat_text = source_data[var_name]
|
||||
print(f"Updating {var_name}: adding {easy_chat_text}")
|
||||
return f'.text = COMPOUND_STRING{easy_chat_text},'
|
||||
else:
|
||||
return match.group(0)
|
||||
|
||||
destination_pattern = re.compile(r'.text = gEasyChatWord_(.*),')
|
||||
modified_content = destination_pattern.sub(add_filter_data, destination_content)
|
||||
|
||||
# Write the modified content back to easy chat file
|
||||
with open(filePath, "w") as f:
|
||||
f.write(modified_content)
|
||||
print(f"{easy_chat_file}.h has been updated")
|
||||
|
|
@ -1,548 +1,469 @@
|
|||
const u8 gEasyChatWord_Meets[] = _("MEETS");
|
||||
const u8 gEasyChatWord_Concede[] = _("CONCEDE");
|
||||
const u8 gEasyChatWord_Give[] = _("GIVE");
|
||||
const u8 gEasyChatWord_Gives[] = _("GIVES");
|
||||
const u8 gEasyChatWord_Played[] = _("PLAYED");
|
||||
const u8 gEasyChatWord_Plays[] = _("PLAYS");
|
||||
const u8 gEasyChatWord_Collect[] = _("COLLECT");
|
||||
const u8 gEasyChatWord_Walking[] = _("WALKING");
|
||||
const u8 gEasyChatWord_Walks[] = _("WALKS");
|
||||
const u8 gEasyChatWord_Says[] = _("SAYS");
|
||||
const u8 gEasyChatWord_Went[] = _("WENT");
|
||||
const u8 gEasyChatWord_Said[] = _("SAID");
|
||||
const u8 gEasyChatWord_WakeUp[] = _("WAKE UP");
|
||||
const u8 gEasyChatWord_WakesUp[] = _("WAKES UP");
|
||||
const u8 gEasyChatWord_Angers[] = _("ANGERS");
|
||||
const u8 gEasyChatWord_Teach[] = _("TEACH");
|
||||
const u8 gEasyChatWord_Teaches[] = _("TEACHES");
|
||||
const u8 gEasyChatWord_Please[] = _("PLEASE");
|
||||
const u8 gEasyChatWord_Learn[] = _("LEARN");
|
||||
const u8 gEasyChatWord_Change[] = _("CHANGE");
|
||||
const u8 gEasyChatWord_Story[] = _("STORY");
|
||||
const u8 gEasyChatWord_Trust[] = _("TRUST");
|
||||
const u8 gEasyChatWord_Lavish[] = _("LAVISH");
|
||||
const u8 gEasyChatWord_Listens[] = _("LISTENS");
|
||||
const u8 gEasyChatWord_Hearing[] = _("HEARING");
|
||||
const u8 gEasyChatWord_Trains[] = _("TRAINS");
|
||||
const u8 gEasyChatWord_Choose[] = _("CHOOSE");
|
||||
const u8 gEasyChatWord_Come[] = _("COME");
|
||||
const u8 gEasyChatWord_Came[] = _("CAME");
|
||||
const u8 gEasyChatWord_Search[] = _("SEARCH");
|
||||
const u8 gEasyChatWord_Make[] = _("MAKE");
|
||||
const u8 gEasyChatWord_Cause[] = _("CAUSE");
|
||||
const u8 gEasyChatWord_Know[] = _("KNOW");
|
||||
const u8 gEasyChatWord_Knows[] = _("KNOWS");
|
||||
const u8 gEasyChatWord_Refuse[] = _("REFUSE");
|
||||
const u8 gEasyChatWord_Stores[] = _("STORES");
|
||||
const u8 gEasyChatWord_Brag[] = _("BRAG");
|
||||
const u8 gEasyChatWord_Ignorant[] = _("IGNORANT");
|
||||
const u8 gEasyChatWord_Thinks[] = _("THINKS");
|
||||
const u8 gEasyChatWord_Believe[] = _("BELIEVE");
|
||||
const u8 gEasyChatWord_Slide[] = _("SLIDE");
|
||||
const u8 gEasyChatWord_Eats[] = _("EATS");
|
||||
const u8 gEasyChatWord_Use[] = _("USE");
|
||||
const u8 gEasyChatWord_Uses[] = _("USES");
|
||||
const u8 gEasyChatWord_Using[] = _("USING");
|
||||
const u8 gEasyChatWord_Couldnt[] = _("COULDN'T");
|
||||
const u8 gEasyChatWord_Capable[] = _("CAPABLE");
|
||||
const u8 gEasyChatWord_Disappear[] = _("DISAPPEAR");
|
||||
const u8 gEasyChatWord_Appear[] = _("APPEAR");
|
||||
const u8 gEasyChatWord_Throw[] = _("THROW");
|
||||
const u8 gEasyChatWord_Worry[] = _("WORRY");
|
||||
const u8 gEasyChatWord_Slept[] = _("SLEPT");
|
||||
const u8 gEasyChatWord_Sleep[] = _("SLEEP");
|
||||
const u8 gEasyChatWord_Release[] = _("RELEASE");
|
||||
const u8 gEasyChatWord_Drinks[] = _("DRINKS");
|
||||
const u8 gEasyChatWord_Runs[] = _("RUNS");
|
||||
const u8 gEasyChatWord_Run[] = _("RUN");
|
||||
const u8 gEasyChatWord_Works[] = _("WORKS");
|
||||
const u8 gEasyChatWord_Working[] = _("WORKING");
|
||||
const u8 gEasyChatWord_Talking[] = _("TALKING");
|
||||
const u8 gEasyChatWord_Talk[] = _("TALK");
|
||||
const u8 gEasyChatWord_Sink[] = _("SINK");
|
||||
const u8 gEasyChatWord_Smack[] = _("SMACK");
|
||||
const u8 gEasyChatWord_Pretend[] = _("PRETEND");
|
||||
const u8 gEasyChatWord_Praise[] = _("PRAISE");
|
||||
const u8 gEasyChatWord_Overdo[] = _("OVERDO");
|
||||
const u8 gEasyChatWord_Show[] = _("SHOW");
|
||||
const u8 gEasyChatWord_Looks[] = _("LOOKS");
|
||||
const u8 gEasyChatWord_Sees[] = _("SEES");
|
||||
const u8 gEasyChatWord_Seek[] = _("SEEK");
|
||||
const u8 gEasyChatWord_Own[] = _("OWN");
|
||||
const u8 gEasyChatWord_Take[] = _("TAKE");
|
||||
const u8 gEasyChatWord_Allow[] = _("ALLOW");
|
||||
const u8 gEasyChatWord_Forget[] = _("FORGET");
|
||||
const u8 gEasyChatWord_Forgets[] = _("FORGETS");
|
||||
const u8 gEasyChatWord_Appears[] = _("APPEARS");
|
||||
const u8 gEasyChatWord_Faint[] = _("FAINT");
|
||||
const u8 gEasyChatWord_Fainted[] = _("FAINTED");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Actions[] = {
|
||||
[EC_INDEX(EC_WORD_MEETS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Meets,
|
||||
.text = COMPOUND_STRING("MEETS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALLOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CONCEDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Concede,
|
||||
.text = COMPOUND_STRING("CONCEDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANGERS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Give,
|
||||
.text = COMPOUND_STRING("GIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APPEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIVES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gives,
|
||||
.text = COMPOUND_STRING("GIVES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APPEARS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLAYED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Played,
|
||||
.text = COMPOUND_STRING("PLAYED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BELIEVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLAYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Plays,
|
||||
.text = COMPOUND_STRING("PLAYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BRAG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COLLECT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Collect,
|
||||
.text = COMPOUND_STRING("COLLECT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WALKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Walking,
|
||||
.text = COMPOUND_STRING("WALKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAPABLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WALKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Walks,
|
||||
.text = COMPOUND_STRING("WALKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAUSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Says,
|
||||
.text = COMPOUND_STRING("SAYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHANGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Went,
|
||||
.text = COMPOUND_STRING("WENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHOOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAID)] =
|
||||
{
|
||||
.text = gEasyChatWord_Said,
|
||||
.text = COMPOUND_STRING("SAID"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COLLECT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAKE_UP)] =
|
||||
{
|
||||
.text = gEasyChatWord_WakeUp,
|
||||
.text = COMPOUND_STRING("WAKE UP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAKES_UP)] =
|
||||
{
|
||||
.text = gEasyChatWord_WakesUp,
|
||||
.text = COMPOUND_STRING("WAKES UP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CONCEDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANGERS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Angers,
|
||||
.text = COMPOUND_STRING("ANGERS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COULDN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TEACH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Teach,
|
||||
.text = COMPOUND_STRING("TEACH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISAPPEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TEACHES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Teaches,
|
||||
.text = COMPOUND_STRING("TEACHES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DRINKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLEASE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Please,
|
||||
.text = COMPOUND_STRING("PLEASE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EATS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEARN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Learn,
|
||||
.text = COMPOUND_STRING("LEARN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FAINT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHANGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Change,
|
||||
.text = COMPOUND_STRING("CHANGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FAINTED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STORY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Story,
|
||||
.text = COMPOUND_STRING("STORY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FORGET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRUST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trust,
|
||||
.text = COMPOUND_STRING("TRUST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FORGETS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LAVISH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lavish,
|
||||
.text = COMPOUND_STRING("LAVISH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LISTENS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Listens,
|
||||
.text = COMPOUND_STRING("LISTENS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIVES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEARING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hearing,
|
||||
.text = COMPOUND_STRING("HEARING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEARING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRAINS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trains,
|
||||
.text = COMPOUND_STRING("TRAINS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IGNORANT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHOOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Choose,
|
||||
.text = COMPOUND_STRING("CHOOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KNOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Come,
|
||||
.text = COMPOUND_STRING("COME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KNOWS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Came,
|
||||
.text = COMPOUND_STRING("CAME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LAVISH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEARCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Search,
|
||||
.text = COMPOUND_STRING("SEARCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEARN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Make,
|
||||
.text = COMPOUND_STRING("MAKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LISTENS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAUSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cause,
|
||||
.text = COMPOUND_STRING("CAUSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOOKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KNOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Know,
|
||||
.text = COMPOUND_STRING("KNOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KNOWS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Knows,
|
||||
.text = COMPOUND_STRING("KNOWS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MEETS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_REFUSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Refuse,
|
||||
.text = COMPOUND_STRING("REFUSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OVERDO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STORES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Stores,
|
||||
.text = COMPOUND_STRING("STORES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OWN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BRAG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Brag,
|
||||
.text = COMPOUND_STRING("BRAG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLAYED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IGNORANT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ignorant,
|
||||
.text = COMPOUND_STRING("IGNORANT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLAYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THINKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thinks,
|
||||
.text = COMPOUND_STRING("THINKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLEASE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BELIEVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Believe,
|
||||
.text = COMPOUND_STRING("BELIEVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PRAISE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SLIDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Slide,
|
||||
.text = COMPOUND_STRING("SLIDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PRETEND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EATS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Eats,
|
||||
.text = COMPOUND_STRING("EATS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_REFUSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_USE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Use,
|
||||
.text = COMPOUND_STRING("USE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RELEASE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_USES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Uses,
|
||||
.text = COMPOUND_STRING("USES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RUN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_USING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Using,
|
||||
.text = COMPOUND_STRING("USING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RUNS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COULDN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Couldnt,
|
||||
.text = COMPOUND_STRING("COULDN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAID),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAPABLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Capable,
|
||||
.text = COMPOUND_STRING("CAPABLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISAPPEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Disappear,
|
||||
.text = COMPOUND_STRING("DISAPPEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEARCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_APPEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Appear,
|
||||
.text = COMPOUND_STRING("APPEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEEK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THROW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Throw,
|
||||
.text = COMPOUND_STRING("THROW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Worry,
|
||||
.text = COMPOUND_STRING("WORRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SLEPT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Slept,
|
||||
.text = COMPOUND_STRING("SLEPT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SINK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SLEEP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sleep,
|
||||
.text = COMPOUND_STRING("SLEEP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SLEEP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RELEASE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Release,
|
||||
.text = COMPOUND_STRING("RELEASE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SLEPT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DRINKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Drinks,
|
||||
.text = COMPOUND_STRING("DRINKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SLIDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RUNS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Runs,
|
||||
.text = COMPOUND_STRING("RUNS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMACK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RUN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Run,
|
||||
.text = COMPOUND_STRING("RUN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STORES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Works,
|
||||
.text = COMPOUND_STRING("WORKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STORY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Working,
|
||||
.text = COMPOUND_STRING("WORKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TAKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TALKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Talking,
|
||||
.text = COMPOUND_STRING("TALKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TALK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TALK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Talk,
|
||||
.text = COMPOUND_STRING("TALK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TALKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SINK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sink,
|
||||
.text = COMPOUND_STRING("SINK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TEACH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMACK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smack,
|
||||
.text = COMPOUND_STRING("SMACK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TEACHES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PRETEND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pretend,
|
||||
.text = COMPOUND_STRING("PRETEND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THINKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PRAISE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Praise,
|
||||
.text = COMPOUND_STRING("PRAISE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THROW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OVERDO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Overdo,
|
||||
.text = COMPOUND_STRING("OVERDO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRAINS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Show,
|
||||
.text = COMPOUND_STRING("SHOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRUST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOOKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Looks,
|
||||
.text = COMPOUND_STRING("LOOKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_USE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sees,
|
||||
.text = COMPOUND_STRING("SEES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_USES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEEK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Seek,
|
||||
.text = COMPOUND_STRING("SEEK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_USING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OWN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Own,
|
||||
.text = COMPOUND_STRING("OWN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAKE_UP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TAKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Take,
|
||||
.text = COMPOUND_STRING("TAKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAKES_UP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALLOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Allow,
|
||||
.text = COMPOUND_STRING("ALLOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WALKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FORGET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Forget,
|
||||
.text = COMPOUND_STRING("FORGET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WALKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FORGETS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Forgets,
|
||||
.text = COMPOUND_STRING("FORGETS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_APPEARS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Appears,
|
||||
.text = COMPOUND_STRING("APPEARS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FAINT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Faint,
|
||||
.text = COMPOUND_STRING("FAINT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FAINTED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fainted,
|
||||
.text = COMPOUND_STRING("FAINTED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,254 +1,217 @@
|
|||
const u8 gEasyChatWord_Wandering[] = _("WANDERING");
|
||||
const u8 gEasyChatWord_Rickety[] = _("RICKETY");
|
||||
const u8 gEasyChatWord_RockSolid[] = _("ROCK-SOLID");
|
||||
const u8 gEasyChatWord_Hungry[] = _("HUNGRY");
|
||||
const u8 gEasyChatWord_Tight[] = _("TIGHT");
|
||||
const u8 gEasyChatWord_Ticklish[] = _("TICKLISH");
|
||||
const u8 gEasyChatWord_Twirling[] = _("TWIRLING");
|
||||
const u8 gEasyChatWord_Spiraling[] = _("SPIRALING");
|
||||
const u8 gEasyChatWord_Thirsty[] = _("THIRSTY");
|
||||
const u8 gEasyChatWord_Lolling[] = _("LOLLING");
|
||||
const u8 gEasyChatWord_Silky[] = _("SILKY");
|
||||
const u8 gEasyChatWord_Sadly[] = _("SADLY");
|
||||
const u8 gEasyChatWord_Hopeless[] = _("HOPELESS");
|
||||
const u8 gEasyChatWord_Useless[] = _("USELESS");
|
||||
const u8 gEasyChatWord_Drooling[] = _("DROOLING");
|
||||
const u8 gEasyChatWord_Exciting[] = _("EXCITING");
|
||||
const u8 gEasyChatWord_Thick[] = _("THICK");
|
||||
const u8 gEasyChatWord_Smooth[] = _("SMOOTH");
|
||||
const u8 gEasyChatWord_Slimy[] = _("SLIMY");
|
||||
const u8 gEasyChatWord_Thin[] = _("THIN");
|
||||
const u8 gEasyChatWord_Break[] = _("BREAK");
|
||||
const u8 gEasyChatWord_Voracious[] = _("VORACIOUS");
|
||||
const u8 gEasyChatWord_Scatter[] = _("SCATTER");
|
||||
const u8 gEasyChatWord_Awesome[] = _("AWESOME");
|
||||
const u8 gEasyChatWord_Wimpy[] = _("WIMPY");
|
||||
const u8 gEasyChatWord_Wobbly[] = _("WOBBLY");
|
||||
const u8 gEasyChatWord_Shaky[] = _("SHAKY");
|
||||
const u8 gEasyChatWord_Ripped[] = _("RIPPED");
|
||||
const u8 gEasyChatWord_Shredded[] = _("SHREDDED");
|
||||
const u8 gEasyChatWord_Increasing[] = _("INCREASING");
|
||||
const u8 gEasyChatWord_Yet[] = _("YET");
|
||||
const u8 gEasyChatWord_Destroyed[] = _("DESTROYED");
|
||||
const u8 gEasyChatWord_Fiery[] = _("FIERY");
|
||||
const u8 gEasyChatWord_LoveyDovey[] = _("LOVEY-DOVEY");
|
||||
const u8 gEasyChatWord_Happily[] = _("HAPPILY");
|
||||
const u8 gEasyChatWord_Anticipation[] = _("ANTICIPATION");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Adjectives[] = {
|
||||
[EC_INDEX(EC_WORD_WANDERING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wandering,
|
||||
.text = COMPOUND_STRING("WANDERING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANTICIPATION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RICKETY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rickety,
|
||||
.text = COMPOUND_STRING("RICKETY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AWESOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROCK_SOLID)] =
|
||||
{
|
||||
.text = gEasyChatWord_RockSolid,
|
||||
.text = COMPOUND_STRING("ROCK-SOLID"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BREAK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HUNGRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hungry,
|
||||
.text = COMPOUND_STRING("HUNGRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DESTROYED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TIGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tight,
|
||||
.text = COMPOUND_STRING("TIGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DROOLING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TICKLISH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ticklish,
|
||||
.text = COMPOUND_STRING("TICKLISH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCITING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TWIRLING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Twirling,
|
||||
.text = COMPOUND_STRING("TWIRLING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FIERY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPIRALING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Spiraling,
|
||||
.text = COMPOUND_STRING("SPIRALING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAPPILY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THIRSTY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thirsty,
|
||||
.text = COMPOUND_STRING("THIRSTY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOPELESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOLLING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lolling,
|
||||
.text = COMPOUND_STRING("LOLLING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HUNGRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SILKY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Silky,
|
||||
.text = COMPOUND_STRING("SILKY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INCREASING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SADLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sadly,
|
||||
.text = COMPOUND_STRING("SADLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOLLING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOPELESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hopeless,
|
||||
.text = COMPOUND_STRING("HOPELESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOVEY_DOVEY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_USELESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Useless,
|
||||
.text = COMPOUND_STRING("USELESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RICKETY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DROOLING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Drooling,
|
||||
.text = COMPOUND_STRING("DROOLING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RIPPED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCITING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Exciting,
|
||||
.text = COMPOUND_STRING("EXCITING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROCK_SOLID),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THICK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thick,
|
||||
.text = COMPOUND_STRING("THICK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SADLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMOOTH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smooth,
|
||||
.text = COMPOUND_STRING("SMOOTH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SCATTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SLIMY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Slimy,
|
||||
.text = COMPOUND_STRING("SLIMY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHAKY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thin,
|
||||
.text = COMPOUND_STRING("THIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHREDDED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BREAK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Break,
|
||||
.text = COMPOUND_STRING("BREAK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SILKY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VORACIOUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Voracious,
|
||||
.text = COMPOUND_STRING("VORACIOUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SLIMY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SCATTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Scatter,
|
||||
.text = COMPOUND_STRING("SCATTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMOOTH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AWESOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Awesome,
|
||||
.text = COMPOUND_STRING("AWESOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPIRALING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WIMPY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wimpy,
|
||||
.text = COMPOUND_STRING("WIMPY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THICK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WOBBLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wobbly,
|
||||
.text = COMPOUND_STRING("WOBBLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHAKY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shaky,
|
||||
.text = COMPOUND_STRING("SHAKY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THIRSTY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RIPPED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ripped,
|
||||
.text = COMPOUND_STRING("RIPPED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TICKLISH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHREDDED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shredded,
|
||||
.text = COMPOUND_STRING("SHREDDED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TIGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INCREASING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Increasing,
|
||||
.text = COMPOUND_STRING("INCREASING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TWIRLING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yet,
|
||||
.text = COMPOUND_STRING("YET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_USELESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DESTROYED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Destroyed,
|
||||
.text = COMPOUND_STRING("DESTROYED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VORACIOUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FIERY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fiery,
|
||||
.text = COMPOUND_STRING("FIERY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WANDERING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOVEY_DOVEY)] =
|
||||
{
|
||||
.text = gEasyChatWord_LoveyDovey,
|
||||
.text = COMPOUND_STRING("LOVEY-DOVEY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WIMPY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAPPILY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Happily,
|
||||
.text = COMPOUND_STRING("HAPPILY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WOBBLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANTICIPATION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Anticipation,
|
||||
.text = COMPOUND_STRING("ANTICIPATION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,443 +1,379 @@
|
|||
const u8 gEasyChatWord_MatchUp[] = _("MATCH UP");
|
||||
const u8 gEasyChatWord_Go[] = _("GO");
|
||||
const u8 gEasyChatWord_No1[] = _("NO. 1");
|
||||
const u8 gEasyChatWord_Decide[] = _("DECIDE");
|
||||
const u8 gEasyChatWord_LetMeWin[] = _("LET ME WIN");
|
||||
const u8 gEasyChatWord_Wins[] = _("WINS");
|
||||
const u8 gEasyChatWord_Win[] = _("WIN");
|
||||
const u8 gEasyChatWord_Won[] = _("WON");
|
||||
const u8 gEasyChatWord_IfIWin[] = _("IF I WIN");
|
||||
const u8 gEasyChatWord_WhenIWin[] = _("WHEN I WIN");
|
||||
const u8 gEasyChatWord_CantWin[] = _("CAN'T WIN");
|
||||
const u8 gEasyChatWord_CanWin[] = _("CAN WIN");
|
||||
const u8 gEasyChatWord_NoMatch[] = _("NO MATCH");
|
||||
const u8 gEasyChatWord_Spirit[] = _("SPIRIT");
|
||||
const u8 gEasyChatWord_Decided[] = _("DECIDED");
|
||||
const u8 gEasyChatWord_TrumpCard[] = _("TRUMP CARD");
|
||||
const u8 gEasyChatWord_TakeThat[] = _("TAKE THAT");
|
||||
const u8 gEasyChatWord_ComeOn[] = _("COME ON");
|
||||
const u8 gEasyChatWord_Attack[] = _("ATTACK");
|
||||
const u8 gEasyChatWord_Surrender[] = _("SURRENDER");
|
||||
const u8 gEasyChatWord_Gutsy[] = _("GUTSY");
|
||||
const u8 gEasyChatWord_Talent[] = _("TALENT");
|
||||
const u8 gEasyChatWord_Strategy[] = _("STRATEGY");
|
||||
const u8 gEasyChatWord_Smite[] = _("SMITE");
|
||||
const u8 gEasyChatWord_Match[] = _("MATCH");
|
||||
const u8 gEasyChatWord_Victory[] = _("VICTORY");
|
||||
const u8 gEasyChatWord_Offensive[] = _("OFFENSIVE");
|
||||
const u8 gEasyChatWord_Sense[] = _("SENSE");
|
||||
const u8 gEasyChatWord_Versus[] = _("VERSUS");
|
||||
const u8 gEasyChatWord_Fights[] = _("FIGHTS");
|
||||
const u8 gEasyChatWord_Power[] = _("POWER");
|
||||
const u8 gEasyChatWord_Challenge[] = _("CHALLENGE");
|
||||
const u8 gEasyChatWord_Strong[] = _("STRONG");
|
||||
const u8 gEasyChatWord_TooStrong[] = _("TOO STRONG");
|
||||
const u8 gEasyChatWord_GoEasy[] = _("GO EASY");
|
||||
const u8 gEasyChatWord_Foe[] = _("FOE");
|
||||
const u8 gEasyChatWord_Genius[] = _("GENIUS");
|
||||
const u8 gEasyChatWord_Legend[] = _("LEGEND");
|
||||
const u8 gEasyChatWord_Escape[] = _("ESCAPE");
|
||||
const u8 gEasyChatWord_Aim[] = _("AIM");
|
||||
const u8 gEasyChatWord_Battle[] = _("BATTLE");
|
||||
const u8 gEasyChatWord_Fight[] = _("FIGHT");
|
||||
const u8 gEasyChatWord_Resuscitate[] = _("RESUSCITATE");
|
||||
const u8 gEasyChatWord_Points[] = _("POINTS");
|
||||
const u8 gEasyChatWord_Serious[] = _("SERIOUS");
|
||||
const u8 gEasyChatWord_GiveUp[] = _("GIVE UP");
|
||||
const u8 gEasyChatWord_Loss[] = _("LOSS");
|
||||
const u8 gEasyChatWord_IfILose[] = _("IF I LOSE");
|
||||
const u8 gEasyChatWord_Lost[] = _("LOST");
|
||||
const u8 gEasyChatWord_Lose[] = _("LOSE");
|
||||
const u8 gEasyChatWord_Guard[] = _("GUARD");
|
||||
const u8 gEasyChatWord_Partner[] = _("PARTNER");
|
||||
const u8 gEasyChatWord_Reject[] = _("REJECT");
|
||||
const u8 gEasyChatWord_Accept[] = _("ACCEPT");
|
||||
const u8 gEasyChatWord_Invincible[] = _("INVINCIBLE");
|
||||
const u8 gEasyChatWord_Received[] = _("RECEIVED");
|
||||
const u8 gEasyChatWord_Easy[] = _("EASY");
|
||||
const u8 gEasyChatWord_Weak[] = _("WEAK");
|
||||
const u8 gEasyChatWord_TooWeak[] = _("TOO WEAK");
|
||||
const u8 gEasyChatWord_Pushover[] = _("PUSHOVER");
|
||||
const u8 gEasyChatWord_Leader[] = _("LEADER");
|
||||
const u8 gEasyChatWord_Rule[] = _("RULE");
|
||||
const u8 gEasyChatWord_Move[] = _("MOVE");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Battle[] = {
|
||||
[EC_INDEX(EC_WORD_MATCH_UP)] =
|
||||
{
|
||||
.text = gEasyChatWord_MatchUp,
|
||||
.text = COMPOUND_STRING("MATCH UP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ACCEPT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Go,
|
||||
.text = COMPOUND_STRING("GO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AIM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NO_1)] =
|
||||
{
|
||||
.text = gEasyChatWord_No1,
|
||||
.text = COMPOUND_STRING("NO. 1"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ATTACK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DECIDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Decide,
|
||||
.text = COMPOUND_STRING("DECIDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BATTLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LET_ME_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_LetMeWin,
|
||||
.text = COMPOUND_STRING("LET ME WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAN_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WINS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wins,
|
||||
.text = COMPOUND_STRING("WINS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAN_T_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Win,
|
||||
.text = COMPOUND_STRING("WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHALLENGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Won,
|
||||
.text = COMPOUND_STRING("WON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COME_ON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IF_I_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_IfIWin,
|
||||
.text = COMPOUND_STRING("IF I WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DECIDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHEN_I_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_WhenIWin,
|
||||
.text = COMPOUND_STRING("WHEN I WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DECIDED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAN_T_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_CantWin,
|
||||
.text = COMPOUND_STRING("CAN'T WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EASY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAN_WIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_CanWin,
|
||||
.text = COMPOUND_STRING("CAN WIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ESCAPE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NO_MATCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_NoMatch,
|
||||
.text = COMPOUND_STRING("NO MATCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FIGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPIRIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Spirit,
|
||||
.text = COMPOUND_STRING("SPIRIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FIGHTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DECIDED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Decided,
|
||||
.text = COMPOUND_STRING("DECIDED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FOE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRUMP_CARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_TrumpCard,
|
||||
.text = COMPOUND_STRING("TRUMP CARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GENIUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TAKE_THAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_TakeThat,
|
||||
.text = COMPOUND_STRING("TAKE THAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIVE_UP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COME_ON)] =
|
||||
{
|
||||
.text = gEasyChatWord_ComeOn,
|
||||
.text = COMPOUND_STRING("COME ON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ATTACK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Attack,
|
||||
.text = COMPOUND_STRING("ATTACK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GO_EASY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SURRENDER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Surrender,
|
||||
.text = COMPOUND_STRING("SURRENDER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GUARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GUTSY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gutsy,
|
||||
.text = COMPOUND_STRING("GUTSY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GUTSY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TALENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Talent,
|
||||
.text = COMPOUND_STRING("TALENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IF_I_LOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STRATEGY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Strategy,
|
||||
.text = COMPOUND_STRING("STRATEGY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IF_I_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMITE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smite,
|
||||
.text = COMPOUND_STRING("SMITE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INVINCIBLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MATCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Match,
|
||||
.text = COMPOUND_STRING("MATCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEADER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VICTORY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Victory,
|
||||
.text = COMPOUND_STRING("VICTORY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEGEND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OFFENSIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Offensive,
|
||||
.text = COMPOUND_STRING("OFFENSIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LET_ME_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SENSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sense,
|
||||
.text = COMPOUND_STRING("SENSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VERSUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Versus,
|
||||
.text = COMPOUND_STRING("VERSUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOSS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FIGHTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fights,
|
||||
.text = COMPOUND_STRING("FIGHTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POWER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Power,
|
||||
.text = COMPOUND_STRING("POWER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MATCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHALLENGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Challenge,
|
||||
.text = COMPOUND_STRING("CHALLENGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MATCH_UP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STRONG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Strong,
|
||||
.text = COMPOUND_STRING("STRONG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MOVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOO_STRONG)] =
|
||||
{
|
||||
.text = gEasyChatWord_TooStrong,
|
||||
.text = COMPOUND_STRING("TOO STRONG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NO_MATCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GO_EASY)] =
|
||||
{
|
||||
.text = gEasyChatWord_GoEasy,
|
||||
.text = COMPOUND_STRING("GO EASY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NO_1),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FOE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Foe,
|
||||
.text = COMPOUND_STRING("FOE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OFFENSIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GENIUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Genius,
|
||||
.text = COMPOUND_STRING("GENIUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PARTNER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEGEND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Legend,
|
||||
.text = COMPOUND_STRING("LEGEND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POINTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ESCAPE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Escape,
|
||||
.text = COMPOUND_STRING("ESCAPE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POWER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AIM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Aim,
|
||||
.text = COMPOUND_STRING("AIM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PUSHOVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BATTLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Battle,
|
||||
.text = COMPOUND_STRING("BATTLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RECEIVED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FIGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fight,
|
||||
.text = COMPOUND_STRING("FIGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_REJECT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RESUSCITATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Resuscitate,
|
||||
.text = COMPOUND_STRING("RESUSCITATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RESUSCITATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POINTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Points,
|
||||
.text = COMPOUND_STRING("POINTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RULE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SERIOUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Serious,
|
||||
.text = COMPOUND_STRING("SERIOUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SENSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIVE_UP)] =
|
||||
{
|
||||
.text = gEasyChatWord_GiveUp,
|
||||
.text = COMPOUND_STRING("GIVE UP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SERIOUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOSS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Loss,
|
||||
.text = COMPOUND_STRING("LOSS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMITE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IF_I_LOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_IfILose,
|
||||
.text = COMPOUND_STRING("IF I LOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPIRIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lost,
|
||||
.text = COMPOUND_STRING("LOST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STRATEGY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lose,
|
||||
.text = COMPOUND_STRING("LOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STRONG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GUARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Guard,
|
||||
.text = COMPOUND_STRING("GUARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SURRENDER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PARTNER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Partner,
|
||||
.text = COMPOUND_STRING("PARTNER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TAKE_THAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_REJECT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Reject,
|
||||
.text = COMPOUND_STRING("REJECT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TALENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ACCEPT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Accept,
|
||||
.text = COMPOUND_STRING("ACCEPT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOO_STRONG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INVINCIBLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Invincible,
|
||||
.text = COMPOUND_STRING("INVINCIBLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOO_WEAK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RECEIVED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Received,
|
||||
.text = COMPOUND_STRING("RECEIVED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRUMP_CARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EASY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Easy,
|
||||
.text = COMPOUND_STRING("EASY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VERSUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEAK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Weak,
|
||||
.text = COMPOUND_STRING("WEAK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VICTORY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOO_WEAK)] =
|
||||
{
|
||||
.text = gEasyChatWord_TooWeak,
|
||||
.text = COMPOUND_STRING("TOO WEAK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEAK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PUSHOVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pushover,
|
||||
.text = COMPOUND_STRING("PUSHOVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHEN_I_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEADER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Leader,
|
||||
.text = COMPOUND_STRING("LEADER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RULE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rule,
|
||||
.text = COMPOUND_STRING("RULE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WINS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MOVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Move,
|
||||
.text = COMPOUND_STRING("MOVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,485 +1,415 @@
|
|||
const u8 gEasyChatWord_Hot[] = _("HOT");
|
||||
const u8 gEasyChatWord_Exists[] = _("EXISTS");
|
||||
const u8 gEasyChatWord_Excess[] = _("EXCESS");
|
||||
const u8 gEasyChatWord_Approved[] = _("APPROVED");
|
||||
const u8 gEasyChatWord_Has[] = _("HAS");
|
||||
const u8 gEasyChatWord_Good[] = _("GOOD");
|
||||
const u8 gEasyChatWord_Less[] = _("LESS");
|
||||
const u8 gEasyChatWord_Momentum[] = _("MOMENTUM");
|
||||
const u8 gEasyChatWord_Going[] = _("GOING");
|
||||
const u8 gEasyChatWord_Weird[] = _("WEIRD");
|
||||
const u8 gEasyChatWord_Busy[] = _("BUSY");
|
||||
const u8 gEasyChatWord_Together[] = _("TOGETHER");
|
||||
const u8 gEasyChatWord_Full[] = _("FULL");
|
||||
const u8 gEasyChatWord_Absent[] = _("ABSENT");
|
||||
const u8 gEasyChatWord_Being[] = _("BEING");
|
||||
const u8 gEasyChatWord_Need[] = _("NEED");
|
||||
const u8 gEasyChatWord_Tasty[] = _("TASTY");
|
||||
const u8 gEasyChatWord_Skilled[] = _("SKILLED");
|
||||
const u8 gEasyChatWord_Noisy[] = _("NOISY");
|
||||
const u8 gEasyChatWord_Big[] = _("BIG");
|
||||
const u8 gEasyChatWord_Late[] = _("LATE");
|
||||
const u8 gEasyChatWord_Close[] = _("CLOSE");
|
||||
const u8 gEasyChatWord_Docile[] = _("DOCILE");
|
||||
const u8 gEasyChatWord_Amusing[] = _("AMUSING");
|
||||
const u8 gEasyChatWord_Entertaining[] = _("ENTERTAINING");
|
||||
const u8 gEasyChatWord_Perfection[] = _("PERFECTION");
|
||||
const u8 gEasyChatWord_Pretty[] = _("PRETTY");
|
||||
const u8 gEasyChatWord_Healthy[] = _("HEALTHY");
|
||||
const u8 gEasyChatWord_Excellent[] = _("EXCELLENT");
|
||||
const u8 gEasyChatWord_UpsideDown[] = _("UPSIDE DOWN");
|
||||
const u8 gEasyChatWord_Cold[] = _("COLD");
|
||||
const u8 gEasyChatWord_Refreshing[] = _("REFRESHING");
|
||||
const u8 gEasyChatWord_Unavoidable[] = _("UNAVOIDABLE");
|
||||
const u8 gEasyChatWord_Much[] = _("MUCH");
|
||||
const u8 gEasyChatWord_Overwhelming[] = _("OVERWHELMING");
|
||||
const u8 gEasyChatWord_Fabulous[] = _("FABULOUS");
|
||||
const u8 gEasyChatWord_Else[] = _("ELSE");
|
||||
const u8 gEasyChatWord_Expensive[] = _("EXPENSIVE");
|
||||
const u8 gEasyChatWord_Correct[] = _("CORRECT");
|
||||
const u8 gEasyChatWord_Impossible[] = _("IMPOSSIBLE");
|
||||
const u8 gEasyChatWord_Small[] = _("SMALL");
|
||||
const u8 gEasyChatWord_Different[] = _("DIFFERENT");
|
||||
const u8 gEasyChatWord_Tired[] = _("TIRED");
|
||||
const u8 gEasyChatWord_Skill[] = _("SKILL");
|
||||
const u8 gEasyChatWord_Top[] = _("TOP");
|
||||
const u8 gEasyChatWord_NonStop[] = _("NON-STOP");
|
||||
const u8 gEasyChatWord_Preposterous[] = _("PREPOSTEROUS");
|
||||
const u8 gEasyChatWord_None[] = _("NONE");
|
||||
const u8 gEasyChatWord_Nothing[] = _("NOTHING");
|
||||
const u8 gEasyChatWord_Natural[] = _("NATURAL");
|
||||
const u8 gEasyChatWord_Becomes[] = _("BECOMES");
|
||||
const u8 gEasyChatWord_Lukewarm[] = _("LUKEWARM");
|
||||
const u8 gEasyChatWord_Fast[] = _("FAST");
|
||||
const u8 gEasyChatWord_Low[] = _("LOW");
|
||||
const u8 gEasyChatWord_Awful[] = _("AWFUL");
|
||||
const u8 gEasyChatWord_Alone[] = _("ALONE");
|
||||
const u8 gEasyChatWord_Bored[] = _("BORED");
|
||||
const u8 gEasyChatWord_Secret[] = _("SECRET");
|
||||
const u8 gEasyChatWord_Mystery[] = _("MYSTERY");
|
||||
const u8 gEasyChatWord_Lacks[] = _("LACKS");
|
||||
const u8 gEasyChatWord_Best[] = _("BEST");
|
||||
const u8 gEasyChatWord_Lousy[] = _("LOUSY");
|
||||
const u8 gEasyChatWord_Mistake[] = _("MISTAKE");
|
||||
const u8 gEasyChatWord_Kind[] = _("KIND");
|
||||
const u8 gEasyChatWord_Well[] = _("WELL");
|
||||
const u8 gEasyChatWord_Weakened[] = _("WEAKENED");
|
||||
const u8 gEasyChatWord_Simple[] = _("SIMPLE");
|
||||
const u8 gEasyChatWord_Seems[] = _("SEEMS");
|
||||
const u8 gEasyChatWord_Badly[] = _("BADLY");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Conditions[] = {
|
||||
[EC_INDEX(EC_WORD_HOT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hot,
|
||||
.text = COMPOUND_STRING("HOT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ABSENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXISTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Exists,
|
||||
.text = COMPOUND_STRING("EXISTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALONE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Excess,
|
||||
.text = COMPOUND_STRING("EXCESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AMUSING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_APPROVED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Approved,
|
||||
.text = COMPOUND_STRING("APPROVED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APPROVED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Has,
|
||||
.text = COMPOUND_STRING("HAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AWFUL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOOD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Good,
|
||||
.text = COMPOUND_STRING("GOOD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BADLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Less,
|
||||
.text = COMPOUND_STRING("LESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BECOMES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MOMENTUM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Momentum,
|
||||
.text = COMPOUND_STRING("MOMENTUM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Going,
|
||||
.text = COMPOUND_STRING("GOING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEIRD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Weird,
|
||||
.text = COMPOUND_STRING("WEIRD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BIG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BUSY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Busy,
|
||||
.text = COMPOUND_STRING("BUSY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BORED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOGETHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Together,
|
||||
.text = COMPOUND_STRING("TOGETHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BUSY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FULL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Full,
|
||||
.text = COMPOUND_STRING("FULL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CLOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ABSENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Absent,
|
||||
.text = COMPOUND_STRING("ABSENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COLD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Being,
|
||||
.text = COMPOUND_STRING("BEING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CORRECT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Need,
|
||||
.text = COMPOUND_STRING("NEED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DIFFERENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TASTY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tasty,
|
||||
.text = COMPOUND_STRING("TASTY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DOCILE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SKILLED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Skilled,
|
||||
.text = COMPOUND_STRING("SKILLED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ELSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOISY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Noisy,
|
||||
.text = COMPOUND_STRING("NOISY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ENTERTAINING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BIG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Big,
|
||||
.text = COMPOUND_STRING("BIG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCELLENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Late,
|
||||
.text = COMPOUND_STRING("LATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CLOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Close,
|
||||
.text = COMPOUND_STRING("CLOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXISTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DOCILE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Docile,
|
||||
.text = COMPOUND_STRING("DOCILE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXPENSIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AMUSING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Amusing,
|
||||
.text = COMPOUND_STRING("AMUSING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FABULOUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ENTERTAINING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Entertaining,
|
||||
.text = COMPOUND_STRING("ENTERTAINING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FAST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PERFECTION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Perfection,
|
||||
.text = COMPOUND_STRING("PERFECTION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FULL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PRETTY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pretty,
|
||||
.text = COMPOUND_STRING("PRETTY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEALTHY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Healthy,
|
||||
.text = COMPOUND_STRING("HEALTHY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOOD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCELLENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Excellent,
|
||||
.text = COMPOUND_STRING("EXCELLENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UPSIDE_DOWN)] =
|
||||
{
|
||||
.text = gEasyChatWord_UpsideDown,
|
||||
.text = COMPOUND_STRING("UPSIDE DOWN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEALTHY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COLD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cold,
|
||||
.text = COMPOUND_STRING("COLD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_REFRESHING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Refreshing,
|
||||
.text = COMPOUND_STRING("REFRESHING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IMPOSSIBLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNAVOIDABLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Unavoidable,
|
||||
.text = COMPOUND_STRING("UNAVOIDABLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KIND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MUCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Much,
|
||||
.text = COMPOUND_STRING("MUCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LACKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OVERWHELMING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Overwhelming,
|
||||
.text = COMPOUND_STRING("OVERWHELMING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FABULOUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fabulous,
|
||||
.text = COMPOUND_STRING("FABULOUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ELSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Else,
|
||||
.text = COMPOUND_STRING("ELSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOUSY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXPENSIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Expensive,
|
||||
.text = COMPOUND_STRING("EXPENSIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CORRECT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Correct,
|
||||
.text = COMPOUND_STRING("CORRECT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LUKEWARM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IMPOSSIBLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Impossible,
|
||||
.text = COMPOUND_STRING("IMPOSSIBLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MISTAKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMALL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Small,
|
||||
.text = COMPOUND_STRING("SMALL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MOMENTUM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DIFFERENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Different,
|
||||
.text = COMPOUND_STRING("DIFFERENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MUCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TIRED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tired,
|
||||
.text = COMPOUND_STRING("TIRED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MYSTERY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SKILL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Skill,
|
||||
.text = COMPOUND_STRING("SKILL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NATURAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Top,
|
||||
.text = COMPOUND_STRING("TOP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NON_STOP)] =
|
||||
{
|
||||
.text = gEasyChatWord_NonStop,
|
||||
.text = COMPOUND_STRING("NON-STOP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOISY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PREPOSTEROUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Preposterous,
|
||||
.text = COMPOUND_STRING("PREPOSTEROUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NON_STOP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NONE)] =
|
||||
{
|
||||
.text = gEasyChatWord_None,
|
||||
.text = COMPOUND_STRING("NONE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NONE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOTHING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nothing,
|
||||
.text = COMPOUND_STRING("NOTHING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOTHING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NATURAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Natural,
|
||||
.text = COMPOUND_STRING("NATURAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OVERWHELMING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BECOMES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Becomes,
|
||||
.text = COMPOUND_STRING("BECOMES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PERFECTION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LUKEWARM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lukewarm,
|
||||
.text = COMPOUND_STRING("LUKEWARM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PREPOSTEROUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FAST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fast,
|
||||
.text = COMPOUND_STRING("FAST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PRETTY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Low,
|
||||
.text = COMPOUND_STRING("LOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_REFRESHING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AWFUL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Awful,
|
||||
.text = COMPOUND_STRING("AWFUL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SECRET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALONE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Alone,
|
||||
.text = COMPOUND_STRING("ALONE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEEMS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BORED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bored,
|
||||
.text = COMPOUND_STRING("BORED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SIMPLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SECRET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Secret,
|
||||
.text = COMPOUND_STRING("SECRET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SKILL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MYSTERY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mystery,
|
||||
.text = COMPOUND_STRING("MYSTERY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SKILLED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LACKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lacks,
|
||||
.text = COMPOUND_STRING("LACKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMALL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Best,
|
||||
.text = COMPOUND_STRING("BEST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TASTY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOUSY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lousy,
|
||||
.text = COMPOUND_STRING("LOUSY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TIRED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MISTAKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mistake,
|
||||
.text = COMPOUND_STRING("MISTAKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOGETHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KIND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Kind,
|
||||
.text = COMPOUND_STRING("KIND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WELL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Well,
|
||||
.text = COMPOUND_STRING("WELL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNAVOIDABLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEAKENED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Weakened,
|
||||
.text = COMPOUND_STRING("WEAKENED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UPSIDE_DOWN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SIMPLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Simple,
|
||||
.text = COMPOUND_STRING("SIMPLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEAKENED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEEMS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Seems,
|
||||
.text = COMPOUND_STRING("SEEMS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEIRD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BADLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Badly,
|
||||
.text = COMPOUND_STRING("BADLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WELL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,485 +1,415 @@
|
|||
const u8 gEasyChatWord_Will[] = _("WILL");
|
||||
const u8 gEasyChatWord_WillBeHere[] = _("WILL BE HERE");
|
||||
const u8 gEasyChatWord_Or[] = _("OR");
|
||||
const u8 gEasyChatWord_Times[] = _("TIMES");
|
||||
const u8 gEasyChatWord_Wonder[] = _("WONDER");
|
||||
const u8 gEasyChatWord_IsItQues[] = _("IS IT?");
|
||||
const u8 gEasyChatWord_Be[] = _("BE");
|
||||
const u8 gEasyChatWord_Gimme[] = _("GIMME");
|
||||
const u8 gEasyChatWord_Could[] = _("COULD");
|
||||
const u8 gEasyChatWord_LikelyTo[] = _("LIKELY TO");
|
||||
const u8 gEasyChatWord_Would[] = _("WOULD");
|
||||
const u8 gEasyChatWord_Is[] = _("IS");
|
||||
const u8 gEasyChatWord_IsntItQues[] = _("ISN'T IT?");
|
||||
const u8 gEasyChatWord_Lets[] = _("LET'S");
|
||||
const u8 gEasyChatWord_Other[] = _("OTHER");
|
||||
const u8 gEasyChatWord_Are[] = _("ARE");
|
||||
const u8 gEasyChatWord_Was[] = _("WAS");
|
||||
const u8 gEasyChatWord_Were[] = _("WERE");
|
||||
const u8 gEasyChatWord_Those[] = _("THOSE");
|
||||
const u8 gEasyChatWord_Isnt[] = _("ISN'T");
|
||||
const u8 gEasyChatWord_Wont[] = _("WON'T");
|
||||
const u8 gEasyChatWord_Cant[] = _("CAN'T");
|
||||
const u8 gEasyChatWord_Can[] = _("CAN");
|
||||
const u8 gEasyChatWord_Dont[] = _("DON'T");
|
||||
const u8 gEasyChatWord_Do[] = _("DO");
|
||||
const u8 gEasyChatWord_Does[] = _("DOES");
|
||||
const u8 gEasyChatWord_Whom[] = _("WHOM");
|
||||
const u8 gEasyChatWord_Which[] = _("WHICH");
|
||||
const u8 gEasyChatWord_Wasnt[] = _("WASN'T");
|
||||
const u8 gEasyChatWord_Werent[] = _("WEREN'T");
|
||||
const u8 gEasyChatWord_Have[] = _("HAVE");
|
||||
const u8 gEasyChatWord_Havent[] = _("HAVEN'T");
|
||||
const u8 gEasyChatWord_A[] = _("A");
|
||||
const u8 gEasyChatWord_An[] = _("AN");
|
||||
const u8 gEasyChatWord_Not[] = _("NOT");
|
||||
const u8 gEasyChatWord_There[] = _("THERE");
|
||||
const u8 gEasyChatWord_OkQues[] = _("OK?");
|
||||
const u8 gEasyChatWord_So[] = _("SO");
|
||||
const u8 gEasyChatWord_Maybe[] = _("MAYBE");
|
||||
const u8 gEasyChatWord_About[] = _("ABOUT");
|
||||
const u8 gEasyChatWord_Over[] = _("OVER");
|
||||
const u8 gEasyChatWord_It[] = _("IT");
|
||||
const u8 gEasyChatWord_All[] = _("ALL");
|
||||
const u8 gEasyChatWord_For[] = _("FOR");
|
||||
const u8 gEasyChatWord_On[] = _("ON");
|
||||
const u8 gEasyChatWord_Off[] = _("OFF");
|
||||
const u8 gEasyChatWord_As[] = _("AS");
|
||||
const u8 gEasyChatWord_To[] = _("TO");
|
||||
const u8 gEasyChatWord_With[] = _("WITH");
|
||||
const u8 gEasyChatWord_Better[] = _("BETTER");
|
||||
const u8 gEasyChatWord_Ever[] = _("EVER");
|
||||
const u8 gEasyChatWord_Since[] = _("SINCE");
|
||||
const u8 gEasyChatWord_Of[] = _("OF");
|
||||
const u8 gEasyChatWord_BelongsTo[] = _("BELONGS TO");
|
||||
const u8 gEasyChatWord_At[] = _("AT");
|
||||
const u8 gEasyChatWord_In[] = _("IN");
|
||||
const u8 gEasyChatWord_Out[] = _("OUT");
|
||||
const u8 gEasyChatWord_Too[] = _("TOO");
|
||||
const u8 gEasyChatWord_Like[] = _("LIKE");
|
||||
const u8 gEasyChatWord_Did[] = _("DID");
|
||||
const u8 gEasyChatWord_Didnt[] = _("DIDN'T");
|
||||
const u8 gEasyChatWord_Doesnt[] = _("DOESN'T");
|
||||
const u8 gEasyChatWord_Without[] = _("WITHOUT");
|
||||
const u8 gEasyChatWord_After[] = _("AFTER");
|
||||
const u8 gEasyChatWord_Before[] = _("BEFORE");
|
||||
const u8 gEasyChatWord_While[] = _("WHILE");
|
||||
const u8 gEasyChatWord_Than[] = _("THAN");
|
||||
const u8 gEasyChatWord_Once[] = _("ONCE");
|
||||
const u8 gEasyChatWord_Anywhere[] = _("ANYWHERE");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Endings[] = {
|
||||
[EC_INDEX(EC_WORD_WILL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Will,
|
||||
.text = COMPOUND_STRING("WILL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_A),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WILL_BE_HERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_WillBeHere,
|
||||
.text = COMPOUND_STRING("WILL BE HERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ABOUT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Or,
|
||||
.text = COMPOUND_STRING("OR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AFTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TIMES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Times,
|
||||
.text = COMPOUND_STRING("TIMES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WONDER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wonder,
|
||||
.text = COMPOUND_STRING("WONDER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IS_IT_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_IsItQues,
|
||||
.text = COMPOUND_STRING("IS IT?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANYWHERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Be,
|
||||
.text = COMPOUND_STRING("BE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ARE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIMME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gimme,
|
||||
.text = COMPOUND_STRING("GIMME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COULD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Could,
|
||||
.text = COMPOUND_STRING("COULD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIKELY_TO)] =
|
||||
{
|
||||
.text = gEasyChatWord_LikelyTo,
|
||||
.text = COMPOUND_STRING("LIKELY TO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WOULD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Would,
|
||||
.text = COMPOUND_STRING("WOULD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEFORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Is,
|
||||
.text = COMPOUND_STRING("IS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BELONGS_TO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ISN_T_IT_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_IsntItQues,
|
||||
.text = COMPOUND_STRING("ISN'T IT?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BETTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LET_S)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lets,
|
||||
.text = COMPOUND_STRING("LET'S"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OTHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Other,
|
||||
.text = COMPOUND_STRING("OTHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ARE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Are,
|
||||
.text = COMPOUND_STRING("ARE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COULD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Was,
|
||||
.text = COMPOUND_STRING("WAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DID),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Were,
|
||||
.text = COMPOUND_STRING("WERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DIDN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Those,
|
||||
.text = COMPOUND_STRING("THOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ISN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Isnt,
|
||||
.text = COMPOUND_STRING("ISN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DOES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WON_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wont,
|
||||
.text = COMPOUND_STRING("WON'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DOESN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cant,
|
||||
.text = COMPOUND_STRING("CAN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DON_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Can,
|
||||
.text = COMPOUND_STRING("CAN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DON_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dont,
|
||||
.text = COMPOUND_STRING("DON'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Do,
|
||||
.text = COMPOUND_STRING("DO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIMME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DOES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Does,
|
||||
.text = COMPOUND_STRING("DOES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHOM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Whom,
|
||||
.text = COMPOUND_STRING("WHOM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAVEN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHICH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Which,
|
||||
.text = COMPOUND_STRING("WHICH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WASN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wasnt,
|
||||
.text = COMPOUND_STRING("WASN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEREN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Werent,
|
||||
.text = COMPOUND_STRING("WEREN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IS_IT_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Have,
|
||||
.text = COMPOUND_STRING("HAVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ISN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAVEN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Havent,
|
||||
.text = COMPOUND_STRING("HAVEN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ISN_T_IT_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_A)] =
|
||||
{
|
||||
.text = gEasyChatWord_A,
|
||||
.text = COMPOUND_STRING("A"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AN)] =
|
||||
{
|
||||
.text = gEasyChatWord_An,
|
||||
.text = COMPOUND_STRING("AN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LET_S),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Not,
|
||||
.text = COMPOUND_STRING("NOT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_There,
|
||||
.text = COMPOUND_STRING("THERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIKELY_TO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OK_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_OkQues,
|
||||
.text = COMPOUND_STRING("OK?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAYBE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SO)] =
|
||||
{
|
||||
.text = gEasyChatWord_So,
|
||||
.text = COMPOUND_STRING("SO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAYBE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Maybe,
|
||||
.text = COMPOUND_STRING("MAYBE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ABOUT)] =
|
||||
{
|
||||
.text = gEasyChatWord_About,
|
||||
.text = COMPOUND_STRING("ABOUT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OFF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Over,
|
||||
.text = COMPOUND_STRING("OVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OK_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IT)] =
|
||||
{
|
||||
.text = gEasyChatWord_It,
|
||||
.text = COMPOUND_STRING("IT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALL)] =
|
||||
{
|
||||
.text = gEasyChatWord_All,
|
||||
.text = COMPOUND_STRING("ALL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ONCE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_For,
|
||||
.text = COMPOUND_STRING("FOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ON)] =
|
||||
{
|
||||
.text = gEasyChatWord_On,
|
||||
.text = COMPOUND_STRING("ON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OTHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OFF)] =
|
||||
{
|
||||
.text = gEasyChatWord_Off,
|
||||
.text = COMPOUND_STRING("OFF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OUT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AS)] =
|
||||
{
|
||||
.text = gEasyChatWord_As,
|
||||
.text = COMPOUND_STRING("AS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO)] =
|
||||
{
|
||||
.text = gEasyChatWord_To,
|
||||
.text = COMPOUND_STRING("TO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SINCE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WITH)] =
|
||||
{
|
||||
.text = gEasyChatWord_With,
|
||||
.text = COMPOUND_STRING("WITH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BETTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Better,
|
||||
.text = COMPOUND_STRING("BETTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THAN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ever,
|
||||
.text = COMPOUND_STRING("EVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SINCE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Since,
|
||||
.text = COMPOUND_STRING("SINCE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OF)] =
|
||||
{
|
||||
.text = gEasyChatWord_Of,
|
||||
.text = COMPOUND_STRING("OF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TIMES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BELONGS_TO)] =
|
||||
{
|
||||
.text = gEasyChatWord_BelongsTo,
|
||||
.text = COMPOUND_STRING("BELONGS TO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AT)] =
|
||||
{
|
||||
.text = gEasyChatWord_At,
|
||||
.text = COMPOUND_STRING("AT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IN)] =
|
||||
{
|
||||
.text = gEasyChatWord_In,
|
||||
.text = COMPOUND_STRING("IN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OUT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Out,
|
||||
.text = COMPOUND_STRING("OUT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WASN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Too,
|
||||
.text = COMPOUND_STRING("TOO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Like,
|
||||
.text = COMPOUND_STRING("LIKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEREN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DID)] =
|
||||
{
|
||||
.text = gEasyChatWord_Did,
|
||||
.text = COMPOUND_STRING("DID"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHICH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DIDN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Didnt,
|
||||
.text = COMPOUND_STRING("DIDN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHILE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DOESN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Doesnt,
|
||||
.text = COMPOUND_STRING("DOESN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHOM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WITHOUT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Without,
|
||||
.text = COMPOUND_STRING("WITHOUT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WILL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AFTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_After,
|
||||
.text = COMPOUND_STRING("AFTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WILL_BE_HERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEFORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Before,
|
||||
.text = COMPOUND_STRING("BEFORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WITH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHILE)] =
|
||||
{
|
||||
.text = gEasyChatWord_While,
|
||||
.text = COMPOUND_STRING("WHILE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WITHOUT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THAN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Than,
|
||||
.text = COMPOUND_STRING("THAN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WON_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ONCE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Once,
|
||||
.text = COMPOUND_STRING("ONCE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WONDER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANYWHERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Anywhere,
|
||||
.text = COMPOUND_STRING("ANYWHERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WOULD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -31,175 +31,175 @@ const u8 gEasyChatWord_Frontier[] = _("FRONTIER");
|
|||
const struct EasyChatWordInfo gEasyChatGroup_Events[] = {
|
||||
[EC_INDEX(EC_WORD_APPEAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Appeal,
|
||||
.text = COMPOUND_STRING("APPEAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APPEAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVENTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Events,
|
||||
.text = COMPOUND_STRING("EVENTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BATTLE_ROOM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STAY_AT_HOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_StayAtHome,
|
||||
.text = COMPOUND_STRING("STAY-AT-HOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BATTLE_TOWER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BERRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Berry,
|
||||
.text = COMPOUND_STRING("BERRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BERRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CONTEST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Contest,
|
||||
.text = COMPOUND_STRING("CONTEST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BLEND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mc,
|
||||
.text = COMPOUND_STRING("MC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CONTEST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_JUDGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Judge,
|
||||
.text = COMPOUND_STRING("JUDGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CRUSH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SUPER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Super,
|
||||
.text = COMPOUND_STRING("SUPER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DIRECT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STAGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Stage,
|
||||
.text = COMPOUND_STRING("STAGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVENTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HALL_OF_FAME)] =
|
||||
{
|
||||
.text = gEasyChatWord_HallOfFame,
|
||||
.text = COMPOUND_STRING("HALL OF FAME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVOLUTION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVOLUTION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Evolution,
|
||||
.text = COMPOUND_STRING("EVOLUTION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FRONTIER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HYPER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hyper,
|
||||
.text = COMPOUND_STRING("HYPER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HALL_OF_FAME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BATTLE_TOWER)] =
|
||||
{
|
||||
.text = gEasyChatWord_BattleTower,
|
||||
.text = COMPOUND_STRING("BATTLE TOWER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIDDEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEADERS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Leaders,
|
||||
.text = COMPOUND_STRING("LEADERS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HYPER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BATTLE_ROOM)] =
|
||||
{
|
||||
.text = gEasyChatWord_BattleRoom,
|
||||
.text = COMPOUND_STRING("BATTLE ROOM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_JUDGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIDDEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hidden,
|
||||
.text = COMPOUND_STRING("HIDDEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEADERS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SECRET_BASE)] =
|
||||
{
|
||||
.text = gEasyChatWord_SecretBase,
|
||||
.text = COMPOUND_STRING("SECRET BASE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MASTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BLEND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Blend,
|
||||
.text = COMPOUND_STRING("BLEND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POKEBLOCK)] =
|
||||
{
|
||||
.text = gEasyChatWord_POKEBLOCK,
|
||||
.text = COMPOUND_STRING("{POKEBLOCK}"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POKEBLOCK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MASTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Master,
|
||||
.text = COMPOUND_STRING("MASTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RANK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RANK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rank,
|
||||
.text = COMPOUND_STRING("RANK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RIBBON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RIBBON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ribbon,
|
||||
.text = COMPOUND_STRING("RIBBON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROOM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CRUSH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Crush,
|
||||
.text = COMPOUND_STRING("CRUSH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SECRET_BASE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DIRECT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Direct,
|
||||
.text = COMPOUND_STRING("DIRECT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STAGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOWER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tower,
|
||||
.text = COMPOUND_STRING("TOWER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STAY_AT_HOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Union,
|
||||
.text = COMPOUND_STRING("UNION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SUPER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROOM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Room,
|
||||
.text = COMPOUND_STRING("ROOM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOWER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WIRELESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wireless,
|
||||
.text = COMPOUND_STRING("WIRELESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FRONTIER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Frontier,
|
||||
.text = COMPOUND_STRING("FRONTIER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WIRELESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -71,415 +71,415 @@ const u8 gEasyChatWord_Understands[] = _("UNDERSTANDS");
|
|||
const struct EasyChatWordInfo gEasyChatGroup_Feelings[] = {
|
||||
[EC_INDEX(EC_WORD_MEET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Meet,
|
||||
.text = COMPOUND_STRING("MEET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ADORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Play,
|
||||
.text = COMPOUND_STRING("PLAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALL_RIGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HURRIED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hurried,
|
||||
.text = COMPOUND_STRING("HURRIED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANGER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Goes,
|
||||
.text = COMPOUND_STRING("GOES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANGRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIDDY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Giddy,
|
||||
.text = COMPOUND_STRING("GIDDY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BAD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAPPY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Happy,
|
||||
.text = COMPOUND_STRING("HAPPY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAPPINESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Happiness,
|
||||
.text = COMPOUND_STRING("HAPPINESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BORING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCITE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Excite,
|
||||
.text = COMPOUND_STRING("EXCITE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CARE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IMPORTANT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Important,
|
||||
.text = COMPOUND_STRING("IMPORTANT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CARES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FUNNY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Funny,
|
||||
.text = COMPOUND_STRING("FUNNY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DANGER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Got,
|
||||
.text = COMPOUND_STRING("GOT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DARN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GO_HOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_GoHome,
|
||||
.text = COMPOUND_STRING("GO HOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DEFEATED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISAPPOINTED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Disappointed,
|
||||
.text = COMPOUND_STRING("DISAPPOINTED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISAPPOINT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISAPPOINTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Disappoints,
|
||||
.text = COMPOUND_STRING("DISAPPOINTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISAPPOINTED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sad,
|
||||
.text = COMPOUND_STRING("SAD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISAPPOINTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Try,
|
||||
.text = COMPOUND_STRING("TRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISASTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRIES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tries,
|
||||
.text = COMPOUND_STRING("TRIES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISLIKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEARS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hears,
|
||||
.text = COMPOUND_STRING("HEARS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DISLIKES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THINK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Think,
|
||||
.text = COMPOUND_STRING("THINK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DONE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hear,
|
||||
.text = COMPOUND_STRING("HEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DOWNCAST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WANTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wants,
|
||||
.text = COMPOUND_STRING("WANTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DRINK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MISHEARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Misheard,
|
||||
.text = COMPOUND_STRING("MISHEARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISLIKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dislike,
|
||||
.text = COMPOUND_STRING("DISLIKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ENJOY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANGRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Angry,
|
||||
.text = COMPOUND_STRING("ANGRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ENJOYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANGER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Anger,
|
||||
.text = COMPOUND_STRING("ANGER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCITE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SCARY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Scary,
|
||||
.text = COMPOUND_STRING("SCARY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LONESOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lonesome,
|
||||
.text = COMPOUND_STRING("LONESOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FUNNY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISAPPOINT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Disappoint,
|
||||
.text = COMPOUND_STRING("DISAPPOINT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GETS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_JOY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Joy,
|
||||
.text = COMPOUND_STRING("JOY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIDDY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GETS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gets,
|
||||
.text = COMPOUND_STRING("GETS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GO_HOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Never,
|
||||
.text = COMPOUND_STRING("NEVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DARN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Darn,
|
||||
.text = COMPOUND_STRING("DARN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DOWNCAST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Downcast,
|
||||
.text = COMPOUND_STRING("DOWNCAST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GREAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INCREDIBLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Incredible,
|
||||
.text = COMPOUND_STRING("INCREDIBLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAPPINESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIKES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Likes,
|
||||
.text = COMPOUND_STRING("LIKES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAPPY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISLIKES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dislikes,
|
||||
.text = COMPOUND_STRING("DISLIKES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BORING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Boring,
|
||||
.text = COMPOUND_STRING("BORING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CARE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Care,
|
||||
.text = COMPOUND_STRING("CARE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEARS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CARES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cares,
|
||||
.text = COMPOUND_STRING("CARES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HURRIED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALL_RIGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_AllRight,
|
||||
.text = COMPOUND_STRING("ALL RIGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IMPORTANT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ADORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Adore,
|
||||
.text = COMPOUND_STRING("ADORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INCREDIBLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DISASTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Disaster,
|
||||
.text = COMPOUND_STRING("DISASTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_JOY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ENJOY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Enjoy,
|
||||
.text = COMPOUND_STRING("ENJOY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LACKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ENJOYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Enjoys,
|
||||
.text = COMPOUND_STRING("ENJOYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIKES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Eat,
|
||||
.text = COMPOUND_STRING("EAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LONESOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LACKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lacking,
|
||||
.text = COMPOUND_STRING("LACKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MEET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BAD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bad,
|
||||
.text = COMPOUND_STRING("BAD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MISHEARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hard,
|
||||
.text = COMPOUND_STRING("HARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEGATIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TERRIBLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Terrible,
|
||||
.text = COMPOUND_STRING("TERRIBLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHOULD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Should,
|
||||
.text = COMPOUND_STRING("SHOULD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NICE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NICE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nice,
|
||||
.text = COMPOUND_STRING("NICE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DRINK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Drink,
|
||||
.text = COMPOUND_STRING("DRINK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_QUESTION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SURPRISE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Surprise,
|
||||
.text = COMPOUND_STRING("SURPRISE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RARE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fear,
|
||||
.text = COMPOUND_STRING("FEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROMANTIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WANT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Want,
|
||||
.text = COMPOUND_STRING("WANT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wait,
|
||||
.text = COMPOUND_STRING("WAIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SATISFIED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SATISFIED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Satisfied,
|
||||
.text = COMPOUND_STRING("SATISFIED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SCARY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEE)] =
|
||||
{
|
||||
.text = gEasyChatWord_See,
|
||||
.text = COMPOUND_STRING("SEE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RARE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rare,
|
||||
.text = COMPOUND_STRING("RARE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHOULD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEGATIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Negative,
|
||||
.text = COMPOUND_STRING("NEGATIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SURPRISE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DONE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Done,
|
||||
.text = COMPOUND_STRING("DONE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TERRIBLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DANGER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Danger,
|
||||
.text = COMPOUND_STRING("DANGER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THINK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DEFEATED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Defeated,
|
||||
.text = COMPOUND_STRING("DEFEATED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRIES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Beat,
|
||||
.text = COMPOUND_STRING("BEAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GREAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Great,
|
||||
.text = COMPOUND_STRING("GREAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNDERSTAND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROMANTIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Romantic,
|
||||
.text = COMPOUND_STRING("ROMANTIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNDERSTANDS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_QUESTION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Question,
|
||||
.text = COMPOUND_STRING("QUESTION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNDERSTAND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Understand,
|
||||
.text = COMPOUND_STRING("UNDERSTAND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WANT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNDERSTANDS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Understands,
|
||||
.text = COMPOUND_STRING("UNDERSTANDS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WANTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,296 +1,253 @@
|
|||
const u8 gEasyChatWord_Thanks[] = _("THANKS");
|
||||
const u8 gEasyChatWord_Yes[] = _("YES");
|
||||
const u8 gEasyChatWord_HereGoes[] = _("HERE GOES");
|
||||
const u8 gEasyChatWord_HereICome[] = _("HERE I COME");
|
||||
const u8 gEasyChatWord_HereItIs[] = _("HERE IT IS");
|
||||
const u8 gEasyChatWord_Yeah[] = _("YEAH");
|
||||
const u8 gEasyChatWord_Welcome[] = _("WELCOME");
|
||||
const u8 gEasyChatWord_Oi[] = _("OI");
|
||||
const u8 gEasyChatWord_HowDo[] = _("HOW DO");
|
||||
const u8 gEasyChatWord_Congrats[] = _("CONGRATS");
|
||||
const u8 gEasyChatWord_GiveMe[] = _("GIVE ME");
|
||||
const u8 gEasyChatWord_Sorry[] = _("SORRY");
|
||||
const u8 gEasyChatWord_Apologize[] = _("APOLOGIZE");
|
||||
const u8 gEasyChatWord_Forgive[] = _("FORGIVE");
|
||||
const u8 gEasyChatWord_HeyThere[] = _("HEY, THERE");
|
||||
const u8 gEasyChatWord_Hello[] = _("HELLO");
|
||||
const u8 gEasyChatWord_GoodBye[] = _("GOOD-BYE");
|
||||
const u8 gEasyChatWord_ThankYou[] = _("THANK YOU");
|
||||
const u8 gEasyChatWord_IveArrived[] = _("I'VE ARRIVED");
|
||||
const u8 gEasyChatWord_Pardon[] = _("PARDON");
|
||||
const u8 gEasyChatWord_Excuse[] = _("EXCUSE");
|
||||
const u8 gEasyChatWord_SeeYa[] = _("SEE YA");
|
||||
const u8 gEasyChatWord_ExcuseMe[] = _("EXCUSE ME");
|
||||
const u8 gEasyChatWord_WellThen[] = _("WELL, THEN");
|
||||
const u8 gEasyChatWord_GoAhead[] = _("GO AHEAD");
|
||||
const u8 gEasyChatWord_Appreciate[] = _("APPRECIATE");
|
||||
const u8 gEasyChatWord_HeyQues[] = _("HEY?");
|
||||
const u8 gEasyChatWord_WhatsUpQues[] = _("WHAT'S UP?");
|
||||
const u8 gEasyChatWord_HuhQues[] = _("HUH?");
|
||||
const u8 gEasyChatWord_No[] = _("NO");
|
||||
const u8 gEasyChatWord_Hi[] = _("HI");
|
||||
const u8 gEasyChatWord_YeahYeah[] = _("YEAH, YEAH");
|
||||
const u8 gEasyChatWord_ByeBye[] = _("BYE-BYE");
|
||||
const u8 gEasyChatWord_MeetYou[] = _("MEET YOU");
|
||||
const u8 gEasyChatWord_Hey[] = _("HEY");
|
||||
const u8 gEasyChatWord_Smell[] = _("SMELL");
|
||||
const u8 gEasyChatWord_Listening[] = _("LISTENING");
|
||||
const u8 gEasyChatWord_HooHah[] = _("HOO-HAH");
|
||||
const u8 gEasyChatWord_Yahoo[] = _("YAHOO");
|
||||
const u8 gEasyChatWord_Yo[] = _("YO");
|
||||
const u8 gEasyChatWord_ComeOver[] = _("COME OVER");
|
||||
const u8 gEasyChatWord_CountOn[] = _("COUNT ON");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Greetings[] = {
|
||||
[EC_INDEX(EC_WORD_THANKS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thanks,
|
||||
.text = COMPOUND_STRING("THANKS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APOLOGIZE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yes,
|
||||
.text = COMPOUND_STRING("YES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_APPRECIATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERE_GOES)] =
|
||||
{
|
||||
.text = gEasyChatWord_HereGoes,
|
||||
.text = COMPOUND_STRING("HERE GOES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BYE_BYE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERE_I_COME)] =
|
||||
{
|
||||
.text = gEasyChatWord_HereICome,
|
||||
.text = COMPOUND_STRING("HERE I COME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COME_OVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERE_IT_IS)] =
|
||||
{
|
||||
.text = gEasyChatWord_HereItIs,
|
||||
.text = COMPOUND_STRING("HERE IT IS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CONGRATS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YEAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yeah,
|
||||
.text = COMPOUND_STRING("YEAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COUNT_ON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WELCOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Welcome,
|
||||
.text = COMPOUND_STRING("WELCOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCUSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OI)] =
|
||||
{
|
||||
.text = gEasyChatWord_Oi,
|
||||
.text = COMPOUND_STRING("OI"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCUSE_ME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOW_DO)] =
|
||||
{
|
||||
.text = gEasyChatWord_HowDo,
|
||||
.text = COMPOUND_STRING("HOW DO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FORGIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CONGRATS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Congrats,
|
||||
.text = COMPOUND_STRING("CONGRATS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIVE_ME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIVE_ME)] =
|
||||
{
|
||||
.text = gEasyChatWord_GiveMe,
|
||||
.text = COMPOUND_STRING("GIVE ME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GO_AHEAD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SORRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sorry,
|
||||
.text = COMPOUND_STRING("SORRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOOD_BYE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_APOLOGIZE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Apologize,
|
||||
.text = COMPOUND_STRING("APOLOGIZE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HELLO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FORGIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Forgive,
|
||||
.text = COMPOUND_STRING("FORGIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERE_GOES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEY_THERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_HeyThere,
|
||||
.text = COMPOUND_STRING("HEY, THERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERE_I_COME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HELLO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hello,
|
||||
.text = COMPOUND_STRING("HELLO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERE_IT_IS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOOD_BYE)] =
|
||||
{
|
||||
.text = gEasyChatWord_GoodBye,
|
||||
.text = COMPOUND_STRING("GOOD-BYE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THANK_YOU)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThankYou,
|
||||
.text = COMPOUND_STRING("THANK YOU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEY_THERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_I_VE_ARRIVED)] =
|
||||
{
|
||||
.text = gEasyChatWord_IveArrived,
|
||||
.text = COMPOUND_STRING("I'VE ARRIVED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEY_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PARDON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pardon,
|
||||
.text = COMPOUND_STRING("PARDON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HI),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCUSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Excuse,
|
||||
.text = COMPOUND_STRING("EXCUSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOO_HAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SEE_YA)] =
|
||||
{
|
||||
.text = gEasyChatWord_SeeYa,
|
||||
.text = COMPOUND_STRING("SEE YA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOW_DO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCUSE_ME)] =
|
||||
{
|
||||
.text = gEasyChatWord_ExcuseMe,
|
||||
.text = COMPOUND_STRING("EXCUSE ME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HUH_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WELL_THEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_WellThen,
|
||||
.text = COMPOUND_STRING("WELL, THEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I_VE_ARRIVED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GO_AHEAD)] =
|
||||
{
|
||||
.text = gEasyChatWord_GoAhead,
|
||||
.text = COMPOUND_STRING("GO AHEAD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LISTENING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_APPRECIATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Appreciate,
|
||||
.text = COMPOUND_STRING("APPRECIATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MEET_YOU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEY_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_HeyQues,
|
||||
.text = COMPOUND_STRING("HEY?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHAT_S_UP_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_WhatsUpQues,
|
||||
.text = COMPOUND_STRING("WHAT'S UP?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OI),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HUH_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_HuhQues,
|
||||
.text = COMPOUND_STRING("HUH?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PARDON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NO)] =
|
||||
{
|
||||
.text = gEasyChatWord_No,
|
||||
.text = COMPOUND_STRING("NO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SEE_YA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HI)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hi,
|
||||
.text = COMPOUND_STRING("HI"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMELL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YEAH_YEAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_YeahYeah,
|
||||
.text = COMPOUND_STRING("YEAH, YEAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SORRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BYE_BYE)] =
|
||||
{
|
||||
.text = gEasyChatWord_ByeBye,
|
||||
.text = COMPOUND_STRING("BYE-BYE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THANK_YOU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MEET_YOU)] =
|
||||
{
|
||||
.text = gEasyChatWord_MeetYou,
|
||||
.text = COMPOUND_STRING("MEET YOU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THANKS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hey,
|
||||
.text = COMPOUND_STRING("HEY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WELCOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMELL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smell,
|
||||
.text = COMPOUND_STRING("SMELL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WELL_THEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LISTENING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Listening,
|
||||
.text = COMPOUND_STRING("LISTENING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHAT_S_UP_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOO_HAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_HooHah,
|
||||
.text = COMPOUND_STRING("HOO-HAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YAHOO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YAHOO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yahoo,
|
||||
.text = COMPOUND_STRING("YAHOO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YEAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yo,
|
||||
.text = COMPOUND_STRING("YO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YEAH_YEAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COME_OVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_ComeOver,
|
||||
.text = COMPOUND_STRING("COME OVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COUNT_ON)] =
|
||||
{
|
||||
.text = gEasyChatWord_CountOn,
|
||||
.text = COMPOUND_STRING("COUNT ON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,380 +1,325 @@
|
|||
const u8 gEasyChatWord_Idol[] = _("IDOL");
|
||||
const u8 gEasyChatWord_Anime[] = _("ANIME");
|
||||
const u8 gEasyChatWord_Song[] = _("SONG");
|
||||
const u8 gEasyChatWord_Movie[] = _("MOVIE");
|
||||
const u8 gEasyChatWord_Sweets[] = _("SWEETS");
|
||||
const u8 gEasyChatWord_Chat[] = _("CHAT");
|
||||
const u8 gEasyChatWord_ChildsPlay[] = _("CHILD'S PLAY");
|
||||
const u8 gEasyChatWord_Toys[] = _("TOYS");
|
||||
const u8 gEasyChatWord_Music[] = _("MUSIC");
|
||||
const u8 gEasyChatWord_Cards[] = _("CARDS");
|
||||
const u8 gEasyChatWord_Shopping[] = _("SHOPPING");
|
||||
const u8 gEasyChatWord_Camera[] = _("CAMERA");
|
||||
const u8 gEasyChatWord_Viewing[] = _("VIEWING");
|
||||
const u8 gEasyChatWord_Spectator[] = _("SPECTATOR");
|
||||
const u8 gEasyChatWord_Gourmet[] = _("GOURMET");
|
||||
const u8 gEasyChatWord_Game[] = _("GAME");
|
||||
const u8 gEasyChatWord_Rpg[] = _("RPG");
|
||||
const u8 gEasyChatWord_Collection[] = _("COLLECTION");
|
||||
const u8 gEasyChatWord_Complete[] = _("COMPLETE");
|
||||
const u8 gEasyChatWord_Magazine[] = _("MAGAZINE");
|
||||
const u8 gEasyChatWord_Walk[] = _("WALK");
|
||||
const u8 gEasyChatWord_Bike[] = _("BIKE");
|
||||
const u8 gEasyChatWord_Hobby[] = _("HOBBY");
|
||||
const u8 gEasyChatWord_Sports[] = _("SPORTS");
|
||||
const u8 gEasyChatWord_Software[] = _("SOFTWARE");
|
||||
const u8 gEasyChatWord_Songs[] = _("SONGS");
|
||||
const u8 gEasyChatWord_Diet[] = _("DIET");
|
||||
const u8 gEasyChatWord_Treasure[] = _("TREASURE");
|
||||
const u8 gEasyChatWord_Travel[] = _("TRAVEL");
|
||||
const u8 gEasyChatWord_Dance[] = _("DANCE");
|
||||
const u8 gEasyChatWord_Channel[] = _("CHANNEL");
|
||||
const u8 gEasyChatWord_Making[] = _("MAKING");
|
||||
const u8 gEasyChatWord_Fishing[] = _("FISHING");
|
||||
const u8 gEasyChatWord_Date[] = _("DATE");
|
||||
const u8 gEasyChatWord_Design[] = _("DESIGN");
|
||||
const u8 gEasyChatWord_Locomotive[] = _("LOCOMOTIVE");
|
||||
const u8 gEasyChatWord_PlushDoll[] = _("PLUSH DOLL");
|
||||
const u8 gEasyChatWord_Pc[] = _("PC");
|
||||
const u8 gEasyChatWord_Flowers[] = _("FLOWERS");
|
||||
const u8 gEasyChatWord_Hero[] = _("HERO");
|
||||
const u8 gEasyChatWord_Nap[] = _("NAP");
|
||||
const u8 gEasyChatWord_Heroine[] = _("HEROINE");
|
||||
const u8 gEasyChatWord_Fashion[] = _("FASHION");
|
||||
const u8 gEasyChatWord_Adventure[] = _("ADVENTURE");
|
||||
const u8 gEasyChatWord_Board[] = _("BOARD");
|
||||
const u8 gEasyChatWord_Ball[] = _("BALL");
|
||||
const u8 gEasyChatWord_Book[] = _("BOOK");
|
||||
const u8 gEasyChatWord_Festival[] = _("FESTIVAL");
|
||||
const u8 gEasyChatWord_Comics[] = _("COMICS");
|
||||
const u8 gEasyChatWord_Holiday[] = _("HOLIDAY");
|
||||
const u8 gEasyChatWord_Plans[] = _("PLANS");
|
||||
const u8 gEasyChatWord_Trendy[] = _("TRENDY");
|
||||
const u8 gEasyChatWord_Vacation[] = _("VACATION");
|
||||
const u8 gEasyChatWord_Look[] = _("LOOK");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Hobbies[] = {
|
||||
[EC_INDEX(EC_WORD_IDOL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Idol,
|
||||
.text = COMPOUND_STRING("IDOL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ADVENTURE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANIME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Anime,
|
||||
.text = COMPOUND_STRING("ANIME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANIME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SONG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Song,
|
||||
.text = COMPOUND_STRING("SONG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BALL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MOVIE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Movie,
|
||||
.text = COMPOUND_STRING("MOVIE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BIKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SWEETS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sweets,
|
||||
.text = COMPOUND_STRING("SWEETS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BOARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Chat,
|
||||
.text = COMPOUND_STRING("CHAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BOOK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHILD_S_PLAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_ChildsPlay,
|
||||
.text = COMPOUND_STRING("CHILD'S PLAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CAMERA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Toys,
|
||||
.text = COMPOUND_STRING("TOYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CARDS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MUSIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Music,
|
||||
.text = COMPOUND_STRING("MUSIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHANNEL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CARDS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cards,
|
||||
.text = COMPOUND_STRING("CARDS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHOPPING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shopping,
|
||||
.text = COMPOUND_STRING("SHOPPING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHILD_S_PLAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CAMERA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Camera,
|
||||
.text = COMPOUND_STRING("CAMERA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COLLECTION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VIEWING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Viewing,
|
||||
.text = COMPOUND_STRING("VIEWING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COMICS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPECTATOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Spectator,
|
||||
.text = COMPOUND_STRING("SPECTATOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COMPLETE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOURMET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gourmet,
|
||||
.text = COMPOUND_STRING("GOURMET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DANCE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GAME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Game,
|
||||
.text = COMPOUND_STRING("GAME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RPG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rpg,
|
||||
.text = COMPOUND_STRING("RPG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DESIGN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COLLECTION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Collection,
|
||||
.text = COMPOUND_STRING("COLLECTION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DIET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COMPLETE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Complete,
|
||||
.text = COMPOUND_STRING("COMPLETE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FASHION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAGAZINE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Magazine,
|
||||
.text = COMPOUND_STRING("MAGAZINE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FESTIVAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WALK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Walk,
|
||||
.text = COMPOUND_STRING("WALK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FISHING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BIKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bike,
|
||||
.text = COMPOUND_STRING("BIKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLOWERS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOBBY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hobby,
|
||||
.text = COMPOUND_STRING("HOBBY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GAME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPORTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sports,
|
||||
.text = COMPOUND_STRING("SPORTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOURMET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOFTWARE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Software,
|
||||
.text = COMPOUND_STRING("SOFTWARE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SONGS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Songs,
|
||||
.text = COMPOUND_STRING("SONGS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEROINE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DIET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Diet,
|
||||
.text = COMPOUND_STRING("DIET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOBBY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TREASURE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Treasure,
|
||||
.text = COMPOUND_STRING("TREASURE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOLIDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRAVEL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Travel,
|
||||
.text = COMPOUND_STRING("TRAVEL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IDOL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DANCE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dance,
|
||||
.text = COMPOUND_STRING("DANCE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOCOMOTIVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHANNEL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Channel,
|
||||
.text = COMPOUND_STRING("CHANNEL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOOK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Making,
|
||||
.text = COMPOUND_STRING("MAKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAGAZINE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FISHING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fishing,
|
||||
.text = COMPOUND_STRING("FISHING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Date,
|
||||
.text = COMPOUND_STRING("DATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MOVIE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DESIGN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Design,
|
||||
.text = COMPOUND_STRING("DESIGN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MUSIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOCOMOTIVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Locomotive,
|
||||
.text = COMPOUND_STRING("LOCOMOTIVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NAP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLUSH_DOLL)] =
|
||||
{
|
||||
.text = gEasyChatWord_PlushDoll,
|
||||
.text = COMPOUND_STRING("PLUSH DOLL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pc,
|
||||
.text = COMPOUND_STRING("PC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLANS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLOWERS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Flowers,
|
||||
.text = COMPOUND_STRING("FLOWERS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLUSH_DOLL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hero,
|
||||
.text = COMPOUND_STRING("HERO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RPG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NAP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nap,
|
||||
.text = COMPOUND_STRING("NAP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHOPPING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEROINE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Heroine,
|
||||
.text = COMPOUND_STRING("HEROINE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOFTWARE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FASHION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fashion,
|
||||
.text = COMPOUND_STRING("FASHION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SONG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ADVENTURE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Adventure,
|
||||
.text = COMPOUND_STRING("ADVENTURE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SONGS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BOARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Board,
|
||||
.text = COMPOUND_STRING("BOARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPECTATOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BALL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ball,
|
||||
.text = COMPOUND_STRING("BALL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPORTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BOOK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Book,
|
||||
.text = COMPOUND_STRING("BOOK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SWEETS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FESTIVAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Festival,
|
||||
.text = COMPOUND_STRING("FESTIVAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COMICS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Comics,
|
||||
.text = COMPOUND_STRING("COMICS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRAVEL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOLIDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Holiday,
|
||||
.text = COMPOUND_STRING("HOLIDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TREASURE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLANS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Plans,
|
||||
.text = COMPOUND_STRING("PLANS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRENDY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRENDY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trendy,
|
||||
.text = COMPOUND_STRING("TRENDY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VACATION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VACATION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Vacation,
|
||||
.text = COMPOUND_STRING("VACATION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VIEWING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOOK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Look,
|
||||
.text = COMPOUND_STRING("LOOK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WALK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,317 +1,271 @@
|
|||
const u8 gEasyChatWord_Chores[] = _("CHORES");
|
||||
const u8 gEasyChatWord_Home[] = _("HOME");
|
||||
const u8 gEasyChatWord_Money[] = _("MONEY");
|
||||
const u8 gEasyChatWord_Allowance[] = _("ALLOWANCE");
|
||||
const u8 gEasyChatWord_Bath[] = _("BATH");
|
||||
const u8 gEasyChatWord_Conversation[] = _("CONVERSATION");
|
||||
const u8 gEasyChatWord_School[] = _("SCHOOL");
|
||||
const u8 gEasyChatWord_Commemorate[] = _("COMMEMORATE");
|
||||
const u8 gEasyChatWord_Habit[] = _("HABIT");
|
||||
const u8 gEasyChatWord_Group[] = _("GROUP");
|
||||
const u8 gEasyChatWord_Word[] = _("WORD");
|
||||
const u8 gEasyChatWord_Store[] = _("STORE");
|
||||
const u8 gEasyChatWord_Service[] = _("SERVICE");
|
||||
const u8 gEasyChatWord_Work[] = _("WORK");
|
||||
const u8 gEasyChatWord_System[] = _("SYSTEM");
|
||||
const u8 gEasyChatWord_Train[] = _("TRAIN");
|
||||
const u8 gEasyChatWord_Class[] = _("CLASS");
|
||||
const u8 gEasyChatWord_Lessons[] = _("LESSONS");
|
||||
const u8 gEasyChatWord_Information[] = _("INFORMATION");
|
||||
const u8 gEasyChatWord_Living[] = _("LIVING");
|
||||
const u8 gEasyChatWord_Teacher[] = _("TEACHER");
|
||||
const u8 gEasyChatWord_Tournament[] = _("TOURNAMENT");
|
||||
const u8 gEasyChatWord_Letter[] = _("LETTER");
|
||||
const u8 gEasyChatWord_Event[] = _("EVENT");
|
||||
const u8 gEasyChatWord_Digital[] = _("DIGITAL");
|
||||
const u8 gEasyChatWord_Test[] = _("TEST");
|
||||
const u8 gEasyChatWord_DeptStore[] = _("DEPT. STORE");
|
||||
const u8 gEasyChatWord_Television[] = _("TELEVISION");
|
||||
const u8 gEasyChatWord_Phone[] = _("PHONE");
|
||||
const u8 gEasyChatWord_Item[] = _("ITEM");
|
||||
const u8 gEasyChatWord_Name[] = _("NAME");
|
||||
const u8 gEasyChatWord_News[] = _("NEWS");
|
||||
const u8 gEasyChatWord_Popular[] = _("POPULAR");
|
||||
const u8 gEasyChatWord_Party[] = _("PARTY");
|
||||
const u8 gEasyChatWord_Study[] = _("STUDY");
|
||||
const u8 gEasyChatWord_Machine[] = _("MACHINE");
|
||||
const u8 gEasyChatWord_Mail[] = _("MAIL");
|
||||
const u8 gEasyChatWord_Message[] = _("MESSAGE");
|
||||
const u8 gEasyChatWord_Promise[] = _("PROMISE");
|
||||
const u8 gEasyChatWord_Dream[] = _("DREAM");
|
||||
const u8 gEasyChatWord_Kindergarten[] = _("KINDERGARTEN");
|
||||
const u8 gEasyChatWord_Life[] = _("LIFE");
|
||||
const u8 gEasyChatWord_Radio[] = _("RADIO");
|
||||
const u8 gEasyChatWord_Rental[] = _("RENTAL");
|
||||
const u8 gEasyChatWord_World[] = _("WORLD");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Lifestyle[] = {
|
||||
[EC_INDEX(EC_WORD_CHORES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Chores,
|
||||
.text = COMPOUND_STRING("CHORES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALLOWANCE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Home,
|
||||
.text = COMPOUND_STRING("HOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BATH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MONEY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Money,
|
||||
.text = COMPOUND_STRING("MONEY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHORES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALLOWANCE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Allowance,
|
||||
.text = COMPOUND_STRING("ALLOWANCE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CLASS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BATH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bath,
|
||||
.text = COMPOUND_STRING("BATH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COMMEMORATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CONVERSATION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Conversation,
|
||||
.text = COMPOUND_STRING("CONVERSATION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CONVERSATION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SCHOOL)] =
|
||||
{
|
||||
.text = gEasyChatWord_School,
|
||||
.text = COMPOUND_STRING("SCHOOL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DEPT_STORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COMMEMORATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Commemorate,
|
||||
.text = COMPOUND_STRING("COMMEMORATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DIGITAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HABIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Habit,
|
||||
.text = COMPOUND_STRING("HABIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DREAM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GROUP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Group,
|
||||
.text = COMPOUND_STRING("GROUP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Word,
|
||||
.text = COMPOUND_STRING("WORD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GROUP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Store,
|
||||
.text = COMPOUND_STRING("STORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HABIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SERVICE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Service,
|
||||
.text = COMPOUND_STRING("SERVICE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Work,
|
||||
.text = COMPOUND_STRING("WORK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INFORMATION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SYSTEM)] =
|
||||
{
|
||||
.text = gEasyChatWord_System,
|
||||
.text = COMPOUND_STRING("SYSTEM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ITEM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRAIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Train,
|
||||
.text = COMPOUND_STRING("TRAIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KINDERGARTEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CLASS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Class,
|
||||
.text = COMPOUND_STRING("CLASS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LESSONS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LESSONS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lessons,
|
||||
.text = COMPOUND_STRING("LESSONS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LETTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INFORMATION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Information,
|
||||
.text = COMPOUND_STRING("INFORMATION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIFE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIVING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Living,
|
||||
.text = COMPOUND_STRING("LIVING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIVING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TEACHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Teacher,
|
||||
.text = COMPOUND_STRING("TEACHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MACHINE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOURNAMENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tournament,
|
||||
.text = COMPOUND_STRING("TOURNAMENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAIL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LETTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Letter,
|
||||
.text = COMPOUND_STRING("LETTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MESSAGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Event,
|
||||
.text = COMPOUND_STRING("EVENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MONEY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DIGITAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Digital,
|
||||
.text = COMPOUND_STRING("DIGITAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NAME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TEST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Test,
|
||||
.text = COMPOUND_STRING("TEST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEWS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DEPT_STORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_DeptStore,
|
||||
.text = COMPOUND_STRING("DEPT. STORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PARTY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TELEVISION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Television,
|
||||
.text = COMPOUND_STRING("TELEVISION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PHONE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PHONE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Phone,
|
||||
.text = COMPOUND_STRING("PHONE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POPULAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ITEM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Item,
|
||||
.text = COMPOUND_STRING("ITEM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PROMISE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NAME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Name,
|
||||
.text = COMPOUND_STRING("NAME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RADIO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEWS)] =
|
||||
{
|
||||
.text = gEasyChatWord_News,
|
||||
.text = COMPOUND_STRING("NEWS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RENTAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POPULAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Popular,
|
||||
.text = COMPOUND_STRING("POPULAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SCHOOL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PARTY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Party,
|
||||
.text = COMPOUND_STRING("PARTY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SERVICE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STUDY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Study,
|
||||
.text = COMPOUND_STRING("STUDY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MACHINE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Machine,
|
||||
.text = COMPOUND_STRING("MACHINE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STUDY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAIL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mail,
|
||||
.text = COMPOUND_STRING("MAIL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SYSTEM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MESSAGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Message,
|
||||
.text = COMPOUND_STRING("MESSAGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TEACHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PROMISE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Promise,
|
||||
.text = COMPOUND_STRING("PROMISE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TELEVISION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DREAM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dream,
|
||||
.text = COMPOUND_STRING("DREAM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TEST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KINDERGARTEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Kindergarten,
|
||||
.text = COMPOUND_STRING("KINDERGARTEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOURNAMENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIFE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Life,
|
||||
.text = COMPOUND_STRING("LIFE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRAIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RADIO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Radio,
|
||||
.text = COMPOUND_STRING("RADIO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RENTAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rental,
|
||||
.text = COMPOUND_STRING("RENTAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WORLD)] =
|
||||
{
|
||||
.text = gEasyChatWord_World,
|
||||
.text = COMPOUND_STRING("WORLD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WORLD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,296 +1,253 @@
|
|||
const u8 gEasyChatWord_Highs[] = _("HIGHS");
|
||||
const u8 gEasyChatWord_Lows[] = _("LOWS");
|
||||
const u8 gEasyChatWord_Um[] = _("UM");
|
||||
const u8 gEasyChatWord_Rear[] = _("REAR");
|
||||
const u8 gEasyChatWord_Things[] = _("THINGS");
|
||||
const u8 gEasyChatWord_Thing[] = _("THING");
|
||||
const u8 gEasyChatWord_Below[] = _("BELOW");
|
||||
const u8 gEasyChatWord_Above[] = _("ABOVE");
|
||||
const u8 gEasyChatWord_Back[] = _("BACK");
|
||||
const u8 gEasyChatWord_High[] = _("HIGH");
|
||||
const u8 gEasyChatWord_Here[] = _("HERE");
|
||||
const u8 gEasyChatWord_Inside[] = _("INSIDE");
|
||||
const u8 gEasyChatWord_Outside[] = _("OUTSIDE");
|
||||
const u8 gEasyChatWord_Beside[] = _("BESIDE");
|
||||
const u8 gEasyChatWord_ThisIsItExcl[] = _("THIS IS IT!");
|
||||
const u8 gEasyChatWord_This[] = _("THIS");
|
||||
const u8 gEasyChatWord_Every[] = _("EVERY");
|
||||
const u8 gEasyChatWord_These[] = _("THESE");
|
||||
const u8 gEasyChatWord_TheseWere[] = _("THESE WERE");
|
||||
const u8 gEasyChatWord_Down[] = _("DOWN");
|
||||
const u8 gEasyChatWord_That[] = _("THAT");
|
||||
const u8 gEasyChatWord_ThoseAre[] = _("THOSE ARE");
|
||||
const u8 gEasyChatWord_ThoseWere[] = _("THOSE WERE");
|
||||
const u8 gEasyChatWord_ThatsItExcl[] = _("THAT'S IT!");
|
||||
const u8 gEasyChatWord_Am[] = _("AM");
|
||||
const u8 gEasyChatWord_ThatWas[] = _("THAT WAS");
|
||||
const u8 gEasyChatWord_Front[] = _("FRONT");
|
||||
const u8 gEasyChatWord_Up[] = _("UP");
|
||||
const u8 gEasyChatWord_Choice[] = _("CHOICE");
|
||||
const u8 gEasyChatWord_Far[] = _("FAR");
|
||||
const u8 gEasyChatWord_Away[] = _("AWAY");
|
||||
const u8 gEasyChatWord_Near[] = _("NEAR");
|
||||
const u8 gEasyChatWord_Where[] = _("WHERE");
|
||||
const u8 gEasyChatWord_When[] = _("WHEN");
|
||||
const u8 gEasyChatWord_What[] = _("WHAT");
|
||||
const u8 gEasyChatWord_Deep[] = _("DEEP");
|
||||
const u8 gEasyChatWord_Shallow[] = _("SHALLOW");
|
||||
const u8 gEasyChatWord_Why[] = _("WHY");
|
||||
const u8 gEasyChatWord_Confused[] = _("CONFUSED");
|
||||
const u8 gEasyChatWord_Opposite[] = _("OPPOSITE");
|
||||
const u8 gEasyChatWord_Left[] = _("LEFT");
|
||||
const u8 gEasyChatWord_Right[] = _("RIGHT");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Misc[] = {
|
||||
[EC_INDEX(EC_WORD_HIGHS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Highs,
|
||||
.text = COMPOUND_STRING("HIGHS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ABOVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOWS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lows,
|
||||
.text = COMPOUND_STRING("LOWS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Um,
|
||||
.text = COMPOUND_STRING("UM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AWAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_REAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rear,
|
||||
.text = COMPOUND_STRING("REAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BACK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THINGS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Things,
|
||||
.text = COMPOUND_STRING("THINGS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BELOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thing,
|
||||
.text = COMPOUND_STRING("THING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BESIDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BELOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Below,
|
||||
.text = COMPOUND_STRING("BELOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHOICE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ABOVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Above,
|
||||
.text = COMPOUND_STRING("ABOVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CONFUSED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BACK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Back,
|
||||
.text = COMPOUND_STRING("BACK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DEEP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_High,
|
||||
.text = COMPOUND_STRING("HIGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DOWN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Here,
|
||||
.text = COMPOUND_STRING("HERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVERY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INSIDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Inside,
|
||||
.text = COMPOUND_STRING("INSIDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OUTSIDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Outside,
|
||||
.text = COMPOUND_STRING("OUTSIDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FRONT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BESIDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Beside,
|
||||
.text = COMPOUND_STRING("BESIDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THIS_IS_IT_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThisIsItExcl,
|
||||
.text = COMPOUND_STRING("THIS IS IT!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THIS)] =
|
||||
{
|
||||
.text = gEasyChatWord_This,
|
||||
.text = COMPOUND_STRING("THIS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIGHS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVERY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Every,
|
||||
.text = COMPOUND_STRING("EVERY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INSIDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THESE)] =
|
||||
{
|
||||
.text = gEasyChatWord_These,
|
||||
.text = COMPOUND_STRING("THESE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEFT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THESE_WERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_TheseWere,
|
||||
.text = COMPOUND_STRING("THESE WERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOWS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DOWN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Down,
|
||||
.text = COMPOUND_STRING("DOWN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_That,
|
||||
.text = COMPOUND_STRING("THAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OPPOSITE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THOSE_ARE)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThoseAre,
|
||||
.text = COMPOUND_STRING("THOSE ARE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OUTSIDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THOSE_WERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThoseWere,
|
||||
.text = COMPOUND_STRING("THOSE WERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_REAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THAT_S_IT_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThatsItExcl,
|
||||
.text = COMPOUND_STRING("THAT'S IT!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RIGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Am,
|
||||
.text = COMPOUND_STRING("AM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHALLOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THAT_WAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThatWas,
|
||||
.text = COMPOUND_STRING("THAT WAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FRONT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Front,
|
||||
.text = COMPOUND_STRING("FRONT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THAT_WAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Up,
|
||||
.text = COMPOUND_STRING("UP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THAT_S_IT_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHOICE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Choice,
|
||||
.text = COMPOUND_STRING("CHOICE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THESE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Far,
|
||||
.text = COMPOUND_STRING("FAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THESE_WERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AWAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Away,
|
||||
.text = COMPOUND_STRING("AWAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Near,
|
||||
.text = COMPOUND_STRING("NEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THINGS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Where,
|
||||
.text = COMPOUND_STRING("WHERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THIS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_When,
|
||||
.text = COMPOUND_STRING("WHEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THIS_IS_IT_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_What,
|
||||
.text = COMPOUND_STRING("WHAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THOSE_ARE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DEEP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Deep,
|
||||
.text = COMPOUND_STRING("DEEP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THOSE_WERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHALLOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shallow,
|
||||
.text = COMPOUND_STRING("SHALLOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Why,
|
||||
.text = COMPOUND_STRING("WHY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CONFUSED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Confused,
|
||||
.text = COMPOUND_STRING("CONFUSED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OPPOSITE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Opposite,
|
||||
.text = COMPOUND_STRING("OPPOSITE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEFT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Left,
|
||||
.text = COMPOUND_STRING("LEFT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RIGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Right,
|
||||
.text = COMPOUND_STRING("RIGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,527 +1,451 @@
|
|||
const u8 gEasyChatWord_Opponent[] = _("OPPONENT");
|
||||
const u8 gEasyChatWord_I[] = _("I");
|
||||
const u8 gEasyChatWord_You[] = _("YOU");
|
||||
const u8 gEasyChatWord_Yours[] = _("YOURS");
|
||||
const u8 gEasyChatWord_Son[] = _("SON");
|
||||
const u8 gEasyChatWord_Your[] = _("YOUR");
|
||||
const u8 gEasyChatWord_Youre[] = _("YOU'RE");
|
||||
const u8 gEasyChatWord_Youve[] = _("YOU'VE");
|
||||
const u8 gEasyChatWord_Mother[] = _("MOTHER");
|
||||
const u8 gEasyChatWord_Grandfather[] = _("GRANDFATHER");
|
||||
const u8 gEasyChatWord_Uncle[] = _("UNCLE");
|
||||
const u8 gEasyChatWord_Father[] = _("FATHER");
|
||||
const u8 gEasyChatWord_Boy[] = _("BOY");
|
||||
const u8 gEasyChatWord_Adult[] = _("ADULT");
|
||||
const u8 gEasyChatWord_Brother[] = _("BROTHER");
|
||||
const u8 gEasyChatWord_Sister[] = _("SISTER");
|
||||
const u8 gEasyChatWord_Grandmother[] = _("GRANDMOTHER");
|
||||
const u8 gEasyChatWord_Aunt[] = _("AUNT");
|
||||
const u8 gEasyChatWord_Parent[] = _("PARENT");
|
||||
const u8 gEasyChatWord_Man[] = _("MAN");
|
||||
const u8 gEasyChatWord_Me[] = _("ME");
|
||||
const u8 gEasyChatWord_Girl[] = _("GIRL");
|
||||
const u8 gEasyChatWord_Babe[] = _("BABE");
|
||||
const u8 gEasyChatWord_Family[] = _("FAMILY");
|
||||
const u8 gEasyChatWord_Her[] = _("HER");
|
||||
const u8 gEasyChatWord_Him[] = _("HIM");
|
||||
const u8 gEasyChatWord_He[] = _("HE");
|
||||
const u8 gEasyChatWord_Place[] = _("PLACE");
|
||||
const u8 gEasyChatWord_Daughter[] = _("DAUGHTER");
|
||||
const u8 gEasyChatWord_His[] = _("HIS");
|
||||
const u8 gEasyChatWord_Hes[] = _("HE'S");
|
||||
const u8 gEasyChatWord_Arent[] = _("AREN'T");
|
||||
const u8 gEasyChatWord_Siblings[] = _("SIBLINGS");
|
||||
const u8 gEasyChatWord_Kid[] = _("KID");
|
||||
const u8 gEasyChatWord_Children[] = _("CHILDREN");
|
||||
const u8 gEasyChatWord_Mr[] = _("MR.");
|
||||
const u8 gEasyChatWord_Mrs[] = _("MRS.");
|
||||
const u8 gEasyChatWord_Myself[] = _("MYSELF");
|
||||
const u8 gEasyChatWord_IWas[] = _("I WAS");
|
||||
const u8 gEasyChatWord_ToMe[] = _("TO ME");
|
||||
const u8 gEasyChatWord_My[] = _("MY");
|
||||
const u8 gEasyChatWord_IAm[] = _("I AM");
|
||||
const u8 gEasyChatWord_Ive[] = _("I'VE");
|
||||
const u8 gEasyChatWord_Who[] = _("WHO");
|
||||
const u8 gEasyChatWord_Someone[] = _("SOMEONE");
|
||||
const u8 gEasyChatWord_WhoWas[] = _("WHO WAS");
|
||||
const u8 gEasyChatWord_ToWhom[] = _("TO WHOM");
|
||||
const u8 gEasyChatWord_Whose[] = _("WHOSE");
|
||||
const u8 gEasyChatWord_WhoIs[] = _("WHO IS");
|
||||
const u8 gEasyChatWord_Its[] = _("IT'S");
|
||||
const u8 gEasyChatWord_Lady[] = _("LADY");
|
||||
const u8 gEasyChatWord_Friend[] = _("FRIEND");
|
||||
const u8 gEasyChatWord_Ally[] = _("ALLY");
|
||||
const u8 gEasyChatWord_Person[] = _("PERSON");
|
||||
const u8 gEasyChatWord_Dude[] = _("DUDE");
|
||||
const u8 gEasyChatWord_They[] = _("THEY");
|
||||
const u8 gEasyChatWord_TheyWere[] = _("THEY WERE");
|
||||
const u8 gEasyChatWord_ToThem[] = _("TO THEM");
|
||||
const u8 gEasyChatWord_Their[] = _("THEIR");
|
||||
const u8 gEasyChatWord_Theyre[] = _("THEY'RE");
|
||||
const u8 gEasyChatWord_Theyve[] = _("THEY'VE");
|
||||
const u8 gEasyChatWord_We[] = _("WE");
|
||||
const u8 gEasyChatWord_Been[] = _("BEEN");
|
||||
const u8 gEasyChatWord_ToUs[] = _("TO US");
|
||||
const u8 gEasyChatWord_Our[] = _("OUR");
|
||||
const u8 gEasyChatWord_WeRe[] = _("WE'RE");
|
||||
const u8 gEasyChatWord_Rival[] = _("RIVAL");
|
||||
const u8 gEasyChatWord_Weve[] = _("WE'VE");
|
||||
const u8 gEasyChatWord_Woman[] = _("WOMAN");
|
||||
const u8 gEasyChatWord_She[] = _("SHE");
|
||||
const u8 gEasyChatWord_SheWas[] = _("SHE WAS");
|
||||
const u8 gEasyChatWord_ToHer[] = _("TO HER");
|
||||
const u8 gEasyChatWord_Hers[] = _("HERS");
|
||||
const u8 gEasyChatWord_SheIs[] = _("SHE IS");
|
||||
const u8 gEasyChatWord_Some[] = _("SOME");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_People[] = {
|
||||
[EC_INDEX(EC_WORD_OPPONENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Opponent,
|
||||
.text = COMPOUND_STRING("OPPONENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ADULT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_I)] =
|
||||
{
|
||||
.text = gEasyChatWord_I,
|
||||
.text = COMPOUND_STRING("I"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOU)] =
|
||||
{
|
||||
.text = gEasyChatWord_You,
|
||||
.text = COMPOUND_STRING("YOU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AREN_T),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOURS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yours,
|
||||
.text = COMPOUND_STRING("YOURS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AUNT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Son,
|
||||
.text = COMPOUND_STRING("SON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BABE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOUR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Your,
|
||||
.text = COMPOUND_STRING("YOUR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOU_RE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Youre,
|
||||
.text = COMPOUND_STRING("YOU'RE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BOY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOU_VE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Youve,
|
||||
.text = COMPOUND_STRING("YOU'VE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BROTHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MOTHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mother,
|
||||
.text = COMPOUND_STRING("MOTHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHILDREN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GRANDFATHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Grandfather,
|
||||
.text = COMPOUND_STRING("GRANDFATHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAUGHTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNCLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Uncle,
|
||||
.text = COMPOUND_STRING("UNCLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DUDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FATHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Father,
|
||||
.text = COMPOUND_STRING("FATHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FAMILY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BOY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Boy,
|
||||
.text = COMPOUND_STRING("BOY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FATHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ADULT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Adult,
|
||||
.text = COMPOUND_STRING("ADULT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FRIEND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BROTHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Brother,
|
||||
.text = COMPOUND_STRING("BROTHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIRL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SISTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sister,
|
||||
.text = COMPOUND_STRING("SISTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GRANDFATHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GRANDMOTHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Grandmother,
|
||||
.text = COMPOUND_STRING("GRANDMOTHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GRANDMOTHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AUNT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Aunt,
|
||||
.text = COMPOUND_STRING("AUNT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PARENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Parent,
|
||||
.text = COMPOUND_STRING("PARENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HE_S),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Man,
|
||||
.text = COMPOUND_STRING("MAN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Me,
|
||||
.text = COMPOUND_STRING("ME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HERS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIRL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Girl,
|
||||
.text = COMPOUND_STRING("GIRL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BABE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Babe,
|
||||
.text = COMPOUND_STRING("BABE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FAMILY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Family,
|
||||
.text = COMPOUND_STRING("FAMILY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Her,
|
||||
.text = COMPOUND_STRING("HER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I_AM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Him,
|
||||
.text = COMPOUND_STRING("HIM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I_WAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HE)] =
|
||||
{
|
||||
.text = gEasyChatWord_He,
|
||||
.text = COMPOUND_STRING("HE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I_VE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLACE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Place,
|
||||
.text = COMPOUND_STRING("PLACE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IT_S),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAUGHTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Daughter,
|
||||
.text = COMPOUND_STRING("DAUGHTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KID),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIS)] =
|
||||
{
|
||||
.text = gEasyChatWord_His,
|
||||
.text = COMPOUND_STRING("HIS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LADY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HE_S)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hes,
|
||||
.text = COMPOUND_STRING("HE'S"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AREN_T)] =
|
||||
{
|
||||
.text = gEasyChatWord_Arent,
|
||||
.text = COMPOUND_STRING("AREN'T"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SIBLINGS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Siblings,
|
||||
.text = COMPOUND_STRING("SIBLINGS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MOTHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KID)] =
|
||||
{
|
||||
.text = gEasyChatWord_Kid,
|
||||
.text = COMPOUND_STRING("KID"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHILDREN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Children,
|
||||
.text = COMPOUND_STRING("CHILDREN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MRS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mr,
|
||||
.text = COMPOUND_STRING("MR."),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MRS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mrs,
|
||||
.text = COMPOUND_STRING("MRS."),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MYSELF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MYSELF)] =
|
||||
{
|
||||
.text = gEasyChatWord_Myself,
|
||||
.text = COMPOUND_STRING("MYSELF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OPPONENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_I_WAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_IWas,
|
||||
.text = COMPOUND_STRING("I WAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OUR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO_ME)] =
|
||||
{
|
||||
.text = gEasyChatWord_ToMe,
|
||||
.text = COMPOUND_STRING("TO ME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PARENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MY)] =
|
||||
{
|
||||
.text = gEasyChatWord_My,
|
||||
.text = COMPOUND_STRING("MY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PERSON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_I_AM)] =
|
||||
{
|
||||
.text = gEasyChatWord_IAm,
|
||||
.text = COMPOUND_STRING("I AM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLACE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_I_VE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ive,
|
||||
.text = COMPOUND_STRING("I'VE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RIVAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Who,
|
||||
.text = COMPOUND_STRING("WHO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOMEONE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Someone,
|
||||
.text = COMPOUND_STRING("SOMEONE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHE_IS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHO_WAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_WhoWas,
|
||||
.text = COMPOUND_STRING("WHO WAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHE_WAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO_WHOM)] =
|
||||
{
|
||||
.text = gEasyChatWord_ToWhom,
|
||||
.text = COMPOUND_STRING("TO WHOM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SIBLINGS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHOSE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Whose,
|
||||
.text = COMPOUND_STRING("WHOSE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SISTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHO_IS)] =
|
||||
{
|
||||
.text = gEasyChatWord_WhoIs,
|
||||
.text = COMPOUND_STRING("WHO IS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IT_S)] =
|
||||
{
|
||||
.text = gEasyChatWord_Its,
|
||||
.text = COMPOUND_STRING("IT'S"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOMEONE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LADY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lady,
|
||||
.text = COMPOUND_STRING("LADY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FRIEND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Friend,
|
||||
.text = COMPOUND_STRING("FRIEND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THEIR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ally,
|
||||
.text = COMPOUND_STRING("ALLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THEY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PERSON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Person,
|
||||
.text = COMPOUND_STRING("PERSON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THEY_WERE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DUDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dude,
|
||||
.text = COMPOUND_STRING("DUDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THEY_RE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THEY)] =
|
||||
{
|
||||
.text = gEasyChatWord_They,
|
||||
.text = COMPOUND_STRING("THEY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THEY_VE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THEY_WERE)] =
|
||||
{
|
||||
.text = gEasyChatWord_TheyWere,
|
||||
.text = COMPOUND_STRING("THEY WERE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO_HER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO_THEM)] =
|
||||
{
|
||||
.text = gEasyChatWord_ToThem,
|
||||
.text = COMPOUND_STRING("TO THEM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO_ME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THEIR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Their,
|
||||
.text = COMPOUND_STRING("THEIR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO_THEM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THEY_RE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Theyre,
|
||||
.text = COMPOUND_STRING("THEY'RE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO_US),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THEY_VE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Theyve,
|
||||
.text = COMPOUND_STRING("THEY'VE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TO_WHOM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WE)] =
|
||||
{
|
||||
.text = gEasyChatWord_We,
|
||||
.text = COMPOUND_STRING("WE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNCLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Been,
|
||||
.text = COMPOUND_STRING("BEEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO_US)] =
|
||||
{
|
||||
.text = gEasyChatWord_ToUs,
|
||||
.text = COMPOUND_STRING("TO US"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WE_RE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OUR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Our,
|
||||
.text = COMPOUND_STRING("OUR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WE_VE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WE_RE)] =
|
||||
{
|
||||
.text = gEasyChatWord_WeRe,
|
||||
.text = COMPOUND_STRING("WE'RE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RIVAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rival,
|
||||
.text = COMPOUND_STRING("RIVAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHO_IS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WE_VE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Weve,
|
||||
.text = COMPOUND_STRING("WE'VE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHO_WAS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WOMAN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Woman,
|
||||
.text = COMPOUND_STRING("WOMAN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHOSE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHE)] =
|
||||
{
|
||||
.text = gEasyChatWord_She,
|
||||
.text = COMPOUND_STRING("SHE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WOMAN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHE_WAS)] =
|
||||
{
|
||||
.text = gEasyChatWord_SheWas,
|
||||
.text = COMPOUND_STRING("SHE WAS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TO_HER)] =
|
||||
{
|
||||
.text = gEasyChatWord_ToHer,
|
||||
.text = COMPOUND_STRING("TO HER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOU_RE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HERS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hers,
|
||||
.text = COMPOUND_STRING("HERS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOU_VE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHE_IS)] =
|
||||
{
|
||||
.text = gEasyChatWord_SheIs,
|
||||
.text = COMPOUND_STRING("SHE IS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOUR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Some,
|
||||
.text = COMPOUND_STRING("SOME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOURS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,422 +1,361 @@
|
|||
const u8 gEasyChatWord_Listen[] = _("LISTEN");
|
||||
const u8 gEasyChatWord_NotVery[] = _("NOT VERY");
|
||||
const u8 gEasyChatWord_Mean[] = _("MEAN");
|
||||
const u8 gEasyChatWord_Lie[] = _("LIE");
|
||||
const u8 gEasyChatWord_Lay[] = _("LAY");
|
||||
const u8 gEasyChatWord_Recommend[] = _("RECOMMEND");
|
||||
const u8 gEasyChatWord_Nitwit[] = _("NITWIT");
|
||||
const u8 gEasyChatWord_Quite[] = _("QUITE");
|
||||
const u8 gEasyChatWord_From[] = _("FROM");
|
||||
const u8 gEasyChatWord_Feeling[] = _("FEELING");
|
||||
const u8 gEasyChatWord_But[] = _("BUT");
|
||||
const u8 gEasyChatWord_However[] = _("HOWEVER");
|
||||
const u8 gEasyChatWord_Case[] = _("CASE");
|
||||
const u8 gEasyChatWord_The[] = _("THE");
|
||||
const u8 gEasyChatWord_Miss[] = _("MISS");
|
||||
const u8 gEasyChatWord_How[] = _("HOW");
|
||||
const u8 gEasyChatWord_Hit[] = _("HIT");
|
||||
const u8 gEasyChatWord_Enough[] = _("ENOUGH");
|
||||
const u8 gEasyChatWord_ALot[] = _("A LOT");
|
||||
const u8 gEasyChatWord_ALittle[] = _("A LITTLE");
|
||||
const u8 gEasyChatWord_Absolutely[] = _("ABSOLUTELY");
|
||||
const u8 gEasyChatWord_And[] = _("AND");
|
||||
const u8 gEasyChatWord_Only[] = _("ONLY");
|
||||
const u8 gEasyChatWord_Around[] = _("AROUND");
|
||||
const u8 gEasyChatWord_Probably[] = _("PROBABLY");
|
||||
const u8 gEasyChatWord_If[] = _("IF");
|
||||
const u8 gEasyChatWord_Very[] = _("VERY");
|
||||
const u8 gEasyChatWord_ATinyBit[] = _("A TINY BIT");
|
||||
const u8 gEasyChatWord_Wild[] = _("WILD");
|
||||
const u8 gEasyChatWord_Thats[] = _("THAT'S");
|
||||
const u8 gEasyChatWord_Just[] = _("JUST");
|
||||
const u8 gEasyChatWord_EvenSo[] = _("EVEN SO,");
|
||||
const u8 gEasyChatWord_MustBe[] = _("MUST BE");
|
||||
const u8 gEasyChatWord_Naturally[] = _("NATURALLY");
|
||||
const u8 gEasyChatWord_ForNow[] = _("FOR NOW,");
|
||||
const u8 gEasyChatWord_Understood[] = _("UNDERSTOOD");
|
||||
const u8 gEasyChatWord_Joking[] = _("JOKING");
|
||||
const u8 gEasyChatWord_Ready[] = _("READY");
|
||||
const u8 gEasyChatWord_Something[] = _("SOMETHING");
|
||||
const u8 gEasyChatWord_Somehow[] = _("SOMEHOW");
|
||||
const u8 gEasyChatWord_Although[] = _("ALTHOUGH");
|
||||
const u8 gEasyChatWord_Also[] = _("ALSO");
|
||||
const u8 gEasyChatWord_Perfect[] = _("PERFECT");
|
||||
const u8 gEasyChatWord_AsMuchAs[] = _("AS MUCH AS");
|
||||
const u8 gEasyChatWord_Really[] = _("REALLY");
|
||||
const u8 gEasyChatWord_Truly[] = _("TRULY");
|
||||
const u8 gEasyChatWord_Seriously[] = _("SERIOUSLY");
|
||||
const u8 gEasyChatWord_Totally[] = _("TOTALLY");
|
||||
const u8 gEasyChatWord_Until[] = _("UNTIL");
|
||||
const u8 gEasyChatWord_AsIf[] = _("AS IF");
|
||||
const u8 gEasyChatWord_Mood[] = _("MOOD");
|
||||
const u8 gEasyChatWord_Rather[] = _("RATHER");
|
||||
const u8 gEasyChatWord_Awfully[] = _("AWFULLY");
|
||||
const u8 gEasyChatWord_Mode[] = _("MODE");
|
||||
const u8 gEasyChatWord_More[] = _("MORE");
|
||||
const u8 gEasyChatWord_TooLate[] = _("TOO LATE");
|
||||
const u8 gEasyChatWord_Finally[] = _("FINALLY");
|
||||
const u8 gEasyChatWord_Any[] = _("ANY");
|
||||
const u8 gEasyChatWord_Instead[] = _("INSTEAD");
|
||||
const u8 gEasyChatWord_Fantastic[] = _("FANTASTIC");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Speech[] = {
|
||||
[EC_INDEX(EC_WORD_LISTEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Listen,
|
||||
.text = COMPOUND_STRING("LISTEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_A_LITTLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOT_VERY)] =
|
||||
{
|
||||
.text = gEasyChatWord_NotVery,
|
||||
.text = COMPOUND_STRING("NOT VERY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_A_LOT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MEAN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mean,
|
||||
.text = COMPOUND_STRING("MEAN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_A_TINY_BIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lie,
|
||||
.text = COMPOUND_STRING("LIE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ABSOLUTELY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lay,
|
||||
.text = COMPOUND_STRING("LAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALSO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RECOMMEND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Recommend,
|
||||
.text = COMPOUND_STRING("RECOMMEND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALTHOUGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NITWIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nitwit,
|
||||
.text = COMPOUND_STRING("NITWIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_QUITE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Quite,
|
||||
.text = COMPOUND_STRING("QUITE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FROM)] =
|
||||
{
|
||||
.text = gEasyChatWord_From,
|
||||
.text = COMPOUND_STRING("FROM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AROUND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FEELING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Feeling,
|
||||
.text = COMPOUND_STRING("FEELING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AS_IF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BUT)] =
|
||||
{
|
||||
.text = gEasyChatWord_But,
|
||||
.text = COMPOUND_STRING("BUT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AS_MUCH_AS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOWEVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_However,
|
||||
.text = COMPOUND_STRING("HOWEVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AWFULLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CASE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Case,
|
||||
.text = COMPOUND_STRING("CASE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BUT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THE)] =
|
||||
{
|
||||
.text = gEasyChatWord_The,
|
||||
.text = COMPOUND_STRING("THE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CASE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MISS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Miss,
|
||||
.text = COMPOUND_STRING("MISS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ENOUGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_How,
|
||||
.text = COMPOUND_STRING("HOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVEN_SO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hit,
|
||||
.text = COMPOUND_STRING("HIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FANTASTIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ENOUGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Enough,
|
||||
.text = COMPOUND_STRING("ENOUGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FEELING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_A_LOT)] =
|
||||
{
|
||||
.text = gEasyChatWord_ALot,
|
||||
.text = COMPOUND_STRING("A LOT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FINALLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_A_LITTLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_ALittle,
|
||||
.text = COMPOUND_STRING("A LITTLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FOR_NOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ABSOLUTELY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Absolutely,
|
||||
.text = COMPOUND_STRING("ABSOLUTELY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FROM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AND)] =
|
||||
{
|
||||
.text = gEasyChatWord_And,
|
||||
.text = COMPOUND_STRING("AND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ONLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Only,
|
||||
.text = COMPOUND_STRING("ONLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AROUND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Around,
|
||||
.text = COMPOUND_STRING("AROUND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOWEVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PROBABLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Probably,
|
||||
.text = COMPOUND_STRING("PROBABLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IF)] =
|
||||
{
|
||||
.text = gEasyChatWord_If,
|
||||
.text = COMPOUND_STRING("IF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INSTEAD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VERY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Very,
|
||||
.text = COMPOUND_STRING("VERY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_JOKING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_A_TINY_BIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_ATinyBit,
|
||||
.text = COMPOUND_STRING("A TINY BIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_JUST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WILD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wild,
|
||||
.text = COMPOUND_STRING("WILD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THAT_S)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thats,
|
||||
.text = COMPOUND_STRING("THAT'S"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_JUST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Just,
|
||||
.text = COMPOUND_STRING("JUST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LISTEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVEN_SO)] =
|
||||
{
|
||||
.text = gEasyChatWord_EvenSo,
|
||||
.text = COMPOUND_STRING("EVEN SO,"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MEAN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MUST_BE)] =
|
||||
{
|
||||
.text = gEasyChatWord_MustBe,
|
||||
.text = COMPOUND_STRING("MUST BE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MISS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NATURALLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Naturally,
|
||||
.text = COMPOUND_STRING("NATURALLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MODE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FOR_NOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_ForNow,
|
||||
.text = COMPOUND_STRING("FOR NOW,"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MOOD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNDERSTOOD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Understood,
|
||||
.text = COMPOUND_STRING("UNDERSTOOD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_JOKING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Joking,
|
||||
.text = COMPOUND_STRING("JOKING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MUST_BE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_READY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ready,
|
||||
.text = COMPOUND_STRING("READY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NATURALLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOMETHING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Something,
|
||||
.text = COMPOUND_STRING("SOMETHING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NITWIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOMEHOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Somehow,
|
||||
.text = COMPOUND_STRING("SOMEHOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOT_VERY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALTHOUGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Although,
|
||||
.text = COMPOUND_STRING("ALTHOUGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ONLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALSO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Also,
|
||||
.text = COMPOUND_STRING("ALSO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PERFECT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PERFECT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Perfect,
|
||||
.text = COMPOUND_STRING("PERFECT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PROBABLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AS_MUCH_AS)] =
|
||||
{
|
||||
.text = gEasyChatWord_AsMuchAs,
|
||||
.text = COMPOUND_STRING("AS MUCH AS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_QUITE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_REALLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Really,
|
||||
.text = COMPOUND_STRING("REALLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RATHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRULY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Truly,
|
||||
.text = COMPOUND_STRING("TRULY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_READY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SERIOUSLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Seriously,
|
||||
.text = COMPOUND_STRING("SERIOUSLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_REALLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOTALLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Totally,
|
||||
.text = COMPOUND_STRING("TOTALLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RECOMMEND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNTIL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Until,
|
||||
.text = COMPOUND_STRING("UNTIL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SERIOUSLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AS_IF)] =
|
||||
{
|
||||
.text = gEasyChatWord_AsIf,
|
||||
.text = COMPOUND_STRING("AS IF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOMEHOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MOOD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mood,
|
||||
.text = COMPOUND_STRING("MOOD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOMETHING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RATHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rather,
|
||||
.text = COMPOUND_STRING("RATHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THAT_S),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AWFULLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Awfully,
|
||||
.text = COMPOUND_STRING("AWFULLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MODE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mode,
|
||||
.text = COMPOUND_STRING("MODE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOO_LATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_More,
|
||||
.text = COMPOUND_STRING("MORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOTALLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOO_LATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_TooLate,
|
||||
.text = COMPOUND_STRING("TOO LATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRULY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FINALLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Finally,
|
||||
.text = COMPOUND_STRING("FINALLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNDERSTOOD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Any,
|
||||
.text = COMPOUND_STRING("ANY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNTIL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INSTEAD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Instead,
|
||||
.text = COMPOUND_STRING("INSTEAD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VERY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FANTASTIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fantastic,
|
||||
.text = COMPOUND_STRING("FANTASTIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WILD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,765 +1,655 @@
|
|||
const u8 gEasyChatWord_Dark[] = _("DARK");
|
||||
const u8 gEasyChatWord_Stench[] = _("STENCH");
|
||||
const u8 gEasyChatWord_ThickFat[] = _("THICK FAT");
|
||||
const u8 gEasyChatWord_RainDish[] = _("RAIN DISH");
|
||||
const u8 gEasyChatWord_Drizzle[] = _("DRIZZLE");
|
||||
const u8 gEasyChatWord_ArenaTrap[] = _("ARENA TRAP");
|
||||
const u8 gEasyChatWord_Intimidate[] = _("INTIMIDATE");
|
||||
const u8 gEasyChatWord_RockHead[] = _("ROCK HEAD");
|
||||
const u8 gEasyChatWord_Color[] = _("COLOR");
|
||||
const u8 gEasyChatWord_AltColor[] = _("ALT. COLOR");
|
||||
const u8 gEasyChatWord_Rock[] = _("ROCK");
|
||||
const u8 gEasyChatWord_Beautiful[] = _("BEAUTIFUL");
|
||||
const u8 gEasyChatWord_Beauty[] = _("BEAUTY");
|
||||
const u8 gEasyChatWord_AirLock[] = _("AIR LOCK");
|
||||
const u8 gEasyChatWord_Psychic[] = _("PSYCHIC");
|
||||
const u8 gEasyChatWord_HyperCutter[] = _("HYPER CUTTER");
|
||||
const u8 gEasyChatWord_Fighting[] = _("FIGHTING");
|
||||
const u8 gEasyChatWord_ShadowTag[] = _("SHADOW TAG");
|
||||
const u8 gEasyChatWord_Smart[] = _("SMART");
|
||||
const u8 gEasyChatWord_Smartness[] = _("SMARTNESS");
|
||||
const u8 gEasyChatWord_SpeedBoost[] = _("SPEED BOOST");
|
||||
const u8 gEasyChatWord_Cool[] = _("COOL");
|
||||
const u8 gEasyChatWord_Coolness[] = _("COOLNESS");
|
||||
const u8 gEasyChatWord_BattleArmor[] = _("BATTLE ARMOR");
|
||||
const u8 gEasyChatWord_Cute[] = _("CUTE");
|
||||
const u8 gEasyChatWord_Cuteness[] = _("CUTENESS");
|
||||
const u8 gEasyChatWord_Sturdy[] = _("STURDY");
|
||||
const u8 gEasyChatWord_SuctionCups[] = _("SUCTION CUPS");
|
||||
const u8 gEasyChatWord_Grass[] = _("GRASS");
|
||||
const u8 gEasyChatWord_ClearBody[] = _("CLEAR BODY");
|
||||
const u8 gEasyChatWord_Torrent[] = _("TORRENT");
|
||||
const u8 gEasyChatWord_Ghost[] = _("GHOST");
|
||||
const u8 gEasyChatWord_Ice[] = _("ICE");
|
||||
const u8 gEasyChatWord_Guts[] = _("GUTS");
|
||||
const u8 gEasyChatWord_RoughSkin[] = _("ROUGH SKIN");
|
||||
const u8 gEasyChatWord_ShellArmor[] = _("SHELL ARMOR");
|
||||
const u8 gEasyChatWord_NaturalCure[] = _("NATURAL CURE");
|
||||
const u8 gEasyChatWord_Damp[] = _("DAMP");
|
||||
const u8 gEasyChatWord_Ground[] = _("GROUND");
|
||||
const u8 gEasyChatWord_Limber[] = _("LIMBER");
|
||||
const u8 gEasyChatWord_MagnetPull[] = _("MAGNET PULL");
|
||||
const u8 gEasyChatWord_WhiteSmoke[] = _("WHITE SMOKE");
|
||||
const u8 gEasyChatWord_Synchronize[] = _("SYNCHRONIZE");
|
||||
const u8 gEasyChatWord_Overgrow[] = _("OVERGROW");
|
||||
const u8 gEasyChatWord_SwiftSwim[] = _("SWIFT SWIM");
|
||||
const u8 gEasyChatWord_SandStream[] = _("SAND STREAM");
|
||||
const u8 gEasyChatWord_SandVeil[] = _("SAND VEIL");
|
||||
const u8 gEasyChatWord_KeenEye[] = _("KEEN EYE");
|
||||
const u8 gEasyChatWord_InnerFocus[] = _("INNER FOCUS");
|
||||
const u8 gEasyChatWord_Static[] = _("STATIC");
|
||||
const u8 gEasyChatWord_Type[] = _("TYPE");
|
||||
const u8 gEasyChatWord_Tough[] = _("TOUGH");
|
||||
const u8 gEasyChatWord_Toughness[] = _("TOUGHNESS");
|
||||
const u8 gEasyChatWord_ShedSkin[] = _("SHED SKIN");
|
||||
const u8 gEasyChatWord_HugePower[] = _("HUGE POWER");
|
||||
const u8 gEasyChatWord_VoltAbsorb[] = _("VOLT ABSORB");
|
||||
const u8 gEasyChatWord_WaterAbsorb[] = _("WATER ABSORB");
|
||||
const u8 gEasyChatWord_Electric[] = _("ELECTRIC");
|
||||
const u8 gEasyChatWord_Forecast[] = _("FORECAST");
|
||||
const u8 gEasyChatWord_SereneGrace[] = _("SERENE GRACE");
|
||||
const u8 gEasyChatWord_Poison[] = _("POISON");
|
||||
const u8 gEasyChatWord_PoisonPoint[] = _("POISON POINT");
|
||||
const u8 gEasyChatWord_Dragon[] = _("DRAGON");
|
||||
const u8 gEasyChatWord_Trace[] = _("TRACE");
|
||||
const u8 gEasyChatWord_Oblivious[] = _("OBLIVIOUS");
|
||||
const u8 gEasyChatWord_Truant[] = _("TRUANT");
|
||||
const u8 gEasyChatWord_RunAway[] = _("RUN AWAY");
|
||||
const u8 gEasyChatWord_StickyHold[] = _("STICKY HOLD");
|
||||
const u8 gEasyChatWord_CloudNine[] = _("CLOUD NINE");
|
||||
const u8 gEasyChatWord_Normal[] = _("NORMAL");
|
||||
const u8 gEasyChatWord_Steel[] = _("STEEL");
|
||||
const u8 gEasyChatWord_Illuminate[] = _("ILLUMINATE");
|
||||
const u8 gEasyChatWord_EarlyBird[] = _("EARLY BIRD");
|
||||
const u8 gEasyChatWord_Hustle[] = _("HUSTLE");
|
||||
const u8 gEasyChatWord_Shine[] = _("SHINE");
|
||||
const u8 gEasyChatWord_Flying[] = _("FLYING");
|
||||
const u8 gEasyChatWord_Drought[] = _("DROUGHT");
|
||||
const u8 gEasyChatWord_Lightningrod[] = _("LIGHTNINGROD");
|
||||
const u8 gEasyChatWord_Compoundeyes[] = _("COMPOUNDEYES");
|
||||
const u8 gEasyChatWord_MarvelScale[] = _("MARVEL SCALE");
|
||||
const u8 gEasyChatWord_WonderGuard[] = _("WONDER GUARD");
|
||||
const u8 gEasyChatWord_Insomnia[] = _("INSOMNIA");
|
||||
const u8 gEasyChatWord_Levitate[] = _("LEVITATE");
|
||||
const u8 gEasyChatWord_Plus[] = _("PLUS");
|
||||
const u8 gEasyChatWord_Pressure[] = _("PRESSURE");
|
||||
const u8 gEasyChatWord_LiquidOoze[] = _("LIQUID OOZE");
|
||||
const u8 gEasyChatWord_ColorChange[] = _("COLOR CHANGE");
|
||||
const u8 gEasyChatWord_Soundproof[] = _("SOUNDPROOF");
|
||||
const u8 gEasyChatWord_EffectSpore[] = _("EFFECT SPORE");
|
||||
const u8 gEasyChatWord_Pkrs[] = _("{PK}RS");
|
||||
const u8 gEasyChatWord_Fire[] = _("FIRE");
|
||||
const u8 gEasyChatWord_FlameBody[] = _("FLAME BODY");
|
||||
const u8 gEasyChatWord_Minus[] = _("MINUS");
|
||||
const u8 gEasyChatWord_OwnTempo[] = _("OWN TEMPO");
|
||||
const u8 gEasyChatWord_MagmaArmor[] = _("MAGMA ARMOR");
|
||||
const u8 gEasyChatWord_Water[] = _("WATER");
|
||||
const u8 gEasyChatWord_WaterVeil[] = _("WATER VEIL");
|
||||
const u8 gEasyChatWord_Bug[] = _("BUG");
|
||||
const u8 gEasyChatWord_Swarm[] = _("SWARM");
|
||||
const u8 gEasyChatWord_CuteCharm[] = _("CUTE CHARM");
|
||||
const u8 gEasyChatWord_Immunity[] = _("IMMUNITY");
|
||||
const u8 gEasyChatWord_Blaze[] = _("BLAZE");
|
||||
const u8 gEasyChatWord_Pickup[] = _("PICKUP");
|
||||
const u8 gEasyChatWord_Pattern[] = _("PATTERN");
|
||||
const u8 gEasyChatWord_FlashFire[] = _("FLASH FIRE");
|
||||
const u8 gEasyChatWord_VitalSpirit[] = _("VITAL SPIRIT");
|
||||
const u8 gEasyChatWord_Chlorophyll[] = _("CHLOROPHYLL");
|
||||
const u8 gEasyChatWord_PurePower[] = _("PURE POWER");
|
||||
const u8 gEasyChatWord_ShieldDust[] = _("SHIELD DUST");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Status[] = {
|
||||
[EC_INDEX(EC_WORD_DARK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dark,
|
||||
.text = COMPOUND_STRING("DARK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AIR_LOCK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STENCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Stench,
|
||||
.text = COMPOUND_STRING("STENCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALT_COLOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THICK_FAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_ThickFat,
|
||||
.text = COMPOUND_STRING("THICK FAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ARENA_TRAP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RAIN_DISH)] =
|
||||
{
|
||||
.text = gEasyChatWord_RainDish,
|
||||
.text = COMPOUND_STRING("RAIN DISH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BATTLE_ARMOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DRIZZLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Drizzle,
|
||||
.text = COMPOUND_STRING("DRIZZLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEAUTIFUL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ARENA_TRAP)] =
|
||||
{
|
||||
.text = gEasyChatWord_ArenaTrap,
|
||||
.text = COMPOUND_STRING("ARENA TRAP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEAUTY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INTIMIDATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Intimidate,
|
||||
.text = COMPOUND_STRING("INTIMIDATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BLAZE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROCK_HEAD)] =
|
||||
{
|
||||
.text = gEasyChatWord_RockHead,
|
||||
.text = COMPOUND_STRING("ROCK HEAD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BUG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COLOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_Color,
|
||||
.text = COMPOUND_STRING("COLOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CHLOROPHYLL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALT_COLOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_AltColor,
|
||||
.text = COMPOUND_STRING("ALT. COLOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CLEAR_BODY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROCK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Rock,
|
||||
.text = COMPOUND_STRING("ROCK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CLOUD_NINE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEAUTIFUL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Beautiful,
|
||||
.text = COMPOUND_STRING("BEAUTIFUL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COLOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEAUTY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Beauty,
|
||||
.text = COMPOUND_STRING("BEAUTY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COLOR_CHANGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AIR_LOCK)] =
|
||||
{
|
||||
.text = gEasyChatWord_AirLock,
|
||||
.text = COMPOUND_STRING("AIR LOCK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COMPOUNDEYES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PSYCHIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Psychic,
|
||||
.text = COMPOUND_STRING("PSYCHIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COOL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HYPER_CUTTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_HyperCutter,
|
||||
.text = COMPOUND_STRING("HYPER CUTTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COOLNESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FIGHTING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fighting,
|
||||
.text = COMPOUND_STRING("FIGHTING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CUTE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHADOW_TAG)] =
|
||||
{
|
||||
.text = gEasyChatWord_ShadowTag,
|
||||
.text = COMPOUND_STRING("SHADOW TAG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CUTE_CHARM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMART)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smart,
|
||||
.text = COMPOUND_STRING("SMART"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CUTENESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMARTNESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Smartness,
|
||||
.text = COMPOUND_STRING("SMARTNESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAMP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPEED_BOOST)] =
|
||||
{
|
||||
.text = gEasyChatWord_SpeedBoost,
|
||||
.text = COMPOUND_STRING("SPEED BOOST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DARK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COOL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cool,
|
||||
.text = COMPOUND_STRING("COOL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DRAGON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COOLNESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Coolness,
|
||||
.text = COMPOUND_STRING("COOLNESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DRIZZLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BATTLE_ARMOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_BattleArmor,
|
||||
.text = COMPOUND_STRING("BATTLE ARMOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DROUGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CUTE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cute,
|
||||
.text = COMPOUND_STRING("CUTE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EARLY_BIRD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CUTENESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cuteness,
|
||||
.text = COMPOUND_STRING("CUTENESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EFFECT_SPORE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STURDY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sturdy,
|
||||
.text = COMPOUND_STRING("STURDY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ELECTRIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SUCTION_CUPS)] =
|
||||
{
|
||||
.text = gEasyChatWord_SuctionCups,
|
||||
.text = COMPOUND_STRING("SUCTION CUPS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FIGHTING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GRASS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Grass,
|
||||
.text = COMPOUND_STRING("GRASS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FIRE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CLEAR_BODY)] =
|
||||
{
|
||||
.text = gEasyChatWord_ClearBody,
|
||||
.text = COMPOUND_STRING("CLEAR BODY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLAME_BODY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TORRENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Torrent,
|
||||
.text = COMPOUND_STRING("TORRENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLASH_FIRE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GHOST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ghost,
|
||||
.text = COMPOUND_STRING("GHOST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLYING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ICE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ice,
|
||||
.text = COMPOUND_STRING("ICE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FORECAST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GUTS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Guts,
|
||||
.text = COMPOUND_STRING("GUTS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GHOST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ROUGH_SKIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_RoughSkin,
|
||||
.text = COMPOUND_STRING("ROUGH SKIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GRASS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHELL_ARMOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_ShellArmor,
|
||||
.text = COMPOUND_STRING("SHELL ARMOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GROUND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NATURAL_CURE)] =
|
||||
{
|
||||
.text = gEasyChatWord_NaturalCure,
|
||||
.text = COMPOUND_STRING("NATURAL CURE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GUTS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAMP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Damp,
|
||||
.text = COMPOUND_STRING("DAMP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HUGE_POWER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GROUND)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ground,
|
||||
.text = COMPOUND_STRING("GROUND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HUSTLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIMBER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Limber,
|
||||
.text = COMPOUND_STRING("LIMBER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HYPER_CUTTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAGNET_PULL)] =
|
||||
{
|
||||
.text = gEasyChatWord_MagnetPull,
|
||||
.text = COMPOUND_STRING("MAGNET PULL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ICE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHITE_SMOKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_WhiteSmoke,
|
||||
.text = COMPOUND_STRING("WHITE SMOKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ILLUMINATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SYNCHRONIZE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Synchronize,
|
||||
.text = COMPOUND_STRING("SYNCHRONIZE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_IMMUNITY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OVERGROW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Overgrow,
|
||||
.text = COMPOUND_STRING("OVERGROW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INNER_FOCUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SWIFT_SWIM)] =
|
||||
{
|
||||
.text = gEasyChatWord_SwiftSwim,
|
||||
.text = COMPOUND_STRING("SWIFT SWIM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INSOMNIA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAND_STREAM)] =
|
||||
{
|
||||
.text = gEasyChatWord_SandStream,
|
||||
.text = COMPOUND_STRING("SAND STREAM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_INTIMIDATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAND_VEIL)] =
|
||||
{
|
||||
.text = gEasyChatWord_SandVeil,
|
||||
.text = COMPOUND_STRING("SAND VEIL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KEEN_EYE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KEEN_EYE)] =
|
||||
{
|
||||
.text = gEasyChatWord_KeenEye,
|
||||
.text = COMPOUND_STRING("KEEN EYE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEVITATE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INNER_FOCUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_InnerFocus,
|
||||
.text = COMPOUND_STRING("INNER FOCUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIGHTNINGROD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STATIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Static,
|
||||
.text = COMPOUND_STRING("STATIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIMBER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TYPE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Type,
|
||||
.text = COMPOUND_STRING("TYPE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LIQUID_OOZE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOUGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tough,
|
||||
.text = COMPOUND_STRING("TOUGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAGMA_ARMOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOUGHNESS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Toughness,
|
||||
.text = COMPOUND_STRING("TOUGHNESS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MAGNET_PULL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHED_SKIN)] =
|
||||
{
|
||||
.text = gEasyChatWord_ShedSkin,
|
||||
.text = COMPOUND_STRING("SHED SKIN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MARVEL_SCALE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HUGE_POWER)] =
|
||||
{
|
||||
.text = gEasyChatWord_HugePower,
|
||||
.text = COMPOUND_STRING("HUGE POWER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MINUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VOLT_ABSORB)] =
|
||||
{
|
||||
.text = gEasyChatWord_VoltAbsorb,
|
||||
.text = COMPOUND_STRING("VOLT ABSORB"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NATURAL_CURE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WATER_ABSORB)] =
|
||||
{
|
||||
.text = gEasyChatWord_WaterAbsorb,
|
||||
.text = COMPOUND_STRING("WATER ABSORB"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NORMAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ELECTRIC)] =
|
||||
{
|
||||
.text = gEasyChatWord_Electric,
|
||||
.text = COMPOUND_STRING("ELECTRIC"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OBLIVIOUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FORECAST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Forecast,
|
||||
.text = COMPOUND_STRING("FORECAST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OVERGROW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SERENE_GRACE)] =
|
||||
{
|
||||
.text = gEasyChatWord_SereneGrace,
|
||||
.text = COMPOUND_STRING("SERENE GRACE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OWN_TEMPO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POISON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Poison,
|
||||
.text = COMPOUND_STRING("POISON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PATTERN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POISON_POINT)] =
|
||||
{
|
||||
.text = gEasyChatWord_PoisonPoint,
|
||||
.text = COMPOUND_STRING("POISON POINT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PICKUP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DRAGON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dragon,
|
||||
.text = COMPOUND_STRING("DRAGON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PKRS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRACE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trace,
|
||||
.text = COMPOUND_STRING("TRACE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PLUS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OBLIVIOUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Oblivious,
|
||||
.text = COMPOUND_STRING("OBLIVIOUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POISON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRUANT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Truant,
|
||||
.text = COMPOUND_STRING("TRUANT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POISON_POINT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RUN_AWAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_RunAway,
|
||||
.text = COMPOUND_STRING("RUN AWAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PRESSURE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STICKY_HOLD)] =
|
||||
{
|
||||
.text = gEasyChatWord_StickyHold,
|
||||
.text = COMPOUND_STRING("STICKY HOLD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PSYCHIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CLOUD_NINE)] =
|
||||
{
|
||||
.text = gEasyChatWord_CloudNine,
|
||||
.text = COMPOUND_STRING("CLOUD NINE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_PURE_POWER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NORMAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Normal,
|
||||
.text = COMPOUND_STRING("NORMAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RAIN_DISH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STEEL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Steel,
|
||||
.text = COMPOUND_STRING("STEEL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROCK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ILLUMINATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Illuminate,
|
||||
.text = COMPOUND_STRING("ILLUMINATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROCK_HEAD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EARLY_BIRD)] =
|
||||
{
|
||||
.text = gEasyChatWord_EarlyBird,
|
||||
.text = COMPOUND_STRING("EARLY BIRD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ROUGH_SKIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HUSTLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hustle,
|
||||
.text = COMPOUND_STRING("HUSTLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RUN_AWAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHINE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shine,
|
||||
.text = COMPOUND_STRING("SHINE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAND_STREAM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLYING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Flying,
|
||||
.text = COMPOUND_STRING("FLYING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAND_VEIL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DROUGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Drought,
|
||||
.text = COMPOUND_STRING("DROUGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SERENE_GRACE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIGHTNINGROD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lightningrod,
|
||||
.text = COMPOUND_STRING("LIGHTNINGROD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHADOW_TAG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COMPOUNDEYES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Compoundeyes,
|
||||
.text = COMPOUND_STRING("COMPOUNDEYES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHED_SKIN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MARVEL_SCALE)] =
|
||||
{
|
||||
.text = gEasyChatWord_MarvelScale,
|
||||
.text = COMPOUND_STRING("MARVEL SCALE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHELL_ARMOR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WONDER_GUARD)] =
|
||||
{
|
||||
.text = gEasyChatWord_WonderGuard,
|
||||
.text = COMPOUND_STRING("WONDER GUARD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHIELD_DUST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_INSOMNIA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Insomnia,
|
||||
.text = COMPOUND_STRING("INSOMNIA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHINE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEVITATE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Levitate,
|
||||
.text = COMPOUND_STRING("LEVITATE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMART),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PLUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Plus,
|
||||
.text = COMPOUND_STRING("PLUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMARTNESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PRESSURE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pressure,
|
||||
.text = COMPOUND_STRING("PRESSURE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOUNDPROOF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LIQUID_OOZE)] =
|
||||
{
|
||||
.text = gEasyChatWord_LiquidOoze,
|
||||
.text = COMPOUND_STRING("LIQUID OOZE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPEED_BOOST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COLOR_CHANGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_ColorChange,
|
||||
.text = COMPOUND_STRING("COLOR CHANGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STATIC),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOUNDPROOF)] =
|
||||
{
|
||||
.text = gEasyChatWord_Soundproof,
|
||||
.text = COMPOUND_STRING("SOUNDPROOF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STEEL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EFFECT_SPORE)] =
|
||||
{
|
||||
.text = gEasyChatWord_EffectSpore,
|
||||
.text = COMPOUND_STRING("EFFECT SPORE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STENCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PKRS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pkrs,
|
||||
.text = COMPOUND_STRING("{PK}RS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STICKY_HOLD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FIRE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fire,
|
||||
.text = COMPOUND_STRING("FIRE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STURDY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLAME_BODY)] =
|
||||
{
|
||||
.text = gEasyChatWord_FlameBody,
|
||||
.text = COMPOUND_STRING("FLAME BODY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SUCTION_CUPS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MINUS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Minus,
|
||||
.text = COMPOUND_STRING("MINUS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SWARM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OWN_TEMPO)] =
|
||||
{
|
||||
.text = gEasyChatWord_OwnTempo,
|
||||
.text = COMPOUND_STRING("OWN TEMPO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SWIFT_SWIM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MAGMA_ARMOR)] =
|
||||
{
|
||||
.text = gEasyChatWord_MagmaArmor,
|
||||
.text = COMPOUND_STRING("MAGMA ARMOR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SYNCHRONIZE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WATER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Water,
|
||||
.text = COMPOUND_STRING("WATER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THICK_FAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WATER_VEIL)] =
|
||||
{
|
||||
.text = gEasyChatWord_WaterVeil,
|
||||
.text = COMPOUND_STRING("WATER VEIL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TORRENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BUG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bug,
|
||||
.text = COMPOUND_STRING("BUG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOUGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SWARM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Swarm,
|
||||
.text = COMPOUND_STRING("SWARM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOUGHNESS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CUTE_CHARM)] =
|
||||
{
|
||||
.text = gEasyChatWord_CuteCharm,
|
||||
.text = COMPOUND_STRING("CUTE CHARM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRACE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_IMMUNITY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Immunity,
|
||||
.text = COMPOUND_STRING("IMMUNITY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRUANT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BLAZE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Blaze,
|
||||
.text = COMPOUND_STRING("BLAZE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TYPE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PICKUP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pickup,
|
||||
.text = COMPOUND_STRING("PICKUP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VITAL_SPIRIT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PATTERN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pattern,
|
||||
.text = COMPOUND_STRING("PATTERN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VOLT_ABSORB),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLASH_FIRE)] =
|
||||
{
|
||||
.text = gEasyChatWord_FlashFire,
|
||||
.text = COMPOUND_STRING("FLASH FIRE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WATER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VITAL_SPIRIT)] =
|
||||
{
|
||||
.text = gEasyChatWord_VitalSpirit,
|
||||
.text = COMPOUND_STRING("VITAL SPIRIT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WATER_ABSORB),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CHLOROPHYLL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Chlorophyll,
|
||||
.text = COMPOUND_STRING("CHLOROPHYLL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WATER_VEIL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_PURE_POWER)] =
|
||||
{
|
||||
.text = gEasyChatWord_PurePower,
|
||||
.text = COMPOUND_STRING("PURE POWER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHITE_SMOKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHIELD_DUST)] =
|
||||
{
|
||||
.text = gEasyChatWord_ShieldDust,
|
||||
.text = COMPOUND_STRING("SHIELD DUST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WONDER_GUARD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,317 +1,271 @@
|
|||
const u8 gEasyChatWord_Fall[] = _("FALL");
|
||||
const u8 gEasyChatWord_Morning[] = _("MORNING");
|
||||
const u8 gEasyChatWord_Tomorrow[] = _("TOMORROW");
|
||||
const u8 gEasyChatWord_Last[] = _("LAST");
|
||||
const u8 gEasyChatWord_Day[] = _("DAY");
|
||||
const u8 gEasyChatWord_Sometime[] = _("SOMETIME");
|
||||
const u8 gEasyChatWord_Always[] = _("ALWAYS");
|
||||
const u8 gEasyChatWord_Current[] = _("CURRENT");
|
||||
const u8 gEasyChatWord_Forever[] = _("FOREVER");
|
||||
const u8 gEasyChatWord_Days[] = _("DAYS");
|
||||
const u8 gEasyChatWord_End[] = _("END");
|
||||
const u8 gEasyChatWord_Tuesday[] = _("TUESDAY");
|
||||
const u8 gEasyChatWord_Yesterday[] = _("YESTERDAY");
|
||||
const u8 gEasyChatWord_Today[] = _("TODAY");
|
||||
const u8 gEasyChatWord_Friday[] = _("FRIDAY");
|
||||
const u8 gEasyChatWord_Monday[] = _("MONDAY");
|
||||
const u8 gEasyChatWord_Later[] = _("LATER");
|
||||
const u8 gEasyChatWord_Earlier[] = _("EARLIER");
|
||||
const u8 gEasyChatWord_Another[] = _("ANOTHER");
|
||||
const u8 gEasyChatWord_Time[] = _("TIME");
|
||||
const u8 gEasyChatWord_Finish[] = _("FINISH");
|
||||
const u8 gEasyChatWord_Wednesday[] = _("WEDNESDAY");
|
||||
const u8 gEasyChatWord_Soon[] = _("SOON");
|
||||
const u8 gEasyChatWord_Start[] = _("START");
|
||||
const u8 gEasyChatWord_Month[] = _("MONTH");
|
||||
const u8 gEasyChatWord_Stop[] = _("STOP");
|
||||
const u8 gEasyChatWord_Now[] = _("NOW");
|
||||
const u8 gEasyChatWord_Final[] = _("FINAL");
|
||||
const u8 gEasyChatWord_Next[] = _("NEXT");
|
||||
const u8 gEasyChatWord_Age[] = _("AGE");
|
||||
const u8 gEasyChatWord_Saturday[] = _("SATURDAY");
|
||||
const u8 gEasyChatWord_Summer[] = _("SUMMER");
|
||||
const u8 gEasyChatWord_Sunday[] = _("SUNDAY");
|
||||
const u8 gEasyChatWord_Beginning[] = _("BEGINNING");
|
||||
const u8 gEasyChatWord_Spring[] = _("SPRING");
|
||||
const u8 gEasyChatWord_Daytime[] = _("DAYTIME");
|
||||
const u8 gEasyChatWord_Winter[] = _("WINTER");
|
||||
const u8 gEasyChatWord_Daily[] = _("DAILY");
|
||||
const u8 gEasyChatWord_Olden[] = _("OLDEN");
|
||||
const u8 gEasyChatWord_Almost[] = _("ALMOST");
|
||||
const u8 gEasyChatWord_Nearly[] = _("NEARLY");
|
||||
const u8 gEasyChatWord_Thursday[] = _("THURSDAY");
|
||||
const u8 gEasyChatWord_Nighttime[] = _("NIGHTTIME");
|
||||
const u8 gEasyChatWord_Night[] = _("NIGHT");
|
||||
const u8 gEasyChatWord_Week[] = _("WEEK");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Time[] = {
|
||||
[EC_INDEX(EC_WORD_FALL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fall,
|
||||
.text = COMPOUND_STRING("FALL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AGE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MORNING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Morning,
|
||||
.text = COMPOUND_STRING("MORNING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALMOST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TOMORROW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tomorrow,
|
||||
.text = COMPOUND_STRING("TOMORROW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ALWAYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LAST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Last,
|
||||
.text = COMPOUND_STRING("LAST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ANOTHER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Day,
|
||||
.text = COMPOUND_STRING("DAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BEGINNING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOMETIME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sometime,
|
||||
.text = COMPOUND_STRING("SOMETIME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CURRENT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALWAYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Always,
|
||||
.text = COMPOUND_STRING("ALWAYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAILY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CURRENT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Current,
|
||||
.text = COMPOUND_STRING("CURRENT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FOREVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Forever,
|
||||
.text = COMPOUND_STRING("FOREVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAYS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAYS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Days,
|
||||
.text = COMPOUND_STRING("DAYS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DAYTIME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_END)] =
|
||||
{
|
||||
.text = gEasyChatWord_End,
|
||||
.text = COMPOUND_STRING("END"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EARLIER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TUESDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tuesday,
|
||||
.text = COMPOUND_STRING("TUESDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_END),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YESTERDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yesterday,
|
||||
.text = COMPOUND_STRING("YESTERDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FALL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TODAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Today,
|
||||
.text = COMPOUND_STRING("TODAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FINAL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FRIDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Friday,
|
||||
.text = COMPOUND_STRING("FRIDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FINISH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MONDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Monday,
|
||||
.text = COMPOUND_STRING("MONDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FOREVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LATER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Later,
|
||||
.text = COMPOUND_STRING("LATER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FRIDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EARLIER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Earlier,
|
||||
.text = COMPOUND_STRING("EARLIER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LAST),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ANOTHER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Another,
|
||||
.text = COMPOUND_STRING("ANOTHER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LATER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TIME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Time,
|
||||
.text = COMPOUND_STRING("TIME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MONDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FINISH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Finish,
|
||||
.text = COMPOUND_STRING("FINISH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MONTH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEDNESDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wednesday,
|
||||
.text = COMPOUND_STRING("WEDNESDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MORNING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SOON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Soon,
|
||||
.text = COMPOUND_STRING("SOON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEARLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_START)] =
|
||||
{
|
||||
.text = gEasyChatWord_Start,
|
||||
.text = COMPOUND_STRING("START"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEXT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MONTH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Month,
|
||||
.text = COMPOUND_STRING("MONTH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NIGHT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_STOP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Stop,
|
||||
.text = COMPOUND_STRING("STOP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NIGHTTIME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Now,
|
||||
.text = COMPOUND_STRING("NOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FINAL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Final,
|
||||
.text = COMPOUND_STRING("FINAL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OLDEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEXT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Next,
|
||||
.text = COMPOUND_STRING("NEXT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SATURDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AGE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Age,
|
||||
.text = COMPOUND_STRING("AGE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOMETIME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SATURDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Saturday,
|
||||
.text = COMPOUND_STRING("SATURDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SOON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SUMMER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Summer,
|
||||
.text = COMPOUND_STRING("SUMMER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SPRING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SUNDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sunday,
|
||||
.text = COMPOUND_STRING("SUNDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_START),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BEGINNING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Beginning,
|
||||
.text = COMPOUND_STRING("BEGINNING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_STOP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SPRING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Spring,
|
||||
.text = COMPOUND_STRING("SPRING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SUMMER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAYTIME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Daytime,
|
||||
.text = COMPOUND_STRING("DAYTIME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SUNDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WINTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Winter,
|
||||
.text = COMPOUND_STRING("WINTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_THURSDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DAILY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Daily,
|
||||
.text = COMPOUND_STRING("DAILY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TIME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OLDEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Olden,
|
||||
.text = COMPOUND_STRING("OLDEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TODAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ALMOST)] =
|
||||
{
|
||||
.text = gEasyChatWord_Almost,
|
||||
.text = COMPOUND_STRING("ALMOST"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TOMORROW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEARLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nearly,
|
||||
.text = COMPOUND_STRING("NEARLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TUESDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_THURSDAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Thursday,
|
||||
.text = COMPOUND_STRING("THURSDAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEDNESDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NIGHTTIME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nighttime,
|
||||
.text = COMPOUND_STRING("NIGHTTIME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WEEK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NIGHT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Night,
|
||||
.text = COMPOUND_STRING("NIGHT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WINTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WEEK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Week,
|
||||
.text = COMPOUND_STRING("WEEK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YESTERDAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,191 +1,163 @@
|
|||
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[] = {
|
||||
[EC_INDEX(EC_WORD_I_CHOOSE_YOU)] =
|
||||
{
|
||||
.text = gEasyChatWord_IChooseYou,
|
||||
.text = COMPOUND_STRING("I CHOOSE YOU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BAG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOTCHA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gotcha,
|
||||
.text = COMPOUND_STRING("GOTCHA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CENTER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRADE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trade,
|
||||
.text = COMPOUND_STRING("TRADE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EGG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SAPPHIRE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sapphire,
|
||||
.text = COMPOUND_STRING("SAPPHIRE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EMERALD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EVOLVE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Evolve,
|
||||
.text = COMPOUND_STRING("EVOLVE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ENCYCLOPEDIA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ENCYCLOPEDIA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Encyclopedia,
|
||||
.text = COMPOUND_STRING("ENCYCLOPEDIA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EVOLVE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NATURE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nature,
|
||||
.text = COMPOUND_STRING("NATURE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLAME),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CENTER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Center,
|
||||
.text = COMPOUND_STRING("CENTER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GET),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EGG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Egg,
|
||||
.text = COMPOUND_STRING("EGG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOLD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LINK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Link,
|
||||
.text = COMPOUND_STRING("LINK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GOTCHA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SP_ABILITY)] =
|
||||
{
|
||||
.text = gEasyChatWord_SpAbility,
|
||||
.text = COMPOUND_STRING("SP. ABILITY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GREEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TRAINER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Trainer,
|
||||
.text = COMPOUND_STRING("TRAINER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_I_CHOOSE_YOU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_VERSION)] =
|
||||
{
|
||||
.text = gEasyChatWord_Version,
|
||||
.text = COMPOUND_STRING("VERSION"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEAF),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POKENAV)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pokenav,
|
||||
.text = COMPOUND_STRING("POKéNAV"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LEVEL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POKEMON)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pokemon,
|
||||
.text = COMPOUND_STRING("POKéMON"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LINK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GET)] =
|
||||
{
|
||||
.text = gEasyChatWord_Get,
|
||||
.text = COMPOUND_STRING("GET"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NATURE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_POKEDEX)] =
|
||||
{
|
||||
.text = gEasyChatWord_Pokedex,
|
||||
.text = COMPOUND_STRING("POKéDEX"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POKEDEX),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RUBY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ruby,
|
||||
.text = COMPOUND_STRING("RUBY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POKEMON),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEVEL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Level,
|
||||
.text = COMPOUND_STRING("LEVEL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_POKENAV),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_RED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Red,
|
||||
.text = COMPOUND_STRING("RED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RED),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GREEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Green,
|
||||
.text = COMPOUND_STRING("GREEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_RUBY),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BAG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bag,
|
||||
.text = COMPOUND_STRING("BAG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SAPPHIRE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLAME)] =
|
||||
{
|
||||
.text = gEasyChatWord_Flame,
|
||||
.text = COMPOUND_STRING("FLAME"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SILVER),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GOLD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gold,
|
||||
.text = COMPOUND_STRING("GOLD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SP_ABILITY),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LEAF)] =
|
||||
{
|
||||
.text = gEasyChatWord_Leaf,
|
||||
.text = COMPOUND_STRING("LEAF"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRADE),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SILVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Silver,
|
||||
.text = COMPOUND_STRING("SILVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TRAINER),
|
||||
.enabled = FALSE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EMERALD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Emerald,
|
||||
.text = COMPOUND_STRING("EMERALD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_VERSION),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,233 +1,199 @@
|
|||
const u8 gEasyChatWord_KthxBye[] = _("KTHX, BYE.");
|
||||
const u8 gEasyChatWord_YesSirExcl[] = _("YES, SIR!");
|
||||
const u8 gEasyChatWord_AvantGarde[] = _("AVANT GARDE");
|
||||
const u8 gEasyChatWord_Couple[] = _("COUPLE");
|
||||
const u8 gEasyChatWord_MuchObliged[] = _("MUCH OBLIGED");
|
||||
const u8 gEasyChatWord_YeehawExcl[] = _("YEEHAW!");
|
||||
const u8 gEasyChatWord_Mega[] = _("MEGA");
|
||||
const u8 gEasyChatWord_1HitKOExcl[] = _("1-HIT KO!");
|
||||
const u8 gEasyChatWord_Destiny[] = _("DESTINY");
|
||||
const u8 gEasyChatWord_Cancel[] = _("CANCEL");
|
||||
const u8 gEasyChatWord_New[] = _("NEW");
|
||||
const u8 gEasyChatWord_Flatten[] = _("FLATTEN");
|
||||
const u8 gEasyChatWord_Kidding[] = _("KIDDING");
|
||||
const u8 gEasyChatWord_Loser[] = _("LOSER");
|
||||
const u8 gEasyChatWord_Losing[] = _("LOSING");
|
||||
const u8 gEasyChatWord_Happening[] = _("HAPPENING");
|
||||
const u8 gEasyChatWord_HipAnd[] = _("HIP AND");
|
||||
const u8 gEasyChatWord_Shake[] = _("SHAKE");
|
||||
const u8 gEasyChatWord_Shady[] = _("SHADY");
|
||||
const u8 gEasyChatWord_Upbeat[] = _("UPBEAT");
|
||||
const u8 gEasyChatWord_Modern[] = _("MODERN");
|
||||
const u8 gEasyChatWord_SmellYa[] = _("SMELL YA");
|
||||
const u8 gEasyChatWord_Bang[] = _("BANG");
|
||||
const u8 gEasyChatWord_Knockout[] = _("KNOCKOUT");
|
||||
const u8 gEasyChatWord_Hassle[] = _("HASSLE");
|
||||
const u8 gEasyChatWord_Winner[] = _("WINNER");
|
||||
const u8 gEasyChatWord_Fever[] = _("FEVER");
|
||||
const u8 gEasyChatWord_Wannabe[] = _("WANNABE");
|
||||
const u8 gEasyChatWord_Baby[] = _("BABY");
|
||||
const u8 gEasyChatWord_Heart[] = _("HEART");
|
||||
const u8 gEasyChatWord_Old[] = _("OLD");
|
||||
const u8 gEasyChatWord_Young[] = _("YOUNG");
|
||||
const u8 gEasyChatWord_Ugly[] = _("UGLY");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_TrendySaying[] = {
|
||||
[EC_INDEX(EC_WORD_KTHX_BYE)] =
|
||||
{
|
||||
.text = gEasyChatWord_KthxBye,
|
||||
.text = COMPOUND_STRING("KTHX, BYE."),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_1_HIT_KO_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YES_SIR_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_YesSirExcl,
|
||||
.text = COMPOUND_STRING("YES, SIR!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AVANT_GARDE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AVANT_GARDE)] =
|
||||
{
|
||||
.text = gEasyChatWord_AvantGarde,
|
||||
.text = COMPOUND_STRING("AVANT GARDE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BABY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_COUPLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Couple,
|
||||
.text = COMPOUND_STRING("COUPLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_BANG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MUCH_OBLIGED)] =
|
||||
{
|
||||
.text = gEasyChatWord_MuchObliged,
|
||||
.text = COMPOUND_STRING("MUCH OBLIGED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CANCEL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YEEHAW_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_YeehawExcl,
|
||||
.text = COMPOUND_STRING("YEEHAW!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_COUPLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MEGA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mega,
|
||||
.text = COMPOUND_STRING("MEGA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DESTINY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_1_HIT_KO_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_1HitKOExcl,
|
||||
.text = COMPOUND_STRING("1-HIT KO!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FEVER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DESTINY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Destiny,
|
||||
.text = COMPOUND_STRING("DESTINY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FLATTEN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CANCEL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cancel,
|
||||
.text = COMPOUND_STRING("CANCEL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAPPENING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NEW)] =
|
||||
{
|
||||
.text = gEasyChatWord_New,
|
||||
.text = COMPOUND_STRING("NEW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HASSLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FLATTEN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Flatten,
|
||||
.text = COMPOUND_STRING("FLATTEN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEART),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KIDDING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Kidding,
|
||||
.text = COMPOUND_STRING("KIDDING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIP_AND),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOSER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Loser,
|
||||
.text = COMPOUND_STRING("LOSER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KIDDING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOSING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Losing,
|
||||
.text = COMPOUND_STRING("LOSING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KNOCKOUT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAPPENING)] =
|
||||
{
|
||||
.text = gEasyChatWord_Happening,
|
||||
.text = COMPOUND_STRING("HAPPENING"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_KTHX_BYE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIP_AND)] =
|
||||
{
|
||||
.text = gEasyChatWord_HipAnd,
|
||||
.text = COMPOUND_STRING("HIP AND"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOSER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHAKE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shake,
|
||||
.text = COMPOUND_STRING("SHAKE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOSING),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHADY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shady,
|
||||
.text = COMPOUND_STRING("SHADY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MEGA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UPBEAT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Upbeat,
|
||||
.text = COMPOUND_STRING("UPBEAT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MODERN),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MODERN)] =
|
||||
{
|
||||
.text = gEasyChatWord_Modern,
|
||||
.text = COMPOUND_STRING("MODERN"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MUCH_OBLIGED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SMELL_YA)] =
|
||||
{
|
||||
.text = gEasyChatWord_SmellYa,
|
||||
.text = COMPOUND_STRING("SMELL YA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NEW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BANG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Bang,
|
||||
.text = COMPOUND_STRING("BANG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OLD),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_KNOCKOUT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Knockout,
|
||||
.text = COMPOUND_STRING("KNOCKOUT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHADY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HASSLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hassle,
|
||||
.text = COMPOUND_STRING("HASSLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHAKE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WINNER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Winner,
|
||||
.text = COMPOUND_STRING("WINNER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SMELL_YA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FEVER)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fever,
|
||||
.text = COMPOUND_STRING("FEVER"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UGLY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WANNABE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wannabe,
|
||||
.text = COMPOUND_STRING("WANNABE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UPBEAT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_BABY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Baby,
|
||||
.text = COMPOUND_STRING("BABY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WANNABE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEART)] =
|
||||
{
|
||||
.text = gEasyChatWord_Heart,
|
||||
.text = COMPOUND_STRING("HEART"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WINNER),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OLD)] =
|
||||
{
|
||||
.text = gEasyChatWord_Old,
|
||||
.text = COMPOUND_STRING("OLD"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YEEHAW_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YOUNG)] =
|
||||
{
|
||||
.text = gEasyChatWord_Young,
|
||||
.text = COMPOUND_STRING("YOUNG"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YES_SIR_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UGLY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ugly,
|
||||
.text = COMPOUND_STRING("UGLY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YOUNG),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,443 +1,379 @@
|
|||
const u8 gEasyChatWord_Excl[] = _("!");
|
||||
const u8 gEasyChatWord_ExclExcl[] = _("!!");
|
||||
const u8 gEasyChatWord_QuesExcl[] = _("?!");
|
||||
const u8 gEasyChatWord_Ques[] = _("?");
|
||||
const u8 gEasyChatWord_Ellipsis[] = _("…");
|
||||
const u8 gEasyChatWord_EllipsisExcl[] = _("…!");
|
||||
const u8 gEasyChatWord_EllipsisEllipsisEllipsis[] = _("………");
|
||||
const u8 gEasyChatWord_Dash[] = _("-");
|
||||
const u8 gEasyChatWord_DashDashDash[] = _("- - -");
|
||||
const u8 gEasyChatWord_UhOh[] = _("UH-OH");
|
||||
const u8 gEasyChatWord_Waaah[] = _("WAAAH");
|
||||
const u8 gEasyChatWord_Ahaha[] = _("AHAHA");
|
||||
const u8 gEasyChatWord_OhQues[] = _("OH?");
|
||||
const u8 gEasyChatWord_Nope[] = _("NOPE");
|
||||
const u8 gEasyChatWord_Urgh[] = _("URGH");
|
||||
const u8 gEasyChatWord_Hmm[] = _("HMM");
|
||||
const u8 gEasyChatWord_Whoah[] = _("WHOAH");
|
||||
const u8 gEasyChatWord_WroooaarExcl[] = _("WROOOAAR!");
|
||||
const u8 gEasyChatWord_Wow[] = _("WOW");
|
||||
const u8 gEasyChatWord_Giggle[] = _("GIGGLE");
|
||||
const u8 gEasyChatWord_Sigh[] = _("SIGH");
|
||||
const u8 gEasyChatWord_Unbelievable[] = _("UNBELIEVABLE");
|
||||
const u8 gEasyChatWord_Cries[] = _("CRIES");
|
||||
const u8 gEasyChatWord_Agree[] = _("AGREE");
|
||||
const u8 gEasyChatWord_EhQues[] = _("EH?");
|
||||
const u8 gEasyChatWord_Cry[] = _("CRY");
|
||||
const u8 gEasyChatWord_Ehehe[] = _("EHEHE");
|
||||
const u8 gEasyChatWord_OiOiOi[] = _("OI, OI, OI");
|
||||
const u8 gEasyChatWord_OhYeah[] = _("OH, YEAH");
|
||||
const u8 gEasyChatWord_Oh[] = _("OH");
|
||||
const u8 gEasyChatWord_Oops[] = _("OOPS");
|
||||
const u8 gEasyChatWord_Shocked[] = _("SHOCKED");
|
||||
const u8 gEasyChatWord_Eek[] = _("EEK");
|
||||
const u8 gEasyChatWord_Graaah[] = _("GRAAAH");
|
||||
const u8 gEasyChatWord_Gwahahaha[] = _("GWAHAHAHA");
|
||||
const u8 gEasyChatWord_Way[] = _("WAY");
|
||||
const u8 gEasyChatWord_Tch[] = _("TCH");
|
||||
const u8 gEasyChatWord_Hehe[] = _("HEHE");
|
||||
const u8 gEasyChatWord_Hah[] = _("HAH");
|
||||
const u8 gEasyChatWord_Yup[] = _("YUP");
|
||||
const u8 gEasyChatWord_Hahaha[] = _("HAHAHA");
|
||||
const u8 gEasyChatWord_Aiyeeh[] = _("AIYEEH");
|
||||
const u8 gEasyChatWord_Hiyah[] = _("HIYAH");
|
||||
const u8 gEasyChatWord_Fufufu[] = _("FUFUFU");
|
||||
const u8 gEasyChatWord_Lol[] = _("LOL");
|
||||
const u8 gEasyChatWord_Snort[] = _("SNORT");
|
||||
const u8 gEasyChatWord_Humph[] = _("HUMPH");
|
||||
const u8 gEasyChatWord_Hehehe[] = _("HEHEHE");
|
||||
const u8 gEasyChatWord_Heh[] = _("HEH");
|
||||
const u8 gEasyChatWord_Hohoho[] = _("HOHOHO");
|
||||
const u8 gEasyChatWord_UhHuh[] = _("UH-HUH");
|
||||
const u8 gEasyChatWord_OhDear[] = _("OH, DEAR");
|
||||
const u8 gEasyChatWord_Arrgh[] = _("ARRGH");
|
||||
const u8 gEasyChatWord_Mufufu[] = _("MUFUFU");
|
||||
const u8 gEasyChatWord_Mmm[] = _("MMM");
|
||||
const u8 gEasyChatWord_OhKay[] = _("OH-KAY");
|
||||
const u8 gEasyChatWord_Okay[] = _("OKAY");
|
||||
const u8 gEasyChatWord_Lalala[] = _("LALALA");
|
||||
const u8 gEasyChatWord_Yay[] = _("YAY");
|
||||
const u8 gEasyChatWord_Aww[] = _("AWW");
|
||||
const u8 gEasyChatWord_Wowee[] = _("WOWEE");
|
||||
const u8 gEasyChatWord_Gwah[] = _("GWAH");
|
||||
const u8 gEasyChatWord_Wahahaha[] = _("WAHAHAHA");
|
||||
|
||||
const struct EasyChatWordInfo gEasyChatGroup_Voices[] = {
|
||||
[EC_INDEX(EC_WORD_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Excl,
|
||||
.text = COMPOUND_STRING("!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EXCL_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_ExclExcl,
|
||||
.text = COMPOUND_STRING("!!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EXCL_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_QUES_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_QuesExcl,
|
||||
.text = COMPOUND_STRING("?!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DASH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ques,
|
||||
.text = COMPOUND_STRING("?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_DASH_DASH_DASH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ELLIPSIS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ellipsis,
|
||||
.text = COMPOUND_STRING("…"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ELLIPSIS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ELLIPSIS_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_EllipsisExcl,
|
||||
.text = COMPOUND_STRING("…!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ELLIPSIS_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS)] =
|
||||
{
|
||||
.text = gEasyChatWord_EllipsisEllipsisEllipsis,
|
||||
.text = COMPOUND_STRING("………"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DASH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Dash,
|
||||
.text = COMPOUND_STRING("-"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_DASH_DASH_DASH)] =
|
||||
{
|
||||
.text = gEasyChatWord_DashDashDash,
|
||||
.text = COMPOUND_STRING("- - -"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_QUES_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UH_OH)] =
|
||||
{
|
||||
.text = gEasyChatWord_UhOh,
|
||||
.text = COMPOUND_STRING("UH-OH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AGREE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAAAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Waaah,
|
||||
.text = COMPOUND_STRING("WAAAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AHAHA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AHAHA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ahaha,
|
||||
.text = COMPOUND_STRING("AHAHA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AIYEEH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OH_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_OhQues,
|
||||
.text = COMPOUND_STRING("OH?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_ARRGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_NOPE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Nope,
|
||||
.text = COMPOUND_STRING("NOPE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_AWW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_URGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Urgh,
|
||||
.text = COMPOUND_STRING("URGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CRIES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HMM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hmm,
|
||||
.text = COMPOUND_STRING("HMM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_CRY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WHOAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Whoah,
|
||||
.text = COMPOUND_STRING("WHOAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EEK),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WROOOAAR_EXCL)] =
|
||||
{
|
||||
.text = gEasyChatWord_WroooaarExcl,
|
||||
.text = COMPOUND_STRING("WROOOAAR!"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EH_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WOW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wow,
|
||||
.text = COMPOUND_STRING("WOW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_EHEHE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GIGGLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Giggle,
|
||||
.text = COMPOUND_STRING("GIGGLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_FUFUFU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SIGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Sigh,
|
||||
.text = COMPOUND_STRING("SIGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GIGGLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UNBELIEVABLE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Unbelievable,
|
||||
.text = COMPOUND_STRING("UNBELIEVABLE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GRAAAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CRIES)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cries,
|
||||
.text = COMPOUND_STRING("CRIES"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GWAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AGREE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Agree,
|
||||
.text = COMPOUND_STRING("AGREE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_GWAHAHAHA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EH_QUES)] =
|
||||
{
|
||||
.text = gEasyChatWord_EhQues,
|
||||
.text = COMPOUND_STRING("EH?"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_CRY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Cry,
|
||||
.text = COMPOUND_STRING("CRY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HAHAHA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EHEHE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Ehehe,
|
||||
.text = COMPOUND_STRING("EHEHE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OI_OI_OI)] =
|
||||
{
|
||||
.text = gEasyChatWord_OiOiOi,
|
||||
.text = COMPOUND_STRING("OI, OI, OI"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEHE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OH_YEAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_OhYeah,
|
||||
.text = COMPOUND_STRING("OH, YEAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HEHEHE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Oh,
|
||||
.text = COMPOUND_STRING("OH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HIYAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OOPS)] =
|
||||
{
|
||||
.text = gEasyChatWord_Oops,
|
||||
.text = COMPOUND_STRING("OOPS"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HMM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SHOCKED)] =
|
||||
{
|
||||
.text = gEasyChatWord_Shocked,
|
||||
.text = COMPOUND_STRING("SHOCKED"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HOHOHO),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_EEK)] =
|
||||
{
|
||||
.text = gEasyChatWord_Eek,
|
||||
.text = COMPOUND_STRING("EEK"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_HUMPH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GRAAAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Graaah,
|
||||
.text = COMPOUND_STRING("GRAAAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LALALA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GWAHAHAHA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gwahahaha,
|
||||
.text = COMPOUND_STRING("GWAHAHAHA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_LOL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Way,
|
||||
.text = COMPOUND_STRING("WAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MMM),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_TCH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Tch,
|
||||
.text = COMPOUND_STRING("TCH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_MUFUFU),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEHE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hehe,
|
||||
.text = COMPOUND_STRING("HEHE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_NOPE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hah,
|
||||
.text = COMPOUND_STRING("HAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YUP)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yup,
|
||||
.text = COMPOUND_STRING("YUP"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OH_DEAR),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HAHAHA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hahaha,
|
||||
.text = COMPOUND_STRING("HAHAHA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OH_YEAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AIYEEH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Aiyeeh,
|
||||
.text = COMPOUND_STRING("AIYEEH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OH_KAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HIYAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hiyah,
|
||||
.text = COMPOUND_STRING("HIYAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OH_QUES),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_FUFUFU)] =
|
||||
{
|
||||
.text = gEasyChatWord_Fufufu,
|
||||
.text = COMPOUND_STRING("FUFUFU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OI_OI_OI),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LOL)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lol,
|
||||
.text = COMPOUND_STRING("LOL"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OKAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_SNORT)] =
|
||||
{
|
||||
.text = gEasyChatWord_Snort,
|
||||
.text = COMPOUND_STRING("SNORT"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_OOPS),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HUMPH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Humph,
|
||||
.text = COMPOUND_STRING("HUMPH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SHOCKED),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEHEHE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hehehe,
|
||||
.text = COMPOUND_STRING("HEHEHE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SIGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HEH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Heh,
|
||||
.text = COMPOUND_STRING("HEH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_SNORT),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_HOHOHO)] =
|
||||
{
|
||||
.text = gEasyChatWord_Hohoho,
|
||||
.text = COMPOUND_STRING("HOHOHO"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_TCH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_UH_HUH)] =
|
||||
{
|
||||
.text = gEasyChatWord_UhHuh,
|
||||
.text = COMPOUND_STRING("UH-HUH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UH_HUH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OH_DEAR)] =
|
||||
{
|
||||
.text = gEasyChatWord_OhDear,
|
||||
.text = COMPOUND_STRING("OH, DEAR"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UH_OH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_ARRGH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Arrgh,
|
||||
.text = COMPOUND_STRING("ARRGH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_UNBELIEVABLE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MUFUFU)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mufufu,
|
||||
.text = COMPOUND_STRING("MUFUFU"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_URGH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_MMM)] =
|
||||
{
|
||||
.text = gEasyChatWord_Mmm,
|
||||
.text = COMPOUND_STRING("MMM"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAAAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OH_KAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_OhKay,
|
||||
.text = COMPOUND_STRING("OH-KAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAHAHAHA),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_OKAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Okay,
|
||||
.text = COMPOUND_STRING("OKAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_LALALA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Lalala,
|
||||
.text = COMPOUND_STRING("LALALA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WHOAH),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_YAY)] =
|
||||
{
|
||||
.text = gEasyChatWord_Yay,
|
||||
.text = COMPOUND_STRING("YAY"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WOW),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_AWW)] =
|
||||
{
|
||||
.text = gEasyChatWord_Aww,
|
||||
.text = COMPOUND_STRING("AWW"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WOWEE),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WOWEE)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wowee,
|
||||
.text = COMPOUND_STRING("WOWEE"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_WROOOAAR_EXCL),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_GWAH)] =
|
||||
{
|
||||
.text = gEasyChatWord_Gwah,
|
||||
.text = COMPOUND_STRING("GWAH"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YAY),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
[EC_INDEX(EC_WORD_WAHAHAHA)] =
|
||||
{
|
||||
.text = gEasyChatWord_Wahahaha,
|
||||
.text = COMPOUND_STRING("WAHAHAHA"),
|
||||
.alphabeticalOrder = EC_INDEX(EC_WORD_YUP),
|
||||
.enabled = TRUE,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -23,135 +23,157 @@
|
|||
#include "easy_chat_group_trendy_saying.h"
|
||||
#include "easy_chat_group_pokemon2.h"
|
||||
|
||||
const struct EasyChatGroup gEasyChatGroups[] = {
|
||||
const struct EasyChatGroup gEasyChatGroups[EC_NUM_GROUPS] = {
|
||||
[EC_GROUP_POKEMON] =
|
||||
{
|
||||
.name = COMPOUND_STRING("POKéMON"),
|
||||
.wordData = {.valueList = gEasyChatGroup_Pokemon},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Pokemon),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Pokemon),
|
||||
},
|
||||
[EC_GROUP_TRAINER] =
|
||||
{
|
||||
.name = COMPOUND_STRING("TRAINER"),
|
||||
.wordData = {.words = gEasyChatGroup_Trainer},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Trainer),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Trainer) - 6, // Excludes Red, Green, Flame, Gold, Leaf, and Silver
|
||||
},
|
||||
[EC_GROUP_STATUS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("STATUS"),
|
||||
.wordData = {.words = gEasyChatGroup_Status},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Status),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Status),
|
||||
},
|
||||
[EC_GROUP_BATTLE] =
|
||||
{
|
||||
.name = COMPOUND_STRING("BATTLE"),
|
||||
.wordData = {.words = gEasyChatGroup_Battle},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Battle),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Battle),
|
||||
},
|
||||
[EC_GROUP_GREETINGS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("GREETINGS"),
|
||||
.wordData = {.words = gEasyChatGroup_Greetings},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Greetings),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Greetings),
|
||||
},
|
||||
[EC_GROUP_PEOPLE] =
|
||||
{
|
||||
.name = COMPOUND_STRING("PEOPLE"),
|
||||
.wordData = {.words = gEasyChatGroup_People},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_People),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_People),
|
||||
},
|
||||
[EC_GROUP_VOICES] =
|
||||
{
|
||||
.name = COMPOUND_STRING("VOICES"),
|
||||
.wordData = {.words = gEasyChatGroup_Voices},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Voices),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Voices),
|
||||
},
|
||||
[EC_GROUP_SPEECH] =
|
||||
{
|
||||
.name = COMPOUND_STRING("SPEECH"),
|
||||
.wordData = {.words = gEasyChatGroup_Speech},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Speech),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Speech),
|
||||
},
|
||||
[EC_GROUP_ENDINGS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("ENDINGS"),
|
||||
.wordData = {.words = gEasyChatGroup_Endings},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Endings),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Endings),
|
||||
},
|
||||
[EC_GROUP_FEELINGS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("FEELINGS"),
|
||||
.wordData = {.words = gEasyChatGroup_Feelings},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Feelings),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Feelings),
|
||||
},
|
||||
[EC_GROUP_CONDITIONS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("CONDITIONS"),
|
||||
.wordData = {.words = gEasyChatGroup_Conditions},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Conditions),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Conditions),
|
||||
},
|
||||
[EC_GROUP_ACTIONS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("ACTIONS"),
|
||||
.wordData = {.words = gEasyChatGroup_Actions},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Actions),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Actions),
|
||||
},
|
||||
[EC_GROUP_LIFESTYLE] =
|
||||
{
|
||||
.name = COMPOUND_STRING("LIFESTYLE"),
|
||||
.wordData = {.words = gEasyChatGroup_Lifestyle},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Lifestyle),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Lifestyle),
|
||||
},
|
||||
[EC_GROUP_HOBBIES] =
|
||||
{
|
||||
.name = COMPOUND_STRING("HOBBIES"),
|
||||
.wordData = {.words = gEasyChatGroup_Hobbies},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Hobbies),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Hobbies),
|
||||
},
|
||||
[EC_GROUP_TIME] =
|
||||
{
|
||||
.name = COMPOUND_STRING("TIME"),
|
||||
.wordData = {.words = gEasyChatGroup_Time},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Time),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Time),
|
||||
},
|
||||
[EC_GROUP_MISC] =
|
||||
{
|
||||
.name = COMPOUND_STRING("MISC."),
|
||||
.wordData = {.words = gEasyChatGroup_Misc},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Misc),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Misc),
|
||||
},
|
||||
[EC_GROUP_ADJECTIVES] =
|
||||
{
|
||||
.name = COMPOUND_STRING("ADJECTIVES"),
|
||||
.wordData = {.words = gEasyChatGroup_Adjectives},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Adjectives),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Adjectives),
|
||||
},
|
||||
[EC_GROUP_EVENTS] =
|
||||
{
|
||||
.name = COMPOUND_STRING("EVENTS"),
|
||||
.wordData = {.words = gEasyChatGroup_Events},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Events),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Events),
|
||||
},
|
||||
[EC_GROUP_MOVE_1] =
|
||||
{
|
||||
.name = COMPOUND_STRING("MOVE 1"),
|
||||
.wordData = {.valueList = gEasyChatGroup_Move1},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Move1),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Move1),
|
||||
},
|
||||
[EC_GROUP_MOVE_2] =
|
||||
{
|
||||
.name = COMPOUND_STRING("MOVE 2"),
|
||||
.wordData = {.valueList = gEasyChatGroup_Move2},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Move2),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Move2),
|
||||
},
|
||||
[EC_GROUP_TRENDY_SAYING] =
|
||||
{
|
||||
.name = COMPOUND_STRING("TRENDY SAYING"),
|
||||
.wordData = {.words = gEasyChatGroup_TrendySaying},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_TrendySaying),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_TrendySaying),
|
||||
},
|
||||
[EC_GROUP_POKEMON_NATIONAL] =
|
||||
{
|
||||
.name = COMPOUND_STRING("POKéMON2"),
|
||||
.wordData = {.valueList = gEasyChatGroup_Pokemon2},
|
||||
.numWords = ARRAY_COUNT(gEasyChatGroup_Pokemon2),
|
||||
.numEnabledWords = ARRAY_COUNT(gEasyChatGroup_Pokemon2),
|
||||
|
|
|
|||
|
|
@ -1195,31 +1195,6 @@ static const u8 *const sFooterTextOptions[NUM_FOOTER_TYPES][4] = {
|
|||
#include "data/easy_chat/easy_chat_groups.h"
|
||||
#include "data/easy_chat/easy_chat_words_by_letter.h"
|
||||
|
||||
static const u8 *const sEasyChatGroupNamePointers[EC_NUM_GROUPS] = {
|
||||
[EC_GROUP_POKEMON] = gEasyChatGroupName_Pokemon,
|
||||
[EC_GROUP_TRAINER] = gEasyChatGroupName_Trainer,
|
||||
[EC_GROUP_STATUS] = gEasyChatGroupName_Status,
|
||||
[EC_GROUP_BATTLE] = gEasyChatGroupName_Battle,
|
||||
[EC_GROUP_GREETINGS] = gEasyChatGroupName_Greetings,
|
||||
[EC_GROUP_PEOPLE] = gEasyChatGroupName_People,
|
||||
[EC_GROUP_VOICES] = gEasyChatGroupName_Voices,
|
||||
[EC_GROUP_SPEECH] = gEasyChatGroupName_Speech,
|
||||
[EC_GROUP_ENDINGS] = gEasyChatGroupName_Endings,
|
||||
[EC_GROUP_FEELINGS] = gEasyChatGroupName_Feelings,
|
||||
[EC_GROUP_CONDITIONS] = gEasyChatGroupName_Conditions,
|
||||
[EC_GROUP_ACTIONS] = gEasyChatGroupName_Actions,
|
||||
[EC_GROUP_LIFESTYLE] = gEasyChatGroupName_Lifestyle,
|
||||
[EC_GROUP_HOBBIES] = gEasyChatGroupName_Hobbies,
|
||||
[EC_GROUP_TIME] = gEasyChatGroupName_Time,
|
||||
[EC_GROUP_MISC] = gEasyChatGroupName_Misc,
|
||||
[EC_GROUP_ADJECTIVES] = gEasyChatGroupName_Adjectives,
|
||||
[EC_GROUP_EVENTS] = gEasyChatGroupName_Events,
|
||||
[EC_GROUP_MOVE_1] = gEasyChatGroupName_Move1,
|
||||
[EC_GROUP_MOVE_2] = gEasyChatGroupName_Move2,
|
||||
[EC_GROUP_TRENDY_SAYING] = gEasyChatGroupName_TrendySaying,
|
||||
[EC_GROUP_POKEMON_NATIONAL] = gEasyChatGroupName_Pokemon2,
|
||||
};
|
||||
|
||||
static const u16 sDefaultProfileWords[EASY_CHAT_BATTLE_WORDS_COUNT - 2] = {
|
||||
EC_WORD_I_AM,
|
||||
EC_WORD_A,
|
||||
|
|
@ -5635,7 +5610,7 @@ static u8 GetUnlockedEasyChatGroupId(u8 index)
|
|||
static u8 UNUSED *BufferEasyChatWordGroupName(u8 *dest, u8 groupId, u16 totalChars)
|
||||
{
|
||||
u16 i;
|
||||
u8 *str = StringCopy(dest, sEasyChatGroupNamePointers[groupId]);
|
||||
u8 *str = StringCopy(dest, gEasyChatGroups[groupId].name);
|
||||
for (i = str - dest; i < totalChars; i++)
|
||||
{
|
||||
*str = CHAR_SPACE;
|
||||
|
|
@ -5648,7 +5623,7 @@ static u8 UNUSED *BufferEasyChatWordGroupName(u8 *dest, u8 groupId, u16 totalCha
|
|||
|
||||
static const u8 *GetEasyChatWordGroupName(u8 groupId)
|
||||
{
|
||||
return sEasyChatGroupNamePointers[groupId];
|
||||
return gEasyChatGroups[groupId].name;
|
||||
}
|
||||
|
||||
static u8 *CopyEasyChatWordPadded(u8 *dest, u16 easyChatWord, u16 totalChars)
|
||||
|
|
|
|||
|
|
@ -1010,30 +1010,6 @@ const u8 gText_ByeByeVar1[] = _("Bye-bye, {STR_VAR_2}!");
|
|||
const u8 gText_XSentOverY[] = _("{STR_VAR_1} sent over {STR_VAR_3}.");
|
||||
const u8 gText_TakeGoodCareOfX[] = _("Take good care of {STR_VAR_3}!");
|
||||
|
||||
// Easy chat group names
|
||||
const u8 gEasyChatGroupName_Pokemon[] = _("POKéMON");
|
||||
const u8 gEasyChatGroupName_Trainer[] = _("TRAINER");
|
||||
const u8 gEasyChatGroupName_Status[] = _("STATUS");
|
||||
const u8 gEasyChatGroupName_Battle[] = _("BATTLE");
|
||||
const u8 gEasyChatGroupName_Greetings[] = _("GREETINGS");
|
||||
const u8 gEasyChatGroupName_People[] = _("PEOPLE");
|
||||
const u8 gEasyChatGroupName_Voices[] = _("VOICES");
|
||||
const u8 gEasyChatGroupName_Speech[] = _("SPEECH");
|
||||
const u8 gEasyChatGroupName_Endings[] = _("ENDINGS");
|
||||
const u8 gEasyChatGroupName_Feelings[] = _("FEELINGS");
|
||||
const u8 gEasyChatGroupName_Conditions[] = _("CONDITIONS");
|
||||
const u8 gEasyChatGroupName_Actions[] = _("ACTIONS");
|
||||
const u8 gEasyChatGroupName_Lifestyle[] = _("LIFESTYLE");
|
||||
const u8 gEasyChatGroupName_Hobbies[] = _("HOBBIES");
|
||||
const u8 gEasyChatGroupName_Time[] = _("TIME");
|
||||
const u8 gEasyChatGroupName_Misc[] = _("MISC.");
|
||||
const u8 gEasyChatGroupName_Adjectives[] = _("ADJECTIVES");
|
||||
const u8 gEasyChatGroupName_Events[] = _("EVENTS");
|
||||
const u8 gEasyChatGroupName_Move1[] = _("MOVE 1");
|
||||
const u8 gEasyChatGroupName_Move2[] = _("MOVE 2");
|
||||
const u8 gEasyChatGroupName_TrendySaying[] = _("TRENDY SAYING");
|
||||
const u8 gEasyChatGroupName_Pokemon2[] = _("POKéMON2");
|
||||
|
||||
const u8 gText_ThreeQuestionMarks[] = _("???");
|
||||
const u8 gText_MaxHP[] = _("MAX. HP");
|
||||
const u8 gText_Attack[] = _("ATTACK");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user