summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asm/macros.s88
-rw-r--r--constants/easy_chat_constants.s2061
-rw-r--r--data/text/easy_chat/easy_chat_words_by_letter.s4850
3 files changed, 3466 insertions, 3533 deletions
diff --git a/asm/macros.s b/asm/macros.s
index a7a4eb05a..7b24cb47c 100644
--- a/asm/macros.s
+++ b/asm/macros.s
@@ -109,90 +109,22 @@
.2byte 20000 + \species
.endm
- .macro ec_word_pokemon ec_word
- .2byte (EC_GROUP_POKEMON << 9) | SPECIES_\ec_word
+ .macro ec_word word
+ .2byte EC_WORD_\word
.endm
- .macro ec_word_trainer ec_word
- .2byte (EC_GROUP_TRAINER << 9) | EC_WORD_\ec_word
+ .macro ec_move1 name
+ .2byte (EC_GROUP_MOVE_1 << 9) | MOVE_\name
.endm
- .macro ec_word_status ec_word
- .2byte (EC_GROUP_STATUS << 9) | EC_WORD_\ec_word
+ .macro ec_move2 name
+ .2byte (EC_GROUP_MOVE_2 << 9) | MOVE_\name
.endm
- .macro ec_word_battle ec_word
- .2byte (EC_GROUP_BATTLE << 9) | EC_WORD_\ec_word
+ .macro ec_pokemon1 name
+ .2byte (EC_GROUP_POKEMON << 9) | SPECIES_\name
.endm
- .macro ec_word_greetings ec_word
- .2byte (EC_GROUP_GREETINGS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_people ec_word
- .2byte (EC_GROUP_PEOPLE << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_voices ec_word
- .2byte (EC_GROUP_VOICES << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_speech ec_word
- .2byte (EC_GROUP_SPEECH << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_endings ec_word
- .2byte (EC_GROUP_ENDINGS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_feelings ec_word
- .2byte (EC_GROUP_FEELINGS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_conditions ec_word
- .2byte (EC_GROUP_CONDITIONS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_actions ec_word
- .2byte (EC_GROUP_ACTIONS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_lifestyle ec_word
- .2byte (EC_GROUP_LIFESTYLE << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_hobbies ec_word
- .2byte (EC_GROUP_HOBBIES << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_time ec_word
- .2byte (EC_GROUP_TIME << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_misc ec_word
- .2byte (EC_GROUP_MISC << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_adjectives ec_word
- .2byte (EC_GROUP_ADJECTIVES << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_events ec_word
- .2byte (EC_GROUP_EVENTS << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_move_1 ec_word
- .2byte (EC_GROUP_MOVE_1 << 9) | MOVE_\ec_word
- .endm
-
- .macro ec_word_move_2 ec_word
- .2byte (EC_GROUP_MOVE_2 << 9) | MOVE_\ec_word
- .endm
-
- .macro ec_word_trendy_saying ec_word
- .2byte (EC_GROUP_TRENDY_SAYING << 9) | EC_WORD_\ec_word
- .endm
-
- .macro ec_word_pokemon2 ec_word
- .2byte (EC_GROUP_POKEMON2 << 9) | SPECIES_\ec_word
+ .macro ec_pokemon2 name
+ .2byte (EC_GROUP_POKEMON2 << 9) | SPECIES_\name
.endm
diff --git a/constants/easy_chat_constants.s b/constants/easy_chat_constants.s
index c80030da7..26089c294 100644
--- a/constants/easy_chat_constants.s
+++ b/constants/easy_chat_constants.s
@@ -1,1066 +1,1067 @@
- .set EC_GROUP_POKEMON, 0x0
- .set EC_GROUP_TRAINER, 0x1
- .set EC_GROUP_STATUS, 0x2
- .set EC_GROUP_BATTLE, 0x3
- .set EC_GROUP_GREETINGS, 0x4
- .set EC_GROUP_PEOPLE, 0x5
- .set EC_GROUP_VOICES, 0x6
- .set EC_GROUP_SPEECH, 0x7
- .set EC_GROUP_ENDINGS, 0x8
- .set EC_GROUP_FEELINGS, 0x9
- .set EC_GROUP_CONDITIONS, 0xa
- .set EC_GROUP_ACTIONS, 0xb
- .set EC_GROUP_LIFESTYLE, 0xc
- .set EC_GROUP_HOBBIES, 0xd
- .set EC_GROUP_TIME, 0xe
- .set EC_GROUP_MISC, 0xf
- .set EC_GROUP_ADJECTIVES, 0x10
- .set EC_GROUP_EVENTS, 0x11
- .set EC_GROUP_MOVE_1, 0x12
- .set EC_GROUP_MOVE_2, 0x13
- .set EC_GROUP_TRENDY_SAYING, 0x14
- .set EC_GROUP_POKEMON2, 0x15
+ .set EC_GROUP_POKEMON, 0x0
+ .set EC_GROUP_TRAINER, 0x1
+ .set EC_GROUP_STATUS, 0x2
+ .set EC_GROUP_BATTLE, 0x3
+ .set EC_GROUP_GREETINGS, 0x4
+ .set EC_GROUP_PEOPLE, 0x5
+ .set EC_GROUP_VOICES, 0x6
+ .set EC_GROUP_SPEECH, 0x7
+ .set EC_GROUP_ENDINGS, 0x8
+ .set EC_GROUP_FEELINGS, 0x9
+ .set EC_GROUP_CONDITIONS, 0xa
+ .set EC_GROUP_ACTIONS, 0xb
+ .set EC_GROUP_LIFESTYLE, 0xc
+ .set EC_GROUP_HOBBIES, 0xd
+ .set EC_GROUP_TIME, 0xe
+ .set EC_GROUP_MISC, 0xf
+ .set EC_GROUP_ADJECTIVES, 0x10
+ .set EC_GROUP_EVENTS, 0x11
+ .set EC_GROUP_MOVE_1, 0x12
+ .set EC_GROUP_MOVE_2, 0x13
+ .set EC_GROUP_TRENDY_SAYING, 0x14
+ .set EC_GROUP_POKEMON2, 0x15
; Trainer
- .set EC_WORD_I_CHOOSE_YOU, 0x0
- .set EC_WORD_GOTCHA, 0x1
- .set EC_WORD_TRADE, 0x2
- .set EC_WORD_SAPPHIRE, 0x3
- .set EC_WORD_EVOLVE, 0x4
- .set EC_WORD_ENCYCLOPEDIA, 0x5
- .set EC_WORD_NATURE, 0x6
- .set EC_WORD_CENTER, 0x7
- .set EC_WORD_EGG, 0x8
- .set EC_WORD_LINK, 0x9
- .set EC_WORD_SP_ABILITY, 0xa
- .set EC_WORD_TRAINER, 0xb
- .set EC_WORD_VERSION, 0xc
- .set EC_WORD_POKENAV, 0xd
- .set EC_WORD_POKEMON, 0xe
- .set EC_WORD_GET, 0xf
- .set EC_WORD_POKEDEX, 0x10
- .set EC_WORD_RUBY, 0x11
- .set EC_WORD_LEVEL, 0x12
- .set EC_WORD_RED, 0x13
- .set EC_WORD_GREEN, 0x14
- .set EC_WORD_BAG, 0x15
- .set EC_WORD_FLAME, 0x16
- .set EC_WORD_GOLD, 0x17
- .set EC_WORD_LEAF, 0x18
- .set EC_WORD_SILVER, 0x19
- .set EC_WORD_EMERALD, 0x1a
+ .set EC_WORD_I_CHOOSE_YOU, (EC_GROUP_TRAINER << 9) | 0x0
+ .set EC_WORD_GOTCHA, (EC_GROUP_TRAINER << 9) | 0x1
+ .set EC_WORD_TRADE, (EC_GROUP_TRAINER << 9) | 0x2
+ .set EC_WORD_SAPPHIRE, (EC_GROUP_TRAINER << 9) | 0x3
+ .set EC_WORD_EVOLVE, (EC_GROUP_TRAINER << 9) | 0x4
+ .set EC_WORD_ENCYCLOPEDIA, (EC_GROUP_TRAINER << 9) | 0x5
+ .set EC_WORD_NATURE, (EC_GROUP_TRAINER << 9) | 0x6
+ .set EC_WORD_CENTER, (EC_GROUP_TRAINER << 9) | 0x7
+ .set EC_WORD_EGG, (EC_GROUP_TRAINER << 9) | 0x8
+ .set EC_WORD_LINK, (EC_GROUP_TRAINER << 9) | 0x9
+ .set EC_WORD_SP_ABILITY, (EC_GROUP_TRAINER << 9) | 0xa
+ .set EC_WORD_TRAINER, (EC_GROUP_TRAINER << 9) | 0xb
+ .set EC_WORD_VERSION, (EC_GROUP_TRAINER << 9) | 0xc
+ .set EC_WORD_POKENAV, (EC_GROUP_TRAINER << 9) | 0xd
+ .set EC_WORD_POKEMON, (EC_GROUP_TRAINER << 9) | 0xe
+ .set EC_WORD_GET, (EC_GROUP_TRAINER << 9) | 0xf
+ .set EC_WORD_POKEDEX, (EC_GROUP_TRAINER << 9) | 0x10
+ .set EC_WORD_RUBY, (EC_GROUP_TRAINER << 9) | 0x11
+ .set EC_WORD_LEVEL, (EC_GROUP_TRAINER << 9) | 0x12
+ .set EC_WORD_RED, (EC_GROUP_TRAINER << 9) | 0x13
+ .set EC_WORD_GREEN, (EC_GROUP_TRAINER << 9) | 0x14
+ .set EC_WORD_BAG, (EC_GROUP_TRAINER << 9) | 0x15
+ .set EC_WORD_FLAME, (EC_GROUP_TRAINER << 9) | 0x16
+ .set EC_WORD_GOLD, (EC_GROUP_TRAINER << 9) | 0x17
+ .set EC_WORD_LEAF, (EC_GROUP_TRAINER << 9) | 0x18
+ .set EC_WORD_SILVER, (EC_GROUP_TRAINER << 9) | 0x19
+ .set EC_WORD_EMERALD, (EC_GROUP_TRAINER << 9) | 0x1a
; Status
- .set EC_WORD_DARK, 0x0
- .set EC_WORD_STENCH, 0x1
- .set EC_WORD_THICK_FAT, 0x2
- .set EC_WORD_RAIN_DISH, 0x3
- .set EC_WORD_DRIZZLE, 0x4
- .set EC_WORD_ARENA_TRAP, 0x5
- .set EC_WORD_INTIMIDATE, 0x6
- .set EC_WORD_ROCK_HEAD, 0x7
- .set EC_WORD_COLOR, 0x8
- .set EC_WORD_ALT_COLOR, 0x9
- .set EC_WORD_ROCK, 0xa
- .set EC_WORD_BEAUTIFUL, 0xb
- .set EC_WORD_BEAUTY, 0xc
- .set EC_WORD_AIR_LOCK, 0xd
- .set EC_WORD_PSYCHIC, 0xe
- .set EC_WORD_HYPER_CUTTER, 0xf
- .set EC_WORD_FIGHTING, 0x10
- .set EC_WORD_SHADOW_TAG, 0x11
- .set EC_WORD_SMART, 0x12
- .set EC_WORD_SMARTNESS, 0x13
- .set EC_WORD_SPEED_BOOST, 0x14
- .set EC_WORD_COOL, 0x15
- .set EC_WORD_COOLNESS, 0x16
- .set EC_WORD_BATTLE_ARMOR, 0x17
- .set EC_WORD_CUTE, 0x18
- .set EC_WORD_CUTENESS, 0x19
- .set EC_WORD_STURDY, 0x1a
- .set EC_WORD_SUCTION_CUPS, 0x1b
- .set EC_WORD_GRASS, 0x1c
- .set EC_WORD_CLEAR_BODY, 0x1d
- .set EC_WORD_TORRENT, 0x1e
- .set EC_WORD_GHOST, 0x1f
- .set EC_WORD_ICE, 0x20
- .set EC_WORD_GUTS, 0x21
- .set EC_WORD_ROUGH_SKIN, 0x22
- .set EC_WORD_SHELL_ARMOR, 0x23
- .set EC_WORD_NATURAL_CURE, 0x24
- .set EC_WORD_DAMP, 0x25
- .set EC_WORD_GROUND, 0x26
- .set EC_WORD_LIMBER, 0x27
- .set EC_WORD_MAGNET_PULL, 0x28
- .set EC_WORD_WHITE_SMOKE, 0x29
- .set EC_WORD_SYNCHRONIZE, 0x2a
- .set EC_WORD_OVERGROW, 0x2b
- .set EC_WORD_SWIFT_SWIM, 0x2c
- .set EC_WORD_SAND_STREAM, 0x2d
- .set EC_WORD_SAND_VEIL, 0x2e
- .set EC_WORD_KEEN_EYE, 0x2f
- .set EC_WORD_INNER_FOCUS, 0x30
- .set EC_WORD_STATIC, 0x31
- .set EC_WORD_TYPE, 0x32
- .set EC_WORD_TOUGH, 0x33
- .set EC_WORD_TOUGHNESS, 0x34
- .set EC_WORD_SHED_SKIN, 0x35
- .set EC_WORD_HUGE_POWER, 0x36
- .set EC_WORD_VOLT_ABSORB, 0x37
- .set EC_WORD_WATER_ABSORB, 0x38
- .set EC_WORD_ELECTRIC, 0x39
- .set EC_WORD_FORECAST, 0x3a
- .set EC_WORD_SERENE_GRACE, 0x3b
- .set EC_WORD_POISON, 0x3c
- .set EC_WORD_POISON_POINT, 0x3d
- .set EC_WORD_DRAGON, 0x3e
- .set EC_WORD_TRACE, 0x3f
- .set EC_WORD_OBLIVIOUS, 0x40
- .set EC_WORD_TRUANT, 0x41
- .set EC_WORD_RUN_AWAY, 0x42
- .set EC_WORD_STICKY_HOLD, 0x43
- .set EC_WORD_CLOUD_NINE, 0x44
- .set EC_WORD_NORMAL, 0x45
- .set EC_WORD_STEEL, 0x46
- .set EC_WORD_ILLUMINATE, 0x47
- .set EC_WORD_EARLY_BIRD, 0x48
- .set EC_WORD_HUSTLE, 0x49
- .set EC_WORD_SHINE, 0x4a
- .set EC_WORD_FLYING, 0x4b
- .set EC_WORD_DROUGHT, 0x4c
- .set EC_WORD_LIGHTNINGROD, 0x4d
- .set EC_WORD_COMPOUNDEYES, 0x4e
- .set EC_WORD_MARVEL_SCALE, 0x4f
- .set EC_WORD_WONDER_GUARD, 0x50
- .set EC_WORD_INSOMNIA, 0x51
- .set EC_WORD_LEVITATE, 0x52
- .set EC_WORD_PLUS, 0x53
- .set EC_WORD_PRESSURE, 0x54
- .set EC_WORD_LIQUID_OOZE, 0x55
- .set EC_WORD_COLOR_CHANGE, 0x56
- .set EC_WORD_SOUNDPROOF, 0x57
- .set EC_WORD_EFFECT_SPORE, 0x58
- .set EC_WORD_PKRS, 0x59
- .set EC_WORD_FIRE, 0x5a
- .set EC_WORD_FLAME_BODY, 0x5b
- .set EC_WORD_MINUS, 0x5c
- .set EC_WORD_OWN_TEMPO, 0x5d
- .set EC_WORD_MAGMA_ARMOR, 0x5e
- .set EC_WORD_WATER, 0x5f
- .set EC_WORD_WATER_VEIL, 0x60
- .set EC_WORD_BUG, 0x61
- .set EC_WORD_SWARM, 0x62
- .set EC_WORD_CUTE_CHARM, 0x63
- .set EC_WORD_IMMUNITY, 0x64
- .set EC_WORD_BLAZE, 0x65
- .set EC_WORD_PICKUP, 0x66
- .set EC_WORD_PATTERN, 0x67
- .set EC_WORD_FLASH_FIRE, 0x68
- .set EC_WORD_VITAL_SPIRIT, 0x69
- .set EC_WORD_CHLOROPHYLL, 0x6a
- .set EC_WORD_PURE_POWER, 0x6b
- .set EC_WORD_SHIELD_DUST, 0x6c
+ .set EC_WORD_DARK, (EC_GROUP_STATUS << 9) | 0x0
+ .set EC_WORD_STENCH, (EC_GROUP_STATUS << 9) | 0x1
+ .set EC_WORD_THICK_FAT, (EC_GROUP_STATUS << 9) | 0x2
+ .set EC_WORD_RAIN_DISH, (EC_GROUP_STATUS << 9) | 0x3
+ .set EC_WORD_DRIZZLE, (EC_GROUP_STATUS << 9) | 0x4
+ .set EC_WORD_ARENA_TRAP, (EC_GROUP_STATUS << 9) | 0x5
+ .set EC_WORD_INTIMIDATE, (EC_GROUP_STATUS << 9) | 0x6
+ .set EC_WORD_ROCK_HEAD, (EC_GROUP_STATUS << 9) | 0x7
+ .set EC_WORD_COLOR, (EC_GROUP_STATUS << 9) | 0x8
+ .set EC_WORD_ALT_COLOR, (EC_GROUP_STATUS << 9) | 0x9
+ .set EC_WORD_ROCK, (EC_GROUP_STATUS << 9) | 0xa
+ .set EC_WORD_BEAUTIFUL, (EC_GROUP_STATUS << 9) | 0xb
+ .set EC_WORD_BEAUTY, (EC_GROUP_STATUS << 9) | 0xc
+ .set EC_WORD_AIR_LOCK, (EC_GROUP_STATUS << 9) | 0xd
+ .set EC_WORD_PSYCHIC, (EC_GROUP_STATUS << 9) | 0xe
+ .set EC_WORD_HYPER_CUTTER, (EC_GROUP_STATUS << 9) | 0xf
+ .set EC_WORD_FIGHTING, (EC_GROUP_STATUS << 9) | 0x10
+ .set EC_WORD_SHADOW_TAG, (EC_GROUP_STATUS << 9) | 0x11
+ .set EC_WORD_SMART, (EC_GROUP_STATUS << 9) | 0x12
+ .set EC_WORD_SMARTNESS, (EC_GROUP_STATUS << 9) | 0x13
+ .set EC_WORD_SPEED_BOOST, (EC_GROUP_STATUS << 9) | 0x14
+ .set EC_WORD_COOL, (EC_GROUP_STATUS << 9) | 0x15
+ .set EC_WORD_COOLNESS, (EC_GROUP_STATUS << 9) | 0x16
+ .set EC_WORD_BATTLE_ARMOR, (EC_GROUP_STATUS << 9) | 0x17
+ .set EC_WORD_CUTE, (EC_GROUP_STATUS << 9) | 0x18
+ .set EC_WORD_CUTENESS, (EC_GROUP_STATUS << 9) | 0x19
+ .set EC_WORD_STURDY, (EC_GROUP_STATUS << 9) | 0x1a
+ .set EC_WORD_SUCTION_CUPS, (EC_GROUP_STATUS << 9) | 0x1b
+ .set EC_WORD_GRASS, (EC_GROUP_STATUS << 9) | 0x1c
+ .set EC_WORD_CLEAR_BODY, (EC_GROUP_STATUS << 9) | 0x1d
+ .set EC_WORD_TORRENT, (EC_GROUP_STATUS << 9) | 0x1e
+ .set EC_WORD_GHOST, (EC_GROUP_STATUS << 9) | 0x1f
+ .set EC_WORD_ICE, (EC_GROUP_STATUS << 9) | 0x20
+ .set EC_WORD_GUTS, (EC_GROUP_STATUS << 9) | 0x21
+ .set EC_WORD_ROUGH_SKIN, (EC_GROUP_STATUS << 9) | 0x22
+ .set EC_WORD_SHELL_ARMOR, (EC_GROUP_STATUS << 9) | 0x23
+ .set EC_WORD_NATURAL_CURE, (EC_GROUP_STATUS << 9) | 0x24
+ .set EC_WORD_DAMP, (EC_GROUP_STATUS << 9) | 0x25
+ .set EC_WORD_GROUND, (EC_GROUP_STATUS << 9) | 0x26
+ .set EC_WORD_LIMBER, (EC_GROUP_STATUS << 9) | 0x27
+ .set EC_WORD_MAGNET_PULL, (EC_GROUP_STATUS << 9) | 0x28
+ .set EC_WORD_WHITE_SMOKE, (EC_GROUP_STATUS << 9) | 0x29
+ .set EC_WORD_SYNCHRONIZE, (EC_GROUP_STATUS << 9) | 0x2a
+ .set EC_WORD_OVERGROW, (EC_GROUP_STATUS << 9) | 0x2b
+ .set EC_WORD_SWIFT_SWIM, (EC_GROUP_STATUS << 9) | 0x2c
+ .set EC_WORD_SAND_STREAM, (EC_GROUP_STATUS << 9) | 0x2d
+ .set EC_WORD_SAND_VEIL, (EC_GROUP_STATUS << 9) | 0x2e
+ .set EC_WORD_KEEN_EYE, (EC_GROUP_STATUS << 9) | 0x2f
+ .set EC_WORD_INNER_FOCUS, (EC_GROUP_STATUS << 9) | 0x30
+ .set EC_WORD_STATIC, (EC_GROUP_STATUS << 9) | 0x31
+ .set EC_WORD_TYPE, (EC_GROUP_STATUS << 9) | 0x32
+ .set EC_WORD_TOUGH, (EC_GROUP_STATUS << 9) | 0x33
+ .set EC_WORD_TOUGHNESS, (EC_GROUP_STATUS << 9) | 0x34
+ .set EC_WORD_SHED_SKIN, (EC_GROUP_STATUS << 9) | 0x35
+ .set EC_WORD_HUGE_POWER, (EC_GROUP_STATUS << 9) | 0x36
+ .set EC_WORD_VOLT_ABSORB, (EC_GROUP_STATUS << 9) | 0x37
+ .set EC_WORD_WATER_ABSORB, (EC_GROUP_STATUS << 9) | 0x38
+ .set EC_WORD_ELECTRIC, (EC_GROUP_STATUS << 9) | 0x39
+ .set EC_WORD_FORECAST, (EC_GROUP_STATUS << 9) | 0x3a
+ .set EC_WORD_SERENE_GRACE, (EC_GROUP_STATUS << 9) | 0x3b
+ .set EC_WORD_POISON, (EC_GROUP_STATUS << 9) | 0x3c
+ .set EC_WORD_POISON_POINT, (EC_GROUP_STATUS << 9) | 0x3d
+ .set EC_WORD_DRAGON, (EC_GROUP_STATUS << 9) | 0x3e
+ .set EC_WORD_TRACE, (EC_GROUP_STATUS << 9) | 0x3f
+ .set EC_WORD_OBLIVIOUS, (EC_GROUP_STATUS << 9) | 0x40
+ .set EC_WORD_TRUANT, (EC_GROUP_STATUS << 9) | 0x41
+ .set EC_WORD_RUN_AWAY, (EC_GROUP_STATUS << 9) | 0x42
+ .set EC_WORD_STICKY_HOLD, (EC_GROUP_STATUS << 9) | 0x43
+ .set EC_WORD_CLOUD_NINE, (EC_GROUP_STATUS << 9) | 0x44
+ .set EC_WORD_NORMAL, (EC_GROUP_STATUS << 9) | 0x45
+ .set EC_WORD_STEEL, (EC_GROUP_STATUS << 9) | 0x46
+ .set EC_WORD_ILLUMINATE, (EC_GROUP_STATUS << 9) | 0x47
+ .set EC_WORD_EARLY_BIRD, (EC_GROUP_STATUS << 9) | 0x48
+ .set EC_WORD_HUSTLE, (EC_GROUP_STATUS << 9) | 0x49
+ .set EC_WORD_SHINE, (EC_GROUP_STATUS << 9) | 0x4a
+ .set EC_WORD_FLYING, (EC_GROUP_STATUS << 9) | 0x4b
+ .set EC_WORD_DROUGHT, (EC_GROUP_STATUS << 9) | 0x4c
+ .set EC_WORD_LIGHTNINGROD, (EC_GROUP_STATUS << 9) | 0x4d
+ .set EC_WORD_COMPOUNDEYES, (EC_GROUP_STATUS << 9) | 0x4e
+ .set EC_WORD_MARVEL_SCALE, (EC_GROUP_STATUS << 9) | 0x4f
+ .set EC_WORD_WONDER_GUARD, (EC_GROUP_STATUS << 9) | 0x50
+ .set EC_WORD_INSOMNIA, (EC_GROUP_STATUS << 9) | 0x51
+ .set EC_WORD_LEVITATE, (EC_GROUP_STATUS << 9) | 0x52
+ .set EC_WORD_PLUS, (EC_GROUP_STATUS << 9) | 0x53
+ .set EC_WORD_PRESSURE, (EC_GROUP_STATUS << 9) | 0x54
+ .set EC_WORD_LIQUID_OOZE, (EC_GROUP_STATUS << 9) | 0x55
+ .set EC_WORD_COLOR_CHANGE, (EC_GROUP_STATUS << 9) | 0x56
+ .set EC_WORD_SOUNDPROOF, (EC_GROUP_STATUS << 9) | 0x57
+ .set EC_WORD_EFFECT_SPORE, (EC_GROUP_STATUS << 9) | 0x58
+ .set EC_WORD_PKRS, (EC_GROUP_STATUS << 9) | 0x59
+ .set EC_WORD_FIRE, (EC_GROUP_STATUS << 9) | 0x5a
+ .set EC_WORD_FLAME_BODY, (EC_GROUP_STATUS << 9) | 0x5b
+ .set EC_WORD_MINUS, (EC_GROUP_STATUS << 9) | 0x5c
+ .set EC_WORD_OWN_TEMPO, (EC_GROUP_STATUS << 9) | 0x5d
+ .set EC_WORD_MAGMA_ARMOR, (EC_GROUP_STATUS << 9) | 0x5e
+ .set EC_WORD_WATER, (EC_GROUP_STATUS << 9) | 0x5f
+ .set EC_WORD_WATER_VEIL, (EC_GROUP_STATUS << 9) | 0x60
+ .set EC_WORD_BUG, (EC_GROUP_STATUS << 9) | 0x61
+ .set EC_WORD_SWARM, (EC_GROUP_STATUS << 9) | 0x62
+ .set EC_WORD_CUTE_CHARM, (EC_GROUP_STATUS << 9) | 0x63
+ .set EC_WORD_IMMUNITY, (EC_GROUP_STATUS << 9) | 0x64
+ .set EC_WORD_BLAZE, (EC_GROUP_STATUS << 9) | 0x65
+ .set EC_WORD_PICKUP, (EC_GROUP_STATUS << 9) | 0x66
+ .set EC_WORD_PATTERN, (EC_GROUP_STATUS << 9) | 0x67
+ .set EC_WORD_FLASH_FIRE, (EC_GROUP_STATUS << 9) | 0x68
+ .set EC_WORD_VITAL_SPIRIT, (EC_GROUP_STATUS << 9) | 0x69
+ .set EC_WORD_CHLOROPHYLL, (EC_GROUP_STATUS << 9) | 0x6a
+ .set EC_WORD_PURE_POWER, (EC_GROUP_STATUS << 9) | 0x6b
+ .set EC_WORD_SHIELD_DUST, (EC_GROUP_STATUS << 9) | 0x6c
; Battle
- .set EC_WORD_MATCH_UP, 0x0
- .set EC_WORD_GO, 0x1
- .set EC_WORD_NO_1, 0x2
- .set EC_WORD_DECIDE, 0x3
- .set EC_WORD_LET_ME_WIN, 0x4
- .set EC_WORD_WINS, 0x5
- .set EC_WORD_WIN, 0x6
- .set EC_WORD_WON, 0x7
- .set EC_WORD_IF_I_WIN, 0x8
- .set EC_WORD_WHEN_I_WIN, 0x9
- .set EC_WORD_CAN_T_WIN, 0xa
- .set EC_WORD_CAN_WIN, 0xb
- .set EC_WORD_NO_MATCH, 0xc
- .set EC_WORD_SPIRIT, 0xd
- .set EC_WORD_DECIDED, 0xe
- .set EC_WORD_TRUMP_CARD, 0xf
- .set EC_WORD_TAKE_THAT, 0x10
- .set EC_WORD_COME_ON, 0x11
- .set EC_WORD_ATTACK, 0x12
- .set EC_WORD_SURRENDER, 0x13
- .set EC_WORD_GUTSY, 0x14
- .set EC_WORD_TALENT, 0x15
- .set EC_WORD_STRATEGY, 0x16
- .set EC_WORD_SMITE, 0x17
- .set EC_WORD_MATCH, 0x18
- .set EC_WORD_VICTORY, 0x19
- .set EC_WORD_OFFENSIVE, 0x1a
- .set EC_WORD_SENSE, 0x1b
- .set EC_WORD_VERSUS, 0x1c
- .set EC_WORD_FIGHTS, 0x1d
- .set EC_WORD_POWER, 0x1e
- .set EC_WORD_CHALLENGE, 0x1f
- .set EC_WORD_STRONG, 0x20
- .set EC_WORD_TOO_STRONG, 0x21
- .set EC_WORD_GO_EASY, 0x22
- .set EC_WORD_FOE, 0x23
- .set EC_WORD_GENIUS, 0x24
- .set EC_WORD_LEGEND, 0x25
- .set EC_WORD_ESCAPE, 0x26
- .set EC_WORD_AIM, 0x27
- .set EC_WORD_BATTLE, 0x28
- .set EC_WORD_FIGHT, 0x29
- .set EC_WORD_RESUSCITATE, 0x2a
- .set EC_WORD_POINTS, 0x2b
- .set EC_WORD_SERIOUS, 0x2c
- .set EC_WORD_GIVE_UP, 0x2d
- .set EC_WORD_LOSS, 0x2e
- .set EC_WORD_IF_I_LOSE, 0x2f
- .set EC_WORD_LOST, 0x30
- .set EC_WORD_LOSE, 0x31
- .set EC_WORD_GUARD, 0x32
- .set EC_WORD_PARTNER, 0x33
- .set EC_WORD_REJECT, 0x34
- .set EC_WORD_ACCEPT, 0x35
- .set EC_WORD_INVINCIBLE, 0x36
- .set EC_WORD_RECEIVED, 0x37
- .set EC_WORD_EASY, 0x38
- .set EC_WORD_WEAK, 0x39
- .set EC_WORD_TOO_WEAK, 0x3a
- .set EC_WORD_PUSHOVER, 0x3b
- .set EC_WORD_LEADER, 0x3c
- .set EC_WORD_RULE, 0x3d
- .set EC_WORD_MOVE, 0x3e
+ .set EC_WORD_MATCH_UP, (EC_GROUP_BATTLE << 9) | 0x0
+ .set EC_WORD_GO, (EC_GROUP_BATTLE << 9) | 0x1
+ .set EC_WORD_NO_1, (EC_GROUP_BATTLE << 9) | 0x2
+ .set EC_WORD_DECIDE, (EC_GROUP_BATTLE << 9) | 0x3
+ .set EC_WORD_LET_ME_WIN, (EC_GROUP_BATTLE << 9) | 0x4
+ .set EC_WORD_WINS, (EC_GROUP_BATTLE << 9) | 0x5
+ .set EC_WORD_WIN, (EC_GROUP_BATTLE << 9) | 0x6
+ .set EC_WORD_WON, (EC_GROUP_BATTLE << 9) | 0x7
+ .set EC_WORD_IF_I_WIN, (EC_GROUP_BATTLE << 9) | 0x8
+ .set EC_WORD_WHEN_I_WIN, (EC_GROUP_BATTLE << 9) | 0x9
+ .set EC_WORD_CAN_T_WIN, (EC_GROUP_BATTLE << 9) | 0xa
+ .set EC_WORD_CAN_WIN, (EC_GROUP_BATTLE << 9) | 0xb
+ .set EC_WORD_NO_MATCH, (EC_GROUP_BATTLE << 9) | 0xc
+ .set EC_WORD_SPIRIT, (EC_GROUP_BATTLE << 9) | 0xd
+ .set EC_WORD_DECIDED, (EC_GROUP_BATTLE << 9) | 0xe
+ .set EC_WORD_TRUMP_CARD, (EC_GROUP_BATTLE << 9) | 0xf
+ .set EC_WORD_TAKE_THAT, (EC_GROUP_BATTLE << 9) | 0x10
+ .set EC_WORD_COME_ON, (EC_GROUP_BATTLE << 9) | 0x11
+ .set EC_WORD_ATTACK, (EC_GROUP_BATTLE << 9) | 0x12
+ .set EC_WORD_SURRENDER, (EC_GROUP_BATTLE << 9) | 0x13
+ .set EC_WORD_GUTSY, (EC_GROUP_BATTLE << 9) | 0x14
+ .set EC_WORD_TALENT, (EC_GROUP_BATTLE << 9) | 0x15
+ .set EC_WORD_STRATEGY, (EC_GROUP_BATTLE << 9) | 0x16
+ .set EC_WORD_SMITE, (EC_GROUP_BATTLE << 9) | 0x17
+ .set EC_WORD_MATCH, (EC_GROUP_BATTLE << 9) | 0x18
+ .set EC_WORD_VICTORY, (EC_GROUP_BATTLE << 9) | 0x19
+ .set EC_WORD_OFFENSIVE, (EC_GROUP_BATTLE << 9) | 0x1a
+ .set EC_WORD_SENSE, (EC_GROUP_BATTLE << 9) | 0x1b
+ .set EC_WORD_VERSUS, (EC_GROUP_BATTLE << 9) | 0x1c
+ .set EC_WORD_FIGHTS, (EC_GROUP_BATTLE << 9) | 0x1d
+ .set EC_WORD_POWER, (EC_GROUP_BATTLE << 9) | 0x1e
+ .set EC_WORD_CHALLENGE, (EC_GROUP_BATTLE << 9) | 0x1f
+ .set EC_WORD_STRONG, (EC_GROUP_BATTLE << 9) | 0x20
+ .set EC_WORD_TOO_STRONG, (EC_GROUP_BATTLE << 9) | 0x21
+ .set EC_WORD_GO_EASY, (EC_GROUP_BATTLE << 9) | 0x22
+ .set EC_WORD_FOE, (EC_GROUP_BATTLE << 9) | 0x23
+ .set EC_WORD_GENIUS, (EC_GROUP_BATTLE << 9) | 0x24
+ .set EC_WORD_LEGEND, (EC_GROUP_BATTLE << 9) | 0x25
+ .set EC_WORD_ESCAPE, (EC_GROUP_BATTLE << 9) | 0x26
+ .set EC_WORD_AIM, (EC_GROUP_BATTLE << 9) | 0x27
+ .set EC_WORD_BATTLE, (EC_GROUP_BATTLE << 9) | 0x28
+ .set EC_WORD_FIGHT, (EC_GROUP_BATTLE << 9) | 0x29
+ .set EC_WORD_RESUSCITATE, (EC_GROUP_BATTLE << 9) | 0x2a
+ .set EC_WORD_POINTS, (EC_GROUP_BATTLE << 9) | 0x2b
+ .set EC_WORD_SERIOUS, (EC_GROUP_BATTLE << 9) | 0x2c
+ .set EC_WORD_GIVE_UP, (EC_GROUP_BATTLE << 9) | 0x2d
+ .set EC_WORD_LOSS, (EC_GROUP_BATTLE << 9) | 0x2e
+ .set EC_WORD_IF_I_LOSE, (EC_GROUP_BATTLE << 9) | 0x2f
+ .set EC_WORD_LOST, (EC_GROUP_BATTLE << 9) | 0x30
+ .set EC_WORD_LOSE, (EC_GROUP_BATTLE << 9) | 0x31
+ .set EC_WORD_GUARD, (EC_GROUP_BATTLE << 9) | 0x32
+ .set EC_WORD_PARTNER, (EC_GROUP_BATTLE << 9) | 0x33
+ .set EC_WORD_REJECT, (EC_GROUP_BATTLE << 9) | 0x34
+ .set EC_WORD_ACCEPT, (EC_GROUP_BATTLE << 9) | 0x35
+ .set EC_WORD_INVINCIBLE, (EC_GROUP_BATTLE << 9) | 0x36
+ .set EC_WORD_RECEIVED, (EC_GROUP_BATTLE << 9) | 0x37
+ .set EC_WORD_EASY, (EC_GROUP_BATTLE << 9) | 0x38
+ .set EC_WORD_WEAK, (EC_GROUP_BATTLE << 9) | 0x39
+ .set EC_WORD_TOO_WEAK, (EC_GROUP_BATTLE << 9) | 0x3a
+ .set EC_WORD_PUSHOVER, (EC_GROUP_BATTLE << 9) | 0x3b
+ .set EC_WORD_LEADER, (EC_GROUP_BATTLE << 9) | 0x3c
+ .set EC_WORD_RULE, (EC_GROUP_BATTLE << 9) | 0x3d
+ .set EC_WORD_MOVE, (EC_GROUP_BATTLE << 9) | 0x3e
; Greetings
- .set EC_WORD_THANKS, 0x0
- .set EC_WORD_YES, 0x1
- .set EC_WORD_HERE_GOES, 0x2
- .set EC_WORD_HERE_I_COME, 0x3
- .set EC_WORD_HERE_IT_IS, 0x4
- .set EC_WORD_YEAH, 0x5
- .set EC_WORD_WELCOME, 0x6
- .set EC_WORD_OI, 0x7
- .set EC_WORD_HOW_DO, 0x8
- .set EC_WORD_CONGRATS, 0x9
- .set EC_WORD_GIVE_ME, 0xa
- .set EC_WORD_SORRY, 0xb
- .set EC_WORD_APOLOGIZE, 0xc
- .set EC_WORD_FORGIVE, 0xd
- .set EC_WORD_HEY_THERE, 0xe
- .set EC_WORD_HELLO, 0xf
- .set EC_WORD_GOOD_BYE, 0x10
- .set EC_WORD_THANK_YOU, 0x11
- .set EC_WORD_I_VE_ARRIVED, 0x12
- .set EC_WORD_PARDON, 0x13
- .set EC_WORD_EXCUSE, 0x14
- .set EC_WORD_SEE_YA, 0x15
- .set EC_WORD_EXCUSE_ME, 0x16
- .set EC_WORD_WELL_THEN, 0x17
- .set EC_WORD_GO_AHEAD, 0x18
- .set EC_WORD_APPRECIATE, 0x19
- .set EC_WORD_HEY_QUES, 0x1a
- .set EC_WORD_WHAT_S_UP_QUES, 0x1b
- .set EC_WORD_HUH_QUES, 0x1c
- .set EC_WORD_NO, 0x1d
- .set EC_WORD_HI, 0x1e
- .set EC_WORD_YEAH_YEAH, 0x1f
- .set EC_WORD_BYE_BYE, 0x20
- .set EC_WORD_MEET_YOU, 0x21
- .set EC_WORD_HEY, 0x22
- .set EC_WORD_SMELL, 0x23
- .set EC_WORD_LISTENING, 0x24
- .set EC_WORD_HOO_HAH, 0x25
- .set EC_WORD_YAHOO, 0x26
- .set EC_WORD_YO, 0x27
- .set EC_WORD_COME_OVER, 0x28
- .set EC_WORD_COUNT_ON, 0x29
+ .set EC_WORD_THANKS, (EC_GROUP_GREETINGS << 9) | 0x0
+ .set EC_WORD_YES, (EC_GROUP_GREETINGS << 9) | 0x1
+ .set EC_WORD_HERE_GOES, (EC_GROUP_GREETINGS << 9) | 0x2
+ .set EC_WORD_HERE_I_COME, (EC_GROUP_GREETINGS << 9) | 0x3
+ .set EC_WORD_HERE_IT_IS, (EC_GROUP_GREETINGS << 9) | 0x4
+ .set EC_WORD_YEAH, (EC_GROUP_GREETINGS << 9) | 0x5
+ .set EC_WORD_WELCOME, (EC_GROUP_GREETINGS << 9) | 0x6
+ .set EC_WORD_OI, (EC_GROUP_GREETINGS << 9) | 0x7
+ .set EC_WORD_HOW_DO, (EC_GROUP_GREETINGS << 9) | 0x8
+ .set EC_WORD_CONGRATS, (EC_GROUP_GREETINGS << 9) | 0x9
+ .set EC_WORD_GIVE_ME, (EC_GROUP_GREETINGS << 9) | 0xa
+ .set EC_WORD_SORRY, (EC_GROUP_GREETINGS << 9) | 0xb
+ .set EC_WORD_APOLOGIZE, (EC_GROUP_GREETINGS << 9) | 0xc
+ .set EC_WORD_FORGIVE, (EC_GROUP_GREETINGS << 9) | 0xd
+ .set EC_WORD_HEY_THERE, (EC_GROUP_GREETINGS << 9) | 0xe
+ .set EC_WORD_HELLO, (EC_GROUP_GREETINGS << 9) | 0xf
+ .set EC_WORD_GOOD_BYE, (EC_GROUP_GREETINGS << 9) | 0x10
+ .set EC_WORD_THANK_YOU, (EC_GROUP_GREETINGS << 9) | 0x11
+ .set EC_WORD_I_VE_ARRIVED, (EC_GROUP_GREETINGS << 9) | 0x12
+ .set EC_WORD_PARDON, (EC_GROUP_GREETINGS << 9) | 0x13
+ .set EC_WORD_EXCUSE, (EC_GROUP_GREETINGS << 9) | 0x14
+ .set EC_WORD_SEE_YA, (EC_GROUP_GREETINGS << 9) | 0x15
+ .set EC_WORD_EXCUSE_ME, (EC_GROUP_GREETINGS << 9) | 0x16
+ .set EC_WORD_WELL_THEN, (EC_GROUP_GREETINGS << 9) | 0x17
+ .set EC_WORD_GO_AHEAD, (EC_GROUP_GREETINGS << 9) | 0x18
+ .set EC_WORD_APPRECIATE, (EC_GROUP_GREETINGS << 9) | 0x19
+ .set EC_WORD_HEY_QUES, (EC_GROUP_GREETINGS << 9) | 0x1a
+ .set EC_WORD_WHAT_S_UP_QUES, (EC_GROUP_GREETINGS << 9) | 0x1b
+ .set EC_WORD_HUH_QUES, (EC_GROUP_GREETINGS << 9) | 0x1c
+ .set EC_WORD_NO, (EC_GROUP_GREETINGS << 9) | 0x1d
+ .set EC_WORD_HI, (EC_GROUP_GREETINGS << 9) | 0x1e
+ .set EC_WORD_YEAH_YEAH, (EC_GROUP_GREETINGS << 9) | 0x1f
+ .set EC_WORD_BYE_BYE, (EC_GROUP_GREETINGS << 9) | 0x20
+ .set EC_WORD_MEET_YOU, (EC_GROUP_GREETINGS << 9) | 0x21
+ .set EC_WORD_HEY, (EC_GROUP_GREETINGS << 9) | 0x22
+ .set EC_WORD_SMELL, (EC_GROUP_GREETINGS << 9) | 0x23
+ .set EC_WORD_LISTENING, (EC_GROUP_GREETINGS << 9) | 0x24
+ .set EC_WORD_HOO_HAH, (EC_GROUP_GREETINGS << 9) | 0x25
+ .set EC_WORD_YAHOO, (EC_GROUP_GREETINGS << 9) | 0x26
+ .set EC_WORD_YO, (EC_GROUP_GREETINGS << 9) | 0x27
+ .set EC_WORD_COME_OVER, (EC_GROUP_GREETINGS << 9) | 0x28
+ .set EC_WORD_COUNT_ON, (EC_GROUP_GREETINGS << 9) | 0x29
; People
- .set EC_WORD_OPPONENT, 0x0
- .set EC_WORD_I, 0x1
- .set EC_WORD_YOU, 0x2
- .set EC_WORD_YOURS, 0x3
- .set EC_WORD_SON, 0x4
- .set EC_WORD_YOUR, 0x5
- .set EC_WORD_YOU_RE, 0x6
- .set EC_WORD_YOU_VE, 0x7
- .set EC_WORD_MOTHER, 0x8
- .set EC_WORD_GRANDFATHER, 0x9
- .set EC_WORD_UNCLE, 0xa
- .set EC_WORD_FATHER, 0xb
- .set EC_WORD_BOY, 0xc
- .set EC_WORD_ADULT, 0xd
- .set EC_WORD_BROTHER, 0xe
- .set EC_WORD_SISTER, 0xf
- .set EC_WORD_GRANDMOTHER, 0x10
- .set EC_WORD_AUNT, 0x11
- .set EC_WORD_PARENT, 0x12
- .set EC_WORD_MAN, 0x13
- .set EC_WORD_ME, 0x14
- .set EC_WORD_GIRL, 0x15
- .set EC_WORD_BABE, 0x16
- .set EC_WORD_FAMILY, 0x17
- .set EC_WORD_HER, 0x18
- .set EC_WORD_HIM, 0x19
- .set EC_WORD_HE, 0x1a
- .set EC_WORD_PLACE, 0x1b
- .set EC_WORD_DAUGHTER, 0x1c
- .set EC_WORD_HIS, 0x1d
- .set EC_WORD_HE_S, 0x1e
- .set EC_WORD_AREN_T, 0x1f
- .set EC_WORD_SIBLINGS, 0x20
- .set EC_WORD_KID, 0x21
- .set EC_WORD_CHILDREN, 0x22
- .set EC_WORD_MR, 0x23
- .set EC_WORD_MRS, 0x24
- .set EC_WORD_MYSELF, 0x25
- .set EC_WORD_I_WAS, 0x26
- .set EC_WORD_TO_ME, 0x27
- .set EC_WORD_MY, 0x28
- .set EC_WORD_I_AM, 0x29
- .set EC_WORD_I_VE, 0x2a
- .set EC_WORD_WHO, 0x2b
- .set EC_WORD_SOMEONE, 0x2c
- .set EC_WORD_WHO_WAS, 0x2d
- .set EC_WORD_TO_WHOM, 0x2e
- .set EC_WORD_WHOSE, 0x2f
- .set EC_WORD_WHO_IS, 0x30
- .set EC_WORD_IT_S, 0x31
- .set EC_WORD_LADY, 0x32
- .set EC_WORD_FRIEND, 0x33
- .set EC_WORD_ALLY, 0x34
- .set EC_WORD_PERSON, 0x35
- .set EC_WORD_DUDE, 0x36
- .set EC_WORD_THEY, 0x37
- .set EC_WORD_THEY_WERE, 0x38
- .set EC_WORD_TO_THEM, 0x39
- .set EC_WORD_THEIR, 0x3a
- .set EC_WORD_THEY_RE, 0x3b
- .set EC_WORD_THEY_VE, 0x3c
- .set EC_WORD_WE, 0x3d
- .set EC_WORD_BEEN, 0x3e
- .set EC_WORD_TO_US, 0x3f
- .set EC_WORD_OUR, 0x40
- .set EC_WORD_WE_RE, 0x41
- .set EC_WORD_RIVAL, 0x42
- .set EC_WORD_WE_VE, 0x43
- .set EC_WORD_WOMAN, 0x44
- .set EC_WORD_SHE, 0x45
- .set EC_WORD_SHE_WAS, 0x46
- .set EC_WORD_TO_HER, 0x47
- .set EC_WORD_HERS, 0x48
- .set EC_WORD_SHE_IS, 0x49
- .set EC_WORD_SOME, 0x4a
+ .set EC_WORD_OPPONENT, (EC_GROUP_PEOPLE << 9) | 0x0
+ .set EC_WORD_I, (EC_GROUP_PEOPLE << 9) | 0x1
+ .set EC_WORD_YOU, (EC_GROUP_PEOPLE << 9) | 0x2
+ .set EC_WORD_YOURS, (EC_GROUP_PEOPLE << 9) | 0x3
+ .set EC_WORD_SON, (EC_GROUP_PEOPLE << 9) | 0x4
+ .set EC_WORD_YOUR, (EC_GROUP_PEOPLE << 9) | 0x5
+ .set EC_WORD_YOU_RE, (EC_GROUP_PEOPLE << 9) | 0x6
+ .set EC_WORD_YOU_VE, (EC_GROUP_PEOPLE << 9) | 0x7
+ .set EC_WORD_MOTHER, (EC_GROUP_PEOPLE << 9) | 0x8
+ .set EC_WORD_GRANDFATHER, (EC_GROUP_PEOPLE << 9) | 0x9
+ .set EC_WORD_UNCLE, (EC_GROUP_PEOPLE << 9) | 0xa
+ .set EC_WORD_FATHER, (EC_GROUP_PEOPLE << 9) | 0xb
+ .set EC_WORD_BOY, (EC_GROUP_PEOPLE << 9) | 0xc
+ .set EC_WORD_ADULT, (EC_GROUP_PEOPLE << 9) | 0xd
+ .set EC_WORD_BROTHER, (EC_GROUP_PEOPLE << 9) | 0xe
+ .set EC_WORD_SISTER, (EC_GROUP_PEOPLE << 9) | 0xf
+ .set EC_WORD_GRANDMOTHER, (EC_GROUP_PEOPLE << 9) | 0x10
+ .set EC_WORD_AUNT, (EC_GROUP_PEOPLE << 9) | 0x11
+ .set EC_WORD_PARENT, (EC_GROUP_PEOPLE << 9) | 0x12
+ .set EC_WORD_MAN, (EC_GROUP_PEOPLE << 9) | 0x13
+ .set EC_WORD_ME, (EC_GROUP_PEOPLE << 9) | 0x14
+ .set EC_WORD_GIRL, (EC_GROUP_PEOPLE << 9) | 0x15
+ .set EC_WORD_BABE, (EC_GROUP_PEOPLE << 9) | 0x16
+ .set EC_WORD_FAMILY, (EC_GROUP_PEOPLE << 9) | 0x17
+ .set EC_WORD_HER, (EC_GROUP_PEOPLE << 9) | 0x18
+ .set EC_WORD_HIM, (EC_GROUP_PEOPLE << 9) | 0x19
+ .set EC_WORD_HE, (EC_GROUP_PEOPLE << 9) | 0x1a
+ .set EC_WORD_PLACE, (EC_GROUP_PEOPLE << 9) | 0x1b
+ .set EC_WORD_DAUGHTER, (EC_GROUP_PEOPLE << 9) | 0x1c
+ .set EC_WORD_HIS, (EC_GROUP_PEOPLE << 9) | 0x1d
+ .set EC_WORD_HE_S, (EC_GROUP_PEOPLE << 9) | 0x1e
+ .set EC_WORD_AREN_T, (EC_GROUP_PEOPLE << 9) | 0x1f
+ .set EC_WORD_SIBLINGS, (EC_GROUP_PEOPLE << 9) | 0x20
+ .set EC_WORD_KID, (EC_GROUP_PEOPLE << 9) | 0x21
+ .set EC_WORD_CHILDREN, (EC_GROUP_PEOPLE << 9) | 0x22
+ .set EC_WORD_MR, (EC_GROUP_PEOPLE << 9) | 0x23
+ .set EC_WORD_MRS, (EC_GROUP_PEOPLE << 9) | 0x24
+ .set EC_WORD_MYSELF, (EC_GROUP_PEOPLE << 9) | 0x25
+ .set EC_WORD_I_WAS, (EC_GROUP_PEOPLE << 9) | 0x26
+ .set EC_WORD_TO_ME, (EC_GROUP_PEOPLE << 9) | 0x27
+ .set EC_WORD_MY, (EC_GROUP_PEOPLE << 9) | 0x28
+ .set EC_WORD_I_AM, (EC_GROUP_PEOPLE << 9) | 0x29
+ .set EC_WORD_I_VE, (EC_GROUP_PEOPLE << 9) | 0x2a
+ .set EC_WORD_WHO, (EC_GROUP_PEOPLE << 9) | 0x2b
+ .set EC_WORD_SOMEONE, (EC_GROUP_PEOPLE << 9) | 0x2c
+ .set EC_WORD_WHO_WAS, (EC_GROUP_PEOPLE << 9) | 0x2d
+ .set EC_WORD_TO_WHOM, (EC_GROUP_PEOPLE << 9) | 0x2e
+ .set EC_WORD_WHOSE, (EC_GROUP_PEOPLE << 9) | 0x2f
+ .set EC_WORD_WHO_IS, (EC_GROUP_PEOPLE << 9) | 0x30
+ .set EC_WORD_IT_S, (EC_GROUP_PEOPLE << 9) | 0x31
+ .set EC_WORD_LADY, (EC_GROUP_PEOPLE << 9) | 0x32
+ .set EC_WORD_FRIEND, (EC_GROUP_PEOPLE << 9) | 0x33
+ .set EC_WORD_ALLY, (EC_GROUP_PEOPLE << 9) | 0x34
+ .set EC_WORD_PERSON, (EC_GROUP_PEOPLE << 9) | 0x35
+ .set EC_WORD_DUDE, (EC_GROUP_PEOPLE << 9) | 0x36
+ .set EC_WORD_THEY, (EC_GROUP_PEOPLE << 9) | 0x37
+ .set EC_WORD_THEY_WERE, (EC_GROUP_PEOPLE << 9) | 0x38
+ .set EC_WORD_TO_THEM, (EC_GROUP_PEOPLE << 9) | 0x39
+ .set EC_WORD_THEIR, (EC_GROUP_PEOPLE << 9) | 0x3a
+ .set EC_WORD_THEY_RE, (EC_GROUP_PEOPLE << 9) | 0x3b
+ .set EC_WORD_THEY_VE, (EC_GROUP_PEOPLE << 9) | 0x3c
+ .set EC_WORD_WE, (EC_GROUP_PEOPLE << 9) | 0x3d
+ .set EC_WORD_BEEN, (EC_GROUP_PEOPLE << 9) | 0x3e
+ .set EC_WORD_TO_US, (EC_GROUP_PEOPLE << 9) | 0x3f
+ .set EC_WORD_OUR, (EC_GROUP_PEOPLE << 9) | 0x40
+ .set EC_WORD_WE_RE, (EC_GROUP_PEOPLE << 9) | 0x41
+ .set EC_WORD_RIVAL, (EC_GROUP_PEOPLE << 9) | 0x42
+ .set EC_WORD_WE_VE, (EC_GROUP_PEOPLE << 9) | 0x43
+ .set EC_WORD_WOMAN, (EC_GROUP_PEOPLE << 9) | 0x44
+ .set EC_WORD_SHE, (EC_GROUP_PEOPLE << 9) | 0x45
+ .set EC_WORD_SHE_WAS, (EC_GROUP_PEOPLE << 9) | 0x46
+ .set EC_WORD_TO_HER, (EC_GROUP_PEOPLE << 9) | 0x47
+ .set EC_WORD_HERS, (EC_GROUP_PEOPLE << 9) | 0x48
+ .set EC_WORD_SHE_IS, (EC_GROUP_PEOPLE << 9) | 0x49
+ .set EC_WORD_SOME, (EC_GROUP_PEOPLE << 9) | 0x4a
; Voices
- .set EC_WORD_EXCL, 0x0
- .set EC_WORD_EXCL_EXCL, 0x1
- .set EC_WORD_QUES_EXCL, 0x2
- .set EC_WORD_QUES, 0x3
- .set EC_WORD_ELLIPSIS, 0x4
- .set EC_WORD_ELLIPSIS_EXCL, 0x5
- .set EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS, 0x6
- .set EC_WORD_DASH, 0x7
- .set EC_WORD_DASH_DASH_DASH, 0x8
- .set EC_WORD_UH_OH, 0x9
- .set EC_WORD_WAAAH, 0xa
- .set EC_WORD_AHAHA, 0xb
- .set EC_WORD_OH_QUES, 0xc
- .set EC_WORD_NOPE, 0xd
- .set EC_WORD_URGH, 0xe
- .set EC_WORD_HMM, 0xf
- .set EC_WORD_WHOAH, 0x10
- .set EC_WORD_WROOOAAR_EXCL, 0x11
- .set EC_WORD_WOW, 0x12
- .set EC_WORD_GIGGLE, 0x13
- .set EC_WORD_SIGH, 0x14
- .set EC_WORD_UNBELIEVABLE, 0x15
- .set EC_WORD_CRIES, 0x16
- .set EC_WORD_AGREE, 0x17
- .set EC_WORD_EH_QUES, 0x18
- .set EC_WORD_CRY, 0x19
- .set EC_WORD_EHEHE, 0x1a
- .set EC_WORD_OI_OI_OI, 0x1b
- .set EC_WORD_OH_YEAH, 0x1c
- .set EC_WORD_OH, 0x1d
- .set EC_WORD_OOPS, 0x1e
- .set EC_WORD_SHOCKED, 0x1f
- .set EC_WORD_EEK, 0x20
- .set EC_WORD_GRAAAH, 0x21
- .set EC_WORD_GWAHAHAHA, 0x22
- .set EC_WORD_WAY, 0x23
- .set EC_WORD_TCH, 0x24
- .set EC_WORD_HEHE, 0x25
- .set EC_WORD_HAH, 0x26
- .set EC_WORD_YUP, 0x27
- .set EC_WORD_HAHAHA, 0x28
- .set EC_WORD_AIYEEH, 0x29
- .set EC_WORD_HIYAH, 0x2a
- .set EC_WORD_FUFUFU, 0x2b
- .set EC_WORD_LOL, 0x2c
- .set EC_WORD_SNORT, 0x2d
- .set EC_WORD_HUMPH, 0x2e
- .set EC_WORD_HEHEHE, 0x2f
- .set EC_WORD_HEH, 0x30
- .set EC_WORD_HOHOHO, 0x31
- .set EC_WORD_UH_HUH, 0x32
- .set EC_WORD_OH_DEAR, 0x33
- .set EC_WORD_ARRGH, 0x34
- .set EC_WORD_MUFUFU, 0x35
- .set EC_WORD_MMM, 0x36
- .set EC_WORD_OH_KAY, 0x37
- .set EC_WORD_OKAY, 0x38
- .set EC_WORD_LALALA, 0x39
- .set EC_WORD_YAY, 0x3a
- .set EC_WORD_AWW, 0x3b
- .set EC_WORD_WOWEE, 0x3c
- .set EC_WORD_GWAH, 0x3d
- .set EC_WORD_WAHAHAHA, 0x3e
+ .set EC_WORD_EXCL, (EC_GROUP_VOICES << 9) | 0x0
+ .set EC_WORD_EXCL_EXCL, (EC_GROUP_VOICES << 9) | 0x1
+ .set EC_WORD_QUES_EXCL, (EC_GROUP_VOICES << 9) | 0x2
+ .set EC_WORD_QUES, (EC_GROUP_VOICES << 9) | 0x3
+ .set EC_WORD_ELLIPSIS, (EC_GROUP_VOICES << 9) | 0x4
+ .set EC_WORD_ELLIPSIS_EXCL, (EC_GROUP_VOICES << 9) | 0x5
+ .set EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS, (EC_GROUP_VOICES << 9) | 0x6
+ .set EC_WORD_DASH, (EC_GROUP_VOICES << 9) | 0x7
+ .set EC_WORD_DASH_DASH_DASH, (EC_GROUP_VOICES << 9) | 0x8
+ .set EC_WORD_UH_OH, (EC_GROUP_VOICES << 9) | 0x9
+ .set EC_WORD_WAAAH, (EC_GROUP_VOICES << 9) | 0xa
+ .set EC_WORD_AHAHA, (EC_GROUP_VOICES << 9) | 0xb
+ .set EC_WORD_OH_QUES, (EC_GROUP_VOICES << 9) | 0xc
+ .set EC_WORD_NOPE, (EC_GROUP_VOICES << 9) | 0xd
+ .set EC_WORD_URGH, (EC_GROUP_VOICES << 9) | 0xe
+ .set EC_WORD_HMM, (EC_GROUP_VOICES << 9) | 0xf
+ .set EC_WORD_WHOAH, (EC_GROUP_VOICES << 9) | 0x10
+ .set EC_WORD_WROOOAAR_EXCL, (EC_GROUP_VOICES << 9) | 0x11
+ .set EC_WORD_WOW, (EC_GROUP_VOICES << 9) | 0x12
+ .set EC_WORD_GIGGLE, (EC_GROUP_VOICES << 9) | 0x13
+ .set EC_WORD_SIGH, (EC_GROUP_VOICES << 9) | 0x14
+ .set EC_WORD_UNBELIEVABLE, (EC_GROUP_VOICES << 9) | 0x15
+ .set EC_WORD_CRIES, (EC_GROUP_VOICES << 9) | 0x16
+ .set EC_WORD_AGREE, (EC_GROUP_VOICES << 9) | 0x17
+ .set EC_WORD_EH_QUES, (EC_GROUP_VOICES << 9) | 0x18
+ .set EC_WORD_CRY, (EC_GROUP_VOICES << 9) | 0x19
+ .set EC_WORD_EHEHE, (EC_GROUP_VOICES << 9) | 0x1a
+ .set EC_WORD_OI_OI_OI, (EC_GROUP_VOICES << 9) | 0x1b
+ .set EC_WORD_OH_YEAH, (EC_GROUP_VOICES << 9) | 0x1c
+ .set EC_WORD_OH, (EC_GROUP_VOICES << 9) | 0x1d
+ .set EC_WORD_OOPS, (EC_GROUP_VOICES << 9) | 0x1e
+ .set EC_WORD_SHOCKED, (EC_GROUP_VOICES << 9) | 0x1f
+ .set EC_WORD_EEK, (EC_GROUP_VOICES << 9) | 0x20
+ .set EC_WORD_GRAAAH, (EC_GROUP_VOICES << 9) | 0x21
+ .set EC_WORD_GWAHAHAHA, (EC_GROUP_VOICES << 9) | 0x22
+ .set EC_WORD_WAY, (EC_GROUP_VOICES << 9) | 0x23
+ .set EC_WORD_TCH, (EC_GROUP_VOICES << 9) | 0x24
+ .set EC_WORD_HEHE, (EC_GROUP_VOICES << 9) | 0x25
+ .set EC_WORD_HAH, (EC_GROUP_VOICES << 9) | 0x26
+ .set EC_WORD_YUP, (EC_GROUP_VOICES << 9) | 0x27
+ .set EC_WORD_HAHAHA, (EC_GROUP_VOICES << 9) | 0x28
+ .set EC_WORD_AIYEEH, (EC_GROUP_VOICES << 9) | 0x29
+ .set EC_WORD_HIYAH, (EC_GROUP_VOICES << 9) | 0x2a
+ .set EC_WORD_FUFUFU, (EC_GROUP_VOICES << 9) | 0x2b
+ .set EC_WORD_LOL, (EC_GROUP_VOICES << 9) | 0x2c
+ .set EC_WORD_SNORT, (EC_GROUP_VOICES << 9) | 0x2d
+ .set EC_WORD_HUMPH, (EC_GROUP_VOICES << 9) | 0x2e
+ .set EC_WORD_HEHEHE, (EC_GROUP_VOICES << 9) | 0x2f
+ .set EC_WORD_HEH, (EC_GROUP_VOICES << 9) | 0x30
+ .set EC_WORD_HOHOHO, (EC_GROUP_VOICES << 9) | 0x31
+ .set EC_WORD_UH_HUH, (EC_GROUP_VOICES << 9) | 0x32
+ .set EC_WORD_OH_DEAR, (EC_GROUP_VOICES << 9) | 0x33
+ .set EC_WORD_ARRGH, (EC_GROUP_VOICES << 9) | 0x34
+ .set EC_WORD_MUFUFU, (EC_GROUP_VOICES << 9) | 0x35
+ .set EC_WORD_MMM, (EC_GROUP_VOICES << 9) | 0x36
+ .set EC_WORD_OH_KAY, (EC_GROUP_VOICES << 9) | 0x37
+ .set EC_WORD_OKAY, (EC_GROUP_VOICES << 9) | 0x38
+ .set EC_WORD_LALALA, (EC_GROUP_VOICES << 9) | 0x39
+ .set EC_WORD_YAY, (EC_GROUP_VOICES << 9) | 0x3a
+ .set EC_WORD_AWW, (EC_GROUP_VOICES << 9) | 0x3b
+ .set EC_WORD_WOWEE, (EC_GROUP_VOICES << 9) | 0x3c
+ .set EC_WORD_GWAH, (EC_GROUP_VOICES << 9) | 0x3d
+ .set EC_WORD_WAHAHAHA, (EC_GROUP_VOICES << 9) | 0x3e
; Speech
- .set EC_WORD_LISTEN, 0x0
- .set EC_WORD_NOT_VERY, 0x1
- .set EC_WORD_MEAN, 0x2
- .set EC_WORD_LIE, 0x3
- .set EC_WORD_LAY, 0x4
- .set EC_WORD_RECOMMEND, 0x5
- .set EC_WORD_NITWIT, 0x6
- .set EC_WORD_QUITE, 0x7
- .set EC_WORD_FROM, 0x8
- .set EC_WORD_FEELING, 0x9
- .set EC_WORD_BUT, 0xa
- .set EC_WORD_HOWEVER, 0xb
- .set EC_WORD_CASE, 0xc
- .set EC_WORD_THE, 0xd
- .set EC_WORD_MISS, 0xe
- .set EC_WORD_HOW, 0xf
- .set EC_WORD_HIT, 0x10
- .set EC_WORD_ENOUGH, 0x11
- .set EC_WORD_A_LOT, 0x12
- .set EC_WORD_A_LITTLE, 0x13
- .set EC_WORD_ABSOLUTELY, 0x14
- .set EC_WORD_AND, 0x15
- .set EC_WORD_ONLY, 0x16
- .set EC_WORD_AROUND, 0x17
- .set EC_WORD_PROBABLY, 0x18
- .set EC_WORD_IF, 0x19
- .set EC_WORD_VERY, 0x1a
- .set EC_WORD_A_TINY_BIT, 0x1b
- .set EC_WORD_WILD, 0x1c
- .set EC_WORD_THAT_S, 0x1d
- .set EC_WORD_JUST, 0x1e
- .set EC_WORD_EVEN_SO, 0x1f
- .set EC_WORD_MUST_BE, 0x20
- .set EC_WORD_NATURALLY, 0x21
- .set EC_WORD_FOR_NOW, 0x22
- .set EC_WORD_UNDERSTOOD, 0x23
- .set EC_WORD_JOKING, 0x24
- .set EC_WORD_READY, 0x25
- .set EC_WORD_SOMETHING, 0x26
- .set EC_WORD_SOMEHOW, 0x27
- .set EC_WORD_ALTHOUGH, 0x28
- .set EC_WORD_ALSO, 0x29
- .set EC_WORD_PERFECT, 0x2a
- .set EC_WORD_AS_MUCH_AS, 0x2b
- .set EC_WORD_REALLY, 0x2c
- .set EC_WORD_TRULY, 0x2d
- .set EC_WORD_SERIOUSLY, 0x2e
- .set EC_WORD_TOTALLY, 0x2f
- .set EC_WORD_UNTIL, 0x30
- .set EC_WORD_AS_IF, 0x31
- .set EC_WORD_MOOD, 0x32
- .set EC_WORD_RATHER, 0x33
- .set EC_WORD_AWFULLY, 0x34
- .set EC_WORD_MODE, 0x35
- .set EC_WORD_MORE, 0x36
- .set EC_WORD_TOO_LATE, 0x37
- .set EC_WORD_FINALLY, 0x38
- .set EC_WORD_ANY, 0x39
- .set EC_WORD_INSTEAD, 0x3a
- .set EC_WORD_FANTASTIC, 0x3b
+ .set EC_WORD_LISTEN, (EC_GROUP_SPEECH << 9) | 0x0
+ .set EC_WORD_NOT_VERY, (EC_GROUP_SPEECH << 9) | 0x1
+ .set EC_WORD_MEAN, (EC_GROUP_SPEECH << 9) | 0x2
+ .set EC_WORD_LIE, (EC_GROUP_SPEECH << 9) | 0x3
+ .set EC_WORD_LAY, (EC_GROUP_SPEECH << 9) | 0x4
+ .set EC_WORD_RECOMMEND, (EC_GROUP_SPEECH << 9) | 0x5
+ .set EC_WORD_NITWIT, (EC_GROUP_SPEECH << 9) | 0x6
+ .set EC_WORD_QUITE, (EC_GROUP_SPEECH << 9) | 0x7
+ .set EC_WORD_FROM, (EC_GROUP_SPEECH << 9) | 0x8
+ .set EC_WORD_FEELING, (EC_GROUP_SPEECH << 9) | 0x9
+ .set EC_WORD_BUT, (EC_GROUP_SPEECH << 9) | 0xa
+ .set EC_WORD_HOWEVER, (EC_GROUP_SPEECH << 9) | 0xb
+ .set EC_WORD_CASE, (EC_GROUP_SPEECH << 9) | 0xc
+ .set EC_WORD_THE, (EC_GROUP_SPEECH << 9) | 0xd
+ .set EC_WORD_MISS, (EC_GROUP_SPEECH << 9) | 0xe
+ .set EC_WORD_HOW, (EC_GROUP_SPEECH << 9) | 0xf
+ .set EC_WORD_HIT, (EC_GROUP_SPEECH << 9) | 0x10
+ .set EC_WORD_ENOUGH, (EC_GROUP_SPEECH << 9) | 0x11
+ .set EC_WORD_A_LOT, (EC_GROUP_SPEECH << 9) | 0x12
+ .set EC_WORD_A_LITTLE, (EC_GROUP_SPEECH << 9) | 0x13
+ .set EC_WORD_ABSOLUTELY, (EC_GROUP_SPEECH << 9) | 0x14
+ .set EC_WORD_AND, (EC_GROUP_SPEECH << 9) | 0x15
+ .set EC_WORD_ONLY, (EC_GROUP_SPEECH << 9) | 0x16
+ .set EC_WORD_AROUND, (EC_GROUP_SPEECH << 9) | 0x17
+ .set EC_WORD_PROBABLY, (EC_GROUP_SPEECH << 9) | 0x18
+ .set EC_WORD_IF, (EC_GROUP_SPEECH << 9) | 0x19
+ .set EC_WORD_VERY, (EC_GROUP_SPEECH << 9) | 0x1a
+ .set EC_WORD_A_TINY_BIT, (EC_GROUP_SPEECH << 9) | 0x1b
+ .set EC_WORD_WILD, (EC_GROUP_SPEECH << 9) | 0x1c
+ .set EC_WORD_THAT_S, (EC_GROUP_SPEECH << 9) | 0x1d
+ .set EC_WORD_JUST, (EC_GROUP_SPEECH << 9) | 0x1e
+ .set EC_WORD_EVEN_SO, (EC_GROUP_SPEECH << 9) | 0x1f
+ .set EC_WORD_MUST_BE, (EC_GROUP_SPEECH << 9) | 0x20
+ .set EC_WORD_NATURALLY, (EC_GROUP_SPEECH << 9) | 0x21
+ .set EC_WORD_FOR_NOW, (EC_GROUP_SPEECH << 9) | 0x22
+ .set EC_WORD_UNDERSTOOD, (EC_GROUP_SPEECH << 9) | 0x23
+ .set EC_WORD_JOKING, (EC_GROUP_SPEECH << 9) | 0x24
+ .set EC_WORD_READY, (EC_GROUP_SPEECH << 9) | 0x25
+ .set EC_WORD_SOMETHING, (EC_GROUP_SPEECH << 9) | 0x26
+ .set EC_WORD_SOMEHOW, (EC_GROUP_SPEECH << 9) | 0x27
+ .set EC_WORD_ALTHOUGH, (EC_GROUP_SPEECH << 9) | 0x28
+ .set EC_WORD_ALSO, (EC_GROUP_SPEECH << 9) | 0x29
+ .set EC_WORD_PERFECT, (EC_GROUP_SPEECH << 9) | 0x2a
+ .set EC_WORD_AS_MUCH_AS, (EC_GROUP_SPEECH << 9) | 0x2b
+ .set EC_WORD_REALLY, (EC_GROUP_SPEECH << 9) | 0x2c
+ .set EC_WORD_TRULY, (EC_GROUP_SPEECH << 9) | 0x2d
+ .set EC_WORD_SERIOUSLY, (EC_GROUP_SPEECH << 9) | 0x2e
+ .set EC_WORD_TOTALLY, (EC_GROUP_SPEECH << 9) | 0x2f
+ .set EC_WORD_UNTIL, (EC_GROUP_SPEECH << 9) | 0x30
+ .set EC_WORD_AS_IF, (EC_GROUP_SPEECH << 9) | 0x31
+ .set EC_WORD_MOOD, (EC_GROUP_SPEECH << 9) | 0x32
+ .set EC_WORD_RATHER, (EC_GROUP_SPEECH << 9) | 0x33
+ .set EC_WORD_AWFULLY, (EC_GROUP_SPEECH << 9) | 0x34
+ .set EC_WORD_MODE, (EC_GROUP_SPEECH << 9) | 0x35
+ .set EC_WORD_MORE, (EC_GROUP_SPEECH << 9) | 0x36
+ .set EC_WORD_TOO_LATE, (EC_GROUP_SPEECH << 9) | 0x37
+ .set EC_WORD_FINALLY, (EC_GROUP_SPEECH << 9) | 0x38
+ .set EC_WORD_ANY, (EC_GROUP_SPEECH << 9) | 0x39
+ .set EC_WORD_INSTEAD, (EC_GROUP_SPEECH << 9) | 0x3a
+ .set EC_WORD_FANTASTIC, (EC_GROUP_SPEECH << 9) | 0x3b
; Endings
- .set EC_WORD_WILL, 0x0
- .set EC_WORD_WILL_BE_HERE, 0x1
- .set EC_WORD_OR, 0x2
- .set EC_WORD_TIMES, 0x3
- .set EC_WORD_WONDER, 0x4
- .set EC_WORD_IS_IT_QUES, 0x5
- .set EC_WORD_BE, 0x6
- .set EC_WORD_GIMME, 0x7
- .set EC_WORD_COULD, 0x8
- .set EC_WORD_LIKELY_TO, 0x9
- .set EC_WORD_WOULD, 0xa
- .set EC_WORD_IS, 0xb
- .set EC_WORD_ISN_T_IT_QUES, 0xc
- .set EC_WORD_LET_S, 0xd
- .set EC_WORD_OTHER, 0xe
- .set EC_WORD_ARE, 0xf
- .set EC_WORD_WAS, 0x10
- .set EC_WORD_WERE, 0x11
- .set EC_WORD_THOSE, 0x12
- .set EC_WORD_ISN_T, 0x13
- .set EC_WORD_WON_T, 0x14
- .set EC_WORD_CAN_T, 0x15
- .set EC_WORD_CAN, 0x16
- .set EC_WORD_DON_T, 0x17
- .set EC_WORD_DO, 0x18
- .set EC_WORD_DOES, 0x19
- .set EC_WORD_WHOM, 0x1a
- .set EC_WORD_WHICH, 0x1b
- .set EC_WORD_WASN_T, 0x1c
- .set EC_WORD_WEREN_T, 0x1d
- .set EC_WORD_HAVE, 0x1e
- .set EC_WORD_HAVEN_T, 0x1f
- .set EC_WORD_A, 0x20
- .set EC_WORD_AN, 0x21
- .set EC_WORD_NOT, 0x22
- .set EC_WORD_THERE, 0x23
- .set EC_WORD_OK_QUES, 0x24
- .set EC_WORD_SO, 0x25
- .set EC_WORD_MAYBE, 0x26
- .set EC_WORD_ABOUT, 0x27
- .set EC_WORD_OVER, 0x28
- .set EC_WORD_IT, 0x29
- .set EC_WORD_ALL, 0x2a
- .set EC_WORD_FOR, 0x2b
- .set EC_WORD_ON, 0x2c
- .set EC_WORD_OFF, 0x2d
- .set EC_WORD_AS, 0x2e
- .set EC_WORD_TO, 0x2f
- .set EC_WORD_WITH, 0x30
- .set EC_WORD_BETTER, 0x31
- .set EC_WORD_EVER, 0x32
- .set EC_WORD_SINCE, 0x33
- .set EC_WORD_OF, 0x34
- .set EC_WORD_BELONGS_TO, 0x35
- .set EC_WORD_AT, 0x36
- .set EC_WORD_IN, 0x37
- .set EC_WORD_OUT, 0x38
- .set EC_WORD_TOO, 0x39
- .set EC_WORD_LIKE, 0x3a
- .set EC_WORD_DID, 0x3b
- .set EC_WORD_DIDN_T, 0x3c
- .set EC_WORD_DOESN_T, 0x3d
- .set EC_WORD_WITHOUT, 0x3e
- .set EC_WORD_AFTER, 0x3f
- .set EC_WORD_BEFORE, 0x40
- .set EC_WORD_WHILE, 0x41
- .set EC_WORD_THAN, 0x42
- .set EC_WORD_ONCE, 0x43
- .set EC_WORD_ANYWHERE, 0x44
+ .set EC_WORD_WILL, (EC_GROUP_ENDINGS << 9) | 0x0
+ .set EC_WORD_WILL_BE_HERE, (EC_GROUP_ENDINGS << 9) | 0x1
+ .set EC_WORD_OR, (EC_GROUP_ENDINGS << 9) | 0x2
+ .set EC_WORD_TIMES, (EC_GROUP_ENDINGS << 9) | 0x3
+ .set EC_WORD_WONDER, (EC_GROUP_ENDINGS << 9) | 0x4
+ .set EC_WORD_IS_IT_QUES, (EC_GROUP_ENDINGS << 9) | 0x5
+ .set EC_WORD_BE, (EC_GROUP_ENDINGS << 9) | 0x6
+ .set EC_WORD_GIMME, (EC_GROUP_ENDINGS << 9) | 0x7
+ .set EC_WORD_COULD, (EC_GROUP_ENDINGS << 9) | 0x8
+ .set EC_WORD_LIKELY_TO, (EC_GROUP_ENDINGS << 9) | 0x9
+ .set EC_WORD_WOULD, (EC_GROUP_ENDINGS << 9) | 0xa
+ .set EC_WORD_IS, (EC_GROUP_ENDINGS << 9) | 0xb
+ .set EC_WORD_ISN_T_IT_QUES, (EC_GROUP_ENDINGS << 9) | 0xc
+ .set EC_WORD_LET_S, (EC_GROUP_ENDINGS << 9) | 0xd
+ .set EC_WORD_OTHER, (EC_GROUP_ENDINGS << 9) | 0xe
+ .set EC_WORD_ARE, (EC_GROUP_ENDINGS << 9) | 0xf
+ .set EC_WORD_WAS, (EC_GROUP_ENDINGS << 9) | 0x10
+ .set EC_WORD_WERE, (EC_GROUP_ENDINGS << 9) | 0x11
+ .set EC_WORD_THOSE, (EC_GROUP_ENDINGS << 9) | 0x12
+ .set EC_WORD_ISN_T, (EC_GROUP_ENDINGS << 9) | 0x13
+ .set EC_WORD_WON_T, (EC_GROUP_ENDINGS << 9) | 0x14
+ .set EC_WORD_CAN_T, (EC_GROUP_ENDINGS << 9) | 0x15
+ .set EC_WORD_CAN, (EC_GROUP_ENDINGS << 9) | 0x16
+ .set EC_WORD_DON_T, (EC_GROUP_ENDINGS << 9) | 0x17
+ .set EC_WORD_DO, (EC_GROUP_ENDINGS << 9) | 0x18
+ .set EC_WORD_DOES, (EC_GROUP_ENDINGS << 9) | 0x19
+ .set EC_WORD_WHOM, (EC_GROUP_ENDINGS << 9) | 0x1a
+ .set EC_WORD_WHICH, (EC_GROUP_ENDINGS << 9) | 0x1b
+ .set EC_WORD_WASN_T, (EC_GROUP_ENDINGS << 9) | 0x1c
+ .set EC_WORD_WEREN_T, (EC_GROUP_ENDINGS << 9) | 0x1d
+ .set EC_WORD_HAVE, (EC_GROUP_ENDINGS << 9) | 0x1e
+ .set EC_WORD_HAVEN_T, (EC_GROUP_ENDINGS << 9) | 0x1f
+ .set EC_WORD_A, (EC_GROUP_ENDINGS << 9) | 0x20
+ .set EC_WORD_AN, (EC_GROUP_ENDINGS << 9) | 0x21
+ .set EC_WORD_NOT, (EC_GROUP_ENDINGS << 9) | 0x22
+ .set EC_WORD_THERE, (EC_GROUP_ENDINGS << 9) | 0x23
+ .set EC_WORD_OK_QUES, (EC_GROUP_ENDINGS << 9) | 0x24
+ .set EC_WORD_SO, (EC_GROUP_ENDINGS << 9) | 0x25
+ .set EC_WORD_MAYBE, (EC_GROUP_ENDINGS << 9) | 0x26
+ .set EC_WORD_ABOUT, (EC_GROUP_ENDINGS << 9) | 0x27
+ .set EC_WORD_OVER, (EC_GROUP_ENDINGS << 9) | 0x28
+ .set EC_WORD_IT, (EC_GROUP_ENDINGS << 9) | 0x29
+ .set EC_WORD_ALL, (EC_GROUP_ENDINGS << 9) | 0x2a
+ .set EC_WORD_FOR, (EC_GROUP_ENDINGS << 9) | 0x2b
+ .set EC_WORD_ON, (EC_GROUP_ENDINGS << 9) | 0x2c
+ .set EC_WORD_OFF, (EC_GROUP_ENDINGS << 9) | 0x2d
+ .set EC_WORD_AS, (EC_GROUP_ENDINGS << 9) | 0x2e
+ .set EC_WORD_TO, (EC_GROUP_ENDINGS << 9) | 0x2f
+ .set EC_WORD_WITH, (EC_GROUP_ENDINGS << 9) | 0x30
+ .set EC_WORD_BETTER, (EC_GROUP_ENDINGS << 9) | 0x31
+ .set EC_WORD_EVER, (EC_GROUP_ENDINGS << 9) | 0x32
+ .set EC_WORD_SINCE, (EC_GROUP_ENDINGS << 9) | 0x33
+ .set EC_WORD_OF, (EC_GROUP_ENDINGS << 9) | 0x34
+ .set EC_WORD_BELONGS_TO, (EC_GROUP_ENDINGS << 9) | 0x35
+ .set EC_WORD_AT, (EC_GROUP_ENDINGS << 9) | 0x36
+ .set EC_WORD_IN, (EC_GROUP_ENDINGS << 9) | 0x37
+ .set EC_WORD_OUT, (EC_GROUP_ENDINGS << 9) | 0x38
+ .set EC_WORD_TOO, (EC_GROUP_ENDINGS << 9) | 0x39
+ .set EC_WORD_LIKE, (EC_GROUP_ENDINGS << 9) | 0x3a
+ .set EC_WORD_DID, (EC_GROUP_ENDINGS << 9) | 0x3b
+ .set EC_WORD_DIDN_T, (EC_GROUP_ENDINGS << 9) | 0x3c
+ .set EC_WORD_DOESN_T, (EC_GROUP_ENDINGS << 9) | 0x3d
+ .set EC_WORD_WITHOUT, (EC_GROUP_ENDINGS << 9) | 0x3e
+ .set EC_WORD_AFTER, (EC_GROUP_ENDINGS << 9) | 0x3f
+ .set EC_WORD_BEFORE, (EC_GROUP_ENDINGS << 9) | 0x40
+ .set EC_WORD_WHILE, (EC_GROUP_ENDINGS << 9) | 0x41
+ .set EC_WORD_THAN, (EC_GROUP_ENDINGS << 9) | 0x42
+ .set EC_WORD_ONCE, (EC_GROUP_ENDINGS << 9) | 0x43
+ .set EC_WORD_ANYWHERE, (EC_GROUP_ENDINGS << 9) | 0x44
; Feelings
- .set EC_WORD_MEET, 0x0
- .set EC_WORD_PLAY, 0x1
- .set EC_WORD_HURRIED, 0x2
- .set EC_WORD_GOES, 0x3
- .set EC_WORD_GIDDY, 0x4
- .set EC_WORD_HAPPY, 0x5
- .set EC_WORD_HAPPINESS, 0x6
- .set EC_WORD_EXCITE, 0x7
- .set EC_WORD_IMPORTANT, 0x8
- .set EC_WORD_FUNNY, 0x9
- .set EC_WORD_GOT, 0xa
- .set EC_WORD_GO_HOME, 0xb
- .set EC_WORD_DISAPPOINTED, 0xc
- .set EC_WORD_DISAPPOINTS, 0xd
- .set EC_WORD_SAD, 0xe
- .set EC_WORD_TRY, 0xf
- .set EC_WORD_TRIES, 0x10
- .set EC_WORD_HEARS, 0x11
- .set EC_WORD_THINK, 0x12
- .set EC_WORD_HEAR, 0x13
- .set EC_WORD_WANTS, 0x14
- .set EC_WORD_MISHEARD, 0x15
- .set EC_WORD_DISLIKE, 0x16
- .set EC_WORD_ANGRY, 0x17
- .set EC_WORD_ANGER, 0x18
- .set EC_WORD_SCARY, 0x19
- .set EC_WORD_LONESOME, 0x1a
- .set EC_WORD_DISAPPOINT, 0x1b
- .set EC_WORD_JOY, 0x1c
- .set EC_WORD_GETS, 0x1d
- .set EC_WORD_NEVER, 0x1e
- .set EC_WORD_DARN, 0x1f
- .set EC_WORD_DOWNCAST, 0x20
- .set EC_WORD_INCREDIBLE, 0x21
- .set EC_WORD_LIKES, 0x22
- .set EC_WORD_DISLIKES, 0x23
- .set EC_WORD_BORING, 0x24
- .set EC_WORD_CARE, 0x25
- .set EC_WORD_CARES, 0x26
- .set EC_WORD_ALL_RIGHT, 0x27
- .set EC_WORD_ADORE, 0x28
- .set EC_WORD_DISASTER, 0x29
- .set EC_WORD_ENJOY, 0x2a
- .set EC_WORD_ENJOYS, 0x2b
- .set EC_WORD_EAT, 0x2c
- .set EC_WORD_LACKING, 0x2d
- .set EC_WORD_BAD, 0x2e
- .set EC_WORD_HARD, 0x2f
- .set EC_WORD_TERRIBLE, 0x30
- .set EC_WORD_SHOULD, 0x31
- .set EC_WORD_NICE, 0x32
- .set EC_WORD_DRINK, 0x33
- .set EC_WORD_SURPRISE, 0x34
- .set EC_WORD_FEAR, 0x35
- .set EC_WORD_WANT, 0x36
- .set EC_WORD_WAIT, 0x37
- .set EC_WORD_SATISFIED, 0x38
- .set EC_WORD_SEE, 0x39
- .set EC_WORD_RARE, 0x3a
- .set EC_WORD_NEGATIVE, 0x3b
- .set EC_WORD_DONE, 0x3c
- .set EC_WORD_DANGER, 0x3d
- .set EC_WORD_DEFEATED, 0x3e
- .set EC_WORD_BEAT, 0x3f
- .set EC_WORD_GREAT, 0x40
- .set EC_WORD_ROMANTIC, 0x41
- .set EC_WORD_QUESTION, 0x42
- .set EC_WORD_UNDERSTAND, 0x43
- .set EC_WORD_UNDERSTANDS, 0x44
+ .set EC_WORD_MEET, (EC_GROUP_FEELINGS << 9) | 0x0
+ .set EC_WORD_PLAY, (EC_GROUP_FEELINGS << 9) | 0x1
+ .set EC_WORD_HURRIED, (EC_GROUP_FEELINGS << 9) | 0x2
+ .set EC_WORD_GOES, (EC_GROUP_FEELINGS << 9) | 0x3
+ .set EC_WORD_GIDDY, (EC_GROUP_FEELINGS << 9) | 0x4
+ .set EC_WORD_HAPPY, (EC_GROUP_FEELINGS << 9) | 0x5
+ .set EC_WORD_HAPPINESS, (EC_GROUP_FEELINGS << 9) | 0x6
+ .set EC_WORD_EXCITE, (EC_GROUP_FEELINGS << 9) | 0x7
+ .set EC_WORD_IMPORTANT, (EC_GROUP_FEELINGS << 9) | 0x8
+ .set EC_WORD_FUNNY, (EC_GROUP_FEELINGS << 9) | 0x9
+ .set EC_WORD_GOT, (EC_GROUP_FEELINGS << 9) | 0xa
+ .set EC_WORD_GO_HOME, (EC_GROUP_FEELINGS << 9) | 0xb
+ .set EC_WORD_DISAPPOINTED, (EC_GROUP_FEELINGS << 9) | 0xc
+ .set EC_WORD_DISAPPOINTS, (EC_GROUP_FEELINGS << 9) | 0xd
+ .set EC_WORD_SAD, (EC_GROUP_FEELINGS << 9) | 0xe
+ .set EC_WORD_TRY, (EC_GROUP_FEELINGS << 9) | 0xf
+ .set EC_WORD_TRIES, (EC_GROUP_FEELINGS << 9) | 0x10
+ .set EC_WORD_HEARS, (EC_GROUP_FEELINGS << 9) | 0x11
+ .set EC_WORD_THINK, (EC_GROUP_FEELINGS << 9) | 0x12
+ .set EC_WORD_HEAR, (EC_GROUP_FEELINGS << 9) | 0x13
+ .set EC_WORD_WANTS, (EC_GROUP_FEELINGS << 9) | 0x14
+ .set EC_WORD_MISHEARD, (EC_GROUP_FEELINGS << 9) | 0x15
+ .set EC_WORD_DISLIKE, (EC_GROUP_FEELINGS << 9) | 0x16
+ .set EC_WORD_ANGRY, (EC_GROUP_FEELINGS << 9) | 0x17
+ .set EC_WORD_ANGER, (EC_GROUP_FEELINGS << 9) | 0x18
+ .set EC_WORD_SCARY, (EC_GROUP_FEELINGS << 9) | 0x19
+ .set EC_WORD_LONESOME, (EC_GROUP_FEELINGS << 9) | 0x1a
+ .set EC_WORD_DISAPPOINT, (EC_GROUP_FEELINGS << 9) | 0x1b
+ .set EC_WORD_JOY, (EC_GROUP_FEELINGS << 9) | 0x1c
+ .set EC_WORD_GETS, (EC_GROUP_FEELINGS << 9) | 0x1d
+ .set EC_WORD_NEVER, (EC_GROUP_FEELINGS << 9) | 0x1e
+ .set EC_WORD_DARN, (EC_GROUP_FEELINGS << 9) | 0x1f
+ .set EC_WORD_DOWNCAST, (EC_GROUP_FEELINGS << 9) | 0x20
+ .set EC_WORD_INCREDIBLE, (EC_GROUP_FEELINGS << 9) | 0x21
+ .set EC_WORD_LIKES, (EC_GROUP_FEELINGS << 9) | 0x22
+ .set EC_WORD_DISLIKES, (EC_GROUP_FEELINGS << 9) | 0x23
+ .set EC_WORD_BORING, (EC_GROUP_FEELINGS << 9) | 0x24
+ .set EC_WORD_CARE, (EC_GROUP_FEELINGS << 9) | 0x25
+ .set EC_WORD_CARES, (EC_GROUP_FEELINGS << 9) | 0x26
+ .set EC_WORD_ALL_RIGHT, (EC_GROUP_FEELINGS << 9) | 0x27
+ .set EC_WORD_ADORE, (EC_GROUP_FEELINGS << 9) | 0x28
+ .set EC_WORD_DISASTER, (EC_GROUP_FEELINGS << 9) | 0x29
+ .set EC_WORD_ENJOY, (EC_GROUP_FEELINGS << 9) | 0x2a
+ .set EC_WORD_ENJOYS, (EC_GROUP_FEELINGS << 9) | 0x2b
+ .set EC_WORD_EAT, (EC_GROUP_FEELINGS << 9) | 0x2c
+ .set EC_WORD_LACKING, (EC_GROUP_FEELINGS << 9) | 0x2d
+ .set EC_WORD_BAD, (EC_GROUP_FEELINGS << 9) | 0x2e
+ .set EC_WORD_HARD, (EC_GROUP_FEELINGS << 9) | 0x2f
+ .set EC_WORD_TERRIBLE, (EC_GROUP_FEELINGS << 9) | 0x30
+ .set EC_WORD_SHOULD, (EC_GROUP_FEELINGS << 9) | 0x31
+ .set EC_WORD_NICE, (EC_GROUP_FEELINGS << 9) | 0x32
+ .set EC_WORD_DRINK, (EC_GROUP_FEELINGS << 9) | 0x33
+ .set EC_WORD_SURPRISE, (EC_GROUP_FEELINGS << 9) | 0x34
+ .set EC_WORD_FEAR, (EC_GROUP_FEELINGS << 9) | 0x35
+ .set EC_WORD_WANT, (EC_GROUP_FEELINGS << 9) | 0x36
+ .set EC_WORD_WAIT, (EC_GROUP_FEELINGS << 9) | 0x37
+ .set EC_WORD_SATISFIED, (EC_GROUP_FEELINGS << 9) | 0x38
+ .set EC_WORD_SEE, (EC_GROUP_FEELINGS << 9) | 0x39
+ .set EC_WORD_RARE, (EC_GROUP_FEELINGS << 9) | 0x3a
+ .set EC_WORD_NEGATIVE, (EC_GROUP_FEELINGS << 9) | 0x3b
+ .set EC_WORD_DONE, (EC_GROUP_FEELINGS << 9) | 0x3c
+ .set EC_WORD_DANGER, (EC_GROUP_FEELINGS << 9) | 0x3d
+ .set EC_WORD_DEFEATED, (EC_GROUP_FEELINGS << 9) | 0x3e
+ .set EC_WORD_BEAT, (EC_GROUP_FEELINGS << 9) | 0x3f
+ .set EC_WORD_GREAT, (EC_GROUP_FEELINGS << 9) | 0x40
+ .set EC_WORD_ROMANTIC, (EC_GROUP_FEELINGS << 9) | 0x41
+ .set EC_WORD_QUESTION, (EC_GROUP_FEELINGS << 9) | 0x42
+ .set EC_WORD_UNDERSTAND, (EC_GROUP_FEELINGS << 9) | 0x43
+ .set EC_WORD_UNDERSTANDS, (EC_GROUP_FEELINGS << 9) | 0x44
; Conditions
- .set EC_WORD_HOT, 0x0
- .set EC_WORD_EXISTS, 0x1
- .set EC_WORD_EXCESS, 0x2
- .set EC_WORD_APPROVED, 0x3
- .set EC_WORD_HAS, 0x4
- .set EC_WORD_GOOD, 0x5
- .set EC_WORD_LESS, 0x6
- .set EC_WORD_MOMENTUM, 0x7
- .set EC_WORD_GOING, 0x8
- .set EC_WORD_WEIRD, 0x9
- .set EC_WORD_BUSY, 0xa
- .set EC_WORD_TOGETHER, 0xb
- .set EC_WORD_FULL, 0xc
- .set EC_WORD_ABSENT, 0xd
- .set EC_WORD_BEING, 0xe
- .set EC_WORD_NEED, 0xf
- .set EC_WORD_TASTY, 0x10
- .set EC_WORD_SKILLED, 0x11
- .set EC_WORD_NOISY, 0x12
- .set EC_WORD_BIG, 0x13
- .set EC_WORD_LATE, 0x14
- .set EC_WORD_CLOSE, 0x15
- .set EC_WORD_DOCILE, 0x16
- .set EC_WORD_AMUSING, 0x17
- .set EC_WORD_ENTERTAINING, 0x18
- .set EC_WORD_PERFECTION, 0x19
- .set EC_WORD_PRETTY, 0x1a
- .set EC_WORD_HEALTHY, 0x1b
- .set EC_WORD_EXCELLENT, 0x1c
- .set EC_WORD_UPSIDE_DOWN, 0x1d
- .set EC_WORD_COLD, 0x1e
- .set EC_WORD_REFRESHING, 0x1f
- .set EC_WORD_UNAVOIDABLE, 0x20
- .set EC_WORD_MUCH, 0x21
- .set EC_WORD_OVERWHELMING, 0x22
- .set EC_WORD_FABULOUS, 0x23
- .set EC_WORD_ELSE, 0x24
- .set EC_WORD_EXPENSIVE, 0x25
- .set EC_WORD_CORRECT, 0x26
- .set EC_WORD_IMPOSSIBLE, 0x27
- .set EC_WORD_SMALL, 0x28
- .set EC_WORD_DIFFERENT, 0x29
- .set EC_WORD_TIRED, 0x2a
- .set EC_WORD_SKILL, 0x2b
- .set EC_WORD_TOP, 0x2c
- .set EC_WORD_NON_STOP, 0x2d
- .set EC_WORD_PREPOSTEROUS, 0x2e
- .set EC_WORD_NONE, 0x2f
- .set EC_WORD_NOTHING, 0x30
- .set EC_WORD_NATURAL, 0x31
- .set EC_WORD_BECOMES, 0x32
- .set EC_WORD_LUKEWARM, 0x33
- .set EC_WORD_FAST, 0x34
- .set EC_WORD_LOW, 0x35
- .set EC_WORD_AWFUL, 0x36
- .set EC_WORD_ALONE, 0x37
- .set EC_WORD_BORED, 0x38
- .set EC_WORD_SECRET, 0x39
- .set EC_WORD_MYSTERY, 0x3a
- .set EC_WORD_LACKS, 0x3b
- .set EC_WORD_BEST, 0x3c
- .set EC_WORD_LOUSY, 0x3d
- .set EC_WORD_MISTAKE, 0x3e
- .set EC_WORD_KIND, 0x3f
- .set EC_WORD_WELL, 0x40
- .set EC_WORD_WEAKENED, 0x41
- .set EC_WORD_SIMPLE, 0x42
- .set EC_WORD_SEEMS, 0x43
- .set EC_WORD_BADLY, 0x44
+ .set EC_WORD_HOT, (EC_GROUP_CONDITIONS << 9) | 0x0
+ .set EC_WORD_EXISTS, (EC_GROUP_CONDITIONS << 9) | 0x1
+ .set EC_WORD_EXCESS, (EC_GROUP_CONDITIONS << 9) | 0x2
+ .set EC_WORD_APPROVED, (EC_GROUP_CONDITIONS << 9) | 0x3
+ .set EC_WORD_HAS, (EC_GROUP_CONDITIONS << 9) | 0x4
+ .set EC_WORD_GOOD, (EC_GROUP_CONDITIONS << 9) | 0x5
+ .set EC_WORD_LESS, (EC_GROUP_CONDITIONS << 9) | 0x6
+ .set EC_WORD_MOMENTUM, (EC_GROUP_CONDITIONS << 9) | 0x7
+ .set EC_WORD_GOING, (EC_GROUP_CONDITIONS << 9) | 0x8
+ .set EC_WORD_WEIRD, (EC_GROUP_CONDITIONS << 9) | 0x9
+ .set EC_WORD_BUSY, (EC_GROUP_CONDITIONS << 9) | 0xa
+ .set EC_WORD_TOGETHER, (EC_GROUP_CONDITIONS << 9) | 0xb
+ .set EC_WORD_FULL, (EC_GROUP_CONDITIONS << 9) | 0xc
+ .set EC_WORD_ABSENT, (EC_GROUP_CONDITIONS << 9) | 0xd
+ .set EC_WORD_BEING, (EC_GROUP_CONDITIONS << 9) | 0xe
+ .set EC_WORD_NEED, (EC_GROUP_CONDITIONS << 9) | 0xf
+ .set EC_WORD_TASTY, (EC_GROUP_CONDITIONS << 9) | 0x10
+ .set EC_WORD_SKILLED, (EC_GROUP_CONDITIONS << 9) | 0x11
+ .set EC_WORD_NOISY, (EC_GROUP_CONDITIONS << 9) | 0x12
+ .set EC_WORD_BIG, (EC_GROUP_CONDITIONS << 9) | 0x13
+ .set EC_WORD_LATE, (EC_GROUP_CONDITIONS << 9) | 0x14
+ .set EC_WORD_CLOSE, (EC_GROUP_CONDITIONS << 9) | 0x15
+ .set EC_WORD_DOCILE, (EC_GROUP_CONDITIONS << 9) | 0x16
+ .set EC_WORD_AMUSING, (EC_GROUP_CONDITIONS << 9) | 0x17
+ .set EC_WORD_ENTERTAINING, (EC_GROUP_CONDITIONS << 9) | 0x18
+ .set EC_WORD_PERFECTION, (EC_GROUP_CONDITIONS << 9) | 0x19
+ .set EC_WORD_PRETTY, (EC_GROUP_CONDITIONS << 9) | 0x1a
+ .set EC_WORD_HEALTHY, (EC_GROUP_CONDITIONS << 9) | 0x1b
+ .set EC_WORD_EXCELLENT, (EC_GROUP_CONDITIONS << 9) | 0x1c
+ .set EC_WORD_UPSIDE_DOWN, (EC_GROUP_CONDITIONS << 9) | 0x1d
+ .set EC_WORD_COLD, (EC_GROUP_CONDITIONS << 9) | 0x1e
+ .set EC_WORD_REFRESHING, (EC_GROUP_CONDITIONS << 9) | 0x1f
+ .set EC_WORD_UNAVOIDABLE, (EC_GROUP_CONDITIONS << 9) | 0x20
+ .set EC_WORD_MUCH, (EC_GROUP_CONDITIONS << 9) | 0x21
+ .set EC_WORD_OVERWHELMING, (EC_GROUP_CONDITIONS << 9) | 0x22
+ .set EC_WORD_FABULOUS, (EC_GROUP_CONDITIONS << 9) | 0x23
+ .set EC_WORD_ELSE, (EC_GROUP_CONDITIONS << 9) | 0x24
+ .set EC_WORD_EXPENSIVE, (EC_GROUP_CONDITIONS << 9) | 0x25
+ .set EC_WORD_CORRECT, (EC_GROUP_CONDITIONS << 9) | 0x26
+ .set EC_WORD_IMPOSSIBLE, (EC_GROUP_CONDITIONS << 9) | 0x27
+ .set EC_WORD_SMALL, (EC_GROUP_CONDITIONS << 9) | 0x28
+ .set EC_WORD_DIFFERENT, (EC_GROUP_CONDITIONS << 9) | 0x29
+ .set EC_WORD_TIRED, (EC_GROUP_CONDITIONS << 9) | 0x2a
+ .set EC_WORD_SKILL, (EC_GROUP_CONDITIONS << 9) | 0x2b
+ .set EC_WORD_TOP, (EC_GROUP_CONDITIONS << 9) | 0x2c
+ .set EC_WORD_NON_STOP, (EC_GROUP_CONDITIONS << 9) | 0x2d
+ .set EC_WORD_PREPOSTEROUS, (EC_GROUP_CONDITIONS << 9) | 0x2e
+ .set EC_WORD_NONE, (EC_GROUP_CONDITIONS << 9) | 0x2f
+ .set EC_WORD_NOTHING, (EC_GROUP_CONDITIONS << 9) | 0x30
+ .set EC_WORD_NATURAL, (EC_GROUP_CONDITIONS << 9) | 0x31
+ .set EC_WORD_BECOMES, (EC_GROUP_CONDITIONS << 9) | 0x32
+ .set EC_WORD_LUKEWARM, (EC_GROUP_CONDITIONS << 9) | 0x33
+ .set EC_WORD_FAST, (EC_GROUP_CONDITIONS << 9) | 0x34
+ .set EC_WORD_LOW, (EC_GROUP_CONDITIONS << 9) | 0x35
+ .set EC_WORD_AWFUL, (EC_GROUP_CONDITIONS << 9) | 0x36
+ .set EC_WORD_ALONE, (EC_GROUP_CONDITIONS << 9) | 0x37
+ .set EC_WORD_BORED, (EC_GROUP_CONDITIONS << 9) | 0x38
+ .set EC_WORD_SECRET, (EC_GROUP_CONDITIONS << 9) | 0x39
+ .set EC_WORD_MYSTERY, (EC_GROUP_CONDITIONS << 9) | 0x3a
+ .set EC_WORD_LACKS, (EC_GROUP_CONDITIONS << 9) | 0x3b
+ .set EC_WORD_BEST, (EC_GROUP_CONDITIONS << 9) | 0x3c
+ .set EC_WORD_LOUSY, (EC_GROUP_CONDITIONS << 9) | 0x3d
+ .set EC_WORD_MISTAKE, (EC_GROUP_CONDITIONS << 9) | 0x3e
+ .set EC_WORD_KIND, (EC_GROUP_CONDITIONS << 9) | 0x3f
+ .set EC_WORD_WELL, (EC_GROUP_CONDITIONS << 9) | 0x40
+ .set EC_WORD_WEAKENED, (EC_GROUP_CONDITIONS << 9) | 0x41
+ .set EC_WORD_SIMPLE, (EC_GROUP_CONDITIONS << 9) | 0x42
+ .set EC_WORD_SEEMS, (EC_GROUP_CONDITIONS << 9) | 0x43
+ .set EC_WORD_BADLY, (EC_GROUP_CONDITIONS << 9) | 0x44
; Actions
- .set EC_WORD_MEETS, 0x0
- .set EC_WORD_CONCEDE, 0x1
- .set EC_WORD_GIVE, 0x2
- .set EC_WORD_GIVES, 0x3
- .set EC_WORD_PLAYED, 0x4
- .set EC_WORD_PLAYS, 0x5
- .set EC_WORD_COLLECT, 0x6
- .set EC_WORD_WALKING, 0x7
- .set EC_WORD_WALKS, 0x8
- .set EC_WORD_SAYS, 0x9
- .set EC_WORD_WENT, 0xa
- .set EC_WORD_SAID, 0xb
- .set EC_WORD_WAKE_UP, 0xc
- .set EC_WORD_WAKES_UP, 0xd
- .set EC_WORD_ANGERS, 0xe
- .set EC_WORD_TEACH, 0xf
- .set EC_WORD_TEACHES, 0x10
- .set EC_WORD_PLEASE, 0x11
- .set EC_WORD_LEARN, 0x12
- .set EC_WORD_CHANGE, 0x13
- .set EC_WORD_STORY, 0x14
- .set EC_WORD_TRUST, 0x15
- .set EC_WORD_LAVISH, 0x16
- .set EC_WORD_LISTENS, 0x17
- .set EC_WORD_HEARING, 0x18
- .set EC_WORD_TRAINS, 0x19
- .set EC_WORD_CHOOSE, 0x1a
- .set EC_WORD_COME, 0x1b
- .set EC_WORD_CAME, 0x1c
- .set EC_WORD_SEARCH, 0x1d
- .set EC_WORD_MAKE, 0x1e
- .set EC_WORD_CAUSE, 0x1f
- .set EC_WORD_KNOW, 0x20
- .set EC_WORD_KNOWS, 0x21
- .set EC_WORD_REFUSE, 0x22
- .set EC_WORD_STORES, 0x23
- .set EC_WORD_BRAG, 0x24
- .set EC_WORD_IGNORANT, 0x25
- .set EC_WORD_THINKS, 0x26
- .set EC_WORD_BELIEVE, 0x27
- .set EC_WORD_SLIDE, 0x28
- .set EC_WORD_EATS, 0x29
- .set EC_WORD_USE, 0x2a
- .set EC_WORD_USES, 0x2b
- .set EC_WORD_USING, 0x2c
- .set EC_WORD_COULDN_T, 0x2d
- .set EC_WORD_CAPABLE, 0x2e
- .set EC_WORD_DISAPPEAR, 0x2f
- .set EC_WORD_APPEAR, 0x30
- .set EC_WORD_THROW, 0x31
- .set EC_WORD_WORRY, 0x32
- .set EC_WORD_SLEPT, 0x33
- .set EC_WORD_SLEEP, 0x34
- .set EC_WORD_RELEASE, 0x35
- .set EC_WORD_DRINKS, 0x36
- .set EC_WORD_RUNS, 0x37
- .set EC_WORD_RUN, 0x38
- .set EC_WORD_WORKS, 0x39
- .set EC_WORD_WORKING, 0x3a
- .set EC_WORD_TALKING, 0x3b
- .set EC_WORD_TALK, 0x3c
- .set EC_WORD_SINK, 0x3d
- .set EC_WORD_SMACK, 0x3e
- .set EC_WORD_PRETEND, 0x3f
- .set EC_WORD_PRAISE, 0x40
- .set EC_WORD_OVERDO, 0x41
- .set EC_WORD_SHOW, 0x42
- .set EC_WORD_LOOKS, 0x43
- .set EC_WORD_SEES, 0x44
- .set EC_WORD_SEEK, 0x45
- .set EC_WORD_OWN, 0x46
- .set EC_WORD_TAKE, 0x47
- .set EC_WORD_ALLOW, 0x48
- .set EC_WORD_FORGET, 0x49
- .set EC_WORD_FORGETS, 0x4a
- .set EC_WORD_APPEARS, 0x4b
- .set EC_WORD_FAINT, 0x4c
- .set EC_WORD_FAINTED, 0x4d
+ .set EC_WORD_MEETS, (EC_GROUP_ACTIONS << 9) | 0x0
+ .set EC_WORD_CONCEDE, (EC_GROUP_ACTIONS << 9) | 0x1
+ .set EC_WORD_GIVE, (EC_GROUP_ACTIONS << 9) | 0x2
+ .set EC_WORD_GIVES, (EC_GROUP_ACTIONS << 9) | 0x3
+ .set EC_WORD_PLAYED, (EC_GROUP_ACTIONS << 9) | 0x4
+ .set EC_WORD_PLAYS, (EC_GROUP_ACTIONS << 9) | 0x5
+ .set EC_WORD_COLLECT, (EC_GROUP_ACTIONS << 9) | 0x6
+ .set EC_WORD_WALKING, (EC_GROUP_ACTIONS << 9) | 0x7
+ .set EC_WORD_WALKS, (EC_GROUP_ACTIONS << 9) | 0x8
+ .set EC_WORD_SAYS, (EC_GROUP_ACTIONS << 9) | 0x9
+ .set EC_WORD_WENT, (EC_GROUP_ACTIONS << 9) | 0xa
+ .set EC_WORD_SAID, (EC_GROUP_ACTIONS << 9) | 0xb
+ .set EC_WORD_WAKE_UP, (EC_GROUP_ACTIONS << 9) | 0xc
+ .set EC_WORD_WAKES_UP, (EC_GROUP_ACTIONS << 9) | 0xd
+ .set EC_WORD_ANGERS, (EC_GROUP_ACTIONS << 9) | 0xe
+ .set EC_WORD_TEACH, (EC_GROUP_ACTIONS << 9) | 0xf
+ .set EC_WORD_TEACHES, (EC_GROUP_ACTIONS << 9) | 0x10
+ .set EC_WORD_PLEASE, (EC_GROUP_ACTIONS << 9) | 0x11
+ .set EC_WORD_LEARN, (EC_GROUP_ACTIONS << 9) | 0x12
+ .set EC_WORD_CHANGE, (EC_GROUP_ACTIONS << 9) | 0x13
+ .set EC_WORD_STORY, (EC_GROUP_ACTIONS << 9) | 0x14
+ .set EC_WORD_TRUST, (EC_GROUP_ACTIONS << 9) | 0x15
+ .set EC_WORD_LAVISH, (EC_GROUP_ACTIONS << 9) | 0x16
+ .set EC_WORD_LISTENS, (EC_GROUP_ACTIONS << 9) | 0x17
+ .set EC_WORD_HEARING, (EC_GROUP_ACTIONS << 9) | 0x18
+ .set EC_WORD_TRAINS, (EC_GROUP_ACTIONS << 9) | 0x19
+ .set EC_WORD_CHOOSE, (EC_GROUP_ACTIONS << 9) | 0x1a
+ .set EC_WORD_COME, (EC_GROUP_ACTIONS << 9) | 0x1b
+ .set EC_WORD_CAME, (EC_GROUP_ACTIONS << 9) | 0x1c
+ .set EC_WORD_SEARCH, (EC_GROUP_ACTIONS << 9) | 0x1d
+ .set EC_WORD_MAKE, (EC_GROUP_ACTIONS << 9) | 0x1e
+ .set EC_WORD_CAUSE, (EC_GROUP_ACTIONS << 9) | 0x1f
+ .set EC_WORD_KNOW, (EC_GROUP_ACTIONS << 9) | 0x20
+ .set EC_WORD_KNOWS, (EC_GROUP_ACTIONS << 9) | 0x21
+ .set EC_WORD_REFUSE, (EC_GROUP_ACTIONS << 9) | 0x22
+ .set EC_WORD_STORES, (EC_GROUP_ACTIONS << 9) | 0x23
+ .set EC_WORD_BRAG, (EC_GROUP_ACTIONS << 9) | 0x24
+ .set EC_WORD_IGNORANT, (EC_GROUP_ACTIONS << 9) | 0x25
+ .set EC_WORD_THINKS, (EC_GROUP_ACTIONS << 9) | 0x26
+ .set EC_WORD_BELIEVE, (EC_GROUP_ACTIONS << 9) | 0x27
+ .set EC_WORD_SLIDE, (EC_GROUP_ACTIONS << 9) | 0x28
+ .set EC_WORD_EATS, (EC_GROUP_ACTIONS << 9) | 0x29
+ .set EC_WORD_USE, (EC_GROUP_ACTIONS << 9) | 0x2a
+ .set EC_WORD_USES, (EC_GROUP_ACTIONS << 9) | 0x2b
+ .set EC_WORD_USING, (EC_GROUP_ACTIONS << 9) | 0x2c
+ .set EC_WORD_COULDN_T, (EC_GROUP_ACTIONS << 9) | 0x2d
+ .set EC_WORD_CAPABLE, (EC_GROUP_ACTIONS << 9) | 0x2e
+ .set EC_WORD_DISAPPEAR, (EC_GROUP_ACTIONS << 9) | 0x2f
+ .set EC_WORD_APPEAR, (EC_GROUP_ACTIONS << 9) | 0x30
+ .set EC_WORD_THROW, (EC_GROUP_ACTIONS << 9) | 0x31
+ .set EC_WORD_WORRY, (EC_GROUP_ACTIONS << 9) | 0x32
+ .set EC_WORD_SLEPT, (EC_GROUP_ACTIONS << 9) | 0x33
+ .set EC_WORD_SLEEP, (EC_GROUP_ACTIONS << 9) | 0x34
+ .set EC_WORD_RELEASE, (EC_GROUP_ACTIONS << 9) | 0x35
+ .set EC_WORD_DRINKS, (EC_GROUP_ACTIONS << 9) | 0x36
+ .set EC_WORD_RUNS, (EC_GROUP_ACTIONS << 9) | 0x37
+ .set EC_WORD_RUN, (EC_GROUP_ACTIONS << 9) | 0x38
+ .set EC_WORD_WORKS, (EC_GROUP_ACTIONS << 9) | 0x39
+ .set EC_WORD_WORKING, (EC_GROUP_ACTIONS << 9) | 0x3a
+ .set EC_WORD_TALKING, (EC_GROUP_ACTIONS << 9) | 0x3b
+ .set EC_WORD_TALK, (EC_GROUP_ACTIONS << 9) | 0x3c
+ .set EC_WORD_SINK, (EC_GROUP_ACTIONS << 9) | 0x3d
+ .set EC_WORD_SMACK, (EC_GROUP_ACTIONS << 9) | 0x3e
+ .set EC_WORD_PRETEND, (EC_GROUP_ACTIONS << 9) | 0x3f
+ .set EC_WORD_PRAISE, (EC_GROUP_ACTIONS << 9) | 0x40
+ .set EC_WORD_OVERDO, (EC_GROUP_ACTIONS << 9) | 0x41
+ .set EC_WORD_SHOW, (EC_GROUP_ACTIONS << 9) | 0x42
+ .set EC_WORD_LOOKS, (EC_GROUP_ACTIONS << 9) | 0x43
+ .set EC_WORD_SEES, (EC_GROUP_ACTIONS << 9) | 0x44
+ .set EC_WORD_SEEK, (EC_GROUP_ACTIONS << 9) | 0x45
+ .set EC_WORD_OWN, (EC_GROUP_ACTIONS << 9) | 0x46
+ .set EC_WORD_TAKE, (EC_GROUP_ACTIONS << 9) | 0x47
+ .set EC_WORD_ALLOW, (EC_GROUP_ACTIONS << 9) | 0x48
+ .set EC_WORD_FORGET, (EC_GROUP_ACTIONS << 9) | 0x49
+ .set EC_WORD_FORGETS, (EC_GROUP_ACTIONS << 9) | 0x4a
+ .set EC_WORD_APPEARS, (EC_GROUP_ACTIONS << 9) | 0x4b
+ .set EC_WORD_FAINT, (EC_GROUP_ACTIONS << 9) | 0x4c
+ .set EC_WORD_FAINTED, (EC_GROUP_ACTIONS << 9) | 0x4d
; Lifestyle
- .set EC_WORD_CHORES, 0x0
- .set EC_WORD_HOME, 0x1
- .set EC_WORD_MONEY, 0x2
- .set EC_WORD_ALLOWANCE, 0x3
- .set EC_WORD_BATH, 0x4
- .set EC_WORD_CONVERSATION, 0x5
- .set EC_WORD_SCHOOL, 0x6
- .set EC_WORD_COMMEMORATE, 0x7
- .set EC_WORD_HABIT, 0x8
- .set EC_WORD_GROUP, 0x9
- .set EC_WORD_WORD, 0xa
- .set EC_WORD_STORE, 0xb
- .set EC_WORD_SERVICE, 0xc
- .set EC_WORD_WORK, 0xd
- .set EC_WORD_SYSTEM, 0xe
- .set EC_WORD_TRAIN, 0xf
- .set EC_WORD_CLASS, 0x10
- .set EC_WORD_LESSONS, 0x11
- .set EC_WORD_INFORMATION, 0x12
- .set EC_WORD_LIVING, 0x13
- .set EC_WORD_TEACHER, 0x14
- .set EC_WORD_TOURNAMENT, 0x15
- .set EC_WORD_LETTER, 0x16
- .set EC_WORD_EVENT, 0x17
- .set EC_WORD_DIGITAL, 0x18
- .set EC_WORD_TEST, 0x19
- .set EC_WORD_DEPT_STORE, 0x1a
- .set EC_WORD_TELEVISION, 0x1b
- .set EC_WORD_PHONE, 0x1c
- .set EC_WORD_ITEM, 0x1d
- .set EC_WORD_NAME, 0x1e
- .set EC_WORD_NEWS, 0x1f
- .set EC_WORD_POPULAR, 0x20
- .set EC_WORD_PARTY, 0x21
- .set EC_WORD_STUDY, 0x22
- .set EC_WORD_MACHINE, 0x23
- .set EC_WORD_MAIL, 0x24
- .set EC_WORD_MESSAGE, 0x25
- .set EC_WORD_PROMISE, 0x26
- .set EC_WORD_DREAM, 0x27
- .set EC_WORD_KINDERGARTEN, 0x28
- .set EC_WORD_LIFE, 0x29
- .set EC_WORD_RADIO, 0x2a
- .set EC_WORD_RENTAL, 0x2b
- .set EC_WORD_WORLD, 0x2c
+ .set EC_WORD_CHORES, (EC_GROUP_LIFESTYLE << 9) | 0x0
+ .set EC_WORD_HOME, (EC_GROUP_LIFESTYLE << 9) | 0x1
+ .set EC_WORD_MONEY, (EC_GROUP_LIFESTYLE << 9) | 0x2
+ .set EC_WORD_ALLOWANCE, (EC_GROUP_LIFESTYLE << 9) | 0x3
+ .set EC_WORD_BATH, (EC_GROUP_LIFESTYLE << 9) | 0x4
+ .set EC_WORD_CONVERSATION, (EC_GROUP_LIFESTYLE << 9) | 0x5
+ .set EC_WORD_SCHOOL, (EC_GROUP_LIFESTYLE << 9) | 0x6
+ .set EC_WORD_COMMEMORATE, (EC_GROUP_LIFESTYLE << 9) | 0x7
+ .set EC_WORD_HABIT, (EC_GROUP_LIFESTYLE << 9) | 0x8
+ .set EC_WORD_GROUP, (EC_GROUP_LIFESTYLE << 9) | 0x9
+ .set EC_WORD_WORD, (EC_GROUP_LIFESTYLE << 9) | 0xa
+ .set EC_WORD_STORE, (EC_GROUP_LIFESTYLE << 9) | 0xb
+ .set EC_WORD_SERVICE, (EC_GROUP_LIFESTYLE << 9) | 0xc
+ .set EC_WORD_WORK, (EC_GROUP_LIFESTYLE << 9) | 0xd
+ .set EC_WORD_SYSTEM, (EC_GROUP_LIFESTYLE << 9) | 0xe
+ .set EC_WORD_TRAIN, (EC_GROUP_LIFESTYLE << 9) | 0xf
+ .set EC_WORD_CLASS, (EC_GROUP_LIFESTYLE << 9) | 0x10
+ .set EC_WORD_LESSONS, (EC_GROUP_LIFESTYLE << 9) | 0x11
+ .set EC_WORD_INFORMATION, (EC_GROUP_LIFESTYLE << 9) | 0x12
+ .set EC_WORD_LIVING, (EC_GROUP_LIFESTYLE << 9) | 0x13
+ .set EC_WORD_TEACHER, (EC_GROUP_LIFESTYLE << 9) | 0x14
+ .set EC_WORD_TOURNAMENT, (EC_GROUP_LIFESTYLE << 9) | 0x15
+ .set EC_WORD_LETTER, (EC_GROUP_LIFESTYLE << 9) | 0x16
+ .set EC_WORD_EVENT, (EC_GROUP_LIFESTYLE << 9) | 0x17
+ .set EC_WORD_DIGITAL, (EC_GROUP_LIFESTYLE << 9) | 0x18
+ .set EC_WORD_TEST, (EC_GROUP_LIFESTYLE << 9) | 0x19
+ .set EC_WORD_DEPT_STORE, (EC_GROUP_LIFESTYLE << 9) | 0x1a
+ .set EC_WORD_TELEVISION, (EC_GROUP_LIFESTYLE << 9) | 0x1b
+ .set EC_WORD_PHONE, (EC_GROUP_LIFESTYLE << 9) | 0x1c
+ .set EC_WORD_ITEM, (EC_GROUP_LIFESTYLE << 9) | 0x1d
+ .set EC_WORD_NAME, (EC_GROUP_LIFESTYLE << 9) | 0x1e
+ .set EC_WORD_NEWS, (EC_GROUP_LIFESTYLE << 9) | 0x1f
+ .set EC_WORD_POPULAR, (EC_GROUP_LIFESTYLE << 9) | 0x20
+ .set EC_WORD_PARTY, (EC_GROUP_LIFESTYLE << 9) | 0x21
+ .set EC_WORD_STUDY, (EC_GROUP_LIFESTYLE << 9) | 0x22
+ .set EC_WORD_MACHINE, (EC_GROUP_LIFESTYLE << 9) | 0x23
+ .set EC_WORD_MAIL, (EC_GROUP_LIFESTYLE << 9) | 0x24
+ .set EC_WORD_MESSAGE, (EC_GROUP_LIFESTYLE << 9) | 0x25
+ .set EC_WORD_PROMISE, (EC_GROUP_LIFESTYLE << 9) | 0x26
+ .set EC_WORD_DREAM, (EC_GROUP_LIFESTYLE << 9) | 0x27
+ .set EC_WORD_KINDERGARTEN, (EC_GROUP_LIFESTYLE << 9) | 0x28
+ .set EC_WORD_LIFE, (EC_GROUP_LIFESTYLE << 9) | 0x29
+ .set EC_WORD_RADIO, (EC_GROUP_LIFESTYLE << 9) | 0x2a
+ .set EC_WORD_RENTAL, (EC_GROUP_LIFESTYLE << 9) | 0x2b
+ .set EC_WORD_WORLD, (EC_GROUP_LIFESTYLE << 9) | 0x2c
; Hobbies
- .set EC_WORD_IDOL, 0x0
- .set EC_WORD_ANIME, 0x1
- .set EC_WORD_SONG, 0x2
- .set EC_WORD_MOVIE, 0x3
- .set EC_WORD_SWEETS, 0x4
- .set EC_WORD_CHAT, 0x5
- .set EC_WORD_CHILD_S_PLAY, 0x6
- .set EC_WORD_TOYS, 0x7
- .set EC_WORD_MUSIC, 0x8
- .set EC_WORD_CARDS, 0x9
- .set EC_WORD_SHOPPING, 0xa
- .set EC_WORD_CAMERA, 0xb
- .set EC_WORD_VIEWING, 0xc
- .set EC_WORD_SPECTATOR, 0xd
- .set EC_WORD_GOURMET, 0xe
- .set EC_WORD_GAME, 0xf
- .set EC_WORD_RPG, 0x10
- .set EC_WORD_COLLECTION, 0x11
- .set EC_WORD_COMPLETE, 0x12
- .set EC_WORD_MAGAZINE, 0x13
- .set EC_WORD_WALK, 0x14
- .set EC_WORD_BIKE, 0x15
- .set EC_WORD_HOBBY, 0x16
- .set EC_WORD_SPORTS, 0x17
- .set EC_WORD_SOFTWARE, 0x18
- .set EC_WORD_SONGS, 0x19
- .set EC_WORD_DIET, 0x1a
- .set EC_WORD_TREASURE, 0x1b
- .set EC_WORD_TRAVEL, 0x1c
- .set EC_WORD_DANCE, 0x1d
- .set EC_WORD_CHANNEL, 0x1e
- .set EC_WORD_MAKING, 0x1f
- .set EC_WORD_FISHING, 0x20
- .set EC_WORD_DATE, 0x21
- .set EC_WORD_DESIGN, 0x22
- .set EC_WORD_LOCOMOTIVE, 0x23
- .set EC_WORD_PLUSH_DOLL, 0x24
- .set EC_WORD_PC, 0x25
- .set EC_WORD_FLOWERS, 0x26
- .set EC_WORD_HERO, 0x27
- .set EC_WORD_NAP, 0x28
- .set EC_WORD_HEROINE, 0x29
- .set EC_WORD_FASHION, 0x2a
- .set EC_WORD_ADVENTURE, 0x2b
- .set EC_WORD_BOARD, 0x2c
- .set EC_WORD_BALL, 0x2d
- .set EC_WORD_BOOK, 0x2e
- .set EC_WORD_FESTIVAL, 0x2f
- .set EC_WORD_COMICS, 0x30
- .set EC_WORD_HOLIDAY, 0x31
- .set EC_WORD_PLANS, 0x32
- .set EC_WORD_TRENDY, 0x33
- .set EC_WORD_VACATION, 0x34
- .set EC_WORD_LOOK, 0x35
+ .set EC_WORD_IDOL, (EC_GROUP_HOBBIES << 9) | 0x0
+ .set EC_WORD_ANIME, (EC_GROUP_HOBBIES << 9) | 0x1
+ .set EC_WORD_SONG, (EC_GROUP_HOBBIES << 9) | 0x2
+ .set EC_WORD_MOVIE, (EC_GROUP_HOBBIES << 9) | 0x3
+ .set EC_WORD_SWEETS, (EC_GROUP_HOBBIES << 9) | 0x4
+ .set EC_WORD_CHAT, (EC_GROUP_HOBBIES << 9) | 0x5
+ .set EC_WORD_CHILD_S_PLAY, (EC_GROUP_HOBBIES << 9) | 0x6
+ .set EC_WORD_TOYS, (EC_GROUP_HOBBIES << 9) | 0x7
+ .set EC_WORD_MUSIC, (EC_GROUP_HOBBIES << 9) | 0x8
+ .set EC_WORD_CARDS, (EC_GROUP_HOBBIES << 9) | 0x9
+ .set EC_WORD_SHOPPING, (EC_GROUP_HOBBIES << 9) | 0xa
+ .set EC_WORD_CAMERA, (EC_GROUP_HOBBIES << 9) | 0xb
+ .set EC_WORD_VIEWING, (EC_GROUP_HOBBIES << 9) | 0xc
+ .set EC_WORD_SPECTATOR, (EC_GROUP_HOBBIES << 9) | 0xd
+ .set EC_WORD_GOURMET, (EC_GROUP_HOBBIES << 9) | 0xe
+ .set EC_WORD_GAME, (EC_GROUP_HOBBIES << 9) | 0xf
+ .set EC_WORD_RPG, (EC_GROUP_HOBBIES << 9) | 0x10
+ .set EC_WORD_COLLECTION, (EC_GROUP_HOBBIES << 9) | 0x11
+ .set EC_WORD_COMPLETE, (EC_GROUP_HOBBIES << 9) | 0x12
+ .set EC_WORD_MAGAZINE, (EC_GROUP_HOBBIES << 9) | 0x13
+ .set EC_WORD_WALK, (EC_GROUP_HOBBIES << 9) | 0x14
+ .set EC_WORD_BIKE, (EC_GROUP_HOBBIES << 9) | 0x15
+ .set EC_WORD_HOBBY, (EC_GROUP_HOBBIES << 9) | 0x16
+ .set EC_WORD_SPORTS, (EC_GROUP_HOBBIES << 9) | 0x17
+ .set EC_WORD_SOFTWARE, (EC_GROUP_HOBBIES << 9) | 0x18
+ .set EC_WORD_SONGS, (EC_GROUP_HOBBIES << 9) | 0x19
+ .set EC_WORD_DIET, (EC_GROUP_HOBBIES << 9) | 0x1a
+ .set EC_WORD_TREASURE, (EC_GROUP_HOBBIES << 9) | 0x1b
+ .set EC_WORD_TRAVEL, (EC_GROUP_HOBBIES << 9) | 0x1c
+ .set EC_WORD_DANCE, (EC_GROUP_HOBBIES << 9) | 0x1d
+ .set EC_WORD_CHANNEL, (EC_GROUP_HOBBIES << 9) | 0x1e
+ .set EC_WORD_MAKING, (EC_GROUP_HOBBIES << 9) | 0x1f
+ .set EC_WORD_FISHING, (EC_GROUP_HOBBIES << 9) | 0x20
+ .set EC_WORD_DATE, (EC_GROUP_HOBBIES << 9) | 0x21
+ .set EC_WORD_DESIGN, (EC_GROUP_HOBBIES << 9) | 0x22
+ .set EC_WORD_LOCOMOTIVE, (EC_GROUP_HOBBIES << 9) | 0x23
+ .set EC_WORD_PLUSH_DOLL, (EC_GROUP_HOBBIES << 9) | 0x24
+ .set EC_WORD_PC, (EC_GROUP_HOBBIES << 9) | 0x25
+ .set EC_WORD_FLOWERS, (EC_GROUP_HOBBIES << 9) | 0x26
+ .set EC_WORD_HERO, (EC_GROUP_HOBBIES << 9) | 0x27
+ .set EC_WORD_NAP, (EC_GROUP_HOBBIES << 9) | 0x28
+ .set EC_WORD_HEROINE, (EC_GROUP_HOBBIES << 9) | 0x29
+ .set EC_WORD_FASHION, (EC_GROUP_HOBBIES << 9) | 0x2a
+ .set EC_WORD_ADVENTURE, (EC_GROUP_HOBBIES << 9) | 0x2b
+ .set EC_WORD_BOARD, (EC_GROUP_HOBBIES << 9) | 0x2c
+ .set EC_WORD_BALL, (EC_GROUP_HOBBIES << 9) | 0x2d
+ .set EC_WORD_BOOK, (EC_GROUP_HOBBIES << 9) | 0x2e
+ .set EC_WORD_FESTIVAL, (EC_GROUP_HOBBIES << 9) | 0x2f
+ .set EC_WORD_COMICS, (EC_GROUP_HOBBIES << 9) | 0x30
+ .set EC_WORD_HOLIDAY, (EC_GROUP_HOBBIES << 9) | 0x31
+ .set EC_WORD_PLANS, (EC_GROUP_HOBBIES << 9) | 0x32
+ .set EC_WORD_TRENDY, (EC_GROUP_HOBBIES << 9) | 0x33
+ .set EC_WORD_VACATION, (EC_GROUP_HOBBIES << 9) | 0x34
+ .set EC_WORD_LOOK, (EC_GROUP_HOBBIES << 9) | 0x35
; Time
- .set EC_WORD_FALL, 0x0
- .set EC_WORD_MORNING, 0x1
- .set EC_WORD_TOMORROW, 0x2
- .set EC_WORD_LAST, 0x3
- .set EC_WORD_DAY, 0x4
- .set EC_WORD_SOMETIME, 0x5
- .set EC_WORD_ALWAYS, 0x6
- .set EC_WORD_CURRENT, 0x7
- .set EC_WORD_FOREVER, 0x8
- .set EC_WORD_DAYS, 0x9
- .set EC_WORD_END, 0xa
- .set EC_WORD_TUESDAY, 0xb
- .set EC_WORD_YESTERDAY, 0xc
- .set EC_WORD_TODAY, 0xd
- .set EC_WORD_FRIDAY, 0xe
- .set EC_WORD_MONDAY, 0xf
- .set EC_WORD_LATER, 0x10
- .set EC_WORD_EARLIER, 0x11
- .set EC_WORD_ANOTHER, 0x12
- .set EC_WORD_TIME, 0x13
- .set EC_WORD_FINISH, 0x14
- .set EC_WORD_WEDNESDAY, 0x15
- .set EC_WORD_SOON, 0x16
- .set EC_WORD_START, 0x17
- .set EC_WORD_MONTH, 0x18
- .set EC_WORD_STOP, 0x19
- .set EC_WORD_NOW, 0x1a
- .set EC_WORD_FINAL, 0x1b
- .set EC_WORD_NEXT, 0x1c
- .set EC_WORD_AGE, 0x1d
- .set EC_WORD_SATURDAY, 0x1e
- .set EC_WORD_SUMMER, 0x1f
- .set EC_WORD_SUNDAY, 0x20
- .set EC_WORD_BEGINNING, 0x21
- .set EC_WORD_SPRING, 0x22
- .set EC_WORD_DAYTIME, 0x23
- .set EC_WORD_WINTER, 0x24
- .set EC_WORD_DAILY, 0x25
- .set EC_WORD_OLDEN, 0x26
- .set EC_WORD_ALMOST, 0x27
- .set EC_WORD_NEARLY, 0x28
- .set EC_WORD_THURSDAY, 0x29
- .set EC_WORD_NIGHTTIME, 0x2a
- .set EC_WORD_NIGHT, 0x2b
- .set EC_WORD_WEEK, 0x2c
+ .set EC_WORD_FALL, (EC_GROUP_TIME << 9) | 0x0
+ .set EC_WORD_MORNING, (EC_GROUP_TIME << 9) | 0x1
+ .set EC_WORD_TOMORROW, (EC_GROUP_TIME << 9) | 0x2
+ .set EC_WORD_LAST, (EC_GROUP_TIME << 9) | 0x3
+ .set EC_WORD_DAY, (EC_GROUP_TIME << 9) | 0x4
+ .set EC_WORD_SOMETIME, (EC_GROUP_TIME << 9) | 0x5
+ .set EC_WORD_ALWAYS, (EC_GROUP_TIME << 9) | 0x6
+ .set EC_WORD_CURRENT, (EC_GROUP_TIME << 9) | 0x7
+ .set EC_WORD_FOREVER, (EC_GROUP_TIME << 9) | 0x8
+ .set EC_WORD_DAYS, (EC_GROUP_TIME << 9) | 0x9
+ .set EC_WORD_END, (EC_GROUP_TIME << 9) | 0xa
+ .set EC_WORD_TUESDAY, (EC_GROUP_TIME << 9) | 0xb
+ .set EC_WORD_YESTERDAY, (EC_GROUP_TIME << 9) | 0xc
+ .set EC_WORD_TODAY, (EC_GROUP_TIME << 9) | 0xd
+ .set EC_WORD_FRIDAY, (EC_GROUP_TIME << 9) | 0xe
+ .set EC_WORD_MONDAY, (EC_GROUP_TIME << 9) | 0xf
+ .set EC_WORD_LATER, (EC_GROUP_TIME << 9) | 0x10
+ .set EC_WORD_EARLIER, (EC_GROUP_TIME << 9) | 0x11
+ .set EC_WORD_ANOTHER, (EC_GROUP_TIME << 9) | 0x12
+ .set EC_WORD_TIME, (EC_GROUP_TIME << 9) | 0x13
+ .set EC_WORD_FINISH, (EC_GROUP_TIME << 9) | 0x14
+ .set EC_WORD_WEDNESDAY, (EC_GROUP_TIME << 9) | 0x15
+ .set EC_WORD_SOON, (EC_GROUP_TIME << 9) | 0x16
+ .set EC_WORD_START, (EC_GROUP_TIME << 9) | 0x17
+ .set EC_WORD_MONTH, (EC_GROUP_TIME << 9) | 0x18
+ .set EC_WORD_STOP, (EC_GROUP_TIME << 9) | 0x19
+ .set EC_WORD_NOW, (EC_GROUP_TIME << 9) | 0x1a
+ .set EC_WORD_FINAL, (EC_GROUP_TIME << 9) | 0x1b
+ .set EC_WORD_NEXT, (EC_GROUP_TIME << 9) | 0x1c
+ .set EC_WORD_AGE, (EC_GROUP_TIME << 9) | 0x1d
+ .set EC_WORD_SATURDAY, (EC_GROUP_TIME << 9) | 0x1e
+ .set EC_WORD_SUMMER, (EC_GROUP_TIME << 9) | 0x1f
+ .set EC_WORD_SUNDAY, (EC_GROUP_TIME << 9) | 0x20
+ .set EC_WORD_BEGINNING, (EC_GROUP_TIME << 9) | 0x21
+ .set EC_WORD_SPRING, (EC_GROUP_TIME << 9) | 0x22
+ .set EC_WORD_DAYTIME, (EC_GROUP_TIME << 9) | 0x23
+ .set EC_WORD_WINTER, (EC_GROUP_TIME << 9) | 0x24
+ .set EC_WORD_DAILY, (EC_GROUP_TIME << 9) | 0x25
+ .set EC_WORD_OLDEN, (EC_GROUP_TIME << 9) | 0x26
+ .set EC_WORD_ALMOST, (EC_GROUP_TIME << 9) | 0x27
+ .set EC_WORD_NEARLY, (EC_GROUP_TIME << 9) | 0x28
+ .set EC_WORD_THURSDAY, (EC_GROUP_TIME << 9) | 0x29
+ .set EC_WORD_NIGHTTIME, (EC_GROUP_TIME << 9) | 0x2a
+ .set EC_WORD_NIGHT, (EC_GROUP_TIME << 9) | 0x2b
+ .set EC_WORD_WEEK, (EC_GROUP_TIME << 9) | 0x2c
; Misc.
- .set EC_WORD_HIGHS, 0x0
- .set EC_WORD_LOWS, 0x1
- .set EC_WORD_UM, 0x2
- .set EC_WORD_REAR, 0x3
- .set EC_WORD_THINGS, 0x4
- .set EC_WORD_THING, 0x5
- .set EC_WORD_BELOW, 0x6
- .set EC_WORD_ABOVE, 0x7
- .set EC_WORD_BACK, 0x8
- .set EC_WORD_HIGH, 0x9
- .set EC_WORD_HERE, 0xa
- .set EC_WORD_INSIDE, 0xb
- .set EC_WORD_OUTSIDE, 0xc
- .set EC_WORD_BESIDE, 0xd
- .set EC_WORD_THIS_IS_IT_EXCL, 0xe
- .set EC_WORD_THIS, 0xf
- .set EC_WORD_EVERY, 0x10
- .set EC_WORD_THESE, 0x11
- .set EC_WORD_THESE_WERE, 0x12
- .set EC_WORD_DOWN, 0x13
- .set EC_WORD_THAT, 0x14
- .set EC_WORD_THOSE_ARE, 0x15
- .set EC_WORD_THOSE_WERE, 0x16
- .set EC_WORD_THAT_S_IT_EXCL, 0x17
- .set EC_WORD_AM, 0x18
- .set EC_WORD_THAT_WAS, 0x19
- .set EC_WORD_FRONT, 0x1a
- .set EC_WORD_UP, 0x1b
- .set EC_WORD_CHOICE, 0x1c
- .set EC_WORD_FAR, 0x1d
- .set EC_WORD_AWAY, 0x1e
- .set EC_WORD_NEAR, 0x1f
- .set EC_WORD_WHERE, 0x20
- .set EC_WORD_WHEN, 0x21
- .set EC_WORD_WHAT, 0x22
- .set EC_WORD_DEEP, 0x23
- .set EC_WORD_SHALLOW, 0x24
- .set EC_WORD_WHY, 0x25
- .set EC_WORD_CONFUSED, 0x26
- .set EC_WORD_OPPOSITE, 0x27
- .set EC_WORD_LEFT, 0x28
- .set EC_WORD_RIGHT, 0x29
+ .set EC_WORD_HIGHS, (EC_GROUP_MISC << 9) | 0x0
+ .set EC_WORD_LOWS, (EC_GROUP_MISC << 9) | 0x1
+ .set EC_WORD_UM, (EC_GROUP_MISC << 9) | 0x2
+ .set EC_WORD_REAR, (EC_GROUP_MISC << 9) | 0x3
+ .set EC_WORD_THINGS, (EC_GROUP_MISC << 9) | 0x4
+ .set EC_WORD_THING, (EC_GROUP_MISC << 9) | 0x5
+ .set EC_WORD_BELOW, (EC_GROUP_MISC << 9) | 0x6
+ .set EC_WORD_ABOVE, (EC_GROUP_MISC << 9) | 0x7
+ .set EC_WORD_BACK, (EC_GROUP_MISC << 9) | 0x8
+ .set EC_WORD_HIGH, (EC_GROUP_MISC << 9) | 0x9
+ .set EC_WORD_HERE, (EC_GROUP_MISC << 9) | 0xa
+ .set EC_WORD_INSIDE, (EC_GROUP_MISC << 9) | 0xb
+ .set EC_WORD_OUTSIDE, (EC_GROUP_MISC << 9) | 0xc
+ .set EC_WORD_BESIDE, (EC_GROUP_MISC << 9) | 0xd
+ .set EC_WORD_THIS_IS_IT_EXCL, (EC_GROUP_MISC << 9) | 0xe
+ .set EC_WORD_THIS, (EC_GROUP_MISC << 9) | 0xf
+ .set EC_WORD_EVERY, (EC_GROUP_MISC << 9) | 0x10
+ .set EC_WORD_THESE, (EC_GROUP_MISC << 9) | 0x11
+ .set EC_WORD_THESE_WERE, (EC_GROUP_MISC << 9) | 0x12
+ .set EC_WORD_DOWN, (EC_GROUP_MISC << 9) | 0x13
+ .set EC_WORD_THAT, (EC_GROUP_MISC << 9) | 0x14
+ .set EC_WORD_THOSE_ARE, (EC_GROUP_MISC << 9) | 0x15
+ .set EC_WORD_THOSE_WERE, (EC_GROUP_MISC << 9) | 0x16
+ .set EC_WORD_THAT_S_IT_EXCL, (EC_GROUP_MISC << 9) | 0x17
+ .set EC_WORD_AM, (EC_GROUP_MISC << 9) | 0x18
+ .set EC_WORD_THAT_WAS, (EC_GROUP_MISC << 9) | 0x19
+ .set EC_WORD_FRONT, (EC_GROUP_MISC << 9) | 0x1a
+ .set EC_WORD_UP, (EC_GROUP_MISC << 9) | 0x1b
+ .set EC_WORD_CHOICE, (EC_GROUP_MISC << 9) | 0x1c
+ .set EC_WORD_FAR, (EC_GROUP_MISC << 9) | 0x1d
+ .set EC_WORD_AWAY, (EC_GROUP_MISC << 9) | 0x1e
+ .set EC_WORD_NEAR, (EC_GROUP_MISC << 9) | 0x1f
+ .set EC_WORD_WHERE, (EC_GROUP_MISC << 9) | 0x20
+ .set EC_WORD_WHEN, (EC_GROUP_MISC << 9) | 0x21
+ .set EC_WORD_WHAT, (EC_GROUP_MISC << 9) | 0x22
+ .set EC_WORD_DEEP, (EC_GROUP_MISC << 9) | 0x23
+ .set EC_WORD_SHALLOW, (EC_GROUP_MISC << 9) | 0x24
+ .set EC_WORD_WHY, (EC_GROUP_MISC << 9) | 0x25
+ .set EC_WORD_CONFUSED, (EC_GROUP_MISC << 9) | 0x26
+ .set EC_WORD_OPPOSITE, (EC_GROUP_MISC << 9) | 0x27
+ .set EC_WORD_LEFT, (EC_GROUP_MISC << 9) | 0x28
+ .set EC_WORD_RIGHT, (EC_GROUP_MISC << 9) | 0x29
; Adjectives
- .set EC_WORD_WANDERING, 0x0
- .set EC_WORD_RICKETY, 0x1
- .set EC_WORD_ROCK_SOLID, 0x2
- .set EC_WORD_HUNGRY, 0x3
- .set EC_WORD_TIGHT, 0x4
- .set EC_WORD_TICKLISH, 0x5
- .set EC_WORD_TWIRLING, 0x6
- .set EC_WORD_SPIRALING, 0x7
- .set EC_WORD_THIRSTY, 0x8
- .set EC_WORD_LOLLING, 0x9
- .set EC_WORD_SILKY, 0xa
- .set EC_WORD_SADLY, 0xb
- .set EC_WORD_HOPELESS, 0xc
- .set EC_WORD_USELESS, 0xd
- .set EC_WORD_DROOLING, 0xe
- .set EC_WORD_EXCITING, 0xf
- .set EC_WORD_THICK, 0x10
- .set EC_WORD_SMOOTH, 0x11
- .set EC_WORD_SLIMY, 0x12
- .set EC_WORD_THIN, 0x13
- .set EC_WORD_BREAK, 0x14
- .set EC_WORD_VORACIOUS, 0x15
- .set EC_WORD_SCATTER, 0x16
- .set EC_WORD_AWESOME, 0x17
- .set EC_WORD_WIMPY, 0x18
- .set EC_WORD_WOBBLY, 0x19
- .set EC_WORD_SHAKY, 0x1a
- .set EC_WORD_RIPPED, 0x1b
- .set EC_WORD_SHREDDED, 0x1c
- .set EC_WORD_INCREASING, 0x1d
- .set EC_WORD_YET, 0x1e
- .set EC_WORD_DESTROYED, 0x1f
- .set EC_WORD_FIERY, 0x20
- .set EC_WORD_LOVEY_DOVEY, 0x21
- .set EC_WORD_HAPPILY, 0x22
- .set EC_WORD_ANTICIPATION, 0x23
+ .set EC_WORD_WANDERING, (EC_GROUP_ADJECTIVES << 9) | 0x0
+ .set EC_WORD_RICKETY, (EC_GROUP_ADJECTIVES << 9) | 0x1
+ .set EC_WORD_ROCK_SOLID, (EC_GROUP_ADJECTIVES << 9) | 0x2
+ .set EC_WORD_HUNGRY, (EC_GROUP_ADJECTIVES << 9) | 0x3
+ .set EC_WORD_TIGHT, (EC_GROUP_ADJECTIVES << 9) | 0x4
+ .set EC_WORD_TICKLISH, (EC_GROUP_ADJECTIVES << 9) | 0x5
+ .set EC_WORD_TWIRLING, (EC_GROUP_ADJECTIVES << 9) | 0x6
+ .set EC_WORD_SPIRALING, (EC_GROUP_ADJECTIVES << 9) | 0x7
+ .set EC_WORD_THIRSTY, (EC_GROUP_ADJECTIVES << 9) | 0x8
+ .set EC_WORD_LOLLING, (EC_GROUP_ADJECTIVES << 9) | 0x9
+ .set EC_WORD_SILKY, (EC_GROUP_ADJECTIVES << 9) | 0xa
+ .set EC_WORD_SADLY, (EC_GROUP_ADJECTIVES << 9) | 0xb
+ .set EC_WORD_HOPELESS, (EC_GROUP_ADJECTIVES << 9) | 0xc
+ .set EC_WORD_USELESS, (EC_GROUP_ADJECTIVES << 9) | 0xd
+ .set EC_WORD_DROOLING, (EC_GROUP_ADJECTIVES << 9) | 0xe
+ .set EC_WORD_EXCITING, (EC_GROUP_ADJECTIVES << 9) | 0xf
+ .set EC_WORD_THICK, (EC_GROUP_ADJECTIVES << 9) | 0x10
+ .set EC_WORD_SMOOTH, (EC_GROUP_ADJECTIVES << 9) | 0x11
+ .set EC_WORD_SLIMY, (EC_GROUP_ADJECTIVES << 9) | 0x12
+ .set EC_WORD_THIN, (EC_GROUP_ADJECTIVES << 9) | 0x13
+ .set EC_WORD_BREAK, (EC_GROUP_ADJECTIVES << 9) | 0x14
+ .set EC_WORD_VORACIOUS, (EC_GROUP_ADJECTIVES << 9) | 0x15
+ .set EC_WORD_SCATTER, (EC_GROUP_ADJECTIVES << 9) | 0x16
+ .set EC_WORD_AWESOME, (EC_GROUP_ADJECTIVES << 9) | 0x17
+ .set EC_WORD_WIMPY, (EC_GROUP_ADJECTIVES << 9) | 0x18
+ .set EC_WORD_WOBBLY, (EC_GROUP_ADJECTIVES << 9) | 0x19
+ .set EC_WORD_SHAKY, (EC_GROUP_ADJECTIVES << 9) | 0x1a
+ .set EC_WORD_RIPPED, (EC_GROUP_ADJECTIVES << 9) | 0x1b
+ .set EC_WORD_SHREDDED, (EC_GROUP_ADJECTIVES << 9) | 0x1c
+ .set EC_WORD_INCREASING, (EC_GROUP_ADJECTIVES << 9) | 0x1d
+ .set EC_WORD_YET, (EC_GROUP_ADJECTIVES << 9) | 0x1e
+ .set EC_WORD_DESTROYED, (EC_GROUP_ADJECTIVES << 9) | 0x1f
+ .set EC_WORD_FIERY, (EC_GROUP_ADJECTIVES << 9) | 0x20
+ .set EC_WORD_LOVEY_DOVEY, (EC_GROUP_ADJECTIVES << 9) | 0x21
+ .set EC_WORD_HAPPILY, (EC_GROUP_ADJECTIVES << 9) | 0x22
+ .set EC_WORD_ANTICIPATION, (EC_GROUP_ADJECTIVES << 9) | 0x23
; Events
- .set EC_WORD_APPEAL, 0x0
- .set EC_WORD_EVENTS, 0x1
- .set EC_WORD_STAY_AT_HOME, 0x2
- .set EC_WORD_BERRY, 0x3
- .set EC_WORD_CONTEST, 0x4
- .set EC_WORD_MC, 0x5
- .set EC_WORD_JUDGE, 0x6
- .set EC_WORD_SUPER, 0x7
- .set EC_WORD_STAGE, 0x8
- .set EC_WORD_HALL_OF_FAME, 0x9
- .set EC_WORD_EVOLUTION, 0xa
- .set EC_WORD_HYPER, 0xb
- .set EC_WORD_BATTLE_TOWER, 0xc
- .set EC_WORD_LEADERS, 0xd
- .set EC_WORD_BATTLE_ROOM, 0xe
- .set EC_WORD_HIDDEN, 0xf
- .set EC_WORD_SECRET_BASE, 0x10
- .set EC_WORD_BLEND, 0x11
- .set EC_WORD_POKEBLOCK, 0x12
- .set EC_WORD_MASTER, 0x13
- .set EC_WORD_RANK, 0x14
- .set EC_WORD_RIBBON, 0x15
- .set EC_WORD_CRUSH, 0x16
- .set EC_WORD_DIRECT, 0x17
- .set EC_WORD_TOWER, 0x18
- .set EC_WORD_UNION, 0x19
- .set EC_WORD_ROOM, 0x1a
- .set EC_WORD_WIRELESS, 0x1b
- .set EC_WORD_FRONTIER, 0x1c
+ .set EC_WORD_APPEAL, (EC_GROUP_EVENTS << 9) | 0x0
+ .set EC_WORD_EVENTS, (EC_GROUP_EVENTS << 9) | 0x1
+ .set EC_WORD_STAY_AT_HOME, (EC_GROUP_EVENTS << 9) | 0x2
+ .set EC_WORD_BERRY, (EC_GROUP_EVENTS << 9) | 0x3
+ .set EC_WORD_CONTEST, (EC_GROUP_EVENTS << 9) | 0x4
+ .set EC_WORD_MC, (EC_GROUP_EVENTS << 9) | 0x5
+ .set EC_WORD_JUDGE, (EC_GROUP_EVENTS << 9) | 0x6
+ .set EC_WORD_SUPER, (EC_GROUP_EVENTS << 9) | 0x7
+ .set EC_WORD_STAGE, (EC_GROUP_EVENTS << 9) | 0x8
+ .set EC_WORD_HALL_OF_FAME, (EC_GROUP_EVENTS << 9) | 0x9
+ .set EC_WORD_EVOLUTION, (EC_GROUP_EVENTS << 9) | 0xa
+ .set EC_WORD_HYPER, (EC_GROUP_EVENTS << 9) | 0xb
+ .set EC_WORD_BATTLE_TOWER, (EC_GROUP_EVENTS << 9) | 0xc
+ .set EC_WORD_LEADERS, (EC_GROUP_EVENTS << 9) | 0xd
+ .set EC_WORD_BATTLE_ROOM, (EC_GROUP_EVENTS << 9) | 0xe
+ .set EC_WORD_HIDDEN, (EC_GROUP_EVENTS << 9) | 0xf
+ .set EC_WORD_SECRET_BASE, (EC_GROUP_EVENTS << 9) | 0x10
+ .set EC_WORD_BLEND, (EC_GROUP_EVENTS << 9) | 0x11
+ .set EC_WORD_POKEBLOCK, (EC_GROUP_EVENTS << 9) | 0x12
+ .set EC_WORD_MASTER, (EC_GROUP_EVENTS << 9) | 0x13
+ .set EC_WORD_RANK, (EC_GROUP_EVENTS << 9) | 0x14
+ .set EC_WORD_RIBBON, (EC_GROUP_EVENTS << 9) | 0x15
+ .set EC_WORD_CRUSH, (EC_GROUP_EVENTS << 9) | 0x16
+ .set EC_WORD_DIRECT, (EC_GROUP_EVENTS << 9) | 0x17
+ .set EC_WORD_TOWER, (EC_GROUP_EVENTS << 9) | 0x18
+ .set EC_WORD_UNION, (EC_GROUP_EVENTS << 9) | 0x19
+ .set EC_WORD_ROOM, (EC_GROUP_EVENTS << 9) | 0x1a
+ .set EC_WORD_WIRELESS, (EC_GROUP_EVENTS << 9) | 0x1b
+ .set EC_WORD_FRONTIER, (EC_GROUP_EVENTS << 9) | 0x1c
; Trendy Saying
- .set EC_WORD_KTHX_BYE, 0x0
- .set EC_WORD_YES_SIR_EXCL, 0x1
- .set EC_WORD_AVANT_GARDE, 0x2
- .set EC_WORD_COUPLE, 0x3
- .set EC_WORD_MUCH_OBLIGED, 0x4
- .set EC_WORD_YEEHAW_EXCL, 0x5
- .set EC_WORD_MEGA, 0x6
- .set EC_WORD_1_HIT_KO_EXCL, 0x7
- .set EC_WORD_DESTINY, 0x8
- .set EC_WORD_CANCEL, 0x9
- .set EC_WORD_NEW, 0xa
- .set EC_WORD_FLATTEN, 0xb
- .set EC_WORD_KIDDING, 0xc
- .set EC_WORD_LOSER, 0xd
- .set EC_WORD_LOSING, 0xe
- .set EC_WORD_HAPPENING, 0xf
- .set EC_WORD_HIP_AND, 0x10
- .set EC_WORD_SHAKE, 0x11
- .set EC_WORD_SHADY, 0x12
- .set EC_WORD_UPBEAT, 0x13
- .set EC_WORD_MODERN, 0x14
- .set EC_WORD_SMELL_YA, 0x15
- .set EC_WORD_BANG, 0x16
- .set EC_WORD_KNOCKOUT, 0x17
- .set EC_WORD_HASSLE, 0x18
- .set EC_WORD_WINNER, 0x19
- .set EC_WORD_FEVER, 0x1a
- .set EC_WORD_WANNABE, 0x1b
- .set EC_WORD_BABY, 0x1c
- .set EC_WORD_HEART, 0x1d
- .set EC_WORD_OLD, 0x1e
- .set EC_WORD_YOUNG, 0x1f
- .set EC_WORD_UGLY, 0x20
+ .set EC_WORD_KTHX_BYE, (EC_GROUP_TRENDY_SAYING << 9) | 0x0
+ .set EC_WORD_YES_SIR_EXCL, (EC_GROUP_TRENDY_SAYING << 9) | 0x1
+ .set EC_WORD_AVANT_GARDE, (EC_GROUP_TRENDY_SAYING << 9) | 0x2
+ .set EC_WORD_COUPLE, (EC_GROUP_TRENDY_SAYING << 9) | 0x3
+ .set EC_WORD_MUCH_OBLIGED, (EC_GROUP_TRENDY_SAYING << 9) | 0x4
+ .set EC_WORD_YEEHAW_EXCL, (EC_GROUP_TRENDY_SAYING << 9) | 0x5
+ .set EC_WORD_MEGA, (EC_GROUP_TRENDY_SAYING << 9) | 0x6
+ .set EC_WORD_1_HIT_KO_EXCL, (EC_GROUP_TRENDY_SAYING << 9) | 0x7
+ .set EC_WORD_DESTINY, (EC_GROUP_TRENDY_SAYING << 9) | 0x8
+ .set EC_WORD_CANCEL, (EC_GROUP_TRENDY_SAYING << 9) | 0x9
+ .set EC_WORD_NEW, (EC_GROUP_TRENDY_SAYING << 9) | 0xa
+ .set EC_WORD_FLATTEN, (EC_GROUP_TRENDY_SAYING << 9) | 0xb
+ .set EC_WORD_KIDDING, (EC_GROUP_TRENDY_SAYING << 9) | 0xc
+ .set EC_WORD_LOSER, (EC_GROUP_TRENDY_SAYING << 9) | 0xd
+ .set EC_WORD_LOSING, (EC_GROUP_TRENDY_SAYING << 9) | 0xe
+ .set EC_WORD_HAPPENING, (EC_GROUP_TRENDY_SAYING << 9) | 0xf
+ .set EC_WORD_HIP_AND, (EC_GROUP_TRENDY_SAYING << 9) | 0x10
+ .set EC_WORD_SHAKE, (EC_GROUP_TRENDY_SAYING << 9) | 0x11
+ .set EC_WORD_SHADY, (EC_GROUP_TRENDY_SAYING << 9) | 0x12
+ .set EC_WORD_UPBEAT, (EC_GROUP_TRENDY_SAYING << 9) | 0x13
+ .set EC_WORD_MODERN, (EC_GROUP_TRENDY_SAYING << 9) | 0x14
+ .set EC_WORD_SMELL_YA, (EC_GROUP_TRENDY_SAYING << 9) | 0x15
+ .set EC_WORD_BANG, (EC_GROUP_TRENDY_SAYING << 9) | 0x16
+ .set EC_WORD_KNOCKOUT, (EC_GROUP_TRENDY_SAYING << 9) | 0x17
+ .set EC_WORD_HASSLE, (EC_GROUP_TRENDY_SAYING << 9) | 0x18
+ .set EC_WORD_WINNER, (EC_GROUP_TRENDY_SAYING << 9) | 0x19
+ .set EC_WORD_FEVER, (EC_GROUP_TRENDY_SAYING << 9) | 0x1a
+ .set EC_WORD_WANNABE, (EC_GROUP_TRENDY_SAYING << 9) | 0x1b
+ .set EC_WORD_BABY, (EC_GROUP_TRENDY_SAYING << 9) | 0x1c
+ .set EC_WORD_HEART, (EC_GROUP_TRENDY_SAYING << 9) | 0x1d
+ .set EC_WORD_OLD, (EC_GROUP_TRENDY_SAYING << 9) | 0x1e
+ .set EC_WORD_YOUNG, (EC_GROUP_TRENDY_SAYING << 9) | 0x1f
+ .set EC_WORD_UGLY, (EC_GROUP_TRENDY_SAYING << 9) | 0x20
+
diff --git a/data/text/easy_chat/easy_chat_words_by_letter.s b/data/text/easy_chat/easy_chat_words_by_letter.s
index c2ecef1c7..0fefb263b 100644
--- a/data/text/easy_chat/easy_chat_words_by_letter.s
+++ b/data/text/easy_chat/easy_chat_words_by_letter.s
@@ -1,2522 +1,2522 @@
gEasyChatWordsByLetter_Others: ; 859D0B4
- ec_word_voices EXCL
- ec_word_voices EXCL_EXCL
- ec_word_voices DASH
- ec_word_voices DASH_DASH_DASH
- ec_word_voices ELLIPSIS
- ec_word_voices ELLIPSIS_EXCL
- ec_word_voices ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word_trendy_saying 1_HIT_KO_EXCL
- ec_word_voices QUES
- ec_word_voices QUES_EXCL
+ ec_word EXCL
+ ec_word EXCL_EXCL
+ ec_word DASH
+ ec_word DASH_DASH_DASH
+ ec_word ELLIPSIS
+ ec_word ELLIPSIS_EXCL
+ ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
+ ec_word 1_HIT_KO_EXCL
+ ec_word QUES
+ ec_word QUES_EXCL
gEasyChatWordsByLetter_A: ; 859D0C8
- ec_word_endings A
- ec_word_speech A_LITTLE
- ec_word_speech A_LOT
- ec_word_speech A_TINY_BIT
- ec_word_endings ABOUT
- ec_word_misc ABOVE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon ABRA
- ec_word_pokemon2 ABRA
- ec_word_conditions ABSENT
- ec_word_pokemon ABSOL
- ec_word_speech ABSOLUTELY
- ec_word_move_1 ABSORB
- ec_word_battle ACCEPT
- ec_word_move_2 ACID
- ec_word_move_2 ACID_ARMOR
- ec_word_feelings ADORE
- ec_word_people ADULT
- ec_word_hobbies ADVENTURE
- ec_word_move_2 AERIAL_ACE
- ec_word_move_1 AEROBLAST
- ec_word_pokemon2 AERODACTYL
- ec_word_endings AFTER
- ec_word_time AGE
- ec_word_pokemon AGGRON
- ec_word_move_1 AGILITY
- ec_word_voices AGREE
- ec_word_voices AHAHA
- ec_word_battle AIM
- ec_word_pokemon2 AIPOM
- ec_word_move_1 AIR_CUTTER
- ec_word_status AIR_LOCK
- ec_word_voices AIYEEH
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon ALAKAZAM
- ec_word_pokemon2 ALAKAZAM
- ec_word_endings ALL
- ec_word_feelings ALL_RIGHT
- ec_word_actions ALLOW
- ec_word_lifestyle ALLOWANCE
- ec_word_people ALLY
- ec_word_time ALMOST
- ec_word_conditions ALONE
- ec_word_speech ALSO
- ec_word_status ALT_COLOR
- ec_word_pokemon ALTARIA
- ec_word_speech ALTHOUGH
- ec_word_time ALWAYS
- ec_word_misc AM
- ec_word_move_2 AMNESIA
- ec_word_pokemon2 AMPHAROS
- ec_word_conditions AMUSING
- ec_word_endings AN
- ec_word_move_1 ANCIENT_POWER
- ec_word_speech AND
- ec_word_feelings ANGER
- ec_word_actions ANGERS
- ec_word_feelings ANGRY
- ec_word_hobbies ANIME
- ec_word_pokemon ANORITH
- ec_word_time ANOTHER
- ec_word_adjectives ANTICIPATION
- ec_word_speech ANY
- ec_word_endings ANYWHERE
- ec_word_greetings APOLOGIZE
- ec_word_events APPEAL
- ec_word_actions APPEAR
- ec_word_actions APPEARS
- ec_word_greetings APPRECIATE
- ec_word_conditions APPROVED
- ec_word_pokemon2 ARBOK
- ec_word_pokemon2 ARCANINE
- ec_word_endings ARE
- ec_word_people AREN_T
- ec_word_status ARENA_TRAP
- ec_word_pokemon2 ARIADOS
- ec_word_move_2 ARM_THRUST
- ec_word_pokemon ARMALDO
- ec_word_move_1 AROMATHERAPY
- ec_word_pokemon ARON
- ec_word_speech AROUND
- ec_word_voices ARRGH
- ec_word_pokemon2 ARTICUNO
- ec_word_endings AS
- ec_word_speech AS_IF
- ec_word_speech AS_MUCH_AS
- ec_word_move_2 ASSIST
- ec_word_move_1 ASTONISH
- ec_word_endings AT
- ec_word_battle ATTACK
- ec_word_move_2 ATTRACT
- ec_word_people AUNT
- ec_word_move_1 AURORA_BEAM
- ec_word_trendy_saying AVANT_GARDE
- ec_word_misc AWAY
- ec_word_adjectives AWESOME
- ec_word_conditions AWFUL
- ec_word_speech AWFULLY
- ec_word_voices AWW
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon AZUMARILL
- ec_word_pokemon2 AZUMARILL
- ec_word_pokemon AZURILL
+ ec_word A
+ ec_word A_LITTLE
+ ec_word A_LOT
+ ec_word A_TINY_BIT
+ ec_word ABOUT
+ ec_word ABOVE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 ABRA
+ ec_pokemon2 ABRA
+ ec_word ABSENT
+ ec_pokemon1 ABSOL
+ ec_word ABSOLUTELY
+ ec_move1 ABSORB
+ ec_word ACCEPT
+ ec_move2 ACID
+ ec_move2 ACID_ARMOR
+ ec_word ADORE
+ ec_word ADULT
+ ec_word ADVENTURE
+ ec_move2 AERIAL_ACE
+ ec_move1 AEROBLAST
+ ec_pokemon2 AERODACTYL
+ ec_word AFTER
+ ec_word AGE
+ ec_pokemon1 AGGRON
+ ec_move1 AGILITY
+ ec_word AGREE
+ ec_word AHAHA
+ ec_word AIM
+ ec_pokemon2 AIPOM
+ ec_move1 AIR_CUTTER
+ ec_word AIR_LOCK
+ ec_word AIYEEH
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 ALAKAZAM
+ ec_pokemon2 ALAKAZAM
+ ec_word ALL
+ ec_word ALL_RIGHT
+ ec_word ALLOW
+ ec_word ALLOWANCE
+ ec_word ALLY
+ ec_word ALMOST
+ ec_word ALONE
+ ec_word ALSO
+ ec_word ALT_COLOR
+ ec_pokemon1 ALTARIA
+ ec_word ALTHOUGH
+ ec_word ALWAYS
+ ec_word AM
+ ec_move2 AMNESIA
+ ec_pokemon2 AMPHAROS
+ ec_word AMUSING
+ ec_word AN
+ ec_move1 ANCIENT_POWER
+ ec_word AND
+ ec_word ANGER
+ ec_word ANGERS
+ ec_word ANGRY
+ ec_word ANIME
+ ec_pokemon1 ANORITH
+ ec_word ANOTHER
+ ec_word ANTICIPATION
+ ec_word ANY
+ ec_word ANYWHERE
+ ec_word APOLOGIZE
+ ec_word APPEAL
+ ec_word APPEAR
+ ec_word APPEARS
+ ec_word APPRECIATE
+ ec_word APPROVED
+ ec_pokemon2 ARBOK
+ ec_pokemon2 ARCANINE
+ ec_word ARE
+ ec_word AREN_T
+ ec_word ARENA_TRAP
+ ec_pokemon2 ARIADOS
+ ec_move2 ARM_THRUST
+ ec_pokemon1 ARMALDO
+ ec_move1 AROMATHERAPY
+ ec_pokemon1 ARON
+ ec_word AROUND
+ ec_word ARRGH
+ ec_pokemon2 ARTICUNO
+ ec_word AS
+ ec_word AS_IF
+ ec_word AS_MUCH_AS
+ ec_move2 ASSIST
+ ec_move1 ASTONISH
+ ec_word AT
+ ec_word ATTACK
+ ec_move2 ATTRACT
+ ec_word AUNT
+ ec_move1 AURORA_BEAM
+ ec_word AVANT_GARDE
+ ec_word AWAY
+ ec_word AWESOME
+ ec_word AWFUL
+ ec_word AWFULLY
+ ec_word AWW
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 AZUMARILL
+ ec_pokemon2 AZUMARILL
+ ec_pokemon1 AZURILL
gEasyChatWordsByLetter_B: ; 859D19C
- ec_word_people BABE
- ec_word_trendy_saying BABY
- ec_word_misc BACK
- ec_word_feelings BAD
- ec_word_conditions BADLY
- ec_word_trainer BAG
- ec_word_pokemon BAGON
- ec_word_hobbies BALL
- ec_word_pokemon BALTOY
- ec_word_pokemon BANETTE
- ec_word_trendy_saying BANG
- ec_word_pokemon BARBOACH
- ec_word_move_2 BARRAGE
- ec_word_move_2 BARRIER
- ec_word_lifestyle BATH
- ec_word_move_2 BATON_PASS
- ec_word_battle BATTLE
- ec_word_status BATTLE_ARMOR
- ec_word_events BATTLE_ROOM
- ec_word_events BATTLE_TOWER
- ec_word_pokemon2 BAYLEEF
- ec_word_endings BE
- ec_word_feelings BEAT
- ec_word_move_2 BEAT_UP
- ec_word_pokemon BEAUTIFLY
- ec_word_status BEAUTIFUL
- ec_word_status BEAUTY
- ec_word_conditions BECOMES
- ec_word_pokemon2 BEEDRILL
- ec_word_people BEEN
- ec_word_endings BEFORE
- ec_word_time BEGINNING
- ec_word_conditions BEING
- ec_word_pokemon BELDUM
- ec_word_actions BELIEVE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon BELLOSSOM
- ec_word_pokemon2 BELLOSSOM
- ec_word_pokemon2 BELLSPROUT
- ec_word_move_2 BELLY_DRUM
- ec_word_endings BELONGS_TO
- ec_word_misc BELOW
- ec_word_events BERRY
- ec_word_misc BESIDE
- ec_word_conditions BEST
- ec_word_endings BETTER
- ec_word_move_1 BIDE
- ec_word_conditions BIG
- ec_word_hobbies BIKE
- ec_word_move_1 BIND
- ec_word_move_1 BITE
- ec_word_move_2 BLAST_BURN
- ec_word_pokemon2 BLASTOISE
- ec_word_status BLAZE
- ec_word_move_2 BLAZE_KICK
- ec_word_pokemon BLAZIKEN
- ec_word_events BLEND
- ec_word_pokemon2 BLISSEY
- ec_word_move_2 BLIZZARD
- ec_word_move_2 BLOCK
- ec_word_hobbies BOARD
- ec_word_move_2 BODY_SLAM
- ec_word_move_2 BONE_CLUB
- ec_word_move_2 BONE_RUSH
- ec_word_move_2 BONEMERANG
- ec_word_hobbies BOOK
- ec_word_conditions BORED
- ec_word_feelings BORING
- ec_word_move_2 BOUNCE
- ec_word_people BOY
- ec_word_actions BRAG
- ec_word_adjectives BREAK
- ec_word_pokemon BRELOOM
- ec_word_move_1 BRICK_BREAK
- ec_word_people BROTHER
- ec_word_move_1 BUBBLE
- ec_word_move_2 BUBBLE_BEAM
- ec_word_status BUG
- ec_word_pokemon2 BULBASAUR
- ec_word_move_2 BULK_UP
- ec_word_move_2 BULLET_SEED
- ec_word_conditions BUSY
- ec_word_speech BUT
- ec_word_pokemon2 BUTTERFREE
- ec_word_greetings BYE_BYE
+ ec_word BABE
+ ec_word BABY
+ ec_word BACK
+ ec_word BAD
+ ec_word BADLY
+ ec_word BAG
+ ec_pokemon1 BAGON
+ ec_word BALL
+ ec_pokemon1 BALTOY
+ ec_pokemon1 BANETTE
+ ec_word BANG
+ ec_pokemon1 BARBOACH
+ ec_move2 BARRAGE
+ ec_move2 BARRIER
+ ec_word BATH
+ ec_move2 BATON_PASS
+ ec_word BATTLE
+ ec_word BATTLE_ARMOR
+ ec_word BATTLE_ROOM
+ ec_word BATTLE_TOWER
+ ec_pokemon2 BAYLEEF
+ ec_word BE
+ ec_word BEAT
+ ec_move2 BEAT_UP
+ ec_pokemon1 BEAUTIFLY
+ ec_word BEAUTIFUL
+ ec_word BEAUTY
+ ec_word BECOMES
+ ec_pokemon2 BEEDRILL
+ ec_word BEEN
+ ec_word BEFORE
+ ec_word BEGINNING
+ ec_word BEING
+ ec_pokemon1 BELDUM
+ ec_word BELIEVE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 BELLOSSOM
+ ec_pokemon2 BELLOSSOM
+ ec_pokemon2 BELLSPROUT
+ ec_move2 BELLY_DRUM
+ ec_word BELONGS_TO
+ ec_word BELOW
+ ec_word BERRY
+ ec_word BESIDE
+ ec_word BEST
+ ec_word BETTER
+ ec_move1 BIDE
+ ec_word BIG
+ ec_word BIKE
+ ec_move1 BIND
+ ec_move1 BITE
+ ec_move2 BLAST_BURN
+ ec_pokemon2 BLASTOISE
+ ec_word BLAZE
+ ec_move2 BLAZE_KICK
+ ec_pokemon1 BLAZIKEN
+ ec_word BLEND
+ ec_pokemon2 BLISSEY
+ ec_move2 BLIZZARD
+ ec_move2 BLOCK
+ ec_word BOARD
+ ec_move2 BODY_SLAM
+ ec_move2 BONE_CLUB
+ ec_move2 BONE_RUSH
+ ec_move2 BONEMERANG
+ ec_word BOOK
+ ec_word BORED
+ ec_word BORING
+ ec_move2 BOUNCE
+ ec_word BOY
+ ec_word BRAG
+ ec_word BREAK
+ ec_pokemon1 BRELOOM
+ ec_move1 BRICK_BREAK
+ ec_word BROTHER
+ ec_move1 BUBBLE
+ ec_move2 BUBBLE_BEAM
+ ec_word BUG
+ ec_pokemon2 BULBASAUR
+ ec_move2 BULK_UP
+ ec_move2 BULLET_SEED
+ ec_word BUSY
+ ec_word BUT
+ ec_pokemon2 BUTTERFREE
+ ec_word BYE_BYE
gEasyChatWordsByLetter_C: ; 859D248
- ec_word_pokemon CACNEA
- ec_word_pokemon CACTURNE
- ec_word_move_2 CALM_MIND
- ec_word_actions CAME
- ec_word_hobbies CAMERA
- ec_word_pokemon CAMERUPT
- ec_word_move_2 CAMOUFLAGE
- ec_word_endings CAN
- ec_word_battle CAN_WIN
- ec_word_endings CAN_T
- ec_word_battle CAN_T_WIN
- ec_word_trendy_saying CANCEL
- ec_word_actions CAPABLE
- ec_word_hobbies CARDS
- ec_word_feelings CARE
- ec_word_feelings CARES
- ec_word_pokemon CARVANHA
- ec_word_pokemon CASCOON
- ec_word_speech CASE
- ec_word_pokemon CASTFORM
- ec_word_pokemon2 CATERPIE
- ec_word_actions CAUSE
- ec_word_pokemon2 CELEBI
- ec_word_trainer CENTER
- ec_word_battle CHALLENGE
- ec_word_actions CHANGE
- ec_word_hobbies CHANNEL
- ec_word_pokemon2 CHANSEY
- ec_word_move_1 CHARGE
- ec_word_pokemon2 CHARIZARD
- ec_word_move_1 CHARM
- ec_word_pokemon2 CHARMANDER
- ec_word_pokemon2 CHARMELEON
- ec_word_hobbies CHAT
- ec_word_pokemon2 CHIKORITA
- ec_word_hobbies CHILD_S_PLAY
- ec_word_people CHILDREN
- ec_word_pokemon CHIMECHO
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon CHINCHOU
- ec_word_pokemon2 CHINCHOU
- ec_word_status CHLOROPHYLL
- ec_word_misc CHOICE
- ec_word_actions CHOOSE
- ec_word_lifestyle CHORES
- ec_word_move_1 CLAMP
- ec_word_pokemon CLAMPERL
- ec_word_lifestyle CLASS
- ec_word_pokemon CLAYDOL
- ec_word_status CLEAR_BODY
- ec_word_pokemon2 CLEFABLE
- ec_word_pokemon2 CLEFAIRY
- ec_word_pokemon2 CLEFFA
- ec_word_conditions CLOSE
- ec_word_status CLOUD_NINE
- ec_word_pokemon2 CLOYSTER
- ec_word_conditions COLD
- ec_word_actions COLLECT
- ec_word_hobbies COLLECTION
- ec_word_status COLOR
- ec_word_status COLOR_CHANGE
- ec_word_pokemon COMBUSKEN
- ec_word_actions COME
- ec_word_battle COME_ON
- ec_word_greetings COME_OVER
- ec_word_move_2 COMET_PUNCH
- ec_word_hobbies COMICS
- ec_word_lifestyle COMMEMORATE
- ec_word_hobbies COMPLETE
- ec_word_status COMPOUNDEYES
- ec_word_actions CONCEDE
- ec_word_move_1 CONFUSE_RAY
- ec_word_misc CONFUSED
- ec_word_move_2 CONFUSION
- ec_word_greetings CONGRATS
- ec_word_move_1 CONSTRICT
- ec_word_events CONTEST
- ec_word_lifestyle CONVERSATION
- ec_word_move_2 CONVERSION
- ec_word_move_2 CONVERSION_2
- ec_word_status COOL
- ec_word_status COOLNESS
- ec_word_pokemon CORPHISH
- ec_word_conditions CORRECT
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon CORSOLA
- ec_word_pokemon2 CORSOLA
- ec_word_move_1 COSMIC_POWER
- ec_word_move_2 COTTON_SPORE
- ec_word_endings COULD
- ec_word_actions COULDN_T
- ec_word_greetings COUNT_ON
- ec_word_move_1 COUNTER
- ec_word_trendy_saying COUPLE
- ec_word_move_2 COVET
- ec_word_move_1 CRABHAMMER
- ec_word_pokemon CRADILY
- ec_word_pokemon CRAWDAUNT
- ec_word_voices CRIES
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon CROBAT
- ec_word_pokemon2 CROBAT
- ec_word_pokemon2 CROCONAW
- ec_word_move_1 CROSS_CHOP
- ec_word_move_1 CRUNCH
- ec_word_events CRUSH
- ec_word_move_2 CRUSH_CLAW
- ec_word_voices CRY
- ec_word_pokemon2 CUBONE
- ec_word_time CURRENT
- ec_word_move_2 CURSE
- ec_word_move_1 CUT
- ec_word_status CUTE
- ec_word_status CUTE_CHARM
- ec_word_status CUTENESS
- ec_word_pokemon2 CYNDAQUIL
+ ec_pokemon1 CACNEA
+ ec_pokemon1 CACTURNE
+ ec_move2 CALM_MIND
+ ec_word CAME
+ ec_word CAMERA
+ ec_pokemon1 CAMERUPT
+ ec_move2 CAMOUFLAGE
+ ec_word CAN
+ ec_word CAN_WIN
+ ec_word CAN_T
+ ec_word CAN_T_WIN
+ ec_word CANCEL
+ ec_word CAPABLE
+ ec_word CARDS
+ ec_word CARE
+ ec_word CARES
+ ec_pokemon1 CARVANHA
+ ec_pokemon1 CASCOON
+ ec_word CASE
+ ec_pokemon1 CASTFORM
+ ec_pokemon2 CATERPIE
+ ec_word CAUSE
+ ec_pokemon2 CELEBI
+ ec_word CENTER
+ ec_word CHALLENGE
+ ec_word CHANGE
+ ec_word CHANNEL
+ ec_pokemon2 CHANSEY
+ ec_move1 CHARGE
+ ec_pokemon2 CHARIZARD
+ ec_move1 CHARM
+ ec_pokemon2 CHARMANDER
+ ec_pokemon2 CHARMELEON
+ ec_word CHAT
+ ec_pokemon2 CHIKORITA
+ ec_word CHILD_S_PLAY
+ ec_word CHILDREN
+ ec_pokemon1 CHIMECHO
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 CHINCHOU
+ ec_pokemon2 CHINCHOU
+ ec_word CHLOROPHYLL
+ ec_word CHOICE
+ ec_word CHOOSE
+ ec_word CHORES
+ ec_move1 CLAMP
+ ec_pokemon1 CLAMPERL
+ ec_word CLASS
+ ec_pokemon1 CLAYDOL
+ ec_word CLEAR_BODY
+ ec_pokemon2 CLEFABLE
+ ec_pokemon2 CLEFAIRY
+ ec_pokemon2 CLEFFA
+ ec_word CLOSE
+ ec_word CLOUD_NINE
+ ec_pokemon2 CLOYSTER
+ ec_word COLD
+ ec_word COLLECT
+ ec_word COLLECTION
+ ec_word COLOR
+ ec_word COLOR_CHANGE
+ ec_pokemon1 COMBUSKEN
+ ec_word COME
+ ec_word COME_ON
+ ec_word COME_OVER
+ ec_move2 COMET_PUNCH
+ ec_word COMICS
+ ec_word COMMEMORATE
+ ec_word COMPLETE
+ ec_word COMPOUNDEYES
+ ec_word CONCEDE
+ ec_move1 CONFUSE_RAY
+ ec_word CONFUSED
+ ec_move2 CONFUSION
+ ec_word CONGRATS
+ ec_move1 CONSTRICT
+ ec_word CONTEST
+ ec_word CONVERSATION
+ ec_move2 CONVERSION
+ ec_move2 CONVERSION_2
+ ec_word COOL
+ ec_word COOLNESS
+ ec_pokemon1 CORPHISH
+ ec_word CORRECT
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 CORSOLA
+ ec_pokemon2 CORSOLA
+ ec_move1 COSMIC_POWER
+ ec_move2 COTTON_SPORE
+ ec_word COULD
+ ec_word COULDN_T
+ ec_word COUNT_ON
+ ec_move1 COUNTER
+ ec_word COUPLE
+ ec_move2 COVET
+ ec_move1 CRABHAMMER
+ ec_pokemon1 CRADILY
+ ec_pokemon1 CRAWDAUNT
+ ec_word CRIES
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 CROBAT
+ ec_pokemon2 CROBAT
+ ec_pokemon2 CROCONAW
+ ec_move1 CROSS_CHOP
+ ec_move1 CRUNCH
+ ec_word CRUSH
+ ec_move2 CRUSH_CLAW
+ ec_word CRY
+ ec_pokemon2 CUBONE
+ ec_word CURRENT
+ ec_move2 CURSE
+ ec_move1 CUT
+ ec_word CUTE
+ ec_word CUTE_CHARM
+ ec_word CUTENESS
+ ec_pokemon2 CYNDAQUIL
gEasyChatWordsByLetter_D: ; 859D336
- ec_word_time DAILY
- ec_word_status DAMP
- ec_word_hobbies DANCE
- ec_word_feelings DANGER
- ec_word_status DARK
- ec_word_feelings DARN
- ec_word_hobbies DATE
- ec_word_people DAUGHTER
- ec_word_time DAY
- ec_word_time DAYS
- ec_word_time DAYTIME
- ec_word_battle DECIDE
- ec_word_battle DECIDED
- ec_word_misc DEEP
- ec_word_feelings DEFEATED
- ec_word_move_2 DEFENSE_CURL
- ec_word_pokemon DELCATTY
- ec_word_pokemon2 DELIBIRD
- ec_word_pokemon DEOXYS
- ec_word_lifestyle DEPT_STORE
- ec_word_hobbies DESIGN
- ec_word_trendy_saying DESTINY
- ec_word_move_2 DESTINY_BOND
- ec_word_adjectives DESTROYED
- ec_word_move_2 DETECT
- ec_word_pokemon2 DEWGONG
- ec_word_endings DID
- ec_word_endings DIDN_T
- ec_word_hobbies DIET
- ec_word_conditions DIFFERENT
- ec_word_move_1 DIG
- ec_word_lifestyle DIGITAL
- ec_word_pokemon2 DIGLETT
- ec_word_events DIRECT
- ec_word_move_1 DISABLE
- ec_word_actions DISAPPEAR
- ec_word_feelings DISAPPOINT
- ec_word_feelings DISAPPOINTED
- ec_word_feelings DISAPPOINTS
- ec_word_feelings DISASTER
- ec_word_feelings DISLIKE
- ec_word_feelings DISLIKES
- ec_word_pokemon2 DITTO
- ec_word_move_2 DIVE
- ec_word_move_2 DIZZY_PUNCH
- ec_word_endings DO
- ec_word_conditions DOCILE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon DODRIO
- ec_word_pokemon2 DODRIO
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon DODUO
- ec_word_pokemon2 DODUO
- ec_word_endings DOES
- ec_word_endings DOESN_T
- ec_word_endings DON_T
- ec_word_feelings DONE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon DONPHAN
- ec_word_pokemon2 DONPHAN
- ec_word_move_2 DOOM_DESIRE
- ec_word_move_2 DOUBLE_KICK
- ec_word_move_1 DOUBLE_TEAM
- ec_word_move_1 DOUBLE_EDGE
- ec_word_move_1 DOUBLE_SLAP
- ec_word_misc DOWN
- ec_word_feelings DOWNCAST
- ec_word_status DRAGON
- ec_word_move_2 DRAGON_CLAW
- ec_word_move_2 DRAGON_DANCE
- ec_word_move_2 DRAGON_RAGE
- ec_word_pokemon2 DRAGONAIR
- ec_word_move_2 DRAGON_BREATH
- ec_word_pokemon2 DRAGONITE
- ec_word_pokemon2 DRATINI
- ec_word_lifestyle DREAM
- ec_word_move_2 DREAM_EATER
- ec_word_move_2 DRILL_PECK
- ec_word_feelings DRINK
- ec_word_actions DRINKS
- ec_word_status DRIZZLE
- ec_word_adjectives DROOLING
- ec_word_status DROUGHT
- ec_word_pokemon2 DROWZEE
- ec_word_people DUDE
- ec_word_pokemon2 DUGTRIO
- ec_word_pokemon2 DUNSPARCE
- ec_word_pokemon DUSCLOPS
- ec_word_pokemon DUSKULL
- ec_word_pokemon DUSTOX
- ec_word_move_2 DYNAMIC_PUNCH
+ ec_word DAILY
+ ec_word DAMP
+ ec_word DANCE
+ ec_word DANGER
+ ec_word DARK
+ ec_word DARN
+ ec_word DATE
+ ec_word DAUGHTER
+ ec_word DAY
+ ec_word DAYS
+ ec_word DAYTIME
+ ec_word DECIDE
+ ec_word DECIDED
+ ec_word DEEP
+ ec_word DEFEATED
+ ec_move2 DEFENSE_CURL
+ ec_pokemon1 DELCATTY
+ ec_pokemon2 DELIBIRD
+ ec_pokemon1 DEOXYS
+ ec_word DEPT_STORE
+ ec_word DESIGN
+ ec_word DESTINY
+ ec_move2 DESTINY_BOND
+ ec_word DESTROYED
+ ec_move2 DETECT
+ ec_pokemon2 DEWGONG
+ ec_word DID
+ ec_word DIDN_T
+ ec_word DIET
+ ec_word DIFFERENT
+ ec_move1 DIG
+ ec_word DIGITAL
+ ec_pokemon2 DIGLETT
+ ec_word DIRECT
+ ec_move1 DISABLE
+ ec_word DISAPPEAR
+ ec_word DISAPPOINT
+ ec_word DISAPPOINTED
+ ec_word DISAPPOINTS
+ ec_word DISASTER
+ ec_word DISLIKE
+ ec_word DISLIKES
+ ec_pokemon2 DITTO
+ ec_move2 DIVE
+ ec_move2 DIZZY_PUNCH
+ ec_word DO
+ ec_word DOCILE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 DODRIO
+ ec_pokemon2 DODRIO
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 DODUO
+ ec_pokemon2 DODUO
+ ec_word DOES
+ ec_word DOESN_T
+ ec_word DON_T
+ ec_word DONE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 DONPHAN
+ ec_pokemon2 DONPHAN
+ ec_move2 DOOM_DESIRE
+ ec_move2 DOUBLE_KICK
+ ec_move1 DOUBLE_TEAM
+ ec_move1 DOUBLE_EDGE
+ ec_move1 DOUBLE_SLAP
+ ec_word DOWN
+ ec_word DOWNCAST
+ ec_word DRAGON
+ ec_move2 DRAGON_CLAW
+ ec_move2 DRAGON_DANCE
+ ec_move2 DRAGON_RAGE
+ ec_pokemon2 DRAGONAIR
+ ec_move2 DRAGON_BREATH
+ ec_pokemon2 DRAGONITE
+ ec_pokemon2 DRATINI
+ ec_word DREAM
+ ec_move2 DREAM_EATER
+ ec_move2 DRILL_PECK
+ ec_word DRINK
+ ec_word DRINKS
+ ec_word DRIZZLE
+ ec_word DROOLING
+ ec_word DROUGHT
+ ec_pokemon2 DROWZEE
+ ec_word DUDE
+ ec_pokemon2 DUGTRIO
+ ec_pokemon2 DUNSPARCE
+ ec_pokemon1 DUSCLOPS
+ ec_pokemon1 DUSKULL
+ ec_pokemon1 DUSTOX
+ ec_move2 DYNAMIC_PUNCH
gEasyChatWordsByLetter_E: ; 859D3F2
- ec_word_time EARLIER
- ec_word_status EARLY_BIRD
- ec_word_move_1 EARTHQUAKE
- ec_word_battle EASY
- ec_word_feelings EAT
- ec_word_actions EATS
- ec_word_voices EEK
- ec_word_pokemon2 EEVEE
- ec_word_status EFFECT_SPORE
- ec_word_trainer EGG
- ec_word_move_2 EGG_BOMB
- ec_word_voices EH_QUES
- ec_word_voices EHEHE
- ec_word_pokemon2 EKANS
- ec_word_pokemon2 ELECTABUZZ
- ec_word_status ELECTRIC
- ec_word_pokemon ELECTRIKE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon ELECTRODE
- ec_word_pokemon2 ELECTRODE
- ec_word_pokemon2 ELEKID
- ec_word_conditions ELSE
- ec_word_move_2 EMBER
- ec_word_trainer EMERALD
- ec_word_move_1 ENCORE
- ec_word_trainer ENCYCLOPEDIA
- ec_word_time END
- ec_word_move_1 ENDEAVOR
- ec_word_move_1 ENDURE
- ec_word_feelings ENJOY
- ec_word_feelings ENJOYS
- ec_word_speech ENOUGH
- ec_word_pokemon2 ENTEI
- ec_word_conditions ENTERTAINING
- ec_word_move_2 ERUPTION
- ec_word_battle ESCAPE
- ec_word_pokemon2 ESPEON
- ec_word_speech EVEN_SO
- ec_word_lifestyle EVENT
- ec_word_events EVENTS
- ec_word_endings EVER
- ec_word_misc EVERY
- ec_word_events EVOLUTION
- ec_word_trainer EVOLVE
- ec_word_conditions EXCELLENT
- ec_word_conditions EXCESS
- ec_word_feelings EXCITE
- ec_word_adjectives EXCITING
- ec_word_greetings EXCUSE
- ec_word_greetings EXCUSE_ME
- ec_word_pokemon2 EXEGGCUTE
- ec_word_pokemon2 EXEGGUTOR
- ec_word_conditions EXISTS
- ec_word_conditions EXPENSIVE
- ec_word_move_2 EXPLOSION
- ec_word_pokemon EXPLOUD
- ec_word_move_1 EXTRASENSORY
- ec_word_move_1 EXTREME_SPEED
+ ec_word EARLIER
+ ec_word EARLY_BIRD
+ ec_move1 EARTHQUAKE
+ ec_word EASY
+ ec_word EAT
+ ec_word EATS
+ ec_word EEK
+ ec_pokemon2 EEVEE
+ ec_word EFFECT_SPORE
+ ec_word EGG
+ ec_move2 EGG_BOMB
+ ec_word EH_QUES
+ ec_word EHEHE
+ ec_pokemon2 EKANS
+ ec_pokemon2 ELECTABUZZ
+ ec_word ELECTRIC
+ ec_pokemon1 ELECTRIKE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 ELECTRODE
+ ec_pokemon2 ELECTRODE
+ ec_pokemon2 ELEKID
+ ec_word ELSE
+ ec_move2 EMBER
+ ec_word EMERALD
+ ec_move1 ENCORE
+ ec_word ENCYCLOPEDIA
+ ec_word END
+ ec_move1 ENDEAVOR
+ ec_move1 ENDURE
+ ec_word ENJOY
+ ec_word ENJOYS
+ ec_word ENOUGH
+ ec_pokemon2 ENTEI
+ ec_word ENTERTAINING
+ ec_move2 ERUPTION
+ ec_word ESCAPE
+ ec_pokemon2 ESPEON
+ ec_word EVEN_SO
+ ec_word EVENT
+ ec_word EVENTS
+ ec_word EVER
+ ec_word EVERY
+ ec_word EVOLUTION
+ ec_word EVOLVE
+ ec_word EXCELLENT
+ ec_word EXCESS
+ ec_word EXCITE
+ ec_word EXCITING
+ ec_word EXCUSE
+ ec_word EXCUSE_ME
+ ec_pokemon2 EXEGGCUTE
+ ec_pokemon2 EXEGGUTOR
+ ec_word EXISTS
+ ec_word EXPENSIVE
+ ec_move2 EXPLOSION
+ ec_pokemon1 EXPLOUD
+ ec_move1 EXTRASENSORY
+ ec_move1 EXTREME_SPEED
gEasyChatWordsByLetter_F: ; 859D468
- ec_word_conditions FABULOUS
- ec_word_move_1 FACADE
- ec_word_actions FAINT
- ec_word_move_2 FAINT_ATTACK
- ec_word_actions FAINTED
- ec_word_move_2 FAKE_OUT
- ec_word_move_1 FAKE_TEARS
- ec_word_time FALL
- ec_word_move_2 FALSE_SWIPE
- ec_word_people FAMILY
- ec_word_speech FANTASTIC
- ec_word_misc FAR
- ec_word_pokemon2 FARFETCH_D
- ec_word_hobbies FASHION
- ec_word_conditions FAST
- ec_word_people FATHER
- ec_word_feelings FEAR
- ec_word_pokemon2 FEAROW
- ec_word_move_2 FEATHER_DANCE
- ec_word_pokemon FEEBAS
- ec_word_speech FEELING
- ec_word_pokemon2 FERALIGATR
- ec_word_hobbies FESTIVAL
- ec_word_trendy_saying FEVER
- ec_word_adjectives FIERY
- ec_word_battle FIGHT
- ec_word_status FIGHTING
- ec_word_battle FIGHTS
- ec_word_time FINAL
- ec_word_speech FINALLY
- ec_word_time FINISH
- ec_word_status FIRE
- ec_word_move_2 FIRE_BLAST
- ec_word_move_2 FIRE_PUNCH
- ec_word_move_2 FIRE_SPIN
- ec_word_hobbies FISHING
- ec_word_move_1 FISSURE
- ec_word_pokemon2 FLAAFFY
- ec_word_move_1 FLAIL
- ec_word_trainer FLAME
- ec_word_status FLAME_BODY
- ec_word_move_1 FLAME_WHEEL
- ec_word_move_1 FLAMETHROWER
- ec_word_pokemon2 FLAREON
- ec_word_move_2 FLASH
- ec_word_status FLASH_FIRE
- ec_word_trendy_saying FLATTEN
- ec_word_move_1 FLATTER
- ec_word_hobbies FLOWERS
- ec_word_move_1 FLY
- ec_word_pokemon FLYGON
- ec_word_status FLYING
- ec_word_move_1 FOCUS_ENERGY
- ec_word_move_1 FOCUS_PUNCH
- ec_word_battle FOE
- ec_word_move_1 FOLLOW_ME
- ec_word_endings FOR
- ec_word_speech FOR_NOW
- ec_word_status FORECAST
- ec_word_move_2 FORESIGHT
- ec_word_time FOREVER
- ec_word_actions FORGET
- ec_word_actions FORGETS
- ec_word_greetings FORGIVE
- ec_word_pokemon2 FORRETRESS
- ec_word_move_2 FRENZY_PLANT
- ec_word_time FRIDAY
- ec_word_people FRIEND
- ec_word_speech FROM
- ec_word_misc FRONT
- ec_word_events FRONTIER
- ec_word_move_2 FRUSTRATION
- ec_word_voices FUFUFU
- ec_word_conditions FULL
- ec_word_feelings FUNNY
- ec_word_pokemon2 FURRET
- ec_word_move_2 FURY_ATTACK
- ec_word_move_2 FURY_CUTTER
- ec_word_move_2 FURY_SWIPES
- ec_word_move_2 FUTURE_SIGHT
+ ec_word FABULOUS
+ ec_move1 FACADE
+ ec_word FAINT
+ ec_move2 FAINT_ATTACK
+ ec_word FAINTED
+ ec_move2 FAKE_OUT
+ ec_move1 FAKE_TEARS
+ ec_word FALL
+ ec_move2 FALSE_SWIPE
+ ec_word FAMILY
+ ec_word FANTASTIC
+ ec_word FAR
+ ec_pokemon2 FARFETCH_D
+ ec_word FASHION
+ ec_word FAST
+ ec_word FATHER
+ ec_word FEAR
+ ec_pokemon2 FEAROW
+ ec_move2 FEATHER_DANCE
+ ec_pokemon1 FEEBAS
+ ec_word FEELING
+ ec_pokemon2 FERALIGATR
+ ec_word FESTIVAL
+ ec_word FEVER
+ ec_word FIERY
+ ec_word FIGHT
+ ec_word FIGHTING
+ ec_word FIGHTS
+ ec_word FINAL
+ ec_word FINALLY
+ ec_word FINISH
+ ec_word FIRE
+ ec_move2 FIRE_BLAST
+ ec_move2 FIRE_PUNCH
+ ec_move2 FIRE_SPIN
+ ec_word FISHING
+ ec_move1 FISSURE
+ ec_pokemon2 FLAAFFY
+ ec_move1 FLAIL
+ ec_word FLAME
+ ec_word FLAME_BODY
+ ec_move1 FLAME_WHEEL
+ ec_move1 FLAMETHROWER
+ ec_pokemon2 FLAREON
+ ec_move2 FLASH
+ ec_word FLASH_FIRE
+ ec_word FLATTEN
+ ec_move1 FLATTER
+ ec_word FLOWERS
+ ec_move1 FLY
+ ec_pokemon1 FLYGON
+ ec_word FLYING
+ ec_move1 FOCUS_ENERGY
+ ec_move1 FOCUS_PUNCH
+ ec_word FOE
+ ec_move1 FOLLOW_ME
+ ec_word FOR
+ ec_word FOR_NOW
+ ec_word FORECAST
+ ec_move2 FORESIGHT
+ ec_word FOREVER
+ ec_word FORGET
+ ec_word FORGETS
+ ec_word FORGIVE
+ ec_pokemon2 FORRETRESS
+ ec_move2 FRENZY_PLANT
+ ec_word FRIDAY
+ ec_word FRIEND
+ ec_word FROM
+ ec_word FRONT
+ ec_word FRONTIER
+ ec_move2 FRUSTRATION
+ ec_word FUFUFU
+ ec_word FULL
+ ec_word FUNNY
+ ec_pokemon2 FURRET
+ ec_move2 FURY_ATTACK
+ ec_move2 FURY_CUTTER
+ ec_move2 FURY_SWIPES
+ ec_move2 FUTURE_SIGHT
gEasyChatWordsByLetter_G: ; 859D508
- ec_word_hobbies GAME
- ec_word_pokemon GARDEVOIR
- ec_word_pokemon2 GASTLY
- ec_word_pokemon2 GENGAR
- ec_word_battle GENIUS
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GEODUDE
- ec_word_pokemon2 GEODUDE
- ec_word_trainer GET
- ec_word_feelings GETS
- ec_word_status GHOST
- ec_word_feelings GIDDY
- ec_word_move_1 GIGA_DRAIN
- ec_word_voices GIGGLE
- ec_word_endings GIMME
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GIRAFARIG
- ec_word_pokemon2 GIRAFARIG
- ec_word_people GIRL
- ec_word_actions GIVE
- ec_word_greetings GIVE_ME
- ec_word_battle GIVE_UP
- ec_word_actions GIVES
- ec_word_pokemon GLALIE
- ec_word_move_2 GLARE
- ec_word_pokemon2 GLIGAR
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GLOOM
- ec_word_pokemon2 GLOOM
- ec_word_battle GO
- ec_word_greetings GO_AHEAD
- ec_word_battle GO_EASY
- ec_word_feelings GO_HOME
- ec_word_feelings GOES
- ec_word_conditions GOING
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GOLBAT
- ec_word_pokemon2 GOLBAT
- ec_word_trainer GOLD
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GOLDEEN
- ec_word_pokemon2 GOLDEEN
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GOLDUCK
- ec_word_pokemon2 GOLDUCK
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GOLEM
- ec_word_pokemon2 GOLEM
- ec_word_conditions GOOD
- ec_word_greetings GOOD_BYE
- ec_word_pokemon GOREBYSS
- ec_word_feelings GOT
- ec_word_trainer GOTCHA
- ec_word_hobbies GOURMET
- ec_word_voices GRAAAH
- ec_word_pokemon2 GRANBULL
- ec_word_people GRANDFATHER
- ec_word_people GRANDMOTHER
- ec_word_status GRASS
- ec_word_move_1 GRASS_WHISTLE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GRAVELER
- ec_word_pokemon2 GRAVELER
- ec_word_feelings GREAT
- ec_word_trainer GREEN
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GRIMER
- ec_word_pokemon2 GRIMER
- ec_word_pokemon GROUDON
- ec_word_status GROUND
- ec_word_lifestyle GROUP
- ec_word_pokemon GROVYLE
- ec_word_move_2 GROWL
- ec_word_pokemon2 GROWLITHE
- ec_word_move_1 GROWTH
- ec_word_move_1 GRUDGE
- ec_word_pokemon GRUMPIG
- ec_word_battle GUARD
- ec_word_move_2 GUILLOTINE
- ec_word_pokemon GULPIN
- ec_word_move_1 GUST
- ec_word_status GUTS
- ec_word_battle GUTSY
- ec_word_voices GWAH
- ec_word_voices GWAHAHAHA
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon GYARADOS
- ec_word_pokemon2 GYARADOS
+ ec_word GAME
+ ec_pokemon1 GARDEVOIR
+ ec_pokemon2 GASTLY
+ ec_pokemon2 GENGAR
+ ec_word GENIUS
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GEODUDE
+ ec_pokemon2 GEODUDE
+ ec_word GET
+ ec_word GETS
+ ec_word GHOST
+ ec_word GIDDY
+ ec_move1 GIGA_DRAIN
+ ec_word GIGGLE
+ ec_word GIMME
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GIRAFARIG
+ ec_pokemon2 GIRAFARIG
+ ec_word GIRL
+ ec_word GIVE
+ ec_word GIVE_ME
+ ec_word GIVE_UP
+ ec_word GIVES
+ ec_pokemon1 GLALIE
+ ec_move2 GLARE
+ ec_pokemon2 GLIGAR
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GLOOM
+ ec_pokemon2 GLOOM
+ ec_word GO
+ ec_word GO_AHEAD
+ ec_word GO_EASY
+ ec_word GO_HOME
+ ec_word GOES
+ ec_word GOING
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GOLBAT
+ ec_pokemon2 GOLBAT
+ ec_word GOLD
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GOLDEEN
+ ec_pokemon2 GOLDEEN
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GOLDUCK
+ ec_pokemon2 GOLDUCK
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GOLEM
+ ec_pokemon2 GOLEM
+ ec_word GOOD
+ ec_word GOOD_BYE
+ ec_pokemon1 GOREBYSS
+ ec_word GOT
+ ec_word GOTCHA
+ ec_word GOURMET
+ ec_word GRAAAH
+ ec_pokemon2 GRANBULL
+ ec_word GRANDFATHER
+ ec_word GRANDMOTHER
+ ec_word GRASS
+ ec_move1 GRASS_WHISTLE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GRAVELER
+ ec_pokemon2 GRAVELER
+ ec_word GREAT
+ ec_word GREEN
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GRIMER
+ ec_pokemon2 GRIMER
+ ec_pokemon1 GROUDON
+ ec_word GROUND
+ ec_word GROUP
+ ec_pokemon1 GROVYLE
+ ec_move2 GROWL
+ ec_pokemon2 GROWLITHE
+ ec_move1 GROWTH
+ ec_move1 GRUDGE
+ ec_pokemon1 GRUMPIG
+ ec_word GUARD
+ ec_move2 GUILLOTINE
+ ec_pokemon1 GULPIN
+ ec_move1 GUST
+ ec_word GUTS
+ ec_word GUTSY
+ ec_word GWAH
+ ec_word GWAHAHAHA
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 GYARADOS
+ ec_pokemon2 GYARADOS
gEasyChatWordsByLetter_H: ; 859D5CC
- ec_word_lifestyle HABIT
- ec_word_voices HAH
- ec_word_voices HAHAHA
- ec_word_move_1 HAIL
- ec_word_events HALL_OF_FAME
- ec_word_trendy_saying HAPPENING
- ec_word_adjectives HAPPILY
- ec_word_feelings HAPPINESS
- ec_word_feelings HAPPY
- ec_word_feelings HARD
- ec_word_move_1 HARDEN
- ec_word_pokemon HARIYAMA
- ec_word_conditions HAS
- ec_word_trendy_saying HASSLE
- ec_word_pokemon2 HAUNTER
- ec_word_endings HAVE
- ec_word_endings HAVEN_T
- ec_word_move_1 HAZE
- ec_word_people HE
- ec_word_people HE_S
- ec_word_move_1 HEADBUTT
- ec_word_move_1 HEAL_BELL
- ec_word_conditions HEALTHY
- ec_word_feelings HEAR
- ec_word_actions HEARING
- ec_word_feelings HEARS
- ec_word_trendy_saying HEART
- ec_word_move_2 HEAT_WAVE
- ec_word_voices HEH
- ec_word_voices HEHE
- ec_word_voices HEHEHE
- ec_word_greetings HELLO
- ec_word_move_2 HELPING_HAND
- ec_word_people HER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon HERACROSS
- ec_word_pokemon2 HERACROSS
- ec_word_misc HERE
- ec_word_greetings HERE_GOES
- ec_word_greetings HERE_I_COME
- ec_word_greetings HERE_IT_IS
- ec_word_hobbies HERO
- ec_word_hobbies HEROINE
- ec_word_people HERS
- ec_word_greetings HEY
- ec_word_greetings HEY_THERE
- ec_word_greetings HEY_QUES
- ec_word_greetings HI
- ec_word_move_2 HI_JUMP_KICK
- ec_word_events HIDDEN
- ec_word_move_2 HIDDEN_POWER
- ec_word_misc HIGH
- ec_word_misc HIGHS
- ec_word_people HIM
- ec_word_trendy_saying HIP_AND
- ec_word_people HIS
- ec_word_speech HIT
- ec_word_pokemon2 HITMONCHAN
- ec_word_pokemon2 HITMONLEE
- ec_word_pokemon2 HITMONTOP
- ec_word_voices HIYAH
- ec_word_voices HMM
- ec_word_pokemon2 HO_OH
- ec_word_hobbies HOBBY
- ec_word_voices HOHOHO
- ec_word_hobbies HOLIDAY
- ec_word_lifestyle HOME
- ec_word_greetings HOO_HAH
- ec_word_pokemon2 HOOTHOOT
- ec_word_adjectives HOPELESS
- ec_word_pokemon2 HOPPIP
- ec_word_move_2 HORN_ATTACK
- ec_word_move_2 HORN_DRILL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon HORSEA
- ec_word_pokemon2 HORSEA
- ec_word_conditions HOT
- ec_word_pokemon2 HOUNDOOM
- ec_word_pokemon2 HOUNDOUR
- ec_word_speech HOW
- ec_word_greetings HOW_DO
- ec_word_speech HOWEVER
- ec_word_move_2 HOWL
- ec_word_status HUGE_POWER
- ec_word_greetings HUH_QUES
- ec_word_voices HUMPH
- ec_word_adjectives HUNGRY
- ec_word_pokemon HUNTAIL
- ec_word_feelings HURRIED
- ec_word_status HUSTLE
- ec_word_move_2 HYDRO_CANNON
- ec_word_move_2 HYDRO_PUMP
- ec_word_events HYPER
- ec_word_move_2 HYPER_BEAM
- ec_word_status HYPER_CUTTER
- ec_word_move_2 HYPER_FANG
- ec_word_move_2 HYPER_VOICE
- ec_word_pokemon2 HYPNO
- ec_word_move_1 HYPNOSIS
+ ec_word HABIT
+ ec_word HAH
+ ec_word HAHAHA
+ ec_move1 HAIL
+ ec_word HALL_OF_FAME
+ ec_word HAPPENING
+ ec_word HAPPILY
+ ec_word HAPPINESS
+ ec_word HAPPY
+ ec_word HARD
+ ec_move1 HARDEN
+ ec_pokemon1 HARIYAMA
+ ec_word HAS
+ ec_word HASSLE
+ ec_pokemon2 HAUNTER
+ ec_word HAVE
+ ec_word HAVEN_T
+ ec_move1 HAZE
+ ec_word HE
+ ec_word HE_S
+ ec_move1 HEADBUTT
+ ec_move1 HEAL_BELL
+ ec_word HEALTHY
+ ec_word HEAR
+ ec_word HEARING
+ ec_word HEARS
+ ec_word HEART
+ ec_move2 HEAT_WAVE
+ ec_word HEH
+ ec_word HEHE
+ ec_word HEHEHE
+ ec_word HELLO
+ ec_move2 HELPING_HAND
+ ec_word HER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 HERACROSS
+ ec_pokemon2 HERACROSS
+ ec_word HERE
+ ec_word HERE_GOES
+ ec_word HERE_I_COME
+ ec_word HERE_IT_IS
+ ec_word HERO
+ ec_word HEROINE
+ ec_word HERS
+ ec_word HEY
+ ec_word HEY_THERE
+ ec_word HEY_QUES
+ ec_word HI
+ ec_move2 HI_JUMP_KICK
+ ec_word HIDDEN
+ ec_move2 HIDDEN_POWER
+ ec_word HIGH
+ ec_word HIGHS
+ ec_word HIM
+ ec_word HIP_AND
+ ec_word HIS
+ ec_word HIT
+ ec_pokemon2 HITMONCHAN
+ ec_pokemon2 HITMONLEE
+ ec_pokemon2 HITMONTOP
+ ec_word HIYAH
+ ec_word HMM
+ ec_pokemon2 HO_OH
+ ec_word HOBBY
+ ec_word HOHOHO
+ ec_word HOLIDAY
+ ec_word HOME
+ ec_word HOO_HAH
+ ec_pokemon2 HOOTHOOT
+ ec_word HOPELESS
+ ec_pokemon2 HOPPIP
+ ec_move2 HORN_ATTACK
+ ec_move2 HORN_DRILL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 HORSEA
+ ec_pokemon2 HORSEA
+ ec_word HOT
+ ec_pokemon2 HOUNDOOM
+ ec_pokemon2 HOUNDOUR
+ ec_word HOW
+ ec_word HOW_DO
+ ec_word HOWEVER
+ ec_move2 HOWL
+ ec_word HUGE_POWER
+ ec_word HUH_QUES
+ ec_word HUMPH
+ ec_word HUNGRY
+ ec_pokemon1 HUNTAIL
+ ec_word HURRIED
+ ec_word HUSTLE
+ ec_move2 HYDRO_CANNON
+ ec_move2 HYDRO_PUMP
+ ec_word HYPER
+ ec_move2 HYPER_BEAM
+ ec_word HYPER_CUTTER
+ ec_move2 HYPER_FANG
+ ec_move2 HYPER_VOICE
+ ec_pokemon2 HYPNO
+ ec_move1 HYPNOSIS
gEasyChatWordsByLetter_I: ; 859D696
- ec_word_people I
- ec_word_people I_AM
- ec_word_trainer I_CHOOSE_YOU
- ec_word_people I_WAS
- ec_word_people I_VE
- ec_word_greetings I_VE_ARRIVED
- ec_word_status ICE
- ec_word_move_1 ICE_BALL
- ec_word_move_2 ICE_BEAM
- ec_word_move_2 ICE_PUNCH
- ec_word_move_2 ICICLE_SPEAR
- ec_word_move_1 ICY_WIND
- ec_word_hobbies IDOL
- ec_word_speech IF
- ec_word_battle IF_I_LOSE
- ec_word_battle IF_I_WIN
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon IGGLYBUFF
- ec_word_pokemon2 IGGLYBUFF
- ec_word_actions IGNORANT
- ec_word_status ILLUMINATE
- ec_word_pokemon ILLUMISE
- ec_word_status IMMUNITY
- ec_word_feelings IMPORTANT
- ec_word_conditions IMPOSSIBLE
- ec_word_move_2 IMPRISON
- ec_word_endings IN
- ec_word_adjectives INCREASING
- ec_word_feelings INCREDIBLE
- ec_word_lifestyle INFORMATION
- ec_word_move_2 INGRAIN
- ec_word_status INNER_FOCUS
- ec_word_misc INSIDE
- ec_word_status INSOMNIA
- ec_word_speech INSTEAD
- ec_word_status INTIMIDATE
- ec_word_battle INVINCIBLE
- ec_word_move_2 IRON_DEFENSE
- ec_word_move_1 IRON_TAIL
- ec_word_endings IS
- ec_word_endings IS_IT_QUES
- ec_word_endings ISN_T
- ec_word_endings ISN_T_IT_QUES
- ec_word_endings IT
- ec_word_people IT_S
- ec_word_lifestyle ITEM
- ec_word_pokemon2 IVYSAUR
+ ec_word I
+ ec_word I_AM
+ ec_word I_CHOOSE_YOU
+ ec_word I_WAS
+ ec_word I_VE
+ ec_word I_VE_ARRIVED
+ ec_word ICE
+ ec_move1 ICE_BALL
+ ec_move2 ICE_BEAM
+ ec_move2 ICE_PUNCH
+ ec_move2 ICICLE_SPEAR
+ ec_move1 ICY_WIND
+ ec_word IDOL
+ ec_word IF
+ ec_word IF_I_LOSE
+ ec_word IF_I_WIN
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 IGGLYBUFF
+ ec_pokemon2 IGGLYBUFF
+ ec_word IGNORANT
+ ec_word ILLUMINATE
+ ec_pokemon1 ILLUMISE
+ ec_word IMMUNITY
+ ec_word IMPORTANT
+ ec_word IMPOSSIBLE
+ ec_move2 IMPRISON
+ ec_word IN
+ ec_word INCREASING
+ ec_word INCREDIBLE
+ ec_word INFORMATION
+ ec_move2 INGRAIN
+ ec_word INNER_FOCUS
+ ec_word INSIDE
+ ec_word INSOMNIA
+ ec_word INSTEAD
+ ec_word INTIMIDATE
+ ec_word INVINCIBLE
+ ec_move2 IRON_DEFENSE
+ ec_move1 IRON_TAIL
+ ec_word IS
+ ec_word IS_IT_QUES
+ ec_word ISN_T
+ ec_word ISN_T_IT_QUES
+ ec_word IT
+ ec_word IT_S
+ ec_word ITEM
+ ec_pokemon2 IVYSAUR
gEasyChatWordsByLetter_J: ; 859D6F6
.2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon JIGGLYPUFF
- ec_word_pokemon2 JIGGLYPUFF
- ec_word_pokemon JIRACHI
- ec_word_speech JOKING
- ec_word_pokemon2 JOLTEON
- ec_word_feelings JOY
- ec_word_events JUDGE
- ec_word_move_2 JUMP_KICK
- ec_word_pokemon2 JUMPLUFF
- ec_word_speech JUST
- ec_word_pokemon2 JYNX
+ ec_pokemon1 JIGGLYPUFF
+ ec_pokemon2 JIGGLYPUFF
+ ec_pokemon1 JIRACHI
+ ec_word JOKING
+ ec_pokemon2 JOLTEON
+ ec_word JOY
+ ec_word JUDGE
+ ec_move2 JUMP_KICK
+ ec_pokemon2 JUMPLUFF
+ ec_word JUST
+ ec_pokemon2 JYNX
gEasyChatWordsByLetter_K: ; 859D710
- ec_word_pokemon2 KABUTO
- ec_word_pokemon2 KABUTOPS
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon KADABRA
- ec_word_pokemon2 KADABRA
- ec_word_pokemon2 KAKUNA
- ec_word_pokemon2 KANGASKHAN
- ec_word_move_1 KARATE_CHOP
- ec_word_pokemon KECLEON
- ec_word_status KEEN_EYE
- ec_word_people KID
- ec_word_trendy_saying KIDDING
- ec_word_conditions KIND
- ec_word_lifestyle KINDERGARTEN
- ec_word_move_1 KINESIS
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon KINGDRA
- ec_word_pokemon2 KINGDRA
- ec_word_pokemon2 KINGLER
- ec_word_pokemon KIRLIA
- ec_word_move_2 KNOCK_OFF
- ec_word_trendy_saying KNOCKOUT
- ec_word_actions KNOW
- ec_word_actions KNOWS
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon KOFFING
- ec_word_pokemon2 KOFFING
- ec_word_pokemon2 KRABBY
- ec_word_trendy_saying KTHX_BYE
- ec_word_pokemon KYOGRE
+ ec_pokemon2 KABUTO
+ ec_pokemon2 KABUTOPS
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 KADABRA
+ ec_pokemon2 KADABRA
+ ec_pokemon2 KAKUNA
+ ec_pokemon2 KANGASKHAN
+ ec_move1 KARATE_CHOP
+ ec_pokemon1 KECLEON
+ ec_word KEEN_EYE
+ ec_word KID
+ ec_word KIDDING
+ ec_word KIND
+ ec_word KINDERGARTEN
+ ec_move1 KINESIS
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 KINGDRA
+ ec_pokemon2 KINGDRA
+ ec_pokemon2 KINGLER
+ ec_pokemon1 KIRLIA
+ ec_move2 KNOCK_OFF
+ ec_word KNOCKOUT
+ ec_word KNOW
+ ec_word KNOWS
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 KOFFING
+ ec_pokemon2 KOFFING
+ ec_pokemon2 KRABBY
+ ec_word KTHX_BYE
+ ec_pokemon1 KYOGRE
gEasyChatWordsByLetter_L: ; 859D752
- ec_word_feelings LACKING
- ec_word_conditions LACKS
- ec_word_people LADY
- ec_word_pokemon LAIRON
- ec_word_voices LALALA
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon LANTURN
- ec_word_pokemon2 LANTURN
- ec_word_pokemon2 LAPRAS
- ec_word_pokemon2 LARVITAR
- ec_word_time LAST
- ec_word_conditions LATE
- ec_word_time LATER
- ec_word_pokemon LATIAS
- ec_word_pokemon LATIOS
- ec_word_actions LAVISH
- ec_word_speech LAY
- ec_word_battle LEADER
- ec_word_events LEADERS
- ec_word_trainer LEAF
- ec_word_move_2 LEAF_BLADE
- ec_word_actions LEARN
- ec_word_pokemon2 LEDIAN
- ec_word_pokemon2 LEDYBA
- ec_word_move_1 LEECH_LIFE
- ec_word_move_2 LEECH_SEED
- ec_word_move_2 LEER
- ec_word_misc LEFT
- ec_word_battle LEGEND
- ec_word_conditions LESS
- ec_word_lifestyle LESSONS
- ec_word_battle LET_ME_WIN
- ec_word_endings LET_S
- ec_word_lifestyle LETTER
- ec_word_trainer LEVEL
- ec_word_status LEVITATE
- ec_word_move_1 LICK
- ec_word_pokemon2 LICKITUNG
- ec_word_speech LIE
- ec_word_lifestyle LIFE
- ec_word_move_2 LIGHT_SCREEN
- ec_word_status LIGHTNINGROD
- ec_word_endings LIKE
- ec_word_endings LIKELY_TO
- ec_word_feelings LIKES
- ec_word_pokemon LILEEP
- ec_word_status LIMBER
- ec_word_trainer LINK
- ec_word_pokemon LINOONE
- ec_word_status LIQUID_OOZE
- ec_word_speech LISTEN
- ec_word_greetings LISTENING
- ec_word_actions LISTENS
- ec_word_lifestyle LIVING
- ec_word_move_2 LOCK_ON
- ec_word_hobbies LOCOMOTIVE
- ec_word_voices LOL
- ec_word_adjectives LOLLING
- ec_word_pokemon LOMBRE
- ec_word_feelings LONESOME
- ec_word_hobbies LOOK
- ec_word_actions LOOKS
- ec_word_battle LOSE
- ec_word_trendy_saying LOSER
- ec_word_trendy_saying LOSING
- ec_word_battle LOSS
- ec_word_battle LOST
- ec_word_pokemon LOTAD
- ec_word_pokemon LOUDRED
- ec_word_conditions LOUSY
- ec_word_move_1 LOVELY_KISS
- ec_word_adjectives LOVEY_DOVEY
- ec_word_conditions LOW
- ec_word_move_1 LOW_KICK
- ec_word_misc LOWS
- ec_word_pokemon LUDICOLO
- ec_word_pokemon2 LUGIA
- ec_word_conditions LUKEWARM
- ec_word_pokemon LUNATONE
- ec_word_move_2 LUSTER_PURGE
- ec_word_pokemon LUVDISC
+ ec_word LACKING
+ ec_word LACKS
+ ec_word LADY
+ ec_pokemon1 LAIRON
+ ec_word LALALA
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 LANTURN
+ ec_pokemon2 LANTURN
+ ec_pokemon2 LAPRAS
+ ec_pokemon2 LARVITAR
+ ec_word LAST
+ ec_word LATE
+ ec_word LATER
+ ec_pokemon1 LATIAS
+ ec_pokemon1 LATIOS
+ ec_word LAVISH
+ ec_word LAY
+ ec_word LEADER
+ ec_word LEADERS
+ ec_word LEAF
+ ec_move2 LEAF_BLADE
+ ec_word LEARN
+ ec_pokemon2 LEDIAN
+ ec_pokemon2 LEDYBA
+ ec_move1 LEECH_LIFE
+ ec_move2 LEECH_SEED
+ ec_move2 LEER
+ ec_word LEFT
+ ec_word LEGEND
+ ec_word LESS
+ ec_word LESSONS
+ ec_word LET_ME_WIN
+ ec_word LET_S
+ ec_word LETTER
+ ec_word LEVEL
+ ec_word LEVITATE
+ ec_move1 LICK
+ ec_pokemon2 LICKITUNG
+ ec_word LIE
+ ec_word LIFE
+ ec_move2 LIGHT_SCREEN
+ ec_word LIGHTNINGROD
+ ec_word LIKE
+ ec_word LIKELY_TO
+ ec_word LIKES
+ ec_pokemon1 LILEEP
+ ec_word LIMBER
+ ec_word LINK
+ ec_pokemon1 LINOONE
+ ec_word LIQUID_OOZE
+ ec_word LISTEN
+ ec_word LISTENING
+ ec_word LISTENS
+ ec_word LIVING
+ ec_move2 LOCK_ON
+ ec_word LOCOMOTIVE
+ ec_word LOL
+ ec_word LOLLING
+ ec_pokemon1 LOMBRE
+ ec_word LONESOME
+ ec_word LOOK
+ ec_word LOOKS
+ ec_word LOSE
+ ec_word LOSER
+ ec_word LOSING
+ ec_word LOSS
+ ec_word LOST
+ ec_pokemon1 LOTAD
+ ec_pokemon1 LOUDRED
+ ec_word LOUSY
+ ec_move1 LOVELY_KISS
+ ec_word LOVEY_DOVEY
+ ec_word LOW
+ ec_move1 LOW_KICK
+ ec_word LOWS
+ ec_pokemon1 LUDICOLO
+ ec_pokemon2 LUGIA
+ ec_word LUKEWARM
+ ec_pokemon1 LUNATONE
+ ec_move2 LUSTER_PURGE
+ ec_pokemon1 LUVDISC
gEasyChatWordsByLetter_M: ; 859D7F6
- ec_word_move_2 MACH_PUNCH
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MACHAMP
- ec_word_pokemon2 MACHAMP
- ec_word_lifestyle MACHINE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MACHOKE
- ec_word_pokemon2 MACHOKE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MACHOP
- ec_word_pokemon2 MACHOP
- ec_word_hobbies MAGAZINE
- ec_word_pokemon2 MAGBY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MAGCARGO
- ec_word_pokemon2 MAGCARGO
- ec_word_move_2 MAGIC_COAT
- ec_word_move_2 MAGICAL_LEAF
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MAGIKARP
- ec_word_pokemon2 MAGIKARP
- ec_word_status MAGMA_ARMOR
- ec_word_pokemon2 MAGMAR
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MAGNEMITE
- ec_word_pokemon2 MAGNEMITE
- ec_word_status MAGNET_PULL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MAGNETON
- ec_word_pokemon2 MAGNETON
- ec_word_move_2 MAGNITUDE
- ec_word_lifestyle MAIL
- ec_word_actions MAKE
- ec_word_hobbies MAKING
- ec_word_pokemon MAKUHITA
- ec_word_people MAN
- ec_word_pokemon MANECTRIC
- ec_word_pokemon2 MANKEY
- ec_word_pokemon2 MANTINE
- ec_word_pokemon2 MAREEP
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MARILL
- ec_word_pokemon2 MARILL
- ec_word_pokemon2 MAROWAK
- ec_word_pokemon MARSHTOMP
- ec_word_status MARVEL_SCALE
- ec_word_pokemon MASQUERAIN
- ec_word_events MASTER
- ec_word_battle MATCH
- ec_word_battle MATCH_UP
- ec_word_pokemon MAWILE
- ec_word_endings MAYBE
- ec_word_events MC
- ec_word_people ME
- ec_word_speech MEAN
- ec_word_move_1 MEAN_LOOK
- ec_word_pokemon MEDICHAM
- ec_word_move_2 MEDITATE
- ec_word_pokemon MEDITITE
- ec_word_feelings MEET
- ec_word_greetings MEET_YOU
- ec_word_actions MEETS
- ec_word_trendy_saying MEGA
- ec_word_move_2 MEGA_DRAIN
- ec_word_move_2 MEGA_KICK
- ec_word_move_2 MEGA_PUNCH
- ec_word_move_2 MEGAHORN
- ec_word_pokemon2 MEGANIUM
- ec_word_move_1 MEMENTO
- ec_word_pokemon2 MEOWTH
- ec_word_lifestyle MESSAGE
- ec_word_pokemon METAGROSS
- ec_word_move_2 METAL_CLAW
- ec_word_move_1 METAL_SOUND
- ec_word_pokemon METANG
- ec_word_pokemon2 METAPOD
- ec_word_move_1 METEOR_MASH
- ec_word_move_2 METRONOME
- ec_word_pokemon2 MEW
- ec_word_pokemon2 MEWTWO
- ec_word_pokemon MIGHTYENA
- ec_word_move_2 MILK_DRINK
- ec_word_pokemon MILOTIC
- ec_word_pokemon2 MILTANK
- ec_word_move_2 MIMIC
- ec_word_move_1 MIND_READER
- ec_word_move_2 MINIMIZE
- ec_word_pokemon MINUN
- ec_word_status MINUS
- ec_word_move_2 MIRROR_COAT
- ec_word_move_1 MIRROR_MOVE
- ec_word_pokemon2 MISDREAVUS
- ec_word_feelings MISHEARD
- ec_word_speech MISS
- ec_word_move_1 MIST
- ec_word_move_2 MIST_BALL
- ec_word_conditions MISTAKE
- ec_word_voices MMM
- ec_word_speech MODE
- ec_word_trendy_saying MODERN
- ec_word_pokemon2 MOLTRES
- ec_word_conditions MOMENTUM
- ec_word_time MONDAY
- ec_word_lifestyle MONEY
- ec_word_time MONTH
- ec_word_speech MOOD
- ec_word_move_2 MOONLIGHT
- ec_word_speech MORE
- ec_word_time MORNING
- ec_word_move_1 MORNING_SUN
- ec_word_people MOTHER
- ec_word_battle MOVE
- ec_word_hobbies MOVIE
- ec_word_people MR
- ec_word_pokemon2 MR_MIME
- ec_word_people MRS
- ec_word_conditions MUCH
- ec_word_trendy_saying MUCH_OBLIGED
- ec_word_move_2 MUD_SHOT
- ec_word_move_2 MUD_SPORT
- ec_word_move_2 MUD_SLAP
- ec_word_move_2 MUDDY_WATER
- ec_word_pokemon MUDKIP
- ec_word_voices MUFUFU
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon MUK
- ec_word_pokemon2 MUK
- ec_word_pokemon2 MURKROW
- ec_word_hobbies MUSIC
- ec_word_speech MUST_BE
- ec_word_people MY
- ec_word_people MYSELF
- ec_word_conditions MYSTERY
+ ec_move2 MACH_PUNCH
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MACHAMP
+ ec_pokemon2 MACHAMP
+ ec_word MACHINE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MACHOKE
+ ec_pokemon2 MACHOKE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MACHOP
+ ec_pokemon2 MACHOP
+ ec_word MAGAZINE
+ ec_pokemon2 MAGBY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MAGCARGO
+ ec_pokemon2 MAGCARGO
+ ec_move2 MAGIC_COAT
+ ec_move2 MAGICAL_LEAF
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MAGIKARP
+ ec_pokemon2 MAGIKARP
+ ec_word MAGMA_ARMOR
+ ec_pokemon2 MAGMAR
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MAGNEMITE
+ ec_pokemon2 MAGNEMITE
+ ec_word MAGNET_PULL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MAGNETON
+ ec_pokemon2 MAGNETON
+ ec_move2 MAGNITUDE
+ ec_word MAIL
+ ec_word MAKE
+ ec_word MAKING
+ ec_pokemon1 MAKUHITA
+ ec_word MAN
+ ec_pokemon1 MANECTRIC
+ ec_pokemon2 MANKEY
+ ec_pokemon2 MANTINE
+ ec_pokemon2 MAREEP
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MARILL
+ ec_pokemon2 MARILL
+ ec_pokemon2 MAROWAK
+ ec_pokemon1 MARSHTOMP
+ ec_word MARVEL_SCALE
+ ec_pokemon1 MASQUERAIN
+ ec_word MASTER
+ ec_word MATCH
+ ec_word MATCH_UP
+ ec_pokemon1 MAWILE
+ ec_word MAYBE
+ ec_word MC
+ ec_word ME
+ ec_word MEAN
+ ec_move1 MEAN_LOOK
+ ec_pokemon1 MEDICHAM
+ ec_move2 MEDITATE
+ ec_pokemon1 MEDITITE
+ ec_word MEET
+ ec_word MEET_YOU
+ ec_word MEETS
+ ec_word MEGA
+ ec_move2 MEGA_DRAIN
+ ec_move2 MEGA_KICK
+ ec_move2 MEGA_PUNCH
+ ec_move2 MEGAHORN
+ ec_pokemon2 MEGANIUM
+ ec_move1 MEMENTO
+ ec_pokemon2 MEOWTH
+ ec_word MESSAGE
+ ec_pokemon1 METAGROSS
+ ec_move2 METAL_CLAW
+ ec_move1 METAL_SOUND
+ ec_pokemon1 METANG
+ ec_pokemon2 METAPOD
+ ec_move1 METEOR_MASH
+ ec_move2 METRONOME
+ ec_pokemon2 MEW
+ ec_pokemon2 MEWTWO
+ ec_pokemon1 MIGHTYENA
+ ec_move2 MILK_DRINK
+ ec_pokemon1 MILOTIC
+ ec_pokemon2 MILTANK
+ ec_move2 MIMIC
+ ec_move1 MIND_READER
+ ec_move2 MINIMIZE
+ ec_pokemon1 MINUN
+ ec_word MINUS
+ ec_move2 MIRROR_COAT
+ ec_move1 MIRROR_MOVE
+ ec_pokemon2 MISDREAVUS
+ ec_word MISHEARD
+ ec_word MISS
+ ec_move1 MIST
+ ec_move2 MIST_BALL
+ ec_word MISTAKE
+ ec_word MMM
+ ec_word MODE
+ ec_word MODERN
+ ec_pokemon2 MOLTRES
+ ec_word MOMENTUM
+ ec_word MONDAY
+ ec_word MONEY
+ ec_word MONTH
+ ec_word MOOD
+ ec_move2 MOONLIGHT
+ ec_word MORE
+ ec_word MORNING
+ ec_move1 MORNING_SUN
+ ec_word MOTHER
+ ec_word MOVE
+ ec_word MOVIE
+ ec_word MR
+ ec_pokemon2 MR_MIME
+ ec_word MRS
+ ec_word MUCH
+ ec_word MUCH_OBLIGED
+ ec_move2 MUD_SHOT
+ ec_move2 MUD_SPORT
+ ec_move2 MUD_SLAP
+ ec_move2 MUDDY_WATER
+ ec_pokemon1 MUDKIP
+ ec_word MUFUFU
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 MUK
+ ec_pokemon2 MUK
+ ec_pokemon2 MURKROW
+ ec_word MUSIC
+ ec_word MUST_BE
+ ec_word MY
+ ec_word MYSELF
+ ec_word MYSTERY
gEasyChatWordsByLetter_N: ; 859D912
- ec_word_lifestyle NAME
- ec_word_hobbies NAP
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon NATU
- ec_word_pokemon2 NATU
- ec_word_conditions NATURAL
- ec_word_status NATURAL_CURE
- ec_word_speech NATURALLY
- ec_word_trainer NATURE
- ec_word_move_1 NATURE_POWER
- ec_word_misc NEAR
- ec_word_time NEARLY
- ec_word_conditions NEED
- ec_word_move_2 NEEDLE_ARM
- ec_word_feelings NEGATIVE
- ec_word_feelings NEVER
- ec_word_trendy_saying NEW
- ec_word_lifestyle NEWS
- ec_word_time NEXT
- ec_word_feelings NICE
- ec_word_pokemon2 NIDOKING
- ec_word_pokemon2 NIDOQUEEN
- ec_word_pokemon2 NIDORAN_F
- ec_word_pokemon2 NIDORAN_M
- ec_word_pokemon2 NIDORINA
- ec_word_pokemon2 NIDORINO
- ec_word_time NIGHT
- ec_word_move_2 NIGHT_SHADE
- ec_word_move_1 NIGHTMARE
- ec_word_time NIGHTTIME
- ec_word_pokemon NINCADA
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon NINETALES
- ec_word_pokemon2 NINETALES
- ec_word_pokemon NINJASK
- ec_word_speech NITWIT
- ec_word_greetings NO
- ec_word_battle NO_MATCH
- ec_word_battle NO_1
- ec_word_pokemon2 NOCTOWL
- ec_word_conditions NOISY
- ec_word_conditions NON_STOP
- ec_word_conditions NONE
- ec_word_voices NOPE
- ec_word_status NORMAL
- ec_word_pokemon NOSEPASS
- ec_word_endings NOT
- ec_word_speech NOT_VERY
- ec_word_conditions NOTHING
- ec_word_time NOW
- ec_word_pokemon NUMEL
- ec_word_pokemon NUZLEAF
+ ec_word NAME
+ ec_word NAP
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 NATU
+ ec_pokemon2 NATU
+ ec_word NATURAL
+ ec_word NATURAL_CURE
+ ec_word NATURALLY
+ ec_word NATURE
+ ec_move1 NATURE_POWER
+ ec_word NEAR
+ ec_word NEARLY
+ ec_word NEED
+ ec_move2 NEEDLE_ARM
+ ec_word NEGATIVE
+ ec_word NEVER
+ ec_word NEW
+ ec_word NEWS
+ ec_word NEXT
+ ec_word NICE
+ ec_pokemon2 NIDOKING
+ ec_pokemon2 NIDOQUEEN
+ ec_pokemon2 NIDORAN_F
+ ec_pokemon2 NIDORAN_M
+ ec_pokemon2 NIDORINA
+ ec_pokemon2 NIDORINO
+ ec_word NIGHT
+ ec_move2 NIGHT_SHADE
+ ec_move1 NIGHTMARE
+ ec_word NIGHTTIME
+ ec_pokemon1 NINCADA
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 NINETALES
+ ec_pokemon2 NINETALES
+ ec_pokemon1 NINJASK
+ ec_word NITWIT
+ ec_word NO
+ ec_word NO_MATCH
+ ec_word NO_1
+ ec_pokemon2 NOCTOWL
+ ec_word NOISY
+ ec_word NON_STOP
+ ec_word NONE
+ ec_word NOPE
+ ec_word NORMAL
+ ec_pokemon1 NOSEPASS
+ ec_word NOT
+ ec_word NOT_VERY
+ ec_word NOTHING
+ ec_word NOW
+ ec_pokemon1 NUMEL
+ ec_pokemon1 NUZLEAF
gEasyChatWordsByLetter_O: ; 859D97E
- ec_word_status OBLIVIOUS
- ec_word_move_1 OCTAZOOKA
- ec_word_pokemon2 OCTILLERY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon ODDISH
- ec_word_pokemon2 ODDISH
- ec_word_move_1 ODOR_SLEUTH
- ec_word_endings OF
- ec_word_endings OFF
- ec_word_battle OFFENSIVE
- ec_word_voices OH
- ec_word_voices OH_DEAR
- ec_word_voices OH_YEAH
- ec_word_voices OH_KAY
- ec_word_voices OH_QUES
- ec_word_greetings OI
- ec_word_voices OI_OI_OI
- ec_word_endings OK_QUES
- ec_word_voices OKAY
- ec_word_trendy_saying OLD
- ec_word_time OLDEN
- ec_word_pokemon2 OMANYTE
- ec_word_pokemon2 OMASTAR
- ec_word_endings ON
- ec_word_endings ONCE
- ec_word_pokemon2 ONIX
- ec_word_speech ONLY
- ec_word_voices OOPS
- ec_word_people OPPONENT
- ec_word_misc OPPOSITE
- ec_word_endings OR
- ec_word_endings OTHER
- ec_word_people OUR
- ec_word_endings OUT
- ec_word_move_1 OUTRAGE
- ec_word_misc OUTSIDE
- ec_word_endings OVER
- ec_word_actions OVERDO
- ec_word_status OVERGROW
- ec_word_move_1 OVERHEAT
- ec_word_conditions OVERWHELMING
- ec_word_actions OWN
- ec_word_status OWN_TEMPO
+ ec_word OBLIVIOUS
+ ec_move1 OCTAZOOKA
+ ec_pokemon2 OCTILLERY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 ODDISH
+ ec_pokemon2 ODDISH
+ ec_move1 ODOR_SLEUTH
+ ec_word OF
+ ec_word OFF
+ ec_word OFFENSIVE
+ ec_word OH
+ ec_word OH_DEAR
+ ec_word OH_YEAH
+ ec_word OH_KAY
+ ec_word OH_QUES
+ ec_word OI
+ ec_word OI_OI_OI
+ ec_word OK_QUES
+ ec_word OKAY
+ ec_word OLD
+ ec_word OLDEN
+ ec_pokemon2 OMANYTE
+ ec_pokemon2 OMASTAR
+ ec_word ON
+ ec_word ONCE
+ ec_pokemon2 ONIX
+ ec_word ONLY
+ ec_word OOPS
+ ec_word OPPONENT
+ ec_word OPPOSITE
+ ec_word OR
+ ec_word OTHER
+ ec_word OUR
+ ec_word OUT
+ ec_move1 OUTRAGE
+ ec_word OUTSIDE
+ ec_word OVER
+ ec_word OVERDO
+ ec_word OVERGROW
+ ec_move1 OVERHEAT
+ ec_word OVERWHELMING
+ ec_word OWN
+ ec_word OWN_TEMPO
gEasyChatWordsByLetter_P: ; 859D9D6
- ec_word_move_1 PAIN_SPLIT
- ec_word_pokemon2 PARAS
- ec_word_pokemon2 PARASECT
- ec_word_greetings PARDON
- ec_word_people PARENT
- ec_word_battle PARTNER
- ec_word_lifestyle PARTY
- ec_word_status PATTERN
- ec_word_move_2 PAY_DAY
- ec_word_hobbies PC
- ec_word_move_2 PECK
- ec_word_pokemon PELIPPER
- ec_word_speech PERFECT
- ec_word_conditions PERFECTION
- ec_word_move_2 PERISH_SONG
- ec_word_pokemon2 PERSIAN
- ec_word_people PERSON
- ec_word_move_2 PETAL_DANCE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon PHANPY
- ec_word_pokemon2 PHANPY
- ec_word_lifestyle PHONE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon PICHU
- ec_word_pokemon2 PICHU
- ec_word_status PICKUP
- ec_word_pokemon2 PIDGEOT
- ec_word_pokemon2 PIDGEOTTO
- ec_word_pokemon2 PIDGEY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon PIKACHU
- ec_word_pokemon2 PIKACHU
- ec_word_pokemon2 PILOSWINE
- ec_word_move_2 PIN_MISSILE
- ec_word_pokemon2 PINECO
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon PINSIR
- ec_word_pokemon2 PINSIR
- ec_word_status PKRS
- ec_word_people PLACE
- ec_word_hobbies PLANS
- ec_word_feelings PLAY
- ec_word_actions PLAYED
- ec_word_actions PLAYS
- ec_word_actions PLEASE
- ec_word_status PLUS
- ec_word_hobbies PLUSH_DOLL
- ec_word_pokemon PLUSLE
- ec_word_battle POINTS
- ec_word_status POISON
- ec_word_move_2 POISON_FANG
- ec_word_move_2 POISON_GAS
- ec_word_status POISON_POINT
- ec_word_move_2 POISON_STING
- ec_word_move_2 POISON_TAIL
- ec_word_move_2 POISON_POWDER
- ec_word_events POKEBLOCK
- ec_word_trainer POKEDEX
- ec_word_trainer POKEMON
- ec_word_trainer POKENAV
- ec_word_pokemon2 POLITOED
- ec_word_pokemon2 POLIWAG
- ec_word_pokemon2 POLIWHIRL
- ec_word_pokemon2 POLIWRATH
- ec_word_pokemon2 PONYTA
- ec_word_pokemon POOCHYENA
- ec_word_lifestyle POPULAR
- ec_word_pokemon2 PORYGON
- ec_word_pokemon2 PORYGON2
- ec_word_move_2 POUND
- ec_word_move_1 POWDER_SNOW
- ec_word_battle POWER
- ec_word_actions PRAISE
- ec_word_conditions PREPOSTEROUS
- ec_word_move_2 PRESENT
- ec_word_status PRESSURE
- ec_word_actions PRETEND
- ec_word_conditions PRETTY
- ec_word_pokemon2 PRIMEAPE
- ec_word_speech PROBABLY
- ec_word_lifestyle PROMISE
- ec_word_move_2 PROTECT
- ec_word_move_1 PSYBEAM
- ec_word_move_1 PSYCH_UP
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_status PSYCHIC
- ec_word_move_1 PSYCHIC
- ec_word_move_1 PSYCHO_BOOST
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon PSYDUCK
- ec_word_pokemon2 PSYDUCK
- ec_word_move_1 PSYWAVE
- ec_word_pokemon2 PUPITAR
- ec_word_status PURE_POWER
- ec_word_move_1 PURSUIT
- ec_word_battle PUSHOVER
+ ec_move1 PAIN_SPLIT
+ ec_pokemon2 PARAS
+ ec_pokemon2 PARASECT
+ ec_word PARDON
+ ec_word PARENT
+ ec_word PARTNER
+ ec_word PARTY
+ ec_word PATTERN
+ ec_move2 PAY_DAY
+ ec_word PC
+ ec_move2 PECK
+ ec_pokemon1 PELIPPER
+ ec_word PERFECT
+ ec_word PERFECTION
+ ec_move2 PERISH_SONG
+ ec_pokemon2 PERSIAN
+ ec_word PERSON
+ ec_move2 PETAL_DANCE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 PHANPY
+ ec_pokemon2 PHANPY
+ ec_word PHONE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 PICHU
+ ec_pokemon2 PICHU
+ ec_word PICKUP
+ ec_pokemon2 PIDGEOT
+ ec_pokemon2 PIDGEOTTO
+ ec_pokemon2 PIDGEY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 PIKACHU
+ ec_pokemon2 PIKACHU
+ ec_pokemon2 PILOSWINE
+ ec_move2 PIN_MISSILE
+ ec_pokemon2 PINECO
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 PINSIR
+ ec_pokemon2 PINSIR
+ ec_word PKRS
+ ec_word PLACE
+ ec_word PLANS
+ ec_word PLAY
+ ec_word PLAYED
+ ec_word PLAYS
+ ec_word PLEASE
+ ec_word PLUS
+ ec_word PLUSH_DOLL
+ ec_pokemon1 PLUSLE
+ ec_word POINTS
+ ec_word POISON
+ ec_move2 POISON_FANG
+ ec_move2 POISON_GAS
+ ec_word POISON_POINT
+ ec_move2 POISON_STING
+ ec_move2 POISON_TAIL
+ ec_move2 POISON_POWDER
+ ec_word POKEBLOCK
+ ec_word POKEDEX
+ ec_word POKEMON
+ ec_word POKENAV
+ ec_pokemon2 POLITOED
+ ec_pokemon2 POLIWAG
+ ec_pokemon2 POLIWHIRL
+ ec_pokemon2 POLIWRATH
+ ec_pokemon2 PONYTA
+ ec_pokemon1 POOCHYENA
+ ec_word POPULAR
+ ec_pokemon2 PORYGON
+ ec_pokemon2 PORYGON2
+ ec_move2 POUND
+ ec_move1 POWDER_SNOW
+ ec_word POWER
+ ec_word PRAISE
+ ec_word PREPOSTEROUS
+ ec_move2 PRESENT
+ ec_word PRESSURE
+ ec_word PRETEND
+ ec_word PRETTY
+ ec_pokemon2 PRIMEAPE
+ ec_word PROBABLY
+ ec_word PROMISE
+ ec_move2 PROTECT
+ ec_move1 PSYBEAM
+ ec_move1 PSYCH_UP
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_word PSYCHIC
+ ec_move1 PSYCHIC
+ ec_move1 PSYCHO_BOOST
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 PSYDUCK
+ ec_pokemon2 PSYDUCK
+ ec_move1 PSYWAVE
+ ec_pokemon2 PUPITAR
+ ec_word PURE_POWER
+ ec_move1 PURSUIT
+ ec_word PUSHOVER
gEasyChatWordsByLetter_Q: ; 859DAA2
- ec_word_pokemon2 QUAGSIRE
- ec_word_feelings QUESTION
- ec_word_move_2 QUICK_ATTACK
- ec_word_pokemon2 QUILAVA
- ec_word_speech QUITE
- ec_word_pokemon2 QWILFISH
+ ec_pokemon2 QUAGSIRE
+ ec_word QUESTION
+ ec_move2 QUICK_ATTACK
+ ec_pokemon2 QUILAVA
+ ec_word QUITE
+ ec_pokemon2 QWILFISH
gEasyChatWordsByLetter_R: ; 859DAAE
- ec_word_lifestyle RADIO
- ec_word_move_1 RAGE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon RAICHU
- ec_word_pokemon2 RAICHU
- ec_word_pokemon2 RAIKOU
- ec_word_move_1 RAIN_DANCE
- ec_word_status RAIN_DISH
- ec_word_pokemon RALTS
- ec_word_events RANK
- ec_word_move_1 RAPID_SPIN
- ec_word_pokemon2 RAPIDASH
- ec_word_feelings RARE
- ec_word_speech RATHER
- ec_word_pokemon2 RATICATE
- ec_word_pokemon2 RATTATA
- ec_word_pokemon RAYQUAZA
- ec_word_move_2 RAZOR_LEAF
- ec_word_move_1 RAZOR_WIND
- ec_word_speech READY
- ec_word_speech REALLY
- ec_word_misc REAR
- ec_word_battle RECEIVED
- ec_word_speech RECOMMEND
- ec_word_move_1 RECOVER
- ec_word_move_2 RECYCLE
- ec_word_trainer RED
- ec_word_move_2 REFLECT
- ec_word_move_2 REFRESH
- ec_word_conditions REFRESHING
- ec_word_actions REFUSE
- ec_word_pokemon REGICE
- ec_word_pokemon REGIROCK
- ec_word_pokemon REGISTEEL
- ec_word_battle REJECT
- ec_word_actions RELEASE
- ec_word_pokemon RELICANTH
- ec_word_pokemon2 REMORAID
- ec_word_lifestyle RENTAL
- ec_word_move_2 REST
- ec_word_battle RESUSCITATE
- ec_word_move_1 RETURN
- ec_word_move_2 REVENGE
- ec_word_move_1 REVERSAL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon RHYDON
- ec_word_pokemon2 RHYDON
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon RHYHORN
- ec_word_pokemon2 RHYHORN
- ec_word_events RIBBON
- ec_word_adjectives RICKETY
- ec_word_misc RIGHT
- ec_word_adjectives RIPPED
- ec_word_people RIVAL
- ec_word_move_2 ROAR
- ec_word_status ROCK
- ec_word_move_2 ROCK_BLAST
- ec_word_status ROCK_HEAD
- ec_word_move_1 ROCK_SLIDE
- ec_word_move_1 ROCK_SMASH
- ec_word_move_1 ROCK_THROW
- ec_word_move_1 ROCK_TOMB
- ec_word_adjectives ROCK_SOLID
- ec_word_move_2 ROLE_PLAY
- ec_word_move_2 ROLLING_KICK
- ec_word_move_1 ROLLOUT
- ec_word_feelings ROMANTIC
- ec_word_events ROOM
- ec_word_pokemon ROSELIA
- ec_word_status ROUGH_SKIN
- ec_word_hobbies RPG
- ec_word_trainer RUBY
- ec_word_battle RULE
- ec_word_actions RUN
- ec_word_status RUN_AWAY
- ec_word_actions RUNS
+ ec_word RADIO
+ ec_move1 RAGE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 RAICHU
+ ec_pokemon2 RAICHU
+ ec_pokemon2 RAIKOU
+ ec_move1 RAIN_DANCE
+ ec_word RAIN_DISH
+ ec_pokemon1 RALTS
+ ec_word RANK
+ ec_move1 RAPID_SPIN
+ ec_pokemon2 RAPIDASH
+ ec_word RARE
+ ec_word RATHER
+ ec_pokemon2 RATICATE
+ ec_pokemon2 RATTATA
+ ec_pokemon1 RAYQUAZA
+ ec_move2 RAZOR_LEAF
+ ec_move1 RAZOR_WIND
+ ec_word READY
+ ec_word REALLY
+ ec_word REAR
+ ec_word RECEIVED
+ ec_word RECOMMEND
+ ec_move1 RECOVER
+ ec_move2 RECYCLE
+ ec_word RED
+ ec_move2 REFLECT
+ ec_move2 REFRESH
+ ec_word REFRESHING
+ ec_word REFUSE
+ ec_pokemon1 REGICE
+ ec_pokemon1 REGIROCK
+ ec_pokemon1 REGISTEEL
+ ec_word REJECT
+ ec_word RELEASE
+ ec_pokemon1 RELICANTH
+ ec_pokemon2 REMORAID
+ ec_word RENTAL
+ ec_move2 REST
+ ec_word RESUSCITATE
+ ec_move1 RETURN
+ ec_move2 REVENGE
+ ec_move1 REVERSAL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 RHYDON
+ ec_pokemon2 RHYDON
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 RHYHORN
+ ec_pokemon2 RHYHORN
+ ec_word RIBBON
+ ec_word RICKETY
+ ec_word RIGHT
+ ec_word RIPPED
+ ec_word RIVAL
+ ec_move2 ROAR
+ ec_word ROCK
+ ec_move2 ROCK_BLAST
+ ec_word ROCK_HEAD
+ ec_move1 ROCK_SLIDE
+ ec_move1 ROCK_SMASH
+ ec_move1 ROCK_THROW
+ ec_move1 ROCK_TOMB
+ ec_word ROCK_SOLID
+ ec_move2 ROLE_PLAY
+ ec_move2 ROLLING_KICK
+ ec_move1 ROLLOUT
+ ec_word ROMANTIC
+ ec_word ROOM
+ ec_pokemon1 ROSELIA
+ ec_word ROUGH_SKIN
+ ec_word RPG
+ ec_word RUBY
+ ec_word RULE
+ ec_word RUN
+ ec_word RUN_AWAY
+ ec_word RUNS
gEasyChatWordsByLetter_S: ; 859DB4E
- ec_word_pokemon SABLEYE
- ec_word_move_1 SACRED_FIRE
- ec_word_feelings SAD
- ec_word_adjectives SADLY
- ec_word_move_1 SAFEGUARD
- ec_word_actions SAID
- ec_word_pokemon SALAMENCE
- ec_word_status SAND_STREAM
- ec_word_move_1 SAND_TOMB
- ec_word_status SAND_VEIL
- ec_word_move_1 SAND_ATTACK
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SANDSHREW
- ec_word_pokemon2 SANDSHREW
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SANDSLASH
- ec_word_pokemon2 SANDSLASH
- ec_word_move_1 SANDSTORM
- ec_word_trainer SAPPHIRE
- ec_word_feelings SATISFIED
- ec_word_time SATURDAY
- ec_word_actions SAYS
- ec_word_feelings SCARY
- ec_word_move_1 SCARY_FACE
- ec_word_adjectives SCATTER
- ec_word_pokemon SCEPTILE
- ec_word_lifestyle SCHOOL
- ec_word_pokemon2 SCIZOR
- ec_word_move_2 SCRATCH
- ec_word_move_1 SCREECH
- ec_word_pokemon2 SCYTHER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SEADRA
- ec_word_pokemon2 SEADRA
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SEAKING
- ec_word_pokemon2 SEAKING
- ec_word_pokemon SEALEO
- ec_word_actions SEARCH
- ec_word_conditions SECRET
- ec_word_events SECRET_BASE
- ec_word_move_2 SECRET_POWER
- ec_word_feelings SEE
- ec_word_greetings SEE_YA
- ec_word_pokemon SEEDOT
- ec_word_actions SEEK
- ec_word_pokemon2 SEEL
- ec_word_conditions SEEMS
- ec_word_actions SEES
- ec_word_move_2 SEISMIC_TOSS
- ec_word_move_1 SELF_DESTRUCT
- ec_word_battle SENSE
- ec_word_pokemon2 SENTRET
- ec_word_status SERENE_GRACE
- ec_word_battle SERIOUS
- ec_word_speech SERIOUSLY
- ec_word_lifestyle SERVICE
- ec_word_pokemon SEVIPER
- ec_word_move_1 SHADOW_BALL
- ec_word_move_1 SHADOW_PUNCH
- ec_word_status SHADOW_TAG
- ec_word_trendy_saying SHADY
- ec_word_trendy_saying SHAKE
- ec_word_adjectives SHAKY
- ec_word_misc SHALLOW
- ec_word_pokemon SHARPEDO
- ec_word_move_1 SHARPEN
- ec_word_people SHE
- ec_word_people SHE_IS
- ec_word_people SHE_WAS
- ec_word_status SHED_SKIN
- ec_word_pokemon SHEDINJA
- ec_word_move_1 SHEER_COLD
- ec_word_pokemon SHELGON
- ec_word_status SHELL_ARMOR
- ec_word_pokemon2 SHELLDER
- ec_word_status SHIELD_DUST
- ec_word_pokemon SHIFTRY
- ec_word_status SHINE
- ec_word_move_2 SHOCK_WAVE
- ec_word_voices SHOCKED
- ec_word_hobbies SHOPPING
- ec_word_feelings SHOULD
- ec_word_actions SHOW
- ec_word_adjectives SHREDDED
- ec_word_pokemon SHROOMISH
- ec_word_pokemon2 SHUCKLE
- ec_word_pokemon SHUPPET
- ec_word_people SIBLINGS
- ec_word_voices SIGH
- ec_word_move_1 SIGNAL_BEAM
- ec_word_pokemon SILCOON
- ec_word_adjectives SILKY
- ec_word_trainer SILVER
- ec_word_move_1 SILVER_WIND
- ec_word_conditions SIMPLE
- ec_word_endings SINCE
- ec_word_move_1 SING
- ec_word_actions SINK
- ec_word_people SISTER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SKARMORY
- ec_word_pokemon2 SKARMORY
- ec_word_move_1 SKETCH
- ec_word_conditions SKILL
- ec_word_move_1 SKILL_SWAP
- ec_word_conditions SKILLED
- ec_word_pokemon2 SKIPLOOM
- ec_word_pokemon SKITTY
- ec_word_move_2 SKULL_BASH
- ec_word_move_1 SKY_ATTACK
- ec_word_move_1 SKY_UPPERCUT
- ec_word_move_2 SLACK_OFF
- ec_word_pokemon SLAKING
- ec_word_pokemon SLAKOTH
- ec_word_move_2 SLAM
- ec_word_move_1 SLASH
- ec_word_actions SLEEP
- ec_word_move_2 SLEEP_POWDER
- ec_word_move_2 SLEEP_TALK
- ec_word_actions SLEPT
- ec_word_actions SLIDE
- ec_word_adjectives SLIMY
- ec_word_pokemon2 SLOWBRO
- ec_word_pokemon2 SLOWKING
- ec_word_pokemon2 SLOWPOKE
- ec_word_move_2 SLUDGE
- ec_word_move_2 SLUDGE_BOMB
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon SLUGMA
- ec_word_pokemon2 SLUGMA
- ec_word_actions SMACK
- ec_word_conditions SMALL
- ec_word_status SMART
- ec_word_status SMARTNESS
- ec_word_pokemon2 SMEARGLE
- ec_word_greetings SMELL
- ec_word_trendy_saying SMELL_YA
- ec_word_move_1 SMELLING_SALT
- ec_word_battle SMITE
- ec_word_move_1 SMOG
- ec_word_move_1 SMOKESCREEN
- ec_word_pokemon2 SMOOCHUM
- ec_word_adjectives SMOOTH
- ec_word_move_2 SNATCH
- ec_word_pokemon2 SNEASEL
- ec_word_move_1 SNORE
- ec_word_pokemon2 SNORLAX
- ec_word_voices SNORT
- ec_word_pokemon SNORUNT
- ec_word_pokemon2 SNUBBULL
- ec_word_endings SO
- ec_word_move_2 SOFT_BOILED
- ec_word_hobbies SOFTWARE
- ec_word_move_1 SOLAR_BEAM
- ec_word_pokemon SOLROCK
- ec_word_people SOME
- ec_word_speech SOMEHOW
- ec_word_people SOMEONE
- ec_word_speech SOMETHING
- ec_word_time SOMETIME
- ec_word_people SON
- ec_word_hobbies SONG
- ec_word_hobbies SONGS
- ec_word_move_1 SONIC_BOOM
- ec_word_time SOON
- ec_word_greetings SORRY
- ec_word_status SOUNDPROOF
- ec_word_trainer SP_ABILITY
- ec_word_move_1 SPARK
- ec_word_pokemon2 SPEAROW
- ec_word_hobbies SPECTATOR
- ec_word_status SPEED_BOOST
- ec_word_pokemon SPHEAL
- ec_word_move_1 SPIDER_WEB
- ec_word_move_2 SPIKE_CANNON
- ec_word_move_2 SPIKES
- ec_word_pokemon2 SPINARAK
- ec_word_pokemon SPINDA
- ec_word_adjectives SPIRALING
- ec_word_battle SPIRIT
- ec_word_move_2 SPIT_UP
- ec_word_move_1 SPITE
- ec_word_move_2 SPLASH
- ec_word_pokemon SPOINK
- ec_word_move_1 SPORE
- ec_word_hobbies SPORTS
- ec_word_time SPRING
- ec_word_pokemon2 SQUIRTLE
- ec_word_events STAGE
- ec_word_pokemon2 STANTLER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon STARMIE
- ec_word_pokemon2 STARMIE
- ec_word_time START
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon STARYU
- ec_word_pokemon2 STARYU
- ec_word_status STATIC
- ec_word_events STAY_AT_HOME
- ec_word_status STEEL
- ec_word_move_2 STEEL_WING
- ec_word_pokemon2 STEELIX
- ec_word_status STENCH
- ec_word_status STICKY_HOLD
- ec_word_move_2 STOCKPILE
- ec_word_move_2 STOMP
- ec_word_time STOP
- ec_word_lifestyle STORE
- ec_word_actions STORES
- ec_word_actions STORY
- ec_word_battle STRATEGY
- ec_word_move_1 STRENGTH
- ec_word_move_1 STRING_SHOT
- ec_word_battle STRONG
- ec_word_move_2 STRUGGLE
- ec_word_lifestyle STUDY
- ec_word_move_1 STUN_SPORE
- ec_word_status STURDY
- ec_word_move_1 SUBMISSION
- ec_word_move_2 SUBSTITUTE
- ec_word_status SUCTION_CUPS
- ec_word_pokemon2 SUDOWOODO
- ec_word_pokemon2 SUICUNE
- ec_word_time SUMMER
- ec_word_time SUNDAY
- ec_word_pokemon2 SUNFLORA
- ec_word_pokemon2 SUNKERN
- ec_word_move_2 SUNNY_DAY
- ec_word_events SUPER
- ec_word_move_1 SUPER_FANG
- ec_word_move_2 SUPERPOWER
- ec_word_move_2 SUPERSONIC
- ec_word_move_2 SURF
- ec_word_feelings SURPRISE
- ec_word_battle SURRENDER
- ec_word_pokemon SURSKIT
- ec_word_pokemon SWABLU
- ec_word_move_1 SWAGGER
- ec_word_move_2 SWALLOW
- ec_word_pokemon SWALOT
- ec_word_pokemon SWAMPERT
- ec_word_status SWARM
- ec_word_move_2 SWEET_KISS
- ec_word_move_1 SWEET_SCENT
- ec_word_hobbies SWEETS
- ec_word_pokemon SWELLOW
- ec_word_move_1 SWIFT
- ec_word_status SWIFT_SWIM
- ec_word_pokemon2 SWINUB
- ec_word_move_2 SWORDS_DANCE
- ec_word_status SYNCHRONIZE
- ec_word_move_1 SYNTHESIS
- ec_word_lifestyle SYSTEM
+ ec_pokemon1 SABLEYE
+ ec_move1 SACRED_FIRE
+ ec_word SAD
+ ec_word SADLY
+ ec_move1 SAFEGUARD
+ ec_word SAID
+ ec_pokemon1 SALAMENCE
+ ec_word SAND_STREAM
+ ec_move1 SAND_TOMB
+ ec_word SAND_VEIL
+ ec_move1 SAND_ATTACK
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SANDSHREW
+ ec_pokemon2 SANDSHREW
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SANDSLASH
+ ec_pokemon2 SANDSLASH
+ ec_move1 SANDSTORM
+ ec_word SAPPHIRE
+ ec_word SATISFIED
+ ec_word SATURDAY
+ ec_word SAYS
+ ec_word SCARY
+ ec_move1 SCARY_FACE
+ ec_word SCATTER
+ ec_pokemon1 SCEPTILE
+ ec_word SCHOOL
+ ec_pokemon2 SCIZOR
+ ec_move2 SCRATCH
+ ec_move1 SCREECH
+ ec_pokemon2 SCYTHER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SEADRA
+ ec_pokemon2 SEADRA
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SEAKING
+ ec_pokemon2 SEAKING
+ ec_pokemon1 SEALEO
+ ec_word SEARCH
+ ec_word SECRET
+ ec_word SECRET_BASE
+ ec_move2 SECRET_POWER
+ ec_word SEE
+ ec_word SEE_YA
+ ec_pokemon1 SEEDOT
+ ec_word SEEK
+ ec_pokemon2 SEEL
+ ec_word SEEMS
+ ec_word SEES
+ ec_move2 SEISMIC_TOSS
+ ec_move1 SELF_DESTRUCT
+ ec_word SENSE
+ ec_pokemon2 SENTRET
+ ec_word SERENE_GRACE
+ ec_word SERIOUS
+ ec_word SERIOUSLY
+ ec_word SERVICE
+ ec_pokemon1 SEVIPER
+ ec_move1 SHADOW_BALL
+ ec_move1 SHADOW_PUNCH
+ ec_word SHADOW_TAG
+ ec_word SHADY
+ ec_word SHAKE
+ ec_word SHAKY
+ ec_word SHALLOW
+ ec_pokemon1 SHARPEDO
+ ec_move1 SHARPEN
+ ec_word SHE
+ ec_word SHE_IS
+ ec_word SHE_WAS
+ ec_word SHED_SKIN
+ ec_pokemon1 SHEDINJA
+ ec_move1 SHEER_COLD
+ ec_pokemon1 SHELGON
+ ec_word SHELL_ARMOR
+ ec_pokemon2 SHELLDER
+ ec_word SHIELD_DUST
+ ec_pokemon1 SHIFTRY
+ ec_word SHINE
+ ec_move2 SHOCK_WAVE
+ ec_word SHOCKED
+ ec_word SHOPPING
+ ec_word SHOULD
+ ec_word SHOW
+ ec_word SHREDDED
+ ec_pokemon1 SHROOMISH
+ ec_pokemon2 SHUCKLE
+ ec_pokemon1 SHUPPET
+ ec_word SIBLINGS
+ ec_word SIGH
+ ec_move1 SIGNAL_BEAM
+ ec_pokemon1 SILCOON
+ ec_word SILKY
+ ec_word SILVER
+ ec_move1 SILVER_WIND
+ ec_word SIMPLE
+ ec_word SINCE
+ ec_move1 SING
+ ec_word SINK
+ ec_word SISTER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SKARMORY
+ ec_pokemon2 SKARMORY
+ ec_move1 SKETCH
+ ec_word SKILL
+ ec_move1 SKILL_SWAP
+ ec_word SKILLED
+ ec_pokemon2 SKIPLOOM
+ ec_pokemon1 SKITTY
+ ec_move2 SKULL_BASH
+ ec_move1 SKY_ATTACK
+ ec_move1 SKY_UPPERCUT
+ ec_move2 SLACK_OFF
+ ec_pokemon1 SLAKING
+ ec_pokemon1 SLAKOTH
+ ec_move2 SLAM
+ ec_move1 SLASH
+ ec_word SLEEP
+ ec_move2 SLEEP_POWDER
+ ec_move2 SLEEP_TALK
+ ec_word SLEPT
+ ec_word SLIDE
+ ec_word SLIMY
+ ec_pokemon2 SLOWBRO
+ ec_pokemon2 SLOWKING
+ ec_pokemon2 SLOWPOKE
+ ec_move2 SLUDGE
+ ec_move2 SLUDGE_BOMB
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 SLUGMA
+ ec_pokemon2 SLUGMA
+ ec_word SMACK
+ ec_word SMALL
+ ec_word SMART
+ ec_word SMARTNESS
+ ec_pokemon2 SMEARGLE
+ ec_word SMELL
+ ec_word SMELL_YA
+ ec_move1 SMELLING_SALT
+ ec_word SMITE
+ ec_move1 SMOG
+ ec_move1 SMOKESCREEN
+ ec_pokemon2 SMOOCHUM
+ ec_word SMOOTH
+ ec_move2 SNATCH
+ ec_pokemon2 SNEASEL
+ ec_move1 SNORE
+ ec_pokemon2 SNORLAX
+ ec_word SNORT
+ ec_pokemon1 SNORUNT
+ ec_pokemon2 SNUBBULL
+ ec_word SO
+ ec_move2 SOFT_BOILED
+ ec_word SOFTWARE
+ ec_move1 SOLAR_BEAM
+ ec_pokemon1 SOLROCK
+ ec_word SOME
+ ec_word SOMEHOW
+ ec_word SOMEONE
+ ec_word SOMETHING
+ ec_word SOMETIME
+ ec_word SON
+ ec_word SONG
+ ec_word SONGS
+ ec_move1 SONIC_BOOM
+ ec_word SOON
+ ec_word SORRY
+ ec_word SOUNDPROOF
+ ec_word SP_ABILITY
+ ec_move1 SPARK
+ ec_pokemon2 SPEAROW
+ ec_word SPECTATOR
+ ec_word SPEED_BOOST
+ ec_pokemon1 SPHEAL
+ ec_move1 SPIDER_WEB
+ ec_move2 SPIKE_CANNON
+ ec_move2 SPIKES
+ ec_pokemon2 SPINARAK
+ ec_pokemon1 SPINDA
+ ec_word SPIRALING
+ ec_word SPIRIT
+ ec_move2 SPIT_UP
+ ec_move1 SPITE
+ ec_move2 SPLASH
+ ec_pokemon1 SPOINK
+ ec_move1 SPORE
+ ec_word SPORTS
+ ec_word SPRING
+ ec_pokemon2 SQUIRTLE
+ ec_word STAGE
+ ec_pokemon2 STANTLER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 STARMIE
+ ec_pokemon2 STARMIE
+ ec_word START
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 STARYU
+ ec_pokemon2 STARYU
+ ec_word STATIC
+ ec_word STAY_AT_HOME
+ ec_word STEEL
+ ec_move2 STEEL_WING
+ ec_pokemon2 STEELIX
+ ec_word STENCH
+ ec_word STICKY_HOLD
+ ec_move2 STOCKPILE
+ ec_move2 STOMP
+ ec_word STOP
+ ec_word STORE
+ ec_word STORES
+ ec_word STORY
+ ec_word STRATEGY
+ ec_move1 STRENGTH
+ ec_move1 STRING_SHOT
+ ec_word STRONG
+ ec_move2 STRUGGLE
+ ec_word STUDY
+ ec_move1 STUN_SPORE
+ ec_word STURDY
+ ec_move1 SUBMISSION
+ ec_move2 SUBSTITUTE
+ ec_word SUCTION_CUPS
+ ec_pokemon2 SUDOWOODO
+ ec_pokemon2 SUICUNE
+ ec_word SUMMER
+ ec_word SUNDAY
+ ec_pokemon2 SUNFLORA
+ ec_pokemon2 SUNKERN
+ ec_move2 SUNNY_DAY
+ ec_word SUPER
+ ec_move1 SUPER_FANG
+ ec_move2 SUPERPOWER
+ ec_move2 SUPERSONIC
+ ec_move2 SURF
+ ec_word SURPRISE
+ ec_word SURRENDER
+ ec_pokemon1 SURSKIT
+ ec_pokemon1 SWABLU
+ ec_move1 SWAGGER
+ ec_move2 SWALLOW
+ ec_pokemon1 SWALOT
+ ec_pokemon1 SWAMPERT
+ ec_word SWARM
+ ec_move2 SWEET_KISS
+ ec_move1 SWEET_SCENT
+ ec_word SWEETS
+ ec_pokemon1 SWELLOW
+ ec_move1 SWIFT
+ ec_word SWIFT_SWIM
+ ec_pokemon2 SWINUB
+ ec_move2 SWORDS_DANCE
+ ec_word SYNCHRONIZE
+ ec_move1 SYNTHESIS
+ ec_word SYSTEM
gEasyChatWordsByLetter_T: ; 859DD5A
- ec_word_move_2 TACKLE
- ec_word_move_2 TAIL_GLOW
- ec_word_move_1 TAIL_WHIP
- ec_word_pokemon TAILLOW
- ec_word_actions TAKE
- ec_word_move_2 TAKE_DOWN
- ec_word_battle TAKE_THAT
- ec_word_battle TALENT
- ec_word_actions TALK
- ec_word_actions TALKING
- ec_word_pokemon2 TANGELA
- ec_word_conditions TASTY
- ec_word_move_2 TAUNT
- ec_word_pokemon2 TAUROS
- ec_word_voices TCH
- ec_word_actions TEACH
- ec_word_lifestyle TEACHER
- ec_word_actions TEACHES
- ec_word_pokemon2 TEDDIURSA
- ec_word_move_2 TEETER_DANCE
- ec_word_move_2 TELEPORT
- ec_word_lifestyle TELEVISION
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon TENTACOOL
- ec_word_pokemon2 TENTACOOL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon TENTACRUEL
- ec_word_pokemon2 TENTACRUEL
- ec_word_feelings TERRIBLE
- ec_word_lifestyle TEST
- ec_word_endings THAN
- ec_word_greetings THANK_YOU
- ec_word_greetings THANKS
- ec_word_misc THAT
- ec_word_misc THAT_WAS
- ec_word_speech THAT_S
- ec_word_misc THAT_S_IT_EXCL
- ec_word_speech THE
- ec_word_people THEIR
- ec_word_endings THERE
- ec_word_misc THESE
- ec_word_misc THESE_WERE
- ec_word_people THEY
- ec_word_people THEY_WERE
- ec_word_people THEY_RE
- ec_word_people THEY_VE
- ec_word_adjectives THICK
- ec_word_status THICK_FAT
- ec_word_move_2 THIEF
- ec_word_adjectives THIN
- ec_word_misc THING
- ec_word_misc THINGS
- ec_word_feelings THINK
- ec_word_actions THINKS
- ec_word_adjectives THIRSTY
- ec_word_misc THIS
- ec_word_misc THIS_IS_IT_EXCL
- ec_word_endings THOSE
- ec_word_misc THOSE_ARE
- ec_word_misc THOSE_WERE
- ec_word_move_1 THRASH
- ec_word_actions THROW
- ec_word_move_1 THUNDER
- ec_word_move_2 THUNDER_WAVE
- ec_word_move_1 THUNDERBOLT
- ec_word_move_1 THUNDER_PUNCH
- ec_word_move_2 THUNDER_SHOCK
- ec_word_time THURSDAY
- ec_word_move_1 TICKLE
- ec_word_adjectives TICKLISH
- ec_word_adjectives TIGHT
- ec_word_time TIME
- ec_word_endings TIMES
- ec_word_conditions TIRED
- ec_word_endings TO
- ec_word_people TO_HER
- ec_word_people TO_ME
- ec_word_people TO_THEM
- ec_word_people TO_US
- ec_word_people TO_WHOM
- ec_word_time TODAY
- ec_word_pokemon2 TOGEPI
- ec_word_conditions TOGETHER
- ec_word_pokemon2 TOGETIC
- ec_word_time TOMORROW
- ec_word_endings TOO
- ec_word_speech TOO_LATE
- ec_word_battle TOO_STRONG
- ec_word_battle TOO_WEAK
- ec_word_conditions TOP
- ec_word_pokemon TORCHIC
- ec_word_pokemon TORKOAL
- ec_word_move_1 TORMENT
- ec_word_status TORRENT
- ec_word_speech TOTALLY
- ec_word_pokemon2 TOTODILE
- ec_word_status TOUGH
- ec_word_status TOUGHNESS
- ec_word_lifestyle TOURNAMENT
- ec_word_events TOWER
- ec_word_move_2 TOXIC
- ec_word_hobbies TOYS
- ec_word_status TRACE
- ec_word_trainer TRADE
- ec_word_lifestyle TRAIN
- ec_word_trainer TRAINER
- ec_word_actions TRAINS
- ec_word_move_2 TRANSFORM
- ec_word_pokemon TRAPINCH
- ec_word_hobbies TRAVEL
- ec_word_hobbies TREASURE
- ec_word_pokemon TREECKO
- ec_word_hobbies TRENDY
- ec_word_move_2 TRI_ATTACK
- ec_word_move_2 TRICK
- ec_word_feelings TRIES
- ec_word_move_2 TRIPLE_KICK
- ec_word_pokemon TROPIUS
- ec_word_status TRUANT
- ec_word_speech TRULY
- ec_word_battle TRUMP_CARD
- ec_word_actions TRUST
- ec_word_feelings TRY
- ec_word_time TUESDAY
- ec_word_move_2 TWINEEDLE
- ec_word_adjectives TWIRLING
- ec_word_move_2 TWISTER
- ec_word_status TYPE
- ec_word_pokemon2 TYPHLOSION
- ec_word_pokemon2 TYRANITAR
- ec_word_pokemon2 TYROGUE
+ ec_move2 TACKLE
+ ec_move2 TAIL_GLOW
+ ec_move1 TAIL_WHIP
+ ec_pokemon1 TAILLOW
+ ec_word TAKE
+ ec_move2 TAKE_DOWN
+ ec_word TAKE_THAT
+ ec_word TALENT
+ ec_word TALK
+ ec_word TALKING
+ ec_pokemon2 TANGELA
+ ec_word TASTY
+ ec_move2 TAUNT
+ ec_pokemon2 TAUROS
+ ec_word TCH
+ ec_word TEACH
+ ec_word TEACHER
+ ec_word TEACHES
+ ec_pokemon2 TEDDIURSA
+ ec_move2 TEETER_DANCE
+ ec_move2 TELEPORT
+ ec_word TELEVISION
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 TENTACOOL
+ ec_pokemon2 TENTACOOL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 TENTACRUEL
+ ec_pokemon2 TENTACRUEL
+ ec_word TERRIBLE
+ ec_word TEST
+ ec_word THAN
+ ec_word THANK_YOU
+ ec_word THANKS
+ ec_word THAT
+ ec_word THAT_WAS
+ ec_word THAT_S
+ ec_word THAT_S_IT_EXCL
+ ec_word THE
+ ec_word THEIR
+ ec_word THERE
+ ec_word THESE
+ ec_word THESE_WERE
+ ec_word THEY
+ ec_word THEY_WERE
+ ec_word THEY_RE
+ ec_word THEY_VE
+ ec_word THICK
+ ec_word THICK_FAT
+ ec_move2 THIEF
+ ec_word THIN
+ ec_word THING
+ ec_word THINGS
+ ec_word THINK
+ ec_word THINKS
+ ec_word THIRSTY
+ ec_word THIS
+ ec_word THIS_IS_IT_EXCL
+ ec_word THOSE
+ ec_word THOSE_ARE
+ ec_word THOSE_WERE
+ ec_move1 THRASH
+ ec_word THROW
+ ec_move1 THUNDER
+ ec_move2 THUNDER_WAVE
+ ec_move1 THUNDERBOLT
+ ec_move1 THUNDER_PUNCH
+ ec_move2 THUNDER_SHOCK
+ ec_word THURSDAY
+ ec_move1 TICKLE
+ ec_word TICKLISH
+ ec_word TIGHT
+ ec_word TIME
+ ec_word TIMES
+ ec_word TIRED
+ ec_word TO
+ ec_word TO_HER
+ ec_word TO_ME
+ ec_word TO_THEM
+ ec_word TO_US
+ ec_word TO_WHOM
+ ec_word TODAY
+ ec_pokemon2 TOGEPI
+ ec_word TOGETHER
+ ec_pokemon2 TOGETIC
+ ec_word TOMORROW
+ ec_word TOO
+ ec_word TOO_LATE
+ ec_word TOO_STRONG
+ ec_word TOO_WEAK
+ ec_word TOP
+ ec_pokemon1 TORCHIC
+ ec_pokemon1 TORKOAL
+ ec_move1 TORMENT
+ ec_word TORRENT
+ ec_word TOTALLY
+ ec_pokemon2 TOTODILE
+ ec_word TOUGH
+ ec_word TOUGHNESS
+ ec_word TOURNAMENT
+ ec_word TOWER
+ ec_move2 TOXIC
+ ec_word TOYS
+ ec_word TRACE
+ ec_word TRADE
+ ec_word TRAIN
+ ec_word TRAINER
+ ec_word TRAINS
+ ec_move2 TRANSFORM
+ ec_pokemon1 TRAPINCH
+ ec_word TRAVEL
+ ec_word TREASURE
+ ec_pokemon1 TREECKO
+ ec_word TRENDY
+ ec_move2 TRI_ATTACK
+ ec_move2 TRICK
+ ec_word TRIES
+ ec_move2 TRIPLE_KICK
+ ec_pokemon1 TROPIUS
+ ec_word TRUANT
+ ec_word TRULY
+ ec_word TRUMP_CARD
+ ec_word TRUST
+ ec_word TRY
+ ec_word TUESDAY
+ ec_move2 TWINEEDLE
+ ec_word TWIRLING
+ ec_move2 TWISTER
+ ec_word TYPE
+ ec_pokemon2 TYPHLOSION
+ ec_pokemon2 TYRANITAR
+ ec_pokemon2 TYROGUE
gEasyChatWordsByLetter_U: ; 859DE64
- ec_word_trendy_saying UGLY
- ec_word_voices UH_HUH
- ec_word_voices UH_OH
- ec_word_misc UM
- ec_word_pokemon2 UMBREON
- ec_word_conditions UNAVOIDABLE
- ec_word_voices UNBELIEVABLE
- ec_word_people UNCLE
- ec_word_feelings UNDERSTAND
- ec_word_feelings UNDERSTANDS
- ec_word_speech UNDERSTOOD
- ec_word_events UNION
- ec_word_pokemon2 UNOWN
- ec_word_speech UNTIL
- ec_word_misc UP
- ec_word_trendy_saying UPBEAT
- ec_word_move_1 UPROAR
- ec_word_conditions UPSIDE_DOWN
- ec_word_voices URGH
- ec_word_pokemon2 URSARING
- ec_word_actions USE
- ec_word_adjectives USELESS
- ec_word_actions USES
- ec_word_actions USING
+ ec_word UGLY
+ ec_word UH_HUH
+ ec_word UH_OH
+ ec_word UM
+ ec_pokemon2 UMBREON
+ ec_word UNAVOIDABLE
+ ec_word UNBELIEVABLE
+ ec_word UNCLE
+ ec_word UNDERSTAND
+ ec_word UNDERSTANDS
+ ec_word UNDERSTOOD
+ ec_word UNION
+ ec_pokemon2 UNOWN
+ ec_word UNTIL
+ ec_word UP
+ ec_word UPBEAT
+ ec_move1 UPROAR
+ ec_word UPSIDE_DOWN
+ ec_word URGH
+ ec_pokemon2 URSARING
+ ec_word USE
+ ec_word USELESS
+ ec_word USES
+ ec_word USING
gEasyChatWordsByLetter_V: ; 859DE94
- ec_word_hobbies VACATION
- ec_word_pokemon2 VAPOREON
- ec_word_pokemon2 VENOMOTH
- ec_word_pokemon2 VENONAT
- ec_word_pokemon2 VENUSAUR
- ec_word_trainer VERSION
- ec_word_battle VERSUS
- ec_word_speech VERY
- ec_word_pokemon VIBRAVA
- ec_word_move_2 VICE_GRIP
- ec_word_battle VICTORY
- ec_word_pokemon2 VICTREEBEL
- ec_word_hobbies VIEWING
- ec_word_pokemon VIGOROTH
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon VILEPLUME
- ec_word_pokemon2 VILEPLUME
- ec_word_move_2 VINE_WHIP
- ec_word_status VITAL_SPIRIT
- ec_word_move_1 VITAL_THROW
- ec_word_pokemon VOLBEAT
- ec_word_status VOLT_ABSORB
- ec_word_move_2 VOLT_TACKLE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon VOLTORB
- ec_word_pokemon2 VOLTORB
- ec_word_adjectives VORACIOUS
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon VULPIX
- ec_word_pokemon2 VULPIX
+ ec_word VACATION
+ ec_pokemon2 VAPOREON
+ ec_pokemon2 VENOMOTH
+ ec_pokemon2 VENONAT
+ ec_pokemon2 VENUSAUR
+ ec_word VERSION
+ ec_word VERSUS
+ ec_word VERY
+ ec_pokemon1 VIBRAVA
+ ec_move2 VICE_GRIP
+ ec_word VICTORY
+ ec_pokemon2 VICTREEBEL
+ ec_word VIEWING
+ ec_pokemon1 VIGOROTH
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 VILEPLUME
+ ec_pokemon2 VILEPLUME
+ ec_move2 VINE_WHIP
+ ec_word VITAL_SPIRIT
+ ec_move1 VITAL_THROW
+ ec_pokemon1 VOLBEAT
+ ec_word VOLT_ABSORB
+ ec_move2 VOLT_TACKLE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 VOLTORB
+ ec_pokemon2 VOLTORB
+ ec_word VORACIOUS
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 VULPIX
+ ec_pokemon2 VULPIX
gEasyChatWordsByLetter_W: ; 859DED6
- ec_word_voices WAAAH
- ec_word_voices WAHAHAHA
- ec_word_pokemon WAILMER
- ec_word_pokemon WAILORD
- ec_word_feelings WAIT
- ec_word_actions WAKE_UP
- ec_word_actions WAKES_UP
- ec_word_hobbies WALK
- ec_word_actions WALKING
- ec_word_actions WALKS
- ec_word_pokemon WALREIN
- ec_word_adjectives WANDERING
- ec_word_trendy_saying WANNABE
- ec_word_feelings WANT
- ec_word_feelings WANTS
- ec_word_pokemon2 WARTORTLE
- ec_word_endings WAS
- ec_word_endings WASN_T
- ec_word_status WATER
- ec_word_status WATER_ABSORB
- ec_word_move_2 WATER_GUN
- ec_word_move_2 WATER_PULSE
- ec_word_move_2 WATER_SPORT
- ec_word_move_1 WATER_SPOUT
- ec_word_status WATER_VEIL
- ec_word_move_2 WATERFALL
- ec_word_voices WAY
- ec_word_people WE
- ec_word_people WE_RE
- ec_word_people WE_VE
- ec_word_battle WEAK
- ec_word_conditions WEAKENED
- ec_word_move_1 WEATHER_BALL
- ec_word_time WEDNESDAY
- ec_word_pokemon2 WEEDLE
- ec_word_time WEEK
- ec_word_pokemon2 WEEPINBELL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon WEEZING
- ec_word_pokemon2 WEEZING
- ec_word_conditions WEIRD
- ec_word_greetings WELCOME
- ec_word_conditions WELL
- ec_word_greetings WELL_THEN
- ec_word_actions WENT
- ec_word_endings WERE
- ec_word_endings WEREN_T
- ec_word_misc WHAT
- ec_word_greetings WHAT_S_UP_QUES
- ec_word_misc WHEN
- ec_word_battle WHEN_I_WIN
- ec_word_misc WHERE
- ec_word_endings WHICH
- ec_word_endings WHILE
- ec_word_move_1 WHIRLPOOL
- ec_word_move_2 WHIRLWIND
- ec_word_pokemon WHISCASH
- ec_word_pokemon WHISMUR
- ec_word_status WHITE_SMOKE
- ec_word_people WHO
- ec_word_people WHO_IS
- ec_word_people WHO_WAS
- ec_word_voices WHOAH
- ec_word_endings WHOM
- ec_word_people WHOSE
- ec_word_misc WHY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon WIGGLYTUFF
- ec_word_pokemon2 WIGGLYTUFF
- ec_word_speech WILD
- ec_word_endings WILL
- ec_word_endings WILL_BE_HERE
- ec_word_move_1 WILL_O_WISP
- ec_word_adjectives WIMPY
- ec_word_battle WIN
- ec_word_move_2 WING_ATTACK
- ec_word_pokemon WINGULL
- ec_word_trendy_saying WINNER
- ec_word_battle WINS
- ec_word_time WINTER
- ec_word_events WIRELESS
- ec_word_move_2 WISH
- ec_word_endings WITH
- ec_word_move_1 WITHDRAW
- ec_word_endings WITHOUT
- ec_word_adjectives WOBBLY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon WOBBUFFET
- ec_word_pokemon2 WOBBUFFET
- ec_word_people WOMAN
- ec_word_battle WON
- ec_word_endings WON_T
- ec_word_endings WONDER
- ec_word_status WONDER_GUARD
- ec_word_pokemon2 WOOPER
- ec_word_lifestyle WORD
- ec_word_lifestyle WORK
- ec_word_actions WORKING
- ec_word_actions WORKS
- ec_word_lifestyle WORLD
- ec_word_actions WORRY
- ec_word_endings WOULD
- ec_word_voices WOW
- ec_word_voices WOWEE
- ec_word_move_2 WRAP
- ec_word_voices WROOOAAR_EXCL
- ec_word_pokemon WURMPLE
- ec_word_pokemon WYNAUT
+ ec_word WAAAH
+ ec_word WAHAHAHA
+ ec_pokemon1 WAILMER
+ ec_pokemon1 WAILORD
+ ec_word WAIT
+ ec_word WAKE_UP
+ ec_word WAKES_UP
+ ec_word WALK
+ ec_word WALKING
+ ec_word WALKS
+ ec_pokemon1 WALREIN
+ ec_word WANDERING
+ ec_word WANNABE
+ ec_word WANT
+ ec_word WANTS
+ ec_pokemon2 WARTORTLE
+ ec_word WAS
+ ec_word WASN_T
+ ec_word WATER
+ ec_word WATER_ABSORB
+ ec_move2 WATER_GUN
+ ec_move2 WATER_PULSE
+ ec_move2 WATER_SPORT
+ ec_move1 WATER_SPOUT
+ ec_word WATER_VEIL
+ ec_move2 WATERFALL
+ ec_word WAY
+ ec_word WE
+ ec_word WE_RE
+ ec_word WE_VE
+ ec_word WEAK
+ ec_word WEAKENED
+ ec_move1 WEATHER_BALL
+ ec_word WEDNESDAY
+ ec_pokemon2 WEEDLE
+ ec_word WEEK
+ ec_pokemon2 WEEPINBELL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 WEEZING
+ ec_pokemon2 WEEZING
+ ec_word WEIRD
+ ec_word WELCOME
+ ec_word WELL
+ ec_word WELL_THEN
+ ec_word WENT
+ ec_word WERE
+ ec_word WEREN_T
+ ec_word WHAT
+ ec_word WHAT_S_UP_QUES
+ ec_word WHEN
+ ec_word WHEN_I_WIN
+ ec_word WHERE
+ ec_word WHICH
+ ec_word WHILE
+ ec_move1 WHIRLPOOL
+ ec_move2 WHIRLWIND
+ ec_pokemon1 WHISCASH
+ ec_pokemon1 WHISMUR
+ ec_word WHITE_SMOKE
+ ec_word WHO
+ ec_word WHO_IS
+ ec_word WHO_WAS
+ ec_word WHOAH
+ ec_word WHOM
+ ec_word WHOSE
+ ec_word WHY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 WIGGLYTUFF
+ ec_pokemon2 WIGGLYTUFF
+ ec_word WILD
+ ec_word WILL
+ ec_word WILL_BE_HERE
+ ec_move1 WILL_O_WISP
+ ec_word WIMPY
+ ec_word WIN
+ ec_move2 WING_ATTACK
+ ec_pokemon1 WINGULL
+ ec_word WINNER
+ ec_word WINS
+ ec_word WINTER
+ ec_word WIRELESS
+ ec_move2 WISH
+ ec_word WITH
+ ec_move1 WITHDRAW
+ ec_word WITHOUT
+ ec_word WOBBLY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon1 WOBBUFFET
+ ec_pokemon2 WOBBUFFET
+ ec_word WOMAN
+ ec_word WON
+ ec_word WON_T
+ ec_word WONDER
+ ec_word WONDER_GUARD
+ ec_pokemon2 WOOPER
+ ec_word WORD
+ ec_word WORK
+ ec_word WORKING
+ ec_word WORKS
+ ec_word WORLD
+ ec_word WORRY
+ ec_word WOULD
+ ec_word WOW
+ ec_word WOWEE
+ ec_move2 WRAP
+ ec_word WROOOAAR_EXCL
+ ec_pokemon1 WURMPLE
+ ec_pokemon1 WYNAUT
gEasyChatWordsByLetter_X: ; 859DFB4
.2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon XATU
- ec_word_pokemon2 XATU
+ ec_pokemon1 XATU
+ ec_pokemon2 XATU
gEasyChatWordsByLetter_Y: ; 859DFBC
- ec_word_greetings YAHOO
- ec_word_pokemon2 YANMA
- ec_word_move_1 YAWN
- ec_word_voices YAY
- ec_word_greetings YEAH
- ec_word_greetings YEAH_YEAH
- ec_word_trendy_saying YEEHAW_EXCL
- ec_word_greetings YES
- ec_word_trendy_saying YES_SIR_EXCL
- ec_word_time YESTERDAY
- ec_word_adjectives YET
- ec_word_greetings YO
- ec_word_people YOU
- ec_word_people YOU_RE
- ec_word_people YOU_VE
- ec_word_trendy_saying YOUNG
- ec_word_people YOUR
- ec_word_people YOURS
- ec_word_voices YUP
+ ec_word YAHOO
+ ec_pokemon2 YANMA
+ ec_move1 YAWN
+ ec_word YAY
+ ec_word YEAH
+ ec_word YEAH_YEAH
+ ec_word YEEHAW_EXCL
+ ec_word YES
+ ec_word YES_SIR_EXCL
+ ec_word YESTERDAY
+ ec_word YET
+ ec_word YO
+ ec_word YOU
+ ec_word YOU_RE
+ ec_word YOU_VE
+ ec_word YOUNG
+ ec_word YOUR
+ ec_word YOURS
+ ec_word YUP
gEasyChatWordsByLetter_Z: ; 859DFE2
- ec_word_pokemon ZANGOOSE
- ec_word_move_2 ZAP_CANNON
- ec_word_pokemon2 ZAPDOS
- ec_word_pokemon ZIGZAGOON
+ ec_pokemon1 ZANGOOSE
+ ec_move2 ZAP_CANNON
+ ec_pokemon2 ZAPDOS
+ ec_pokemon1 ZIGZAGOON
.2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon ZUBAT
- ec_word_pokemon2 ZUBAT
+ ec_pokemon1 ZUBAT
+ ec_pokemon2 ZUBAT
gEasyChatWordsByLetter_UnusedJapaneseHi: ; 859DFF2
- ec_word_pokemon2 CLEFFA
- ec_word_voices AIYEEH
- ec_word_pokemon2 WEEDLE
- ec_word_hobbies HERO
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 PIKACHU
- ec_word_pokemon PIKACHU
- ec_word_move_2 LIGHT_SCREEN
- ec_word_status SHINE
- ec_word_conditions LOW
- ec_word_pokemon2 CLEFABLE
- ec_word_status FLYING
- ec_word_pokemon2 PIDGEOT
- ec_word_pokemon2 PIDGEOTTO
- ec_word_misc LEFT
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 PICHU
- ec_word_pokemon PICHU
- ec_word_move_2 SCRATCH
- ec_word_feelings SURPRISE
- ec_word_move_2 HYPER_FANG
- ec_word_pokemon2 CLEFAIRY
- ec_word_status DROUGHT
- ec_word_events HIDDEN
- ec_word_people PERSON
- ec_word_conditions AWFUL
- ec_word_pokemon2 CHARMANDER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 STARYU
- ec_word_pokemon STARYU
- ec_word_conditions ALONE
- ec_word_pokemon2 CYNDAQUIL
- ec_word_move_2 EMBER
- ec_word_pokemon VIBRAVA
- ec_word_conditions BORED
- ec_word_pokemon2 SUNKERN
- ec_word_conditions SECRET
- ec_word_events SECRET_BASE
- ec_word_move_2 SECRET_POWER
- ec_word_pokemon2 TEDDIURSA
- ec_word_voices HIYAH
- ec_word_move_2 DIZZY_PUNCH
- ec_word_status LIGHTNINGROD
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 VOLTORB
- ec_word_pokemon VOLTORB
- ec_word_time DAYTIME
- ec_word_move_2 BULK_UP
- ec_word_hobbies NAP
- ec_word_hobbies HEROINE
- ec_word_pokemon FEEBAS
+ ec_pokemon2 CLEFFA
+ ec_word AIYEEH
+ ec_pokemon2 WEEDLE
+ ec_word HERO
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 PIKACHU
+ ec_pokemon1 PIKACHU
+ ec_move2 LIGHT_SCREEN
+ ec_word SHINE
+ ec_word LOW
+ ec_pokemon2 CLEFABLE
+ ec_word FLYING
+ ec_pokemon2 PIDGEOT
+ ec_pokemon2 PIDGEOTTO
+ ec_word LEFT
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 PICHU
+ ec_pokemon1 PICHU
+ ec_move2 SCRATCH
+ ec_word SURPRISE
+ ec_move2 HYPER_FANG
+ ec_pokemon2 CLEFAIRY
+ ec_word DROUGHT
+ ec_word HIDDEN
+ ec_word PERSON
+ ec_word AWFUL
+ ec_pokemon2 CHARMANDER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 STARYU
+ ec_pokemon1 STARYU
+ ec_word ALONE
+ ec_pokemon2 CYNDAQUIL
+ ec_move2 EMBER
+ ec_pokemon1 VIBRAVA
+ ec_word BORED
+ ec_pokemon2 SUNKERN
+ ec_word SECRET
+ ec_word SECRET_BASE
+ ec_move2 SECRET_POWER
+ ec_pokemon2 TEDDIURSA
+ ec_word HIYAH
+ ec_move2 DIZZY_PUNCH
+ ec_word LIGHTNINGROD
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 VOLTORB
+ ec_pokemon1 VOLTORB
+ ec_word DAYTIME
+ ec_move2 BULK_UP
+ ec_word NAP
+ ec_word HEROINE
+ ec_pokemon1 FEEBAS
gEasyChatWordsByLetter_UnusedJapaneseFu: ; 859E060
- ec_word_battle FIGHT
- ec_word_pokemon2 MOLTRES
- ec_word_hobbies FASHION
- ec_word_feelings FEAR
- ec_word_trendy_saying FEVER
- ec_word_move_2 IMPRISON
- ec_word_pokemon2 FLAREON
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 ALAKAZAM
- ec_word_pokemon ALAKAZAM
- ec_word_pokemon2 MAGMAR
- ec_word_pokemon GRUMPIG
- ec_word_move_2 FEATHER_DANCE
- ec_word_pokemon2 FORRETRESS
- ec_word_move_2 WHIRLWIND
- ec_word_status COMPOUNDEYES
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 WIGGLYTUFF
- ec_word_pokemon WIGGLYTUFF
- ec_word_move_2 BEAT_UP
- ec_word_conditions MYSTERY
- ec_word_pokemon2 IVYSAUR
- ec_word_pokemon2 BULBASAUR
- ec_word_status MARVEL_SCALE
- ec_word_status WONDER_GUARD
- ec_word_pokemon2 VENUSAUR
- ec_word_conditions LACKS
- ec_word_battle RESUSCITATE
- ec_word_actions SMACK
- ec_word_voices FUFUFU
- ec_word_pokemon2 AERODACTYL
- ec_word_adjectives WIMPY
- ec_word_pokemon2 MAGBY
- ec_word_voices LOL
- ec_word_move_2 BLIZZARD
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 IGGLYBUFF
- ec_word_pokemon IGGLYBUFF
- ec_word_voices SNORT
- ec_word_move_2 STOMP
- ec_word_status INSOMNIA
- ec_word_time WINTER
- ec_word_status LEVITATE
- ec_word_pokemon FLYGON
- ec_word_status PLUS
- ec_word_move_2 BLAST_BURN
- ec_word_pokemon PLUSLE
- ec_word_pokemon2 UMBREON
- ec_word_move_2 FLASH
- ec_word_adjectives WOBBLY
- ec_word_move_2 TEETER_DANCE
- ec_word_actions PRETEND
- ec_word_pokemon2 ARTICUNO
- ec_word_trendy_saying WANNABE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 JIGGLYPUFF
- ec_word_pokemon JIGGLYPUFF
- ec_word_pokemon2 SNUBBULL
- ec_word_adjectives SHAKY
- ec_word_move_2 CRUSH_CLAW
- ec_word_move_2 BLAZE_KICK
- ec_word_move_2 PRESENT
- ec_word_status PRESSURE
- ec_word_events BLEND
- ec_word_events FRONTIER
- ec_word_voices HUMPH
- ec_word_move_2 ERUPTION
+ ec_word FIGHT
+ ec_pokemon2 MOLTRES
+ ec_word FASHION
+ ec_word FEAR
+ ec_word FEVER
+ ec_move2 IMPRISON
+ ec_pokemon2 FLAREON
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 ALAKAZAM
+ ec_pokemon1 ALAKAZAM
+ ec_pokemon2 MAGMAR
+ ec_pokemon1 GRUMPIG
+ ec_move2 FEATHER_DANCE
+ ec_pokemon2 FORRETRESS
+ ec_move2 WHIRLWIND
+ ec_word COMPOUNDEYES
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 WIGGLYTUFF
+ ec_pokemon1 WIGGLYTUFF
+ ec_move2 BEAT_UP
+ ec_word MYSTERY
+ ec_pokemon2 IVYSAUR
+ ec_pokemon2 BULBASAUR
+ ec_word MARVEL_SCALE
+ ec_word WONDER_GUARD
+ ec_pokemon2 VENUSAUR
+ ec_word LACKS
+ ec_word RESUSCITATE
+ ec_word SMACK
+ ec_word FUFUFU
+ ec_pokemon2 AERODACTYL
+ ec_word WIMPY
+ ec_pokemon2 MAGBY
+ ec_word LOL
+ ec_move2 BLIZZARD
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 IGGLYBUFF
+ ec_pokemon1 IGGLYBUFF
+ ec_word SNORT
+ ec_move2 STOMP
+ ec_word INSOMNIA
+ ec_word WINTER
+ ec_word LEVITATE
+ ec_pokemon1 FLYGON
+ ec_word PLUS
+ ec_move2 BLAST_BURN
+ ec_pokemon1 PLUSLE
+ ec_pokemon2 UMBREON
+ ec_move2 FLASH
+ ec_word WOBBLY
+ ec_move2 TEETER_DANCE
+ ec_word PRETEND
+ ec_pokemon2 ARTICUNO
+ ec_word WANNABE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 JIGGLYPUFF
+ ec_pokemon1 JIGGLYPUFF
+ ec_pokemon2 SNUBBULL
+ ec_word SHAKY
+ ec_move2 CRUSH_CLAW
+ ec_move2 BLAZE_KICK
+ ec_move2 PRESENT
+ ec_word PRESSURE
+ ec_word BLEND
+ ec_word FRONTIER
+ ec_word HUMPH
+ ec_move2 ERUPTION
gEasyChatWordsByLetter_UnusedJapaneseHe: ; 859E0EE
- ec_word_greetings HEY
- ec_word_pokemon CORPHISH
- ec_word_trendy_saying BABY
- ec_word_pokemon2 BAYLEEF
- ec_word_conditions BEST
- ec_word_conditions LOUSY
- ec_word_voices HEHEHE
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 GRIMER
- ec_word_pokemon GRIMER
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 MUK
- ec_word_pokemon MUK
- ec_word_status LIQUID_OOZE
- ec_word_move_2 SLUDGE
- ec_word_move_2 SLUDGE_BOMB
- ec_word_move_2 GLARE
- ec_word_voices HEH
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 HERACROSS
- ec_word_pokemon HERACROSS
- ec_word_pokemon PELIPPER
- ec_word_pokemon2 HOUNDOOM
- ec_word_pokemon2 PERSIAN
- ec_word_adjectives RIPPED
- ec_word_pokemon2 LICKITUNG
- ec_word_lifestyle STUDY
- ec_word_status COLOR_CHANGE
- ec_word_move_2 TRANSFORM
+ ec_word HEY
+ ec_pokemon1 CORPHISH
+ ec_word BABY
+ ec_pokemon2 BAYLEEF
+ ec_word BEST
+ ec_word LOUSY
+ ec_word HEHEHE
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 GRIMER
+ ec_pokemon1 GRIMER
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 MUK
+ ec_pokemon1 MUK
+ ec_word LIQUID_OOZE
+ ec_move2 SLUDGE
+ ec_move2 SLUDGE_BOMB
+ ec_move2 GLARE
+ ec_word HEH
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 HERACROSS
+ ec_pokemon1 HERACROSS
+ ec_pokemon1 PELIPPER
+ ec_pokemon2 HOUNDOOM
+ ec_pokemon2 PERSIAN
+ ec_word RIPPED
+ ec_pokemon2 LICKITUNG
+ ec_word STUDY
+ ec_word COLOR_CHANGE
+ ec_move2 TRANSFORM
gEasyChatWordsByLetter_UnusedJapaneseHo: ; 859E12E
- ec_word_move_2 POISON_TAIL
- ec_word_battle POINTS
- ec_word_pokemon2 HO_OH
- ec_word_status SOUNDPROOF
- ec_word_hobbies ADVENTURE
- ec_word_status EFFECT_SPORE
- ec_word_move_2 ROAR
- ec_word_pokemon WAILORD
- ec_word_pokemon WAILMER
- ec_word_people DUDE
- ec_word_hobbies BOARD
- ec_word_pokemon2 HOOTHOOT
- ec_word_pokemon SALAMENCE
- ec_word_hobbies BALL
- ec_word_move_2 BONE_RUSH
- ec_word_people THEY
- ec_word_people THEY_WERE
- ec_word_people TO_THEM
- ec_word_people THEIR
- ec_word_people THEY_RE
- ec_word_people THEY_VE
- ec_word_trainer POKENAV
- ec_word_trainer POKEMON
- ec_word_trainer GET
- ec_word_trainer POKEDEX
- ec_word_status PKRS
- ec_word_move_2 CAMOUFLAGE
- ec_word_feelings WANT
- ec_word_move_2 COVET
- ec_word_pokemon AGGRON
- ec_word_move_2 TAIL_GLOW
- ec_word_pokemon POOCHYENA
- ec_word_pokemon2 PIDGEY
- ec_word_speech AS_MUCH_AS
- ec_word_pokemon2 PONYTA
- ec_word_move_2 BONE_CLUB
- ec_word_move_2 BONEMERANG
- ec_word_status FIRE
- ec_word_move_2 FIRE_SPIN
- ec_word_status FLAME_BODY
- ec_word_move_2 FIRE_PUNCH
- ec_word_pokemon2 SKIPLOOM
- ec_word_voices HOHOHO
- ec_word_actions PRAISE
- ec_word_voices UH_HUH
- ec_word_pokemon2 PORYGON
- ec_word_pokemon2 PORYGON2
- ec_word_move_2 VOLT_TACKLE
- ec_word_events POKEBLOCK
- ec_word_move_2 PERISH_SONG
- ec_word_adjectives SHREDDED
- ec_word_pokemon CASTFORM
- ec_word_hobbies BOOK
- ec_word_battle SERIOUS
- ec_word_speech REALLY
+ ec_move2 POISON_TAIL
+ ec_word POINTS
+ ec_pokemon2 HO_OH
+ ec_word SOUNDPROOF
+ ec_word ADVENTURE
+ ec_word EFFECT_SPORE
+ ec_move2 ROAR
+ ec_pokemon1 WAILORD
+ ec_pokemon1 WAILMER
+ ec_word DUDE
+ ec_word BOARD
+ ec_pokemon2 HOOTHOOT
+ ec_pokemon1 SALAMENCE
+ ec_word BALL
+ ec_move2 BONE_RUSH
+ ec_word THEY
+ ec_word THEY_WERE
+ ec_word TO_THEM
+ ec_word THEIR
+ ec_word THEY_RE
+ ec_word THEY_VE
+ ec_word POKENAV
+ ec_word POKEMON
+ ec_word GET
+ ec_word POKEDEX
+ ec_word PKRS
+ ec_move2 CAMOUFLAGE
+ ec_word WANT
+ ec_move2 COVET
+ ec_pokemon1 AGGRON
+ ec_move2 TAIL_GLOW
+ ec_pokemon1 POOCHYENA
+ ec_pokemon2 PIDGEY
+ ec_word AS_MUCH_AS
+ ec_pokemon2 PONYTA
+ ec_move2 BONE_CLUB
+ ec_move2 BONEMERANG
+ ec_word FIRE
+ ec_move2 FIRE_SPIN
+ ec_word FLAME_BODY
+ ec_move2 FIRE_PUNCH
+ ec_pokemon2 SKIPLOOM
+ ec_word HOHOHO
+ ec_word PRAISE
+ ec_word UH_HUH
+ ec_pokemon2 PORYGON
+ ec_pokemon2 PORYGON2
+ ec_move2 VOLT_TACKLE
+ ec_word POKEBLOCK
+ ec_move2 PERISH_SONG
+ ec_word SHREDDED
+ ec_pokemon1 CASTFORM
+ ec_word BOOK
+ ec_word SERIOUS
+ ec_word REALLY
gEasyChatWordsByLetter_UnusedJapaneseMa: ; 859E19C
- ec_word_voices OH_DEAR
- ec_word_endings IN
- ec_word_battle GIVE_UP
- ec_word_status MINUS
- ec_word_pokemon MINUN
- ec_word_time DAILY
- ec_word_status OWN_TEMPO
- ec_word_move_2 WRAP
- ec_word_move_2 SPIKES
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 MAGCARGO
- ec_word_pokemon MAGCARGO
- ec_word_move_2 MAGNITUDE
- ec_word_pokemon MAKUHITA
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 SLUGMA
- ec_word_pokemon SLUGMA
- ec_word_status MAGMA_ARMOR
- ec_word_pokemon2 QUILAVA
- ec_word_actions OVERDO
- ec_word_battle LOSS
- ec_word_battle IF_I_LOSE
- ec_word_battle LOST
- ec_word_battle LOSE
- ec_word_speech TRULY
- ec_word_speech SERIOUSLY
- ec_word_move_2 MAGICAL_LEAF
- ec_word_move_2 MAGIC_COAT
- ec_word_lifestyle MACHINE
- ec_word_endings OUT
- ec_word_events MASTER
- ec_word_adjectives INCREASING
- ec_word_endings TOO
- ec_word_endings LIKE
- ec_word_pokemon2 BELLSPROUT
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 WEEZING
- ec_word_pokemon WEEZING
- ec_word_greetings SMELL
- ec_word_adjectives YET
- ec_word_conditions MISTAKE
- ec_word_pokemon LINOONE
- ec_word_speech TOTALLY
- ec_word_move_2 MUD_SHOT
- ec_word_move_2 MACH_PUNCH
- ec_word_hobbies FESTIVAL
- ec_word_speech UNTIL
- ec_word_feelings WAIT
- ec_word_battle GUARD
- ec_word_move_2 PROTECT
- ec_word_pokemon CASCOON
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 MARILL
- ec_word_pokemon MARILL
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 AZUMARILL
- ec_word_pokemon AZUMARILL
- ec_word_move_2 DEFENSE_CURL
- ec_word_speech AS_IF
- ec_word_pokemon SWALOT
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 ELECTRODE
- ec_word_pokemon ELECTRODE
- ec_word_move_2 ROLLING_KICK
- ec_word_hobbies COMICS
- ec_word_pokemon2 MANKEY
- ec_word_feelings SATISFIED
- ec_word_pokemon2 MANTINE
+ ec_word OH_DEAR
+ ec_word IN
+ ec_word GIVE_UP
+ ec_word MINUS
+ ec_pokemon1 MINUN
+ ec_word DAILY
+ ec_word OWN_TEMPO
+ ec_move2 WRAP
+ ec_move2 SPIKES
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 MAGCARGO
+ ec_pokemon1 MAGCARGO
+ ec_move2 MAGNITUDE
+ ec_pokemon1 MAKUHITA
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 SLUGMA
+ ec_pokemon1 SLUGMA
+ ec_word MAGMA_ARMOR
+ ec_pokemon2 QUILAVA
+ ec_word OVERDO
+ ec_word LOSS
+ ec_word IF_I_LOSE
+ ec_word LOST
+ ec_word LOSE
+ ec_word TRULY
+ ec_word SERIOUSLY
+ ec_move2 MAGICAL_LEAF
+ ec_move2 MAGIC_COAT
+ ec_word MACHINE
+ ec_word OUT
+ ec_word MASTER
+ ec_word INCREASING
+ ec_word TOO
+ ec_word LIKE
+ ec_pokemon2 BELLSPROUT
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 WEEZING
+ ec_pokemon1 WEEZING
+ ec_word SMELL
+ ec_word YET
+ ec_word MISTAKE
+ ec_pokemon1 LINOONE
+ ec_word TOTALLY
+ ec_move2 MUD_SHOT
+ ec_move2 MACH_PUNCH
+ ec_word FESTIVAL
+ ec_word UNTIL
+ ec_word WAIT
+ ec_word GUARD
+ ec_move2 PROTECT
+ ec_pokemon1 CASCOON
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 MARILL
+ ec_pokemon1 MARILL
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 AZUMARILL
+ ec_pokemon1 AZUMARILL
+ ec_move2 DEFENSE_CURL
+ ec_word AS_IF
+ ec_pokemon1 SWALOT
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 ELECTRODE
+ ec_pokemon1 ELECTRODE
+ ec_move2 ROLLING_KICK
+ ec_word COMICS
+ ec_pokemon2 MANKEY
+ ec_word SATISFIED
+ ec_pokemon2 MANTINE
gEasyChatWordsByLetter_UnusedJapaneseMi: ; 859E230
- ec_word_battle PARTNER
- ec_word_move_2 SUBSTITUTE
- ec_word_misc RIGHT
- ec_word_move_2 DETECT
- ec_word_move_2 PIN_MISSILE
- ec_word_status WATER
- ec_word_move_2 WATER_SPORT
- ec_word_pokemon MUDKIP
- ec_word_move_2 WATER_GUN
- ec_word_move_2 MIST_BALL
- ec_word_move_2 WATER_PULSE
- ec_word_status WATER_VEIL
- ec_word_actions SHOW
- ec_word_feelings SEE
- ec_word_endings DID
- ec_word_move_2 FURY_ATTACK
- ec_word_move_2 FURY_SWIPES
- ec_word_move_2 DESTINY_BOND
- ec_word_actions LOOKS
- ec_word_battle REJECT
- ec_word_battle ACCEPT
- ec_word_pokemon2 DRATINI
- ec_word_move_2 FALSE_SWIPE
- ec_word_move_2 FORESIGHT
- ec_word_pokemon2 MEW
- ec_word_pokemon2 MEWTWO
- ec_word_move_2 MIRROR_COAT
- ec_word_move_2 FUTURE_SIGHT
- ec_word_actions SEES
- ec_word_move_2 MILK_DRINK
- ec_word_pokemon2 MILTANK
- ec_word_pokemon MILOTIC
- ec_word_people WE
- ec_word_people BEEN
- ec_word_people TO_US
- ec_word_people OUR
- ec_word_people WE_RE
+ ec_word PARTNER
+ ec_move2 SUBSTITUTE
+ ec_word RIGHT
+ ec_move2 DETECT
+ ec_move2 PIN_MISSILE
+ ec_word WATER
+ ec_move2 WATER_SPORT
+ ec_pokemon1 MUDKIP
+ ec_move2 WATER_GUN
+ ec_move2 MIST_BALL
+ ec_move2 WATER_PULSE
+ ec_word WATER_VEIL
+ ec_word SHOW
+ ec_word SEE
+ ec_word DID
+ ec_move2 FURY_ATTACK
+ ec_move2 FURY_SWIPES
+ ec_move2 DESTINY_BOND
+ ec_word LOOKS
+ ec_word REJECT
+ ec_word ACCEPT
+ ec_pokemon2 DRATINI
+ ec_move2 FALSE_SWIPE
+ ec_move2 FORESIGHT
+ ec_pokemon2 MEW
+ ec_pokemon2 MEWTWO
+ ec_move2 MIRROR_COAT
+ ec_move2 FUTURE_SIGHT
+ ec_word SEES
+ ec_move2 MILK_DRINK
+ ec_pokemon2 MILTANK
+ ec_pokemon1 MILOTIC
+ ec_word WE
+ ec_word BEEN
+ ec_word TO_US
+ ec_word OUR
+ ec_word WE_RE
gEasyChatWordsByLetter_UnusedJapaneseMu: ; 859E27A
- ec_word_speech MOOD
- ec_word_pokemon2 MISDREAVUS
- ec_word_time OLDEN
- ec_word_voices ARRGH
- ec_word_status BUG
- ec_word_status SWARM
- ec_word_speech RATHER
- ec_word_pokemon2 SMOOCHUM
- ec_word_battle INVINCIBLE
- ec_word_trendy_saying HEART
- ec_word_voices MUFUFU
- ec_word_voices MMM
+ ec_word MOOD
+ ec_pokemon2 MISDREAVUS
+ ec_word OLDEN
+ ec_word ARRGH
+ ec_word BUG
+ ec_word SWARM
+ ec_word RATHER
+ ec_pokemon2 SMOOCHUM
+ ec_word INVINCIBLE
+ ec_word HEART
+ ec_word MUFUFU
+ ec_word MMM
gEasyChatWordsByLetter_UnusedJapaneseMe: ; 859E292
- ec_word_move_2 CALM_MIND
- ec_word_lifestyle MAIL
- ec_word_move_2 MEGA_DRAIN
- ec_word_move_2 MEGA_KICK
- ec_word_move_2 MEGA_PUNCH
- ec_word_pokemon2 MEGANIUM
- ec_word_move_2 MEGAHORN
- ec_word_actions SEEK
- ec_word_move_2 HIDDEN_POWER
- ec_word_feelings RARE
- ec_word_pokemon METAGROSS
- ec_word_pokemon2 DITTO
- ec_word_move_2 METAL_CLAW
- ec_word_pokemon METANG
- ec_word_adjectives DESTROYED
- ec_word_lifestyle MESSAGE
- ec_word_speech AWFULLY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 TENTACOOL
- ec_word_pokemon TENTACOOL
- ec_word_adjectives FIERY
- ec_word_pokemon2 MAREEP
- ec_word_move_2 ATTRACT
- ec_word_status CUTE_CHARM
- ec_word_status IMMUNITY
+ ec_move2 CALM_MIND
+ ec_word MAIL
+ ec_move2 MEGA_DRAIN
+ ec_move2 MEGA_KICK
+ ec_move2 MEGA_PUNCH
+ ec_pokemon2 MEGANIUM
+ ec_move2 MEGAHORN
+ ec_word SEEK
+ ec_move2 HIDDEN_POWER
+ ec_word RARE
+ ec_pokemon1 METAGROSS
+ ec_pokemon2 DITTO
+ ec_move2 METAL_CLAW
+ ec_pokemon1 METANG
+ ec_word DESTROYED
+ ec_word MESSAGE
+ ec_word AWFULLY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 TENTACOOL
+ ec_pokemon1 TENTACOOL
+ ec_word FIERY
+ ec_pokemon2 MAREEP
+ ec_move2 ATTRACT
+ ec_word CUTE_CHARM
+ ec_word IMMUNITY
gEasyChatWordsByLetter_UnusedJapaneseMo: ; 859E2C6
- ec_word_time ALMOST
- ec_word_status BLAZE
- ec_word_time NEARLY
- ec_word_speech MODE
- ec_word_trendy_saying OLD
- ec_word_time THURSDAY
- ec_word_pokemon2 FLAAFFY
- ec_word_greetings LISTENING
- ec_word_actions OWN
- ec_word_speech MORE
- ec_word_endings DIDN_T
- ec_word_status PICKUP
- ec_word_move_2 MIMIC
- ec_word_speech TOO_LATE
- ec_word_status PATTERN
- ec_word_status FLASH_FIRE
- ec_word_battle RECEIVED
- ec_word_pokemon2 VENOMOTH
- ec_word_endings DOESN_T
- ec_word_pokemon2 TANGELA
+ ec_word ALMOST
+ ec_word BLAZE
+ ec_word NEARLY
+ ec_word MODE
+ ec_word OLD
+ ec_word THURSDAY
+ ec_pokemon2 FLAAFFY
+ ec_word LISTENING
+ ec_word OWN
+ ec_word MORE
+ ec_word DIDN_T
+ ec_word PICKUP
+ ec_move2 MIMIC
+ ec_word TOO_LATE
+ ec_word PATTERN
+ ec_word FLASH_FIRE
+ ec_word RECEIVED
+ ec_pokemon2 VENOMOTH
+ ec_word DOESN_T
+ ec_pokemon2 TANGELA
gEasyChatWordsByLetter_UnusedJapaneseYa: ; 859E2EE
- ec_word_greetings HOO_HAH
- ec_word_lifestyle PROMISE
- ec_word_conditions KIND
- ec_word_pokemon BALTOY
- ec_word_hobbies HOLIDAY
- ec_word_feelings NEGATIVE
- ec_word_move_2 FRUSTRATION
- ec_word_feelings DONE
- ec_word_speech FINALLY
- ec_word_speech ANY
- ec_word_greetings YAHOO
- ec_word_pokemon2 SLOWKING
- ec_word_pokemon2 SLOWBRO
- ec_word_move_2 LEECH_SEED
- ec_word_pokemon2 SLOWPOKE
- ec_word_feelings DANGER
- ec_word_pokemon2 MURKROW
- ec_word_pokemon SABLEYE
- ec_word_feelings DEFEATED
- ec_word_feelings BEAT
- ec_word_status VITAL_SPIRIT
- ec_word_pokemon VIGOROTH
- ec_word_trendy_saying YOUNG
- ec_word_pokemon2 YANMA
+ ec_word HOO_HAH
+ ec_word PROMISE
+ ec_word KIND
+ ec_pokemon1 BALTOY
+ ec_word HOLIDAY
+ ec_word NEGATIVE
+ ec_move2 FRUSTRATION
+ ec_word DONE
+ ec_word FINALLY
+ ec_word ANY
+ ec_word YAHOO
+ ec_pokemon2 SLOWKING
+ ec_pokemon2 SLOWBRO
+ ec_move2 LEECH_SEED
+ ec_pokemon2 SLOWPOKE
+ ec_word DANGER
+ ec_pokemon2 MURKROW
+ ec_pokemon1 SABLEYE
+ ec_word DEFEATED
+ ec_word BEAT
+ ec_word VITAL_SPIRIT
+ ec_pokemon1 VIGOROTH
+ ec_word YOUNG
+ ec_pokemon2 YANMA
gEasyChatWordsByLetter_UnusedJapaneseYu: ; 859E31E
- ec_word_pokemon SNORUNT
- ec_word_actions TAKE
- ec_word_events UNION
- ec_word_move_2 METRONOME
- ec_word_lifestyle DREAM
- ec_word_move_2 DREAM_EATER
- ec_word_actions ALLOW
- ec_word_actions FORGET
- ec_word_pokemon CRADILY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 KADABRA
- ec_word_pokemon KADABRA
+ ec_pokemon1 SNORUNT
+ ec_word TAKE
+ ec_word UNION
+ ec_move2 METRONOME
+ ec_word DREAM
+ ec_move2 DREAM_EATER
+ ec_word ALLOW
+ ec_word FORGET
+ ec_pokemon1 CRADILY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 KADABRA
+ ec_pokemon1 KADABRA
gEasyChatWordsByLetter_UnusedJapaneseYo: ; 859E338
- ec_word_endings WITHOUT
- ec_word_greetings YO
- ec_word_move_2 ACID
- ec_word_greetings COME_OVER
- ec_word_lifestyle KINDERGARTEN
- ec_word_status CHLOROPHYLL
- ec_word_endings AFTER
- ec_word_pokemon2 LARVITAR
- ec_word_voices OH_KAY
- ec_word_endings BEFORE
- ec_word_feelings GREAT
- ec_word_move_2 MEDITATE
- ec_word_status PURE_POWER
- ec_word_conditions WELL
- ec_word_move_2 SNATCH
- ec_word_voices OKAY
- ec_word_hobbies PLANS
- ec_word_time NIGHTTIME
- ec_word_endings WHILE
- ec_word_pokemon DUSKULL
- ec_word_battle EASY
- ec_word_speech INSTEAD
- ec_word_time NIGHT
- ec_word_pokemon2 NOCTOWL
- ec_word_greetings COUNT_ON
- ec_word_battle WEAK
- ec_word_battle TOO_WEAK
- ec_word_conditions WEAKENED
+ ec_word WITHOUT
+ ec_word YO
+ ec_move2 ACID
+ ec_word COME_OVER
+ ec_word KINDERGARTEN
+ ec_word CHLOROPHYLL
+ ec_word AFTER
+ ec_pokemon2 LARVITAR
+ ec_word OH_KAY
+ ec_word BEFORE
+ ec_word GREAT
+ ec_move2 MEDITATE
+ ec_word PURE_POWER
+ ec_word WELL
+ ec_move2 SNATCH
+ ec_word OKAY
+ ec_word PLANS
+ ec_word NIGHTTIME
+ ec_word WHILE
+ ec_pokemon1 DUSKULL
+ ec_word EASY
+ ec_word INSTEAD
+ ec_word NIGHT
+ ec_pokemon2 NOCTOWL
+ ec_word COUNT_ON
+ ec_word WEAK
+ ec_word TOO_WEAK
+ ec_word WEAKENED
gEasyChatWordsByLetter_UnusedJapaneseRa: ; 859E370
- ec_word_pokemon2 RAIKOU
- ec_word_time WEEK
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 RAICHU
- ec_word_pokemon RAICHU
- ec_word_people RIVAL
- ec_word_lifestyle LIFE
- ec_word_pokemon MANECTRIC
- ec_word_conditions SIMPLE
- ec_word_battle PUSHOVER
- ec_word_pokemon SWAMPERT
- ec_word_pokemon ELECTRIKE
- ec_word_conditions SEEMS
- ec_word_lifestyle RADIO
- ec_word_move_2 LUSTER_PURGE
- ec_word_pokemon2 CHANSEY
- ec_word_pokemon2 RATICATE
- ec_word_pokemon LATIAS
- ec_word_pokemon LATIOS
- ec_word_pokemon LUVDISC
- ec_word_pokemon2 LAPRAS
- ec_word_adjectives LOVEY_DOVEY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 VILEPLUME
- ec_word_pokemon VILEPLUME
- ec_word_voices LALALA
- ec_word_pokemon RALTS
- ec_word_actions FORGETS
- ec_word_actions APPEARS
- ec_word_events RANK
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 LANTURN
- ec_word_pokemon LANTURN
+ ec_pokemon2 RAIKOU
+ ec_word WEEK
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 RAICHU
+ ec_pokemon1 RAICHU
+ ec_word RIVAL
+ ec_word LIFE
+ ec_pokemon1 MANECTRIC
+ ec_word SIMPLE
+ ec_word PUSHOVER
+ ec_pokemon1 SWAMPERT
+ ec_pokemon1 ELECTRIKE
+ ec_word SEEMS
+ ec_word RADIO
+ ec_move2 LUSTER_PURGE
+ ec_pokemon2 CHANSEY
+ ec_pokemon2 RATICATE
+ ec_pokemon1 LATIAS
+ ec_pokemon1 LATIOS
+ ec_pokemon1 LUVDISC
+ ec_pokemon2 LAPRAS
+ ec_word LOVEY_DOVEY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 VILEPLUME
+ ec_pokemon1 VILEPLUME
+ ec_word LALALA
+ ec_pokemon1 RALTS
+ ec_word FORGETS
+ ec_word APPEARS
+ ec_word RANK
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 LANTURN
+ ec_pokemon1 LANTURN
gEasyChatWordsByLetter_UnusedJapaneseRi: ; 859E3B8
- ec_word_battle LEADER
- ec_word_move_2 LEAF_BLADE
- ec_word_pokemon2 CHARMELEON
- ec_word_pokemon2 CHARIZARD
- ec_word_move_2 RECYCLE
- ec_word_move_2 REFLECT
- ec_word_move_2 REFRESH
- ec_word_move_2 REVENGE
- ec_word_events RIBBON
- ec_word_hobbies TRENDY
- ec_word_move_2 DRAGON_RAGE
- ec_word_move_2 DRAGON_BREATH
- ec_word_move_2 DRAGON_DANCE
- ec_word_hobbies VACATION
- ec_word_pokemon LILEEP
- ec_word_pokemon2 URSARING
- ec_word_status SHIELD_DUST
+ ec_word LEADER
+ ec_move2 LEAF_BLADE
+ ec_pokemon2 CHARMELEON
+ ec_pokemon2 CHARIZARD
+ ec_move2 RECYCLE
+ ec_move2 REFLECT
+ ec_move2 REFRESH
+ ec_move2 REVENGE
+ ec_word RIBBON
+ ec_word TRENDY
+ ec_move2 DRAGON_RAGE
+ ec_move2 DRAGON_BREATH
+ ec_move2 DRAGON_DANCE
+ ec_word VACATION
+ ec_pokemon1 LILEEP
+ ec_pokemon2 URSARING
+ ec_word SHIELD_DUST
gEasyChatWordsByLetter_UnusedJapaneseRu: ; 859E3DA
- ec_word_pokemon2 JYNX
- ec_word_events ROOM
- ec_word_battle RULE
- ec_word_pokemon2 LUGIA
- ec_word_hobbies LOOK
- ec_word_pokemon LUNATONE
- ec_word_trainer RUBY
- ec_word_endings THAN
- ec_word_pokemon AZURILL
- ec_word_pokemon LUDICOLO
- ec_word_adjectives HAPPILY
+ ec_pokemon2 JYNX
+ ec_word ROOM
+ ec_word RULE
+ ec_pokemon2 LUGIA
+ ec_word LOOK
+ ec_pokemon1 LUNATONE
+ ec_word RUBY
+ ec_word THAN
+ ec_pokemon1 AZURILL
+ ec_pokemon1 LUDICOLO
+ ec_word HAPPILY
gEasyChatWordsByLetter_UnusedJapaneseRe: ; 859E3F0
.2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 MAGNETON
- ec_word_pokemon MAGNETON
- ec_word_move_2 ICE_PUNCH
- ec_word_move_2 ICE_BEAM
- ec_word_pokemon REGICE
- ec_word_pokemon REGISTEEL
- ec_word_pokemon REGIROCK
- ec_word_pokemon RAYQUAZA
- ec_word_trendy_saying UGLY
- ec_word_pokemon2 LEDIAN
- ec_word_pokemon2 LEDYBA
- ec_word_speech FANTASTIC
- ec_word_trainer LEVEL
- ec_word_move_2 FURY_CUTTER
- ec_word_move_2 COMET_PUNCH
- ec_word_lifestyle RENTAL
+ ec_pokemon2 MAGNETON
+ ec_pokemon1 MAGNETON
+ ec_move2 ICE_PUNCH
+ ec_move2 ICE_BEAM
+ ec_pokemon1 REGICE
+ ec_pokemon1 REGISTEEL
+ ec_pokemon1 REGIROCK
+ ec_pokemon1 RAYQUAZA
+ ec_word UGLY
+ ec_pokemon2 LEDIAN
+ ec_pokemon2 LEDYBA
+ ec_word FANTASTIC
+ ec_word LEVEL
+ ec_move2 FURY_CUTTER
+ ec_move2 COMET_PUNCH
+ ec_word RENTAL
gEasyChatWordsByLetter_UnusedJapaneseRo: ; 859E414
- ec_word_move_2 SKULL_BASH
+ ec_move2 SKULL_BASH
.2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 VULPIX
- ec_word_pokemon VULPIX
- ec_word_pokemon ROSELIA
- ec_word_move_2 LOCK_ON
- ec_word_move_2 ROCK_BLAST
- ec_word_feelings ROMANTIC
- ec_word_feelings QUESTION
+ ec_pokemon2 VULPIX
+ ec_pokemon1 VULPIX
+ ec_pokemon1 ROSELIA
+ ec_move2 LOCK_ON
+ ec_move2 ROCK_BLAST
+ ec_word ROMANTIC
+ ec_word QUESTION
gEasyChatWordsByLetter_UnusedJapaneseWa: ; 859E428
- ec_word_voices YAY
- ec_word_lifestyle WORLD
- ec_word_voices AWW
- ec_word_events WIRELESS
- ec_word_voices WOWEE
- ec_word_pokemon COMBUSKEN
- ec_word_feelings UNDERSTAND
- ec_word_feelings UNDERSTANDS
- ec_word_actions FAINT
- ec_word_adjectives ANTICIPATION
- ec_word_endings ONCE
- ec_word_battle MOVE
- ec_word_people WE_VE
- ec_word_actions FAINTED
- ec_word_people WOMAN
- ec_word_people SHE
- ec_word_people SHE_WAS
- ec_word_people TO_HER
- ec_word_people HERS
- ec_word_people SHE_IS
- ec_word_people SOME
- ec_word_pokemon2 JUMPLUFF
- ec_word_move_2 COTTON_SPORE
- ec_word_voices GWAH
- ec_word_pokemon2 TOTODILE
- ec_word_voices WAHAHAHA
- ec_word_endings ANYWHERE
- ec_word_move_2 STRUGGLE
- ec_word_conditions BADLY
- .2byte -1, 2 ; doubled Pokémon species names
- ec_word_pokemon2 MACHOP
- ec_word_pokemon MACHOP
+ ec_word YAY
+ ec_word WORLD
+ ec_word AWW
+ ec_word WIRELESS
+ ec_word WOWEE
+ ec_pokemon1 COMBUSKEN
+ ec_word UNDERSTAND
+ ec_word UNDERSTANDS
+ ec_word FAINT
+ ec_word ANTICIPATION
+ ec_word ONCE
+ ec_word MOVE
+ ec_word WE_VE
+ ec_word FAINTED
+ ec_word WOMAN
+ ec_word SHE
+ ec_word SHE_WAS
+ ec_word TO_HER
+ ec_word HERS
+ ec_word SHE_IS
+ ec_word SOME
+ ec_pokemon2 JUMPLUFF
+ ec_move2 COTTON_SPORE
+ ec_word GWAH
+ ec_pokemon2 TOTODILE
+ ec_word WAHAHAHA
+ ec_word ANYWHERE
+ ec_move2 STRUGGLE
+ ec_word BADLY
+ .2byte -1, 2 ; doubled Pokémon species names
+ ec_pokemon2 MACHOP
+ ec_pokemon1 MACHOP
.align 2, 0