diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/battle_ai_scripts.s | 5 | ||||
| -rw-r--r-- | data/battle_anim_scripts.s | 1 | ||||
| -rw-r--r-- | data/battle_moves.s | 1 | ||||
| -rw-r--r-- | data/battle_scripts_1.s | 1 | ||||
| -rw-r--r-- | data/cable_car.s | 1 | ||||
| -rw-r--r-- | data/contest.s | 2 | ||||
| -rw-r--r-- | data/data2a.s | 3 | ||||
| -rw-r--r-- | data/easy_chat.s | 79 | ||||
| -rw-r--r-- | data/event_scripts.s | 8 | ||||
| -rw-r--r-- | data/map_events.s | 2 | ||||
| -rw-r--r-- | data/maps.s | 1 | ||||
| -rw-r--r-- | data/scripts/mauville_man.inc | 9 | ||||
| -rw-r--r-- | data/text/easy_chat/words_by_letter.inc | 3716 | ||||
| -rw-r--r-- | data/wild_encounter.s | 2 | 
14 files changed, 1928 insertions, 1903 deletions
| diff --git a/data/battle_ai_scripts.s b/data/battle_ai_scripts.s index 855221507..7c58160f6 100644 --- a/data/battle_ai_scripts.s +++ b/data/battle_ai_scripts.s @@ -1,3 +1,8 @@ +#include "constants/abilities.h" +#include "constants/battle_move_effects.h" +#include "constants/hold_effects.h" +#include "constants/items.h" +#include "constants/moves.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc"  	.include "asm/macros/battle_ai_script.inc" diff --git a/data/battle_anim_scripts.s b/data/battle_anim_scripts.s index 08ef8be32..de3d354ce 100644 --- a/data/battle_anim_scripts.s +++ b/data/battle_anim_scripts.s @@ -1,3 +1,4 @@ +#include "constants/songs.h"  	.include "asm/macros.inc"  	.include "asm/macros/battle_anim.inc"  	.include "constants/constants.inc" diff --git a/data/battle_moves.s b/data/battle_moves.s index ea32446d2..9a7398999 100644 --- a/data/battle_moves.s +++ b/data/battle_moves.s @@ -1,3 +1,4 @@ +#include "constants/battle_move_effects.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/battle_scripts_1.s b/data/battle_scripts_1.s index 45bf5cc95..4e41bcc20 100644 --- a/data/battle_scripts_1.s +++ b/data/battle_scripts_1.s @@ -1,3 +1,4 @@ +#include "constants/abilities.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc"  	.include "asm/macros/battle_script.inc" diff --git a/data/cable_car.s b/data/cable_car.s index 3075f7651..775e53b6a 100644 --- a/data/cable_car.s +++ b/data/cable_car.s @@ -1,3 +1,4 @@ +#include "constants/map_objects.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/contest.s b/data/contest.s index 181d5ed13..0ffcfc636 100644 --- a/data/contest.s +++ b/data/contest.s @@ -1,3 +1,5 @@ +#include "constants/moves.h" +#include "constants/species.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/data2a.s b/data/data2a.s index 30803120d..103b723e8 100644 --- a/data/data2a.s +++ b/data/data2a.s @@ -1,5 +1,8 @@  @ the second big chunk of data +#include "constants/items.h" +#include "constants/moves.h" +#include "constants/species.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/easy_chat.s b/data/easy_chat.s index e0844b902..99a03f8f5 100644 --- a/data/easy_chat.s +++ b/data/easy_chat.s @@ -1,46 +1,51 @@ +#include "constants/easy_chat.h" +#include "constants/moves.h" +#include "constants/species.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" +#define EC_DUPLICATES(count) (0xFF00 + (count)) +  	.section .rodata  	.align 1  gMysteryEventPhrase:: @ 83DB678 -	ec_word MYSTERY -	ec_word EVENT -	ec_word IS -	ec_word EXCITING +	.2byte EC_WORD_MYSTERY +	.2byte EC_WORD_EVENT +	.2byte EC_WORD_IS +	.2byte EC_WORD_EXCITING  	.align 1  gBerryMasterWifePhrases:: @ 83DB680  .ifdef ENGLISH -	ec_word GREAT -	ec_word BATTLE +	.2byte EC_WORD_GREAT +	.2byte EC_WORD_BATTLE -	ec_word CHALLENGE -	ec_word CONTEST +	.2byte EC_WORD_CHALLENGE +	.2byte EC_WORD_CONTEST -	ec_word OVERWHELMING -	ec_pokemon1 LATIAS +	.2byte EC_WORD_OVERWHELMING +	.2byte EC_POKEMON(LATIAS) -	ec_word COOL -	ec_pokemon1 LATIOS +	.2byte EC_WORD_COOL +	.2byte EC_POKEMON(LATIOS) -	ec_word SUPER -	ec_word HUSTLE +	.2byte EC_WORD_SUPER +	.2byte EC_WORD_HUSTLE  .else -	ec_word GREAT -	ec_word FIGHT +	.2byte EC_WORD_GREAT +	.2byte EC_WORD_FIGHT -	ec_word CONTEST -	ec_word CHALLENGE +	.2byte EC_WORD_CONTEST +	.2byte EC_WORD_CHALLENGE -	ec_pokemon1 LATIAS -	ec_word OVERWHELMING +	.2byte EC_POKEMON(LATIAS) +	.2byte EC_WORD_OVERWHELMING -	ec_pokemon1 LATIOS -	ec_word COOL +	.2byte EC_POKEMON(LATIOS) +	.2byte EC_WORD_COOL -	ec_word SUPER +	.2byte EC_WORD_SUPER  	.2byte 0xFFFF  .endif @@ -128,25 +133,25 @@ gUnknown_083DB7DC:: @ 83DB7DC  	.align 1  gUnknown_083DB7EC:: @ 83DB7EC  .ifdef ENGLISH -	ec_word I_AM -	ec_word A -	ec_word POKEMON -	ec_word GREAT +	.2byte EC_WORD_I_AM +	.2byte EC_WORD_A +	.2byte EC_WORD_POKEMON +	.2byte EC_WORD_GREAT  .else -	ec_word I_AM -	ec_word BIG -	ec_word IN -	ec_word POKEMON +	.2byte EC_WORD_I_AM +	.2byte EC_WORD_BIG +	.2byte EC_WORD_IN +	.2byte EC_WORD_POKEMON  .endif  	.align 1  gUnknown_083DB7F4:: @ 83DB7F4 -	ec_word ARE -	ec_word YOU -	ec_word READY -	ec_word QUES -	ec_word HERE_I_COME -	ec_word EXCL +	.2byte EC_WORD_ARE +	.2byte EC_WORD_YOU +	.2byte EC_WORD_READY +	.2byte EC_WORD_QUES +	.2byte EC_WORD_HERE_I_COME +	.2byte EC_WORD_EXCL  	.align 2  InterviewPalette_0:: @ 83DB800 diff --git a/data/event_scripts.s b/data/event_scripts.s index 6d2a3693c..faa9b8406 100644 --- a/data/event_scripts.s +++ b/data/event_scripts.s @@ -1,3 +1,11 @@ +#include "constants/decorations.h" +#include "constants/game_stat.h" +#include "constants/items.h" +#include "constants/map_objects.h" +#include "constants/moves.h" +#include "constants/opponents.h" +#include "constants/songs.h" +#include "constants/species.h"  	.include "asm/macros.inc"  	.include "asm/macros/event.inc"  	.include "constants/constants.inc" diff --git a/data/map_events.s b/data/map_events.s index 7156e4b6e..57b3adab5 100644 --- a/data/map_events.s +++ b/data/map_events.s @@ -1,3 +1,5 @@ +#include "constants/items.h" +#include "constants/map_objects.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/maps.s b/data/maps.s index a8074c02a..8848ac242 100644 --- a/data/maps.s +++ b/data/maps.s @@ -1,3 +1,4 @@ +#include "constants/songs.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" diff --git a/data/scripts/mauville_man.inc b/data/scripts/mauville_man.inc index 402afae23..465c61d1a 100644 --- a/data/scripts/mauville_man.inc +++ b/data/scripts/mauville_man.inc @@ -1,11 +1,4 @@ -@ From mauville_old_man.h -@ TODO: Put these in a header - -MAUVILLE_MAN_BARD        = 0 -MAUVILLE_MAN_HIPSTER     = 1 -MAUVILLE_MAN_TRADER      = 2 -MAUVILLE_MAN_STORYTELLER = 3 -MAUVILLE_MAN_GIDDY       = 4 +#include "constants/mauville_man.h"  MauvilleCity_PokemonCenter_1F_EventScript_1AE744:: @ 81AE744  	special ScrSpecial_GetCurrentMauvilleMan diff --git a/data/text/easy_chat/words_by_letter.inc b/data/text/easy_chat/words_by_letter.inc index 86fba988e..3c7f5bafc 100644 --- a/data/text/easy_chat/words_by_letter.inc +++ b/data/text/easy_chat/words_by_letter.inc @@ -1,1893 +1,1893 @@  	.align 1  gEasyChatWordsAlphabetized:: @ 83DE138  gEasyChatWordsByLetter_Others: -	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 +	.2byte EC_WORD_EXCL +	.2byte EC_WORD_EXCL_EXCL +	.2byte EC_WORD_DASH +	.2byte EC_WORD_DASH_DASH_DASH +	.2byte EC_WORD_ELLIPSIS +	.2byte EC_WORD_ELLIPSIS_EXCL +	.2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS +	.2byte EC_WORD_1_HIT_KO_EXCL +	.2byte EC_WORD_QUES +	.2byte EC_WORD_QUES_EXCL  gEasyChatWordsByLetter_A: -	ec_word A -	ec_word A_LITTLE -	ec_word A_LOT -	ec_word A_TINY_BIT -	ec_word ABOUT -	ec_word ABOVE -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 AZUMARILL -	ec_pokemon2 AZUMARILL -	ec_pokemon1 AZURILL +	.2byte EC_WORD_A +	.2byte EC_WORD_A_LITTLE +	.2byte EC_WORD_A_LOT +	.2byte EC_WORD_A_TINY_BIT +	.2byte EC_WORD_ABOUT +	.2byte EC_WORD_ABOVE +	ec_duplicates 2 +	.2byte EC_POKEMON(ABRA) +	.2byte EC_POKEMON2(ABRA) +	.2byte EC_WORD_ABSENT +	.2byte EC_POKEMON(ABSOL) +	.2byte EC_WORD_ABSOLUTELY +	.2byte EC_MOVE(ABSORB) +	.2byte EC_WORD_ACCEPT +	.2byte EC_MOVE2(ACID) +	.2byte EC_MOVE2(ACID_ARMOR) +	.2byte EC_WORD_ADORE +	.2byte EC_WORD_ADULT +	.2byte EC_WORD_ADVENTURE +	.2byte EC_MOVE2(AERIAL_ACE) +	.2byte EC_MOVE(AEROBLAST) +	.2byte EC_POKEMON2(AERODACTYL) +	.2byte EC_WORD_AFTER +	.2byte EC_WORD_AGE +	.2byte EC_POKEMON(AGGRON) +	.2byte EC_MOVE(AGILITY) +	.2byte EC_WORD_AGREE +	.2byte EC_WORD_AHAHA +	.2byte EC_WORD_AIM +	.2byte EC_POKEMON2(AIPOM) +	.2byte EC_MOVE(AIR_CUTTER) +	.2byte EC_WORD_AIR_LOCK +	.2byte EC_WORD_AIYEEH +	ec_duplicates 2 +	.2byte EC_POKEMON(ALAKAZAM) +	.2byte EC_POKEMON2(ALAKAZAM) +	.2byte EC_WORD_ALL +	.2byte EC_WORD_ALL_RIGHT +	.2byte EC_WORD_ALLOW +	.2byte EC_WORD_ALLOWANCE +	.2byte EC_WORD_ALLY +	.2byte EC_WORD_ALMOST +	.2byte EC_WORD_ALONE +	.2byte EC_WORD_ALSO +	.2byte EC_WORD_ALT_COLOR +	.2byte EC_POKEMON(ALTARIA) +	.2byte EC_WORD_ALTHOUGH +	.2byte EC_WORD_ALWAYS +	.2byte EC_WORD_AM +	.2byte EC_MOVE2(AMNESIA) +	.2byte EC_POKEMON2(AMPHAROS) +	.2byte EC_WORD_AMUSING +	.2byte EC_WORD_AN +	.2byte EC_MOVE(ANCIENT_POWER) +	.2byte EC_WORD_AND +	.2byte EC_WORD_ANGER +	.2byte EC_WORD_ANGERS +	.2byte EC_WORD_ANGRY +	.2byte EC_WORD_ANIME +	.2byte EC_POKEMON(ANORITH) +	.2byte EC_WORD_ANOTHER +	.2byte EC_WORD_ANTICIPATION +	.2byte EC_WORD_ANY +	.2byte EC_WORD_ANYWHERE +	.2byte EC_WORD_APOLOGIZE +	.2byte EC_WORD_APPEAL +	.2byte EC_WORD_APPEAR +	.2byte EC_WORD_APPEARS +	.2byte EC_WORD_APPRECIATE +	.2byte EC_WORD_APPROVED +	.2byte EC_POKEMON2(ARBOK) +	.2byte EC_POKEMON2(ARCANINE) +	.2byte EC_WORD_ARE +	.2byte EC_WORD_AREN_T +	.2byte EC_WORD_ARENA_TRAP +	.2byte EC_POKEMON2(ARIADOS) +	.2byte EC_MOVE2(ARM_THRUST) +	.2byte EC_POKEMON(ARMALDO) +	.2byte EC_MOVE(AROMATHERAPY) +	.2byte EC_POKEMON(ARON) +	.2byte EC_WORD_AROUND +	.2byte EC_WORD_ARRGH +	.2byte EC_POKEMON2(ARTICUNO) +	.2byte EC_WORD_AS +	.2byte EC_WORD_AS_IF +	.2byte EC_WORD_AS_MUCH_AS +	.2byte EC_MOVE2(ASSIST) +	.2byte EC_MOVE(ASTONISH) +	.2byte EC_WORD_AT +	.2byte EC_WORD_ATTACK +	.2byte EC_MOVE2(ATTRACT) +	.2byte EC_WORD_AUNT +	.2byte EC_MOVE(AURORA_BEAM) +	.2byte EC_WORD_AVANT_GARDE +	.2byte EC_WORD_AWAY +	.2byte EC_WORD_AWESOME +	.2byte EC_WORD_AWFUL +	.2byte EC_WORD_AWFULLY +	.2byte EC_WORD_AWW +	ec_duplicates 2 +	.2byte EC_POKEMON(AZUMARILL) +	.2byte EC_POKEMON2(AZUMARILL) +	.2byte EC_POKEMON(AZURILL)  gEasyChatWordsByLetter_B: -	ec_word BABE -	ec_word BABY -	ec_word BACK -	ec_word BAD -	ec_word BADLY -	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 -	ec_duplicates 2 -	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_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 +	.2byte EC_WORD_BABE +	.2byte EC_WORD_BABY +	.2byte EC_WORD_BACK +	.2byte EC_WORD_BAD +	.2byte EC_WORD_BADLY +	.2byte EC_POKEMON(BAGON) +	.2byte EC_WORD_BALL +	.2byte EC_POKEMON(BALTOY) +	.2byte EC_POKEMON(BANETTE) +	.2byte EC_WORD_BANG +	.2byte EC_POKEMON(BARBOACH) +	.2byte EC_MOVE2(BARRAGE) +	.2byte EC_MOVE2(BARRIER) +	.2byte EC_WORD_BATH +	.2byte EC_MOVE2(BATON_PASS) +	.2byte EC_WORD_BATTLE +	.2byte EC_WORD_BATTLE_ARMOR +	.2byte EC_WORD_BATTLE_ROOM +	.2byte EC_WORD_BATTLE_TOWER +	.2byte EC_POKEMON2(BAYLEEF) +	.2byte EC_WORD_BE +	.2byte EC_WORD_BEAT +	.2byte EC_MOVE2(BEAT_UP) +	.2byte EC_POKEMON(BEAUTIFLY) +	.2byte EC_WORD_BEAUTIFUL +	.2byte EC_WORD_BEAUTY +	.2byte EC_WORD_BECOMES +	.2byte EC_POKEMON2(BEEDRILL) +	.2byte EC_WORD_BEEN +	.2byte EC_WORD_BEFORE +	.2byte EC_WORD_BEGINNING +	.2byte EC_WORD_BEING +	.2byte EC_POKEMON(BELDUM) +	.2byte EC_WORD_BELIEVE +	ec_duplicates 2 +	.2byte EC_POKEMON(BELLOSSOM) +	.2byte EC_POKEMON2(BELLOSSOM) +	.2byte EC_POKEMON2(BELLSPROUT) +	.2byte EC_MOVE2(BELLY_DRUM) +	.2byte EC_WORD_BELONGS_TO +	.2byte EC_WORD_BELOW +	.2byte EC_WORD_BERRY +	.2byte EC_WORD_BESIDE +	.2byte EC_WORD_BEST +	.2byte EC_WORD_BETTER +	.2byte EC_MOVE(BIDE) +	.2byte EC_WORD_BIG +	.2byte EC_WORD_BIKE +	.2byte EC_MOVE(BIND) +	.2byte EC_MOVE(BITE) +	.2byte EC_POKEMON2(BLASTOISE) +	.2byte EC_WORD_BLAZE +	.2byte EC_MOVE2(BLAZE_KICK) +	.2byte EC_POKEMON(BLAZIKEN) +	.2byte EC_WORD_BLEND +	.2byte EC_POKEMON2(BLISSEY) +	.2byte EC_MOVE2(BLIZZARD) +	.2byte EC_MOVE2(BLOCK) +	.2byte EC_WORD_BOARD +	.2byte EC_MOVE2(BODY_SLAM) +	.2byte EC_MOVE2(BONE_CLUB) +	.2byte EC_MOVE2(BONE_RUSH) +	.2byte EC_MOVE2(BONEMERANG) +	.2byte EC_WORD_BOOK +	.2byte EC_WORD_BORED +	.2byte EC_WORD_BORING +	.2byte EC_MOVE2(BOUNCE) +	.2byte EC_WORD_BOY +	.2byte EC_WORD_BRAG +	.2byte EC_WORD_BREAK +	.2byte EC_POKEMON(BRELOOM) +	.2byte EC_MOVE(BRICK_BREAK) +	.2byte EC_WORD_BROTHER +	.2byte EC_MOVE(BUBBLE) +	.2byte EC_MOVE2(BUBBLE_BEAM) +	.2byte EC_WORD_BUG +	.2byte EC_POKEMON2(BULBASAUR) +	.2byte EC_MOVE2(BULK_UP) +	.2byte EC_MOVE2(BULLET_SEED) +	.2byte EC_WORD_BUSY +	.2byte EC_WORD_BUT +	.2byte EC_POKEMON2(BUTTERFREE) +	.2byte EC_WORD_BYE_BYE  gEasyChatWordsByLetter_C: -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 CROBAT -	ec_pokemon2 CROBAT -	ec_pokemon2 CROCONAW -	ec_move1 CROSS_CHOP -	ec_move1 CRUNCH -	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 +	.2byte EC_POKEMON(CACNEA) +	.2byte EC_POKEMON(CACTURNE) +	.2byte EC_MOVE2(CALM_MIND) +	.2byte EC_WORD_CAME +	.2byte EC_WORD_CAMERA +	.2byte EC_POKEMON(CAMERUPT) +	.2byte EC_MOVE2(CAMOUFLAGE) +	.2byte EC_WORD_CAN +	.2byte EC_WORD_CAN_WIN +	.2byte EC_WORD_CAN_T +	.2byte EC_WORD_CAN_T_WIN +	.2byte EC_WORD_CANCEL +	.2byte EC_WORD_CAPABLE +	.2byte EC_WORD_CARDS +	.2byte EC_WORD_CARE +	.2byte EC_WORD_CARES +	.2byte EC_POKEMON(CARVANHA) +	.2byte EC_POKEMON(CASCOON) +	.2byte EC_WORD_CASE +	.2byte EC_POKEMON(CASTFORM) +	.2byte EC_POKEMON2(CATERPIE) +	.2byte EC_WORD_CAUSE +	.2byte EC_POKEMON2(CELEBI) +	.2byte EC_WORD_CENTER +	.2byte EC_WORD_CHALLENGE +	.2byte EC_WORD_CHANGE +	.2byte EC_WORD_CHANNEL +	.2byte EC_POKEMON2(CHANSEY) +	.2byte EC_MOVE(CHARGE) +	.2byte EC_POKEMON2(CHARIZARD) +	.2byte EC_MOVE(CHARM) +	.2byte EC_POKEMON2(CHARMANDER) +	.2byte EC_POKEMON2(CHARMELEON) +	.2byte EC_WORD_CHAT +	.2byte EC_POKEMON2(CHIKORITA) +	.2byte EC_WORD_CHILD_S_PLAY +	.2byte EC_WORD_CHILDREN +	.2byte EC_POKEMON(CHIMECHO) +	ec_duplicates 2 +	.2byte EC_POKEMON(CHINCHOU) +	.2byte EC_POKEMON2(CHINCHOU) +	.2byte EC_WORD_CHLOROPHYLL +	.2byte EC_WORD_CHOICE +	.2byte EC_WORD_CHOOSE +	.2byte EC_WORD_CHORES +	.2byte EC_MOVE(CLAMP) +	.2byte EC_POKEMON(CLAMPERL) +	.2byte EC_WORD_CLASS +	.2byte EC_POKEMON(CLAYDOL) +	.2byte EC_WORD_CLEAR_BODY +	.2byte EC_POKEMON2(CLEFABLE) +	.2byte EC_POKEMON2(CLEFAIRY) +	.2byte EC_POKEMON2(CLEFFA) +	.2byte EC_WORD_CLOSE +	.2byte EC_WORD_CLOUD_NINE +	.2byte EC_POKEMON2(CLOYSTER) +	.2byte EC_WORD_COLD +	.2byte EC_WORD_COLLECT +	.2byte EC_WORD_COLLECTION +	.2byte EC_WORD_COLOR +	.2byte EC_WORD_COLOR_CHANGE +	.2byte EC_POKEMON(COMBUSKEN) +	.2byte EC_WORD_COME +	.2byte EC_WORD_COME_ON +	.2byte EC_WORD_COME_OVER +	.2byte EC_MOVE2(COMET_PUNCH) +	.2byte EC_WORD_COMICS +	.2byte EC_WORD_COMMEMORATE +	.2byte EC_WORD_COMPLETE +	.2byte EC_WORD_COMPOUNDEYES +	.2byte EC_WORD_CONCEDE +	.2byte EC_MOVE(CONFUSE_RAY) +	.2byte EC_WORD_CONFUSED +	.2byte EC_MOVE2(CONFUSION) +	.2byte EC_WORD_CONGRATS +	.2byte EC_MOVE(CONSTRICT) +	.2byte EC_WORD_CONTEST +	.2byte EC_WORD_CONVERSATION +	.2byte EC_MOVE2(CONVERSION) +	.2byte EC_MOVE2(CONVERSION_2) +	.2byte EC_WORD_COOL +	.2byte EC_WORD_COOLNESS +	.2byte EC_POKEMON(CORPHISH) +	.2byte EC_WORD_CORRECT +	ec_duplicates 2 +	.2byte EC_POKEMON(CORSOLA) +	.2byte EC_POKEMON2(CORSOLA) +	.2byte EC_MOVE(COSMIC_POWER) +	.2byte EC_MOVE2(COTTON_SPORE) +	.2byte EC_WORD_COULD +	.2byte EC_WORD_COULDN_T +	.2byte EC_WORD_COUNT_ON +	.2byte EC_MOVE(COUNTER) +	.2byte EC_WORD_COUPLE +	.2byte EC_MOVE2(COVET) +	.2byte EC_MOVE(CRABHAMMER) +	.2byte EC_POKEMON(CRADILY) +	.2byte EC_POKEMON(CRAWDAUNT) +	.2byte EC_WORD_CRIES +	ec_duplicates 2 +	.2byte EC_POKEMON(CROBAT) +	.2byte EC_POKEMON2(CROBAT) +	.2byte EC_POKEMON2(CROCONAW) +	.2byte EC_MOVE(CROSS_CHOP) +	.2byte EC_MOVE(CRUNCH) +	.2byte EC_MOVE2(CRUSH_CLAW) +	.2byte EC_WORD_CRY +	.2byte EC_POKEMON2(CUBONE) +	.2byte EC_WORD_CURRENT +	.2byte EC_MOVE2(CURSE) +	.2byte EC_MOVE(CUT) +	.2byte EC_WORD_CUTE +	.2byte EC_WORD_CUTE_CHARM +	.2byte EC_WORD_CUTENESS +	.2byte EC_POKEMON2(CYNDAQUIL)  gEasyChatWordsByLetter_D: -	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_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 -	ec_duplicates 2 -	ec_pokemon1 DODRIO -	ec_pokemon2 DODRIO -	ec_duplicates 2 -	ec_pokemon1 DODUO -	ec_pokemon2 DODUO -	ec_word DOES -	ec_word DOESN_T -	ec_word DON_T -	ec_word DONE -	ec_duplicates 2 -	ec_pokemon1 DONPHAN -	ec_pokemon2 DONPHAN -	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 +	.2byte EC_WORD_DAILY +	.2byte EC_WORD_DAMP +	.2byte EC_WORD_DANCE +	.2byte EC_WORD_DANGER +	.2byte EC_WORD_DARK +	.2byte EC_WORD_DARN +	.2byte EC_WORD_DATE +	.2byte EC_WORD_DAUGHTER +	.2byte EC_WORD_DAY +	.2byte EC_WORD_DAYS +	.2byte EC_WORD_DAYTIME +	.2byte EC_WORD_DECIDE +	.2byte EC_WORD_DECIDED +	.2byte EC_WORD_DEEP +	.2byte EC_WORD_DEFEATED +	.2byte EC_MOVE2(DEFENSE_CURL) +	.2byte EC_POKEMON(DELCATTY) +	.2byte EC_POKEMON2(DELIBIRD) +	.2byte EC_POKEMON(DEOXYS) +	.2byte EC_WORD_DEPT_STORE +	.2byte EC_WORD_DESIGN +	.2byte EC_WORD_DESTINY +	.2byte EC_MOVE2(DESTINY_BOND) +	.2byte EC_WORD_DESTROYED +	.2byte EC_MOVE2(DETECT) +	.2byte EC_POKEMON2(DEWGONG) +	.2byte EC_WORD_DID +	.2byte EC_WORD_DIDN_T +	.2byte EC_WORD_DIET +	.2byte EC_WORD_DIFFERENT +	.2byte EC_MOVE(DIG) +	.2byte EC_WORD_DIGITAL +	.2byte EC_POKEMON2(DIGLETT) +	.2byte EC_MOVE(DISABLE) +	.2byte EC_WORD_DISAPPEAR +	.2byte EC_WORD_DISAPPOINT +	.2byte EC_WORD_DISAPPOINTED +	.2byte EC_WORD_DISAPPOINTS +	.2byte EC_WORD_DISASTER +	.2byte EC_WORD_DISLIKE +	.2byte EC_WORD_DISLIKES +	.2byte EC_POKEMON2(DITTO) +	.2byte EC_MOVE2(DIVE) +	.2byte EC_MOVE2(DIZZY_PUNCH) +	.2byte EC_WORD_DO +	.2byte EC_WORD_DOCILE +	ec_duplicates 2 +	.2byte EC_POKEMON(DODRIO) +	.2byte EC_POKEMON2(DODRIO) +	ec_duplicates 2 +	.2byte EC_POKEMON(DODUO) +	.2byte EC_POKEMON2(DODUO) +	.2byte EC_WORD_DOES +	.2byte EC_WORD_DOESN_T +	.2byte EC_WORD_DON_T +	.2byte EC_WORD_DONE +	ec_duplicates 2 +	.2byte EC_POKEMON(DONPHAN) +	.2byte EC_POKEMON2(DONPHAN) +	.2byte EC_MOVE2(DOUBLE_KICK) +	.2byte EC_MOVE(DOUBLE_TEAM) +	.2byte EC_MOVE(DOUBLE_EDGE) +	.2byte EC_MOVE(DOUBLE_SLAP) +	.2byte EC_WORD_DOWN +	.2byte EC_WORD_DOWNCAST +	.2byte EC_WORD_DRAGON +	.2byte EC_MOVE2(DRAGON_CLAW) +	.2byte EC_MOVE2(DRAGON_DANCE) +	.2byte EC_MOVE2(DRAGON_RAGE) +	.2byte EC_POKEMON2(DRAGONAIR) +	.2byte EC_MOVE2(DRAGON_BREATH) +	.2byte EC_POKEMON2(DRAGONITE) +	.2byte EC_POKEMON2(DRATINI) +	.2byte EC_WORD_DREAM +	.2byte EC_MOVE2(DREAM_EATER) +	.2byte EC_MOVE2(DRILL_PECK) +	.2byte EC_WORD_DRINK +	.2byte EC_WORD_DRINKS +	.2byte EC_WORD_DRIZZLE +	.2byte EC_WORD_DROOLING +	.2byte EC_WORD_DROUGHT +	.2byte EC_POKEMON2(DROWZEE) +	.2byte EC_WORD_DUDE +	.2byte EC_POKEMON2(DUGTRIO) +	.2byte EC_POKEMON2(DUNSPARCE) +	.2byte EC_POKEMON(DUSCLOPS) +	.2byte EC_POKEMON(DUSKULL) +	.2byte EC_POKEMON(DUSTOX) +	.2byte EC_MOVE2(DYNAMIC_PUNCH)  gEasyChatWordsByLetter_E: -	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 -	ec_duplicates 2 -	ec_pokemon1 ELECTRODE -	ec_pokemon2 ELECTRODE -	ec_pokemon2 ELEKID -	ec_word ELSE -	ec_move2 EMBER -	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 +	.2byte EC_WORD_EARLIER +	.2byte EC_WORD_EARLY_BIRD +	.2byte EC_MOVE(EARTHQUAKE) +	.2byte EC_WORD_EASY +	.2byte EC_WORD_EAT +	.2byte EC_WORD_EATS +	.2byte EC_WORD_EEK +	.2byte EC_POKEMON2(EEVEE) +	.2byte EC_WORD_EFFECT_SPORE +	.2byte EC_WORD_EGG +	.2byte EC_MOVE2(EGG_BOMB) +	.2byte EC_WORD_EH_QUES +	.2byte EC_WORD_EHEHE +	.2byte EC_POKEMON2(EKANS) +	.2byte EC_POKEMON2(ELECTABUZZ) +	.2byte EC_WORD_ELECTRIC +	.2byte EC_POKEMON(ELECTRIKE) +	ec_duplicates 2 +	.2byte EC_POKEMON(ELECTRODE) +	.2byte EC_POKEMON2(ELECTRODE) +	.2byte EC_POKEMON2(ELEKID) +	.2byte EC_WORD_ELSE +	.2byte EC_MOVE2(EMBER) +	.2byte EC_MOVE(ENCORE) +	.2byte EC_WORD_ENCYCLOPEDIA +	.2byte EC_WORD_END +	.2byte EC_MOVE(ENDEAVOR) +	.2byte EC_MOVE(ENDURE) +	.2byte EC_WORD_ENJOY +	.2byte EC_WORD_ENJOYS +	.2byte EC_WORD_ENOUGH +	.2byte EC_POKEMON2(ENTEI) +	.2byte EC_WORD_ENTERTAINING +	.2byte EC_MOVE2(ERUPTION) +	.2byte EC_WORD_ESCAPE +	.2byte EC_POKEMON2(ESPEON) +	.2byte EC_WORD_EVEN_SO +	.2byte EC_WORD_EVENT +	.2byte EC_WORD_EVENTS +	.2byte EC_WORD_EVER +	.2byte EC_WORD_EVERY +	.2byte EC_WORD_EVOLUTION +	.2byte EC_WORD_EVOLVE +	.2byte EC_WORD_EXCELLENT +	.2byte EC_WORD_EXCESS +	.2byte EC_WORD_EXCITE +	.2byte EC_WORD_EXCITING +	.2byte EC_WORD_EXCUSE +	.2byte EC_WORD_EXCUSE_ME +	.2byte EC_POKEMON2(EXEGGCUTE) +	.2byte EC_POKEMON2(EXEGGUTOR) +	.2byte EC_WORD_EXISTS +	.2byte EC_WORD_EXPENSIVE +	.2byte EC_MOVE2(EXPLOSION) +	.2byte EC_POKEMON(EXPLOUD) +	.2byte EC_MOVE(EXTRASENSORY) +	.2byte EC_MOVE(EXTREME_SPEED)  gEasyChatWordsByLetter_F: -	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 FARFETCHD -	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_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_word FRIDAY -	ec_word FRIEND -	ec_word FROM -	ec_word FRONT -	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 +	.2byte EC_WORD_FABULOUS +	.2byte EC_MOVE(FACADE) +	.2byte EC_WORD_FAINT +	.2byte EC_MOVE2(FAINT_ATTACK) +	.2byte EC_WORD_FAINTED +	.2byte EC_MOVE2(FAKE_OUT) +	.2byte EC_MOVE(FAKE_TEARS) +	.2byte EC_WORD_FALL +	.2byte EC_MOVE2(FALSE_SWIPE) +	.2byte EC_WORD_FAMILY +	.2byte EC_WORD_FANTASTIC +	.2byte EC_WORD_FAR +	.2byte EC_POKEMON2(FARFETCHD) +	.2byte EC_WORD_FASHION +	.2byte EC_WORD_FAST +	.2byte EC_WORD_FATHER +	.2byte EC_WORD_FEAR +	.2byte EC_POKEMON2(FEAROW) +	.2byte EC_MOVE2(FEATHER_DANCE) +	.2byte EC_POKEMON(FEEBAS) +	.2byte EC_WORD_FEELING +	.2byte EC_POKEMON2(FERALIGATR) +	.2byte EC_WORD_FESTIVAL +	.2byte EC_WORD_FEVER +	.2byte EC_WORD_FIERY +	.2byte EC_WORD_FIGHT +	.2byte EC_WORD_FIGHTING +	.2byte EC_WORD_FIGHTS +	.2byte EC_WORD_FINAL +	.2byte EC_WORD_FINALLY +	.2byte EC_WORD_FINISH +	.2byte EC_WORD_FIRE +	.2byte EC_MOVE2(FIRE_BLAST) +	.2byte EC_MOVE2(FIRE_PUNCH) +	.2byte EC_MOVE2(FIRE_SPIN) +	.2byte EC_WORD_FISHING +	.2byte EC_MOVE(FISSURE) +	.2byte EC_POKEMON2(FLAAFFY) +	.2byte EC_MOVE(FLAIL) +	.2byte EC_WORD_FLAME_BODY +	.2byte EC_MOVE(FLAME_WHEEL) +	.2byte EC_MOVE(FLAMETHROWER) +	.2byte EC_POKEMON2(FLAREON) +	.2byte EC_MOVE2(FLASH) +	.2byte EC_WORD_FLASH_FIRE +	.2byte EC_WORD_FLATTEN +	.2byte EC_MOVE(FLATTER) +	.2byte EC_WORD_FLOWERS +	.2byte EC_MOVE(FLY) +	.2byte EC_POKEMON(FLYGON) +	.2byte EC_WORD_FLYING +	.2byte EC_MOVE(FOCUS_ENERGY) +	.2byte EC_MOVE(FOCUS_PUNCH) +	.2byte EC_WORD_FOE +	.2byte EC_MOVE(FOLLOW_ME) +	.2byte EC_WORD_FOR +	.2byte EC_WORD_FOR_NOW +	.2byte EC_WORD_FORECAST +	.2byte EC_MOVE2(FORESIGHT) +	.2byte EC_WORD_FOREVER +	.2byte EC_WORD_FORGET +	.2byte EC_WORD_FORGETS +	.2byte EC_WORD_FORGIVE +	.2byte EC_POKEMON2(FORRETRESS) +	.2byte EC_WORD_FRIDAY +	.2byte EC_WORD_FRIEND +	.2byte EC_WORD_FROM +	.2byte EC_WORD_FRONT +	.2byte EC_MOVE2(FRUSTRATION) +	.2byte EC_WORD_FUFUFU +	.2byte EC_WORD_FULL +	.2byte EC_WORD_FUNNY +	.2byte EC_POKEMON2(FURRET) +	.2byte EC_MOVE2(FURY_ATTACK) +	.2byte EC_MOVE2(FURY_CUTTER) +	.2byte EC_MOVE2(FURY_SWIPES) +	.2byte EC_MOVE2(FUTURE_SIGHT)  gEasyChatWordsByLetter_G: -	ec_word GAME -	ec_pokemon1 GARDEVOIR -	ec_pokemon2 GASTLY -	ec_pokemon2 GENGAR -	ec_word GENIUS -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 GOLBAT -	ec_pokemon2 GOLBAT -	ec_duplicates 2 -	ec_pokemon1 GOLDEEN -	ec_pokemon2 GOLDEEN -	ec_duplicates 2 -	ec_pokemon1 GOLDUCK -	ec_pokemon2 GOLDUCK -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 GRAVELER -	ec_pokemon2 GRAVELER -	ec_word GREAT -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 GYARADOS -	ec_pokemon2 GYARADOS +	.2byte EC_WORD_GAME +	.2byte EC_POKEMON(GARDEVOIR) +	.2byte EC_POKEMON2(GASTLY) +	.2byte EC_POKEMON2(GENGAR) +	.2byte EC_WORD_GENIUS +	ec_duplicates 2 +	.2byte EC_POKEMON(GEODUDE) +	.2byte EC_POKEMON2(GEODUDE) +	.2byte EC_WORD_GET +	.2byte EC_WORD_GETS +	.2byte EC_WORD_GHOST +	.2byte EC_WORD_GIDDY +	.2byte EC_MOVE(GIGA_DRAIN) +	.2byte EC_WORD_GIGGLE +	.2byte EC_WORD_GIMME +	ec_duplicates 2 +	.2byte EC_POKEMON(GIRAFARIG) +	.2byte EC_POKEMON2(GIRAFARIG) +	.2byte EC_WORD_GIRL +	.2byte EC_WORD_GIVE +	.2byte EC_WORD_GIVE_ME +	.2byte EC_WORD_GIVE_UP +	.2byte EC_WORD_GIVES +	.2byte EC_POKEMON(GLALIE) +	.2byte EC_MOVE2(GLARE) +	.2byte EC_POKEMON2(GLIGAR) +	ec_duplicates 2 +	.2byte EC_POKEMON(GLOOM) +	.2byte EC_POKEMON2(GLOOM) +	.2byte EC_WORD_GO +	.2byte EC_WORD_GO_AHEAD +	.2byte EC_WORD_GO_EASY +	.2byte EC_WORD_GO_HOME +	.2byte EC_WORD_GOES +	.2byte EC_WORD_GOING +	ec_duplicates 2 +	.2byte EC_POKEMON(GOLBAT) +	.2byte EC_POKEMON2(GOLBAT) +	ec_duplicates 2 +	.2byte EC_POKEMON(GOLDEEN) +	.2byte EC_POKEMON2(GOLDEEN) +	ec_duplicates 2 +	.2byte EC_POKEMON(GOLDUCK) +	.2byte EC_POKEMON2(GOLDUCK) +	ec_duplicates 2 +	.2byte EC_POKEMON(GOLEM) +	.2byte EC_POKEMON2(GOLEM) +	.2byte EC_WORD_GOOD +	.2byte EC_WORD_GOOD_BYE +	.2byte EC_POKEMON(GOREBYSS) +	.2byte EC_WORD_GOT +	.2byte EC_WORD_GOTCHA +	.2byte EC_WORD_GOURMET +	.2byte EC_WORD_GRAAAH +	.2byte EC_POKEMON2(GRANBULL) +	.2byte EC_WORD_GRANDFATHER +	.2byte EC_WORD_GRANDMOTHER +	.2byte EC_WORD_GRASS +	.2byte EC_MOVE(GRASS_WHISTLE) +	ec_duplicates 2 +	.2byte EC_POKEMON(GRAVELER) +	.2byte EC_POKEMON2(GRAVELER) +	.2byte EC_WORD_GREAT +	ec_duplicates 2 +	.2byte EC_POKEMON(GRIMER) +	.2byte EC_POKEMON2(GRIMER) +	.2byte EC_POKEMON(GROUDON) +	.2byte EC_WORD_GROUND +	.2byte EC_WORD_GROUP +	.2byte EC_POKEMON(GROVYLE) +	.2byte EC_MOVE2(GROWL) +	.2byte EC_POKEMON2(GROWLITHE) +	.2byte EC_MOVE(GROWTH) +	.2byte EC_MOVE(GRUDGE) +	.2byte EC_POKEMON(GRUMPIG) +	.2byte EC_WORD_GUARD +	.2byte EC_MOVE2(GUILLOTINE) +	.2byte EC_POKEMON(GULPIN) +	.2byte EC_MOVE(GUST) +	.2byte EC_WORD_GUTS +	.2byte EC_WORD_GUTSY +	.2byte EC_WORD_GWAH +	.2byte EC_WORD_GWAHAHAHA +	ec_duplicates 2 +	.2byte EC_POKEMON(GYARADOS) +	.2byte EC_POKEMON2(GYARADOS)  gEasyChatWordsByLetter_H: -	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 -	ec_word HERS -	ec_duplicates 2 -	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 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 -	ec_duplicates 2 -	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_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 +	.2byte EC_WORD_HABIT +	.2byte EC_WORD_HAH +	.2byte EC_WORD_HAHAHA +	.2byte EC_MOVE(HAIL) +	.2byte EC_WORD_HALL_OF_FAME +	.2byte EC_WORD_HAPPENING +	.2byte EC_WORD_HAPPILY +	.2byte EC_WORD_HAPPINESS +	.2byte EC_WORD_HAPPY +	.2byte EC_WORD_HARD +	.2byte EC_MOVE(HARDEN) +	.2byte EC_POKEMON(HARIYAMA) +	.2byte EC_WORD_HAS +	.2byte EC_WORD_HASSLE +	.2byte EC_POKEMON2(HAUNTER) +	.2byte EC_WORD_HAVE +	.2byte EC_WORD_HAVEN_T +	.2byte EC_MOVE(HAZE) +	.2byte EC_WORD_HE +	.2byte EC_WORD_HE_S +	.2byte EC_MOVE(HEADBUTT) +	.2byte EC_MOVE(HEAL_BELL) +	.2byte EC_WORD_HEALTHY +	.2byte EC_WORD_HEAR +	.2byte EC_WORD_HEARING +	.2byte EC_WORD_HEARS +	.2byte EC_WORD_HEART +	.2byte EC_MOVE2(HEAT_WAVE) +	.2byte EC_WORD_HEH +	.2byte EC_WORD_HEHE +	.2byte EC_WORD_HEHEHE +	.2byte EC_WORD_HELLO +	.2byte EC_MOVE2(HELPING_HAND) +	.2byte EC_WORD_HER +	.2byte EC_WORD_HERS +	ec_duplicates 2 +	.2byte EC_POKEMON(HERACROSS) +	.2byte EC_POKEMON2(HERACROSS) +	.2byte EC_WORD_HERE +	.2byte EC_WORD_HERE_GOES +	.2byte EC_WORD_HERE_I_COME +	.2byte EC_WORD_HERE_IT_IS +	.2byte EC_WORD_HERO +	.2byte EC_WORD_HEROINE +	.2byte EC_WORD_HEY +	.2byte EC_WORD_HEY_THERE +	.2byte EC_WORD_HEY_QUES +	.2byte EC_WORD_HI +	.2byte EC_MOVE2(HI_JUMP_KICK) +	.2byte EC_WORD_HIDDEN +	.2byte EC_MOVE2(HIDDEN_POWER) +	.2byte EC_WORD_HIGH +	.2byte EC_WORD_HIGHS +	.2byte EC_WORD_HIM +	.2byte EC_WORD_HIP_AND +	.2byte EC_WORD_HIS +	.2byte EC_WORD_HIT +	.2byte EC_POKEMON2(HITMONCHAN) +	.2byte EC_POKEMON2(HITMONLEE) +	.2byte EC_POKEMON2(HITMONTOP) +	.2byte EC_WORD_HIYAH +	.2byte EC_WORD_HMM +	.2byte EC_POKEMON2(HO_OH) +	.2byte EC_WORD_HOBBY +	.2byte EC_WORD_HOHOHO +	.2byte EC_WORD_HOLIDAY +	.2byte EC_WORD_HOME +	.2byte EC_WORD_HOO_HAH +	.2byte EC_POKEMON2(HOOTHOOT) +	.2byte EC_WORD_HOPELESS +	.2byte EC_POKEMON2(HOPPIP) +	.2byte EC_MOVE2(HORN_ATTACK) +	.2byte EC_MOVE2(HORN_DRILL) +	ec_duplicates 2 +	.2byte EC_POKEMON(HORSEA) +	.2byte EC_POKEMON2(HORSEA) +	.2byte EC_WORD_HOT +	.2byte EC_POKEMON2(HOUNDOOM) +	.2byte EC_POKEMON2(HOUNDOUR) +	.2byte EC_WORD_HOW +	.2byte EC_WORD_HOW_DO +	.2byte EC_WORD_HOWEVER +	.2byte EC_MOVE2(HOWL) +	.2byte EC_WORD_HUGE_POWER +	.2byte EC_WORD_HUH_QUES +	.2byte EC_WORD_HUMPH +	.2byte EC_WORD_HUNGRY +	.2byte EC_POKEMON(HUNTAIL) +	.2byte EC_WORD_HURRIED +	.2byte EC_WORD_HUSTLE +	.2byte EC_MOVE2(HYDRO_PUMP) +	.2byte EC_WORD_HYPER +	.2byte EC_MOVE2(HYPER_BEAM) +	.2byte EC_WORD_HYPER_CUTTER +	.2byte EC_MOVE2(HYPER_FANG) +	.2byte EC_MOVE2(HYPER_VOICE) +	.2byte EC_POKEMON2(HYPNO) +	.2byte EC_MOVE(HYPNOSIS)  gEasyChatWordsByLetter_I: -	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_move1 ICY_WIND -	ec_word IDOL -	ec_word IF -	ec_word IF_I_LOSE -	ec_word IF_I_WIN -	ec_duplicates 2 -	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 +	.2byte EC_WORD_I +	.2byte EC_WORD_I_AM +	.2byte EC_WORD_I_CHOOSE_YOU +	.2byte EC_WORD_I_WAS +	.2byte EC_WORD_I_VE +	.2byte EC_WORD_I_VE_ARRIVED +	.2byte EC_WORD_ICE +	.2byte EC_MOVE(ICE_BALL) +	.2byte EC_MOVE2(ICE_BEAM) +	.2byte EC_MOVE2(ICE_PUNCH) +	.2byte EC_MOVE(ICY_WIND) +	.2byte EC_WORD_IDOL +	.2byte EC_WORD_IF +	.2byte EC_WORD_IF_I_LOSE +	.2byte EC_WORD_IF_I_WIN +	ec_duplicates 2 +	.2byte EC_POKEMON(IGGLYBUFF) +	.2byte EC_POKEMON2(IGGLYBUFF) +	.2byte EC_WORD_IGNORANT +	.2byte EC_WORD_ILLUMINATE +	.2byte EC_POKEMON(ILLUMISE) +	.2byte EC_WORD_IMMUNITY +	.2byte EC_WORD_IMPORTANT +	.2byte EC_WORD_IMPOSSIBLE +	.2byte EC_MOVE2(IMPRISON) +	.2byte EC_WORD_IN +	.2byte EC_WORD_INCREASING +	.2byte EC_WORD_INCREDIBLE +	.2byte EC_WORD_INFORMATION +	.2byte EC_MOVE2(INGRAIN) +	.2byte EC_WORD_INNER_FOCUS +	.2byte EC_WORD_INSIDE +	.2byte EC_WORD_INSOMNIA +	.2byte EC_WORD_INSTEAD +	.2byte EC_WORD_INTIMIDATE +	.2byte EC_WORD_INVINCIBLE +	.2byte EC_MOVE2(IRON_DEFENSE) +	.2byte EC_MOVE(IRON_TAIL) +	.2byte EC_WORD_IS +	.2byte EC_WORD_IS_IT_QUES +	.2byte EC_WORD_ISN_T +	.2byte EC_WORD_ISN_T_IT_QUES +	.2byte EC_WORD_IT +	.2byte EC_WORD_IT_S +	.2byte EC_WORD_ITEM +	.2byte EC_POKEMON2(IVYSAUR)  gEasyChatWordsByLetter_J:  	ec_duplicates 2 -	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 +	.2byte EC_POKEMON(JIGGLYPUFF) +	.2byte EC_POKEMON2(JIGGLYPUFF) +	.2byte EC_POKEMON(JIRACHI) +	.2byte EC_WORD_JOKING +	.2byte EC_POKEMON2(JOLTEON) +	.2byte EC_WORD_JOY +	.2byte EC_WORD_JUDGE +	.2byte EC_MOVE2(JUMP_KICK) +	.2byte EC_POKEMON2(JUMPLUFF) +	.2byte EC_WORD_JUST +	.2byte EC_POKEMON2(JYNX)  gEasyChatWordsByLetter_K: -	ec_pokemon2 KABUTO -	ec_pokemon2 KABUTOPS -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 KOFFING -	ec_pokemon2 KOFFING -	ec_pokemon2 KRABBY -	ec_word KTHX_BYE -	ec_pokemon1 KYOGRE +	.2byte EC_POKEMON2(KABUTO) +	.2byte EC_POKEMON2(KABUTOPS) +	ec_duplicates 2 +	.2byte EC_POKEMON(KADABRA) +	.2byte EC_POKEMON2(KADABRA) +	.2byte EC_POKEMON2(KAKUNA) +	.2byte EC_POKEMON2(KANGASKHAN) +	.2byte EC_MOVE(KARATE_CHOP) +	.2byte EC_POKEMON(KECLEON) +	.2byte EC_WORD_KEEN_EYE +	.2byte EC_WORD_KID +	.2byte EC_WORD_KIDDING +	.2byte EC_WORD_KIND +	.2byte EC_WORD_KINDERGARTEN +	.2byte EC_MOVE(KINESIS) +	ec_duplicates 2 +	.2byte EC_POKEMON(KINGDRA) +	.2byte EC_POKEMON2(KINGDRA) +	.2byte EC_POKEMON2(KINGLER) +	.2byte EC_POKEMON(KIRLIA) +	.2byte EC_MOVE2(KNOCK_OFF) +	.2byte EC_WORD_KNOCKOUT +	.2byte EC_WORD_KNOW +	.2byte EC_WORD_KNOWS +	ec_duplicates 2 +	.2byte EC_POKEMON(KOFFING) +	.2byte EC_POKEMON2(KOFFING) +	.2byte EC_POKEMON2(KRABBY) +	.2byte EC_WORD_KTHX_BYE +	.2byte EC_POKEMON(KYOGRE)  gEasyChatWordsByLetter_L: -	ec_word LACKING -	ec_word LACKS -	ec_word LADY -	ec_pokemon1 LAIRON -	ec_word LALALA -	ec_duplicates 2 -	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_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 +	.2byte EC_WORD_LACKING +	.2byte EC_WORD_LACKS +	.2byte EC_WORD_LADY +	.2byte EC_POKEMON(LAIRON) +	.2byte EC_WORD_LALALA +	ec_duplicates 2 +	.2byte EC_POKEMON(LANTURN) +	.2byte EC_POKEMON2(LANTURN) +	.2byte EC_POKEMON2(LAPRAS) +	.2byte EC_POKEMON2(LARVITAR) +	.2byte EC_WORD_LAST +	.2byte EC_WORD_LATE +	.2byte EC_WORD_LATER +	.2byte EC_POKEMON(LATIAS) +	.2byte EC_POKEMON(LATIOS) +	.2byte EC_WORD_LAVISH +	.2byte EC_WORD_LAY +	.2byte EC_WORD_LEADER +	.2byte EC_WORD_LEADERS +	.2byte EC_MOVE2(LEAF_BLADE) +	.2byte EC_WORD_LEARN +	.2byte EC_POKEMON2(LEDIAN) +	.2byte EC_POKEMON2(LEDYBA) +	.2byte EC_MOVE(LEECH_LIFE) +	.2byte EC_MOVE2(LEECH_SEED) +	.2byte EC_MOVE2(LEER) +	.2byte EC_WORD_LEFT +	.2byte EC_WORD_LEGEND +	.2byte EC_WORD_LESS +	.2byte EC_WORD_LESSONS +	.2byte EC_WORD_LET_ME_WIN +	.2byte EC_WORD_LET_S +	.2byte EC_WORD_LETTER +	.2byte EC_WORD_LEVEL +	.2byte EC_WORD_LEVITATE +	.2byte EC_MOVE(LICK) +	.2byte EC_POKEMON2(LICKITUNG) +	.2byte EC_WORD_LIE +	.2byte EC_WORD_LIFE +	.2byte EC_MOVE2(LIGHT_SCREEN) +	.2byte EC_WORD_LIGHTNINGROD +	.2byte EC_WORD_LIKE +	.2byte EC_WORD_LIKELY_TO +	.2byte EC_WORD_LIKES +	.2byte EC_POKEMON(LILEEP) +	.2byte EC_WORD_LIMBER +	.2byte EC_WORD_LINK +	.2byte EC_POKEMON(LINOONE) +	.2byte EC_WORD_LIQUID_OOZE +	.2byte EC_WORD_LISTEN +	.2byte EC_WORD_LISTENING +	.2byte EC_WORD_LISTENS +	.2byte EC_WORD_LIVING +	.2byte EC_MOVE2(LOCK_ON) +	.2byte EC_WORD_LOCOMOTIVE +	.2byte EC_WORD_LOL +	.2byte EC_WORD_LOLLING +	.2byte EC_POKEMON(LOMBRE) +	.2byte EC_WORD_LONESOME +	.2byte EC_WORD_LOOK +	.2byte EC_WORD_LOOKS +	.2byte EC_WORD_LOSE +	.2byte EC_WORD_LOSER +	.2byte EC_WORD_LOSING +	.2byte EC_WORD_LOSS +	.2byte EC_WORD_LOST +	.2byte EC_POKEMON(LOTAD) +	.2byte EC_POKEMON(LOUDRED) +	.2byte EC_WORD_LOUSY +	.2byte EC_MOVE(LOVELY_KISS) +	.2byte EC_WORD_LOVEY_DOVEY +	.2byte EC_WORD_LOW +	.2byte EC_MOVE(LOW_KICK) +	.2byte EC_WORD_LOWS +	.2byte EC_POKEMON(LUDICOLO) +	.2byte EC_POKEMON2(LUGIA) +	.2byte EC_WORD_LUKEWARM +	.2byte EC_POKEMON(LUNATONE) +	.2byte EC_MOVE2(LUSTER_PURGE) +	.2byte EC_POKEMON(LUVDISC)  gEasyChatWordsByLetter_M: -	ec_move2 MACH_PUNCH -	ec_duplicates 2 -	ec_pokemon1 MACHAMP -	ec_pokemon2 MACHAMP -	ec_word MACHINE -	ec_duplicates 2 -	ec_pokemon1 MACHOKE -	ec_pokemon2 MACHOKE -	ec_duplicates 2 -	ec_pokemon1 MACHOP -	ec_pokemon2 MACHOP -	ec_word MAGAZINE -	ec_pokemon2 MAGBY -	ec_duplicates 2 -	ec_pokemon1 MAGCARGO -	ec_pokemon2 MAGCARGO -	ec_move2 MAGIC_COAT -	ec_move2 MAGICAL_LEAF -	ec_duplicates 2 -	ec_pokemon1 MAGIKARP -	ec_pokemon2 MAGIKARP -	ec_word MAGMA_ARMOR -	ec_pokemon2 MAGMAR -	ec_duplicates 2 -	ec_pokemon1 MAGNEMITE -	ec_pokemon2 MAGNEMITE -	ec_word MAGNET_PULL -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 +	.2byte EC_MOVE2(MACH_PUNCH) +	ec_duplicates 2 +	.2byte EC_POKEMON(MACHAMP) +	.2byte EC_POKEMON2(MACHAMP) +	.2byte EC_WORD_MACHINE +	ec_duplicates 2 +	.2byte EC_POKEMON(MACHOKE) +	.2byte EC_POKEMON2(MACHOKE) +	ec_duplicates 2 +	.2byte EC_POKEMON(MACHOP) +	.2byte EC_POKEMON2(MACHOP) +	.2byte EC_WORD_MAGAZINE +	.2byte EC_POKEMON2(MAGBY) +	ec_duplicates 2 +	.2byte EC_POKEMON(MAGCARGO) +	.2byte EC_POKEMON2(MAGCARGO) +	.2byte EC_MOVE2(MAGIC_COAT) +	.2byte EC_MOVE2(MAGICAL_LEAF) +	ec_duplicates 2 +	.2byte EC_POKEMON(MAGIKARP) +	.2byte EC_POKEMON2(MAGIKARP) +	.2byte EC_WORD_MAGMA_ARMOR +	.2byte EC_POKEMON2(MAGMAR) +	ec_duplicates 2 +	.2byte EC_POKEMON(MAGNEMITE) +	.2byte EC_POKEMON2(MAGNEMITE) +	.2byte EC_WORD_MAGNET_PULL +	ec_duplicates 2 +	.2byte EC_POKEMON(MAGNETON) +	.2byte EC_POKEMON2(MAGNETON) +	.2byte EC_MOVE2(MAGNITUDE) +	.2byte EC_WORD_MAIL +	.2byte EC_WORD_MAKE +	.2byte EC_WORD_MAKING +	.2byte EC_POKEMON(MAKUHITA) +	.2byte EC_WORD_MAN +	.2byte EC_POKEMON(MANECTRIC) +	.2byte EC_POKEMON2(MANKEY) +	.2byte EC_POKEMON2(MANTINE) +	.2byte EC_POKEMON2(MAREEP) +	ec_duplicates 2 +	.2byte EC_POKEMON(MARILL) +	.2byte EC_POKEMON2(MARILL) +	.2byte EC_POKEMON2(MAROWAK) +	.2byte EC_POKEMON(MARSHTOMP) +	.2byte EC_WORD_MARVEL_SCALE +	.2byte EC_POKEMON(MASQUERAIN) +	.2byte EC_WORD_MASTER +	.2byte EC_WORD_MATCH +	.2byte EC_WORD_MATCH_UP +	.2byte EC_POKEMON(MAWILE) +	.2byte EC_WORD_MAYBE +	.2byte EC_WORD_MC +	.2byte EC_WORD_ME +	.2byte EC_WORD_MEAN +	.2byte EC_MOVE(MEAN_LOOK) +	.2byte EC_POKEMON(MEDICHAM) +	.2byte EC_MOVE2(MEDITATE) +	.2byte EC_POKEMON(MEDITITE) +	.2byte EC_WORD_MEET +	.2byte EC_WORD_MEET_YOU +	.2byte EC_WORD_MEETS +	.2byte EC_WORD_MEGA +	.2byte EC_MOVE2(MEGA_DRAIN) +	.2byte EC_MOVE2(MEGA_KICK) +	.2byte EC_MOVE2(MEGA_PUNCH) +	.2byte EC_MOVE2(MEGAHORN) +	.2byte EC_POKEMON2(MEGANIUM) +	.2byte EC_MOVE(MEMENTO) +	.2byte EC_POKEMON2(MEOWTH) +	.2byte EC_WORD_MESSAGE +	.2byte EC_POKEMON(METAGROSS) +	.2byte EC_MOVE2(METAL_CLAW) +	.2byte EC_MOVE(METAL_SOUND) +	.2byte EC_POKEMON(METANG) +	.2byte EC_POKEMON2(METAPOD) +	.2byte EC_MOVE(METEOR_MASH) +	.2byte EC_MOVE2(METRONOME) +	.2byte EC_POKEMON2(MEW) +	.2byte EC_POKEMON2(MEWTWO) +	.2byte EC_POKEMON(MIGHTYENA) +	.2byte EC_MOVE2(MILK_DRINK) +	.2byte EC_POKEMON(MILOTIC) +	.2byte EC_POKEMON2(MILTANK) +	.2byte EC_MOVE2(MIMIC) +	.2byte EC_MOVE(MIND_READER) +	.2byte EC_MOVE2(MINIMIZE) +	.2byte EC_POKEMON(MINUN) +	.2byte EC_WORD_MINUS +	.2byte EC_MOVE2(MIRROR_COAT) +	.2byte EC_MOVE(MIRROR_MOVE) +	.2byte EC_POKEMON2(MISDREAVUS) +	.2byte EC_WORD_MISHEARD +	.2byte EC_WORD_MISS +	.2byte EC_MOVE(MIST) +	.2byte EC_MOVE2(MIST_BALL) +	.2byte EC_WORD_MISTAKE +	.2byte EC_WORD_MMM +	.2byte EC_WORD_MODE +	.2byte EC_WORD_MODERN +	.2byte EC_POKEMON2(MOLTRES) +	.2byte EC_WORD_MOMENTUM +	.2byte EC_WORD_MONDAY +	.2byte EC_WORD_MONEY +	.2byte EC_WORD_MONTH +	.2byte EC_WORD_MOOD +	.2byte EC_MOVE2(MOONLIGHT) +	.2byte EC_WORD_MORE +	.2byte EC_WORD_MORNING +	.2byte EC_MOVE(MORNING_SUN) +	.2byte EC_WORD_MOTHER +	.2byte EC_WORD_MOVE +	.2byte EC_WORD_MOVIE +	.2byte EC_WORD_MR +	.2byte EC_POKEMON2(MR_MIME) +	.2byte EC_WORD_MRS +	.2byte EC_WORD_MUCH +	.2byte EC_WORD_MUCH_OBLIGED +	.2byte EC_MOVE2(MUD_SHOT) +	.2byte EC_MOVE2(MUD_SPORT) +	.2byte EC_MOVE2(MUD_SLAP) +	.2byte EC_MOVE2(MUDDY_WATER) +	.2byte EC_POKEMON(MUDKIP) +	.2byte EC_WORD_MUFUFU +	ec_duplicates 2 +	.2byte EC_POKEMON(MUK) +	.2byte EC_POKEMON2(MUK) +	.2byte EC_POKEMON2(MURKROW) +	.2byte EC_WORD_MUSIC +	.2byte EC_WORD_MUST_BE +	.2byte EC_WORD_MY +	.2byte EC_WORD_MYSELF +	.2byte EC_WORD_MYSTERY  gEasyChatWordsByLetter_N: -	ec_word NAME -	ec_word NAP -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 +	.2byte EC_WORD_NAME +	.2byte EC_WORD_NAP +	ec_duplicates 2 +	.2byte EC_POKEMON(NATU) +	.2byte EC_POKEMON2(NATU) +	.2byte EC_WORD_NATURAL +	.2byte EC_WORD_NATURAL_CURE +	.2byte EC_WORD_NATURALLY +	.2byte EC_WORD_NATURE +	.2byte EC_MOVE(NATURE_POWER) +	.2byte EC_WORD_NEAR +	.2byte EC_WORD_NEARLY +	.2byte EC_WORD_NEED +	.2byte EC_MOVE2(NEEDLE_ARM) +	.2byte EC_WORD_NEGATIVE +	.2byte EC_WORD_NEVER +	.2byte EC_WORD_NEW +	.2byte EC_WORD_NEWS +	.2byte EC_WORD_NEXT +	.2byte EC_WORD_NICE +	.2byte EC_POKEMON2(NIDOKING) +	.2byte EC_POKEMON2(NIDOQUEEN) +	.2byte EC_POKEMON2(NIDORAN_F) +	.2byte EC_POKEMON2(NIDORAN_M) +	.2byte EC_POKEMON2(NIDORINA) +	.2byte EC_POKEMON2(NIDORINO) +	.2byte EC_WORD_NIGHT +	.2byte EC_MOVE2(NIGHT_SHADE) +	.2byte EC_MOVE(NIGHTMARE) +	.2byte EC_WORD_NIGHTTIME +	.2byte EC_POKEMON(NINCADA) +	ec_duplicates 2 +	.2byte EC_POKEMON(NINETALES) +	.2byte EC_POKEMON2(NINETALES) +	.2byte EC_POKEMON(NINJASK) +	.2byte EC_WORD_NITWIT +	.2byte EC_WORD_NO +	.2byte EC_WORD_NO_MATCH +	.2byte EC_WORD_NO_1 +	.2byte EC_POKEMON2(NOCTOWL) +	.2byte EC_WORD_NOISY +	.2byte EC_WORD_NON_STOP +	.2byte EC_WORD_NONE +	.2byte EC_WORD_NOPE +	.2byte EC_WORD_NORMAL +	.2byte EC_POKEMON(NOSEPASS) +	.2byte EC_WORD_NOT +	.2byte EC_WORD_NOT_VERY +	.2byte EC_WORD_NOTHING +	.2byte EC_WORD_NOW +	.2byte EC_POKEMON(NUMEL) +	.2byte EC_POKEMON(NUZLEAF)  gEasyChatWordsByLetter_O: -	ec_word OBLIVIOUS -	ec_move1 OCTAZOOKA -	ec_pokemon2 OCTILLERY -	ec_duplicates 2 -	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 +	.2byte EC_WORD_OBLIVIOUS +	.2byte EC_MOVE(OCTAZOOKA) +	.2byte EC_POKEMON2(OCTILLERY) +	ec_duplicates 2 +	.2byte EC_POKEMON(ODDISH) +	.2byte EC_POKEMON2(ODDISH) +	.2byte EC_MOVE(ODOR_SLEUTH) +	.2byte EC_WORD_OF +	.2byte EC_WORD_OFF +	.2byte EC_WORD_OFFENSIVE +	.2byte EC_WORD_OH +	.2byte EC_WORD_OH_DEAR +	.2byte EC_WORD_OH_YEAH +	.2byte EC_WORD_OH_KAY +	.2byte EC_WORD_OH_QUES +	.2byte EC_WORD_OI +	.2byte EC_WORD_OI_OI_OI +	.2byte EC_WORD_OK_QUES +	.2byte EC_WORD_OKAY +	.2byte EC_WORD_OLD +	.2byte EC_WORD_OLDEN +	.2byte EC_POKEMON2(OMANYTE) +	.2byte EC_POKEMON2(OMASTAR) +	.2byte EC_WORD_ON +	.2byte EC_WORD_ONCE +	.2byte EC_POKEMON2(ONIX) +	.2byte EC_WORD_ONLY +	.2byte EC_WORD_OOPS +	.2byte EC_WORD_OPPONENT +	.2byte EC_WORD_OPPOSITE +	.2byte EC_WORD_OR +	.2byte EC_WORD_OTHER +	.2byte EC_WORD_OUR +	.2byte EC_WORD_OUT +	.2byte EC_MOVE(OUTRAGE) +	.2byte EC_WORD_OUTSIDE +	.2byte EC_WORD_OVER +	.2byte EC_WORD_OVERDO +	.2byte EC_WORD_OVERGROW +	.2byte EC_MOVE(OVERHEAT) +	.2byte EC_WORD_OVERWHELMING +	.2byte EC_WORD_OWN +	.2byte EC_WORD_OWN_TEMPO  gEasyChatWordsByLetter_P: -	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 -	ec_duplicates 2 -	ec_pokemon1 PHANPY -	ec_pokemon2 PHANPY -	ec_word PHONE -	ec_duplicates 2 -	ec_pokemon1 PICHU -	ec_pokemon2 PICHU -	ec_word PICKUP -	ec_pokemon2 PIDGEOT -	ec_pokemon2 PIDGEOTTO -	ec_pokemon2 PIDGEY -	ec_duplicates 2 -	ec_pokemon1 PIKACHU -	ec_pokemon2 PIKACHU -	ec_pokemon2 PILOSWINE -	ec_move2 PIN_MISSILE -	ec_pokemon2 PINECO -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_word PSYCHIC -	ec_move1 PSYCHIC -	ec_duplicates 2 -	ec_pokemon1 PSYDUCK -	ec_pokemon2 PSYDUCK -	ec_move1 PSYWAVE -	ec_pokemon2 PUPITAR -	ec_word PURE_POWER -	ec_move1 PURSUIT -	ec_word PUSHOVER +	.2byte EC_MOVE(PAIN_SPLIT) +	.2byte EC_POKEMON2(PARAS) +	.2byte EC_POKEMON2(PARASECT) +	.2byte EC_WORD_PARDON +	.2byte EC_WORD_PARENT +	.2byte EC_WORD_PARTNER +	.2byte EC_WORD_PARTY +	.2byte EC_WORD_PATTERN +	.2byte EC_MOVE2(PAY_DAY) +	.2byte EC_WORD_PC +	.2byte EC_MOVE2(PECK) +	.2byte EC_POKEMON(PELIPPER) +	.2byte EC_WORD_PERFECT +	.2byte EC_WORD_PERFECTION +	.2byte EC_MOVE2(PERISH_SONG) +	.2byte EC_POKEMON2(PERSIAN) +	.2byte EC_WORD_PERSON +	.2byte EC_MOVE2(PETAL_DANCE) +	ec_duplicates 2 +	.2byte EC_POKEMON(PHANPY) +	.2byte EC_POKEMON2(PHANPY) +	.2byte EC_WORD_PHONE +	ec_duplicates 2 +	.2byte EC_POKEMON(PICHU) +	.2byte EC_POKEMON2(PICHU) +	.2byte EC_WORD_PICKUP +	.2byte EC_POKEMON2(PIDGEOT) +	.2byte EC_POKEMON2(PIDGEOTTO) +	.2byte EC_POKEMON2(PIDGEY) +	ec_duplicates 2 +	.2byte EC_POKEMON(PIKACHU) +	.2byte EC_POKEMON2(PIKACHU) +	.2byte EC_POKEMON2(PILOSWINE) +	.2byte EC_MOVE2(PIN_MISSILE) +	.2byte EC_POKEMON2(PINECO) +	ec_duplicates 2 +	.2byte EC_POKEMON(PINSIR) +	.2byte EC_POKEMON2(PINSIR) +	.2byte EC_WORD_PKRS +	.2byte EC_WORD_PLACE +	.2byte EC_WORD_PLANS +	.2byte EC_WORD_PLAY +	.2byte EC_WORD_PLAYED +	.2byte EC_WORD_PLAYS +	.2byte EC_WORD_PLEASE +	.2byte EC_WORD_PLUS +	.2byte EC_WORD_PLUSH_DOLL +	.2byte EC_POKEMON(PLUSLE) +	.2byte EC_WORD_POINTS +	.2byte EC_WORD_POISON +	.2byte EC_MOVE2(POISON_FANG) +	.2byte EC_MOVE2(POISON_GAS) +	.2byte EC_WORD_POISON_POINT +	.2byte EC_MOVE2(POISON_STING) +	.2byte EC_MOVE2(POISON_TAIL) +	.2byte EC_MOVE2(POISON_POWDER) +	.2byte EC_WORD_POKEBLOCK +	.2byte EC_WORD_POKEDEX +	.2byte EC_WORD_POKEMON +	.2byte EC_WORD_POKENAV +	.2byte EC_POKEMON2(POLITOED) +	.2byte EC_POKEMON2(POLIWAG) +	.2byte EC_POKEMON2(POLIWHIRL) +	.2byte EC_POKEMON2(POLIWRATH) +	.2byte EC_POKEMON2(PONYTA) +	.2byte EC_POKEMON(POOCHYENA) +	.2byte EC_WORD_POPULAR +	.2byte EC_POKEMON2(PORYGON) +	.2byte EC_POKEMON2(PORYGON2) +	.2byte EC_MOVE2(POUND) +	.2byte EC_MOVE(POWDER_SNOW) +	.2byte EC_WORD_POWER +	.2byte EC_WORD_PRAISE +	.2byte EC_WORD_PREPOSTEROUS +	.2byte EC_MOVE2(PRESENT) +	.2byte EC_WORD_PRESSURE +	.2byte EC_WORD_PRETEND +	.2byte EC_WORD_PRETTY +	.2byte EC_POKEMON2(PRIMEAPE) +	.2byte EC_WORD_PROBABLY +	.2byte EC_WORD_PROMISE +	.2byte EC_MOVE2(PROTECT) +	.2byte EC_MOVE(PSYBEAM) +	.2byte EC_MOVE(PSYCH_UP) +	ec_duplicates 2 +	.2byte EC_WORD_PSYCHIC +	.2byte EC_MOVE(PSYCHIC) +	ec_duplicates 2 +	.2byte EC_POKEMON(PSYDUCK) +	.2byte EC_POKEMON2(PSYDUCK) +	.2byte EC_MOVE(PSYWAVE) +	.2byte EC_POKEMON2(PUPITAR) +	.2byte EC_WORD_PURE_POWER +	.2byte EC_MOVE(PURSUIT) +	.2byte EC_WORD_PUSHOVER  gEasyChatWordsByLetter_Q: -	ec_pokemon2 QUAGSIRE -	ec_word QUESTION -	ec_move2 QUICK_ATTACK -	ec_pokemon2 QUILAVA -	ec_word QUITE -	ec_pokemon2 QWILFISH +	.2byte EC_POKEMON2(QUAGSIRE) +	.2byte EC_WORD_QUESTION +	.2byte EC_MOVE2(QUICK_ATTACK) +	.2byte EC_POKEMON2(QUILAVA) +	.2byte EC_WORD_QUITE +	.2byte EC_POKEMON2(QWILFISH)  gEasyChatWordsByLetter_R: -	ec_word RADIO -	ec_move1 RAGE -	ec_duplicates 2 -	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_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 -	ec_duplicates 2 -	ec_pokemon1 RHYDON -	ec_pokemon2 RHYDON -	ec_duplicates 2 -	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_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 +	.2byte EC_WORD_RADIO +	.2byte EC_MOVE(RAGE) +	ec_duplicates 2 +	.2byte EC_POKEMON(RAICHU) +	.2byte EC_POKEMON2(RAICHU) +	.2byte EC_POKEMON2(RAIKOU) +	.2byte EC_MOVE(RAIN_DANCE) +	.2byte EC_WORD_RAIN_DISH +	.2byte EC_POKEMON(RALTS) +	.2byte EC_WORD_RANK +	.2byte EC_MOVE(RAPID_SPIN) +	.2byte EC_POKEMON2(RAPIDASH) +	.2byte EC_WORD_RARE +	.2byte EC_WORD_RATHER +	.2byte EC_POKEMON2(RATICATE) +	.2byte EC_POKEMON2(RATTATA) +	.2byte EC_POKEMON(RAYQUAZA) +	.2byte EC_MOVE2(RAZOR_LEAF) +	.2byte EC_MOVE(RAZOR_WIND) +	.2byte EC_WORD_READY +	.2byte EC_WORD_REALLY +	.2byte EC_WORD_REAR +	.2byte EC_WORD_RECEIVED +	.2byte EC_WORD_RECOMMEND +	.2byte EC_MOVE(RECOVER) +	.2byte EC_MOVE2(RECYCLE) +	.2byte EC_MOVE2(REFLECT) +	.2byte EC_MOVE2(REFRESH) +	.2byte EC_WORD_REFRESHING +	.2byte EC_WORD_REFUSE +	.2byte EC_POKEMON(REGICE) +	.2byte EC_POKEMON(REGIROCK) +	.2byte EC_POKEMON(REGISTEEL) +	.2byte EC_WORD_REJECT +	.2byte EC_WORD_RELEASE +	.2byte EC_POKEMON(RELICANTH) +	.2byte EC_POKEMON2(REMORAID) +	.2byte EC_WORD_RENTAL +	.2byte EC_MOVE2(REST) +	.2byte EC_WORD_RESUSCITATE +	.2byte EC_MOVE(RETURN) +	.2byte EC_MOVE2(REVENGE) +	.2byte EC_MOVE(REVERSAL) +	ec_duplicates 2 +	.2byte EC_POKEMON(RHYDON) +	.2byte EC_POKEMON2(RHYDON) +	ec_duplicates 2 +	.2byte EC_POKEMON(RHYHORN) +	.2byte EC_POKEMON2(RHYHORN) +	.2byte EC_WORD_RIBBON +	.2byte EC_WORD_RICKETY +	.2byte EC_WORD_RIGHT +	.2byte EC_WORD_RIPPED +	.2byte EC_WORD_RIVAL +	.2byte EC_MOVE2(ROAR) +	.2byte EC_WORD_ROCK +	.2byte EC_MOVE2(ROCK_BLAST) +	.2byte EC_WORD_ROCK_HEAD +	.2byte EC_MOVE(ROCK_SLIDE) +	.2byte EC_MOVE(ROCK_SMASH) +	.2byte EC_MOVE(ROCK_THROW) +	.2byte EC_MOVE(ROCK_TOMB) +	.2byte EC_WORD_ROCK_SOLID +	.2byte EC_MOVE2(ROLE_PLAY) +	.2byte EC_MOVE2(ROLLING_KICK) +	.2byte EC_MOVE(ROLLOUT) +	.2byte EC_WORD_ROMANTIC +	.2byte EC_POKEMON(ROSELIA) +	.2byte EC_WORD_ROUGH_SKIN +	.2byte EC_WORD_RPG +	.2byte EC_WORD_RUBY +	.2byte EC_WORD_RULE +	.2byte EC_WORD_RUN +	.2byte EC_WORD_RUN_AWAY +	.2byte EC_WORD_RUNS  gEasyChatWordsByLetter_S: -	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 -	ec_duplicates 2 -	ec_pokemon1 SANDSHREW -	ec_pokemon2 SANDSHREW -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 SEADRA -	ec_pokemon2 SEADRA -	ec_duplicates 2 -	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_move1 SILVER_WIND -	ec_word SIMPLE -	ec_word SINCE -	ec_move1 SING -	ec_word SINK -	ec_word SISTER -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	ec_pokemon1 STARMIE -	ec_pokemon2 STARMIE -	ec_word START -	ec_duplicates 2 -	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 +	.2byte EC_POKEMON(SABLEYE) +	.2byte EC_MOVE(SACRED_FIRE) +	.2byte EC_WORD_SAD +	.2byte EC_WORD_SADLY +	.2byte EC_MOVE(SAFEGUARD) +	.2byte EC_WORD_SAID +	.2byte EC_POKEMON(SALAMENCE) +	.2byte EC_WORD_SAND_STREAM +	.2byte EC_MOVE(SAND_TOMB) +	.2byte EC_WORD_SAND_VEIL +	.2byte EC_MOVE(SAND_ATTACK) +	ec_duplicates 2 +	.2byte EC_POKEMON(SANDSHREW) +	.2byte EC_POKEMON2(SANDSHREW) +	ec_duplicates 2 +	.2byte EC_POKEMON(SANDSLASH) +	.2byte EC_POKEMON2(SANDSLASH) +	.2byte EC_MOVE(SANDSTORM) +	.2byte EC_WORD_SAPPHIRE +	.2byte EC_WORD_SATISFIED +	.2byte EC_WORD_SATURDAY +	.2byte EC_WORD_SAYS +	.2byte EC_WORD_SCARY +	.2byte EC_MOVE(SCARY_FACE) +	.2byte EC_WORD_SCATTER +	.2byte EC_POKEMON(SCEPTILE) +	.2byte EC_WORD_SCHOOL +	.2byte EC_POKEMON2(SCIZOR) +	.2byte EC_MOVE2(SCRATCH) +	.2byte EC_MOVE(SCREECH) +	.2byte EC_POKEMON2(SCYTHER) +	ec_duplicates 2 +	.2byte EC_POKEMON(SEADRA) +	.2byte EC_POKEMON2(SEADRA) +	ec_duplicates 2 +	.2byte EC_POKEMON(SEAKING) +	.2byte EC_POKEMON2(SEAKING) +	.2byte EC_POKEMON(SEALEO) +	.2byte EC_WORD_SEARCH +	.2byte EC_WORD_SECRET +	.2byte EC_WORD_SECRET_BASE +	.2byte EC_MOVE2(SECRET_POWER) +	.2byte EC_WORD_SEE +	.2byte EC_WORD_SEE_YA +	.2byte EC_POKEMON(SEEDOT) +	.2byte EC_WORD_SEEK +	.2byte EC_POKEMON2(SEEL) +	.2byte EC_WORD_SEEMS +	.2byte EC_WORD_SEES +	.2byte EC_MOVE2(SEISMIC_TOSS) +	.2byte EC_MOVE(SELF_DESTRUCT) +	.2byte EC_WORD_SENSE +	.2byte EC_POKEMON2(SENTRET) +	.2byte EC_WORD_SERENE_GRACE +	.2byte EC_WORD_SERIOUS +	.2byte EC_WORD_SERIOUSLY +	.2byte EC_WORD_SERVICE +	.2byte EC_POKEMON(SEVIPER) +	.2byte EC_MOVE(SHADOW_BALL) +	.2byte EC_MOVE(SHADOW_PUNCH) +	.2byte EC_WORD_SHADOW_TAG +	.2byte EC_WORD_SHADY +	.2byte EC_WORD_SHAKE +	.2byte EC_WORD_SHAKY +	.2byte EC_WORD_SHALLOW +	.2byte EC_POKEMON(SHARPEDO) +	.2byte EC_MOVE(SHARPEN) +	.2byte EC_WORD_SHE +	.2byte EC_WORD_SHE_IS +	.2byte EC_WORD_SHE_WAS +	.2byte EC_WORD_SHED_SKIN +	.2byte EC_POKEMON(SHEDINJA) +	.2byte EC_MOVE(SHEER_COLD) +	.2byte EC_POKEMON(SHELGON) +	.2byte EC_WORD_SHELL_ARMOR +	.2byte EC_POKEMON2(SHELLDER) +	.2byte EC_WORD_SHIELD_DUST +	.2byte EC_POKEMON(SHIFTRY) +	.2byte EC_WORD_SHINE +	.2byte EC_MOVE2(SHOCK_WAVE) +	.2byte EC_WORD_SHOCKED +	.2byte EC_WORD_SHOPPING +	.2byte EC_WORD_SHOULD +	.2byte EC_WORD_SHOW +	.2byte EC_WORD_SHREDDED +	.2byte EC_POKEMON(SHROOMISH) +	.2byte EC_POKEMON2(SHUCKLE) +	.2byte EC_POKEMON(SHUPPET) +	.2byte EC_WORD_SIBLINGS +	.2byte EC_WORD_SIGH +	.2byte EC_MOVE(SIGNAL_BEAM) +	.2byte EC_POKEMON(SILCOON) +	.2byte EC_WORD_SILKY +	.2byte EC_MOVE(SILVER_WIND) +	.2byte EC_WORD_SIMPLE +	.2byte EC_WORD_SINCE +	.2byte EC_MOVE(SING) +	.2byte EC_WORD_SINK +	.2byte EC_WORD_SISTER +	ec_duplicates 2 +	.2byte EC_POKEMON(SKARMORY) +	.2byte EC_POKEMON2(SKARMORY) +	.2byte EC_MOVE(SKETCH) +	.2byte EC_WORD_SKILL +	.2byte EC_MOVE(SKILL_SWAP) +	.2byte EC_WORD_SKILLED +	.2byte EC_POKEMON2(SKIPLOOM) +	.2byte EC_POKEMON(SKITTY) +	.2byte EC_MOVE2(SKULL_BASH) +	.2byte EC_MOVE(SKY_ATTACK) +	.2byte EC_MOVE(SKY_UPPERCUT) +	.2byte EC_MOVE2(SLACK_OFF) +	.2byte EC_POKEMON(SLAKING) +	.2byte EC_POKEMON(SLAKOTH) +	.2byte EC_MOVE2(SLAM) +	.2byte EC_MOVE(SLASH) +	.2byte EC_WORD_SLEEP +	.2byte EC_MOVE2(SLEEP_POWDER) +	.2byte EC_MOVE2(SLEEP_TALK) +	.2byte EC_WORD_SLEPT +	.2byte EC_WORD_SLIDE +	.2byte EC_WORD_SLIMY +	.2byte EC_POKEMON2(SLOWBRO) +	.2byte EC_POKEMON2(SLOWKING) +	.2byte EC_POKEMON2(SLOWPOKE) +	.2byte EC_MOVE2(SLUDGE) +	.2byte EC_MOVE2(SLUDGE_BOMB) +	ec_duplicates 2 +	.2byte EC_POKEMON(SLUGMA) +	.2byte EC_POKEMON2(SLUGMA) +	.2byte EC_WORD_SMACK +	.2byte EC_WORD_SMALL +	.2byte EC_WORD_SMART +	.2byte EC_WORD_SMARTNESS +	.2byte EC_POKEMON2(SMEARGLE) +	.2byte EC_WORD_SMELL +	.2byte EC_WORD_SMELL_YA +	.2byte EC_MOVE(SMELLING_SALT) +	.2byte EC_WORD_SMITE +	.2byte EC_MOVE(SMOG) +	.2byte EC_MOVE(SMOKESCREEN) +	.2byte EC_POKEMON2(SMOOCHUM) +	.2byte EC_WORD_SMOOTH +	.2byte EC_MOVE2(SNATCH) +	.2byte EC_POKEMON2(SNEASEL) +	.2byte EC_MOVE(SNORE) +	.2byte EC_POKEMON2(SNORLAX) +	.2byte EC_WORD_SNORT +	.2byte EC_POKEMON(SNORUNT) +	.2byte EC_POKEMON2(SNUBBULL) +	.2byte EC_WORD_SO +	.2byte EC_MOVE2(SOFT_BOILED) +	.2byte EC_WORD_SOFTWARE +	.2byte EC_MOVE(SOLAR_BEAM) +	.2byte EC_POKEMON(SOLROCK) +	.2byte EC_WORD_SOME +	.2byte EC_WORD_SOMEHOW +	.2byte EC_WORD_SOMEONE +	.2byte EC_WORD_SOMETHING +	.2byte EC_WORD_SOMETIME +	.2byte EC_WORD_SON +	.2byte EC_WORD_SONG +	.2byte EC_WORD_SONGS +	.2byte EC_MOVE(SONIC_BOOM) +	.2byte EC_WORD_SOON +	.2byte EC_WORD_SORRY +	.2byte EC_WORD_SOUNDPROOF +	.2byte EC_WORD_SP_ABILITY +	.2byte EC_MOVE(SPARK) +	.2byte EC_POKEMON2(SPEAROW) +	.2byte EC_WORD_SPECTATOR +	.2byte EC_WORD_SPEED_BOOST +	.2byte EC_POKEMON(SPHEAL) +	.2byte EC_MOVE(SPIDER_WEB) +	.2byte EC_MOVE2(SPIKE_CANNON) +	.2byte EC_MOVE2(SPIKES) +	.2byte EC_POKEMON2(SPINARAK) +	.2byte EC_POKEMON(SPINDA) +	.2byte EC_WORD_SPIRALING +	.2byte EC_WORD_SPIRIT +	.2byte EC_MOVE2(SPIT_UP) +	.2byte EC_MOVE(SPITE) +	.2byte EC_MOVE2(SPLASH) +	.2byte EC_POKEMON(SPOINK) +	.2byte EC_MOVE(SPORE) +	.2byte EC_WORD_SPORTS +	.2byte EC_WORD_SPRING +	.2byte EC_POKEMON2(SQUIRTLE) +	.2byte EC_WORD_STAGE +	.2byte EC_POKEMON2(STANTLER) +	ec_duplicates 2 +	.2byte EC_POKEMON(STARMIE) +	.2byte EC_POKEMON2(STARMIE) +	.2byte EC_WORD_START +	ec_duplicates 2 +	.2byte EC_POKEMON(STARYU) +	.2byte EC_POKEMON2(STARYU) +	.2byte EC_WORD_STATIC +	.2byte EC_WORD_STAY_AT_HOME +	.2byte EC_WORD_STEEL +	.2byte EC_MOVE2(STEEL_WING) +	.2byte EC_POKEMON2(STEELIX) +	.2byte EC_WORD_STENCH +	.2byte EC_WORD_STICKY_HOLD +	.2byte EC_MOVE2(STOCKPILE) +	.2byte EC_MOVE2(STOMP) +	.2byte EC_WORD_STOP +	.2byte EC_WORD_STORE +	.2byte EC_WORD_STORES +	.2byte EC_WORD_STORY +	.2byte EC_WORD_STRATEGY +	.2byte EC_MOVE(STRENGTH) +	.2byte EC_MOVE(STRING_SHOT) +	.2byte EC_WORD_STRONG +	.2byte EC_MOVE2(STRUGGLE) +	.2byte EC_WORD_STUDY +	.2byte EC_MOVE(STUN_SPORE) +	.2byte EC_WORD_STURDY +	.2byte EC_MOVE(SUBMISSION) +	.2byte EC_MOVE2(SUBSTITUTE) +	.2byte EC_WORD_SUCTION_CUPS +	.2byte EC_POKEMON2(SUDOWOODO) +	.2byte EC_POKEMON2(SUICUNE) +	.2byte EC_WORD_SUMMER +	.2byte EC_WORD_SUNDAY +	.2byte EC_POKEMON2(SUNFLORA) +	.2byte EC_POKEMON2(SUNKERN) +	.2byte EC_MOVE2(SUNNY_DAY) +	.2byte EC_WORD_SUPER +	.2byte EC_MOVE(SUPER_FANG) +	.2byte EC_MOVE2(SUPERPOWER) +	.2byte EC_MOVE2(SUPERSONIC) +	.2byte EC_MOVE2(SURF) +	.2byte EC_WORD_SURPRISE +	.2byte EC_WORD_SURRENDER +	.2byte EC_POKEMON(SURSKIT) +	.2byte EC_POKEMON(SWABLU) +	.2byte EC_MOVE(SWAGGER) +	.2byte EC_MOVE2(SWALLOW) +	.2byte EC_POKEMON(SWALOT) +	.2byte EC_POKEMON(SWAMPERT) +	.2byte EC_WORD_SWARM +	.2byte EC_MOVE2(SWEET_KISS) +	.2byte EC_MOVE(SWEET_SCENT) +	.2byte EC_WORD_SWEETS +	.2byte EC_POKEMON(SWELLOW) +	.2byte EC_MOVE(SWIFT) +	.2byte EC_WORD_SWIFT_SWIM +	.2byte EC_POKEMON2(SWINUB) +	.2byte EC_MOVE2(SWORDS_DANCE) +	.2byte EC_WORD_SYNCHRONIZE +	.2byte EC_MOVE(SYNTHESIS) +	.2byte EC_WORD_SYSTEM  gEasyChatWordsByLetter_T: -	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 -	ec_duplicates 2 -	ec_pokemon1 TENTACOOL -	ec_pokemon2 TENTACOOL -	ec_duplicates 2 -	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_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 +	.2byte EC_MOVE2(TACKLE) +	.2byte EC_MOVE2(TAIL_GLOW) +	.2byte EC_MOVE(TAIL_WHIP) +	.2byte EC_POKEMON(TAILLOW) +	.2byte EC_WORD_TAKE +	.2byte EC_MOVE2(TAKE_DOWN) +	.2byte EC_WORD_TAKE_THAT +	.2byte EC_WORD_TALENT +	.2byte EC_WORD_TALK +	.2byte EC_WORD_TALKING +	.2byte EC_POKEMON2(TANGELA) +	.2byte EC_WORD_TASTY +	.2byte EC_MOVE2(TAUNT) +	.2byte EC_POKEMON2(TAUROS) +	.2byte EC_WORD_TCH +	.2byte EC_WORD_TEACH +	.2byte EC_WORD_TEACHER +	.2byte EC_WORD_TEACHES +	.2byte EC_POKEMON2(TEDDIURSA) +	.2byte EC_MOVE2(TEETER_DANCE) +	.2byte EC_MOVE2(TELEPORT) +	.2byte EC_WORD_TELEVISION +	ec_duplicates 2 +	.2byte EC_POKEMON(TENTACOOL) +	.2byte EC_POKEMON2(TENTACOOL) +	ec_duplicates 2 +	.2byte EC_POKEMON(TENTACRUEL) +	.2byte EC_POKEMON2(TENTACRUEL) +	.2byte EC_WORD_TERRIBLE +	.2byte EC_WORD_TEST +	.2byte EC_WORD_THAN +	.2byte EC_WORD_THANK_YOU +	.2byte EC_WORD_THANKS +	.2byte EC_WORD_THAT +	.2byte EC_WORD_THAT_WAS +	.2byte EC_WORD_THAT_S +	.2byte EC_WORD_THAT_S_IT_EXCL +	.2byte EC_WORD_THE +	.2byte EC_WORD_THEIR +	.2byte EC_WORD_THERE +	.2byte EC_WORD_THESE +	.2byte EC_WORD_THESE_WERE +	.2byte EC_WORD_THEY +	.2byte EC_WORD_THEY_WERE +	.2byte EC_WORD_THEY_RE +	.2byte EC_WORD_THEY_VE +	.2byte EC_WORD_THICK +	.2byte EC_WORD_THICK_FAT +	.2byte EC_MOVE2(THIEF) +	.2byte EC_WORD_THIN +	.2byte EC_WORD_THING +	.2byte EC_WORD_THINGS +	.2byte EC_WORD_THINK +	.2byte EC_WORD_THINKS +	.2byte EC_WORD_THIRSTY +	.2byte EC_WORD_THIS +	.2byte EC_WORD_THIS_IS_IT_EXCL +	.2byte EC_WORD_THOSE +	.2byte EC_WORD_THOSE_ARE +	.2byte EC_WORD_THOSE_WERE +	.2byte EC_MOVE(THRASH) +	.2byte EC_WORD_THROW +	.2byte EC_MOVE(THUNDER) +	.2byte EC_MOVE2(THUNDER_WAVE) +	.2byte EC_MOVE(THUNDERBOLT) +	.2byte EC_MOVE(THUNDER_PUNCH) +	.2byte EC_MOVE2(THUNDER_SHOCK) +	.2byte EC_WORD_THURSDAY +	.2byte EC_MOVE(TICKLE) +	.2byte EC_WORD_TICKLISH +	.2byte EC_WORD_TIGHT +	.2byte EC_WORD_TIME +	.2byte EC_WORD_TIMES +	.2byte EC_WORD_TIRED +	.2byte EC_WORD_TO +	.2byte EC_WORD_TO_HER +	.2byte EC_WORD_TO_ME +	.2byte EC_WORD_TO_THEM +	.2byte EC_WORD_TO_US +	.2byte EC_WORD_TO_WHOM +	.2byte EC_WORD_TODAY +	.2byte EC_POKEMON2(TOGEPI) +	.2byte EC_WORD_TOGETHER +	.2byte EC_POKEMON2(TOGETIC) +	.2byte EC_WORD_TOMORROW +	.2byte EC_WORD_TOO +	.2byte EC_WORD_TOO_LATE +	.2byte EC_WORD_TOO_STRONG +	.2byte EC_WORD_TOO_WEAK +	.2byte EC_WORD_TOP +	.2byte EC_POKEMON(TORCHIC) +	.2byte EC_POKEMON(TORKOAL) +	.2byte EC_MOVE(TORMENT) +	.2byte EC_WORD_TORRENT +	.2byte EC_WORD_TOTALLY +	.2byte EC_POKEMON2(TOTODILE) +	.2byte EC_WORD_TOUGH +	.2byte EC_WORD_TOUGHNESS +	.2byte EC_WORD_TOURNAMENT +	.2byte EC_MOVE2(TOXIC) +	.2byte EC_WORD_TOYS +	.2byte EC_WORD_TRACE +	.2byte EC_WORD_TRADE +	.2byte EC_WORD_TRAIN +	.2byte EC_WORD_TRAINER +	.2byte EC_WORD_TRAINS +	.2byte EC_MOVE2(TRANSFORM) +	.2byte EC_POKEMON(TRAPINCH) +	.2byte EC_WORD_TRAVEL +	.2byte EC_WORD_TREASURE +	.2byte EC_POKEMON(TREECKO) +	.2byte EC_WORD_TRENDY +	.2byte EC_MOVE2(TRI_ATTACK) +	.2byte EC_MOVE2(TRICK) +	.2byte EC_WORD_TRIES +	.2byte EC_MOVE2(TRIPLE_KICK) +	.2byte EC_POKEMON(TROPIUS) +	.2byte EC_WORD_TRUANT +	.2byte EC_WORD_TRULY +	.2byte EC_WORD_TRUMP_CARD +	.2byte EC_WORD_TRUST +	.2byte EC_WORD_TRY +	.2byte EC_WORD_TUESDAY +	.2byte EC_MOVE2(TWINEEDLE) +	.2byte EC_WORD_TWIRLING +	.2byte EC_MOVE2(TWISTER) +	.2byte EC_WORD_TYPE +	.2byte EC_POKEMON2(TYPHLOSION) +	.2byte EC_POKEMON2(TYRANITAR) +	.2byte EC_POKEMON2(TYROGUE)  gEasyChatWordsByLetter_U: -	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_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 +	.2byte EC_WORD_UGLY +	.2byte EC_WORD_UH_HUH +	.2byte EC_WORD_UH_OH +	.2byte EC_WORD_UM +	.2byte EC_POKEMON2(UMBREON) +	.2byte EC_WORD_UNAVOIDABLE +	.2byte EC_WORD_UNBELIEVABLE +	.2byte EC_WORD_UNCLE +	.2byte EC_WORD_UNDERSTAND +	.2byte EC_WORD_UNDERSTANDS +	.2byte EC_WORD_UNDERSTOOD +	.2byte EC_POKEMON2(UNOWN) +	.2byte EC_WORD_UNTIL +	.2byte EC_WORD_UP +	.2byte EC_WORD_UPBEAT +	.2byte EC_MOVE(UPROAR) +	.2byte EC_WORD_UPSIDE_DOWN +	.2byte EC_WORD_URGH +	.2byte EC_POKEMON2(URSARING) +	.2byte EC_WORD_USE +	.2byte EC_WORD_USELESS +	.2byte EC_WORD_USES +	.2byte EC_WORD_USING  gEasyChatWordsByLetter_V: -	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 -	ec_duplicates 2 -	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_duplicates 2 -	ec_pokemon1 VOLTORB -	ec_pokemon2 VOLTORB -	ec_word VORACIOUS -	ec_duplicates 2 -	ec_pokemon1 VULPIX -	ec_pokemon2 VULPIX +	.2byte EC_WORD_VACATION +	.2byte EC_POKEMON2(VAPOREON) +	.2byte EC_POKEMON2(VENOMOTH) +	.2byte EC_POKEMON2(VENONAT) +	.2byte EC_POKEMON2(VENUSAUR) +	.2byte EC_WORD_VERSION +	.2byte EC_WORD_VERSUS +	.2byte EC_WORD_VERY +	.2byte EC_POKEMON(VIBRAVA) +	.2byte EC_MOVE2(VICE_GRIP) +	.2byte EC_WORD_VICTORY +	.2byte EC_POKEMON2(VICTREEBEL) +	.2byte EC_WORD_VIEWING +	.2byte EC_POKEMON(VIGOROTH) +	ec_duplicates 2 +	.2byte EC_POKEMON(VILEPLUME) +	.2byte EC_POKEMON2(VILEPLUME) +	.2byte EC_MOVE2(VINE_WHIP) +	.2byte EC_WORD_VITAL_SPIRIT +	.2byte EC_MOVE(VITAL_THROW) +	.2byte EC_POKEMON(VOLBEAT) +	.2byte EC_WORD_VOLT_ABSORB +	ec_duplicates 2 +	.2byte EC_POKEMON(VOLTORB) +	.2byte EC_POKEMON2(VOLTORB) +	.2byte EC_WORD_VORACIOUS +	ec_duplicates 2 +	.2byte EC_POKEMON(VULPIX) +	.2byte EC_POKEMON2(VULPIX)  gEasyChatWordsByLetter_W: -	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 -	ec_duplicates 2 -	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 -	ec_duplicates 2 -	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_move2 WISH -	ec_word WITH -	ec_move1 WITHDRAW -	ec_word WITHOUT -	ec_word WOBBLY -	ec_duplicates 2 -	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 +	.2byte EC_WORD_WAAAH +	.2byte EC_WORD_WAHAHAHA +	.2byte EC_POKEMON(WAILMER) +	.2byte EC_POKEMON(WAILORD) +	.2byte EC_WORD_WAIT +	.2byte EC_WORD_WAKE_UP +	.2byte EC_WORD_WAKES_UP +	.2byte EC_WORD_WALK +	.2byte EC_WORD_WALKING +	.2byte EC_WORD_WALKS +	.2byte EC_POKEMON(WALREIN) +	.2byte EC_WORD_WANDERING +	.2byte EC_WORD_WANNABE +	.2byte EC_WORD_WANT +	.2byte EC_WORD_WANTS +	.2byte EC_POKEMON2(WARTORTLE) +	.2byte EC_WORD_WAS +	.2byte EC_WORD_WASN_T +	.2byte EC_WORD_WATER +	.2byte EC_WORD_WATER_ABSORB +	.2byte EC_MOVE2(WATER_GUN) +	.2byte EC_MOVE2(WATER_PULSE) +	.2byte EC_MOVE2(WATER_SPORT) +	.2byte EC_MOVE(WATER_SPOUT) +	.2byte EC_WORD_WATER_VEIL +	.2byte EC_MOVE2(WATERFALL) +	.2byte EC_WORD_WAY +	.2byte EC_WORD_WE +	.2byte EC_WORD_WE_RE +	.2byte EC_WORD_WE_VE +	.2byte EC_WORD_WEAK +	.2byte EC_WORD_WEAKENED +	.2byte EC_MOVE(WEATHER_BALL) +	.2byte EC_WORD_WEDNESDAY +	.2byte EC_POKEMON2(WEEDLE) +	.2byte EC_WORD_WEEK +	.2byte EC_POKEMON2(WEEPINBELL) +	ec_duplicates 2 +	.2byte EC_POKEMON(WEEZING) +	.2byte EC_POKEMON2(WEEZING) +	.2byte EC_WORD_WEIRD +	.2byte EC_WORD_WELCOME +	.2byte EC_WORD_WELL +	.2byte EC_WORD_WELL_THEN +	.2byte EC_WORD_WENT +	.2byte EC_WORD_WERE +	.2byte EC_WORD_WEREN_T +	.2byte EC_WORD_WHAT +	.2byte EC_WORD_WHAT_S_UP_QUES +	.2byte EC_WORD_WHEN +	.2byte EC_WORD_WHEN_I_WIN +	.2byte EC_WORD_WHERE +	.2byte EC_WORD_WHICH +	.2byte EC_WORD_WHILE +	.2byte EC_MOVE(WHIRLPOOL) +	.2byte EC_MOVE2(WHIRLWIND) +	.2byte EC_POKEMON(WHISCASH) +	.2byte EC_POKEMON(WHISMUR) +	.2byte EC_WORD_WHITE_SMOKE +	.2byte EC_WORD_WHO +	.2byte EC_WORD_WHO_IS +	.2byte EC_WORD_WHO_WAS +	.2byte EC_WORD_WHOAH +	.2byte EC_WORD_WHOM +	.2byte EC_WORD_WHOSE +	.2byte EC_WORD_WHY +	ec_duplicates 2 +	.2byte EC_POKEMON(WIGGLYTUFF) +	.2byte EC_POKEMON2(WIGGLYTUFF) +	.2byte EC_WORD_WILD +	.2byte EC_WORD_WILL +	.2byte EC_WORD_WILL_BE_HERE +	.2byte EC_MOVE(WILL_O_WISP) +	.2byte EC_WORD_WIMPY +	.2byte EC_WORD_WIN +	.2byte EC_MOVE2(WING_ATTACK) +	.2byte EC_POKEMON(WINGULL) +	.2byte EC_WORD_WINNER +	.2byte EC_WORD_WINS +	.2byte EC_WORD_WINTER +	.2byte EC_MOVE2(WISH) +	.2byte EC_WORD_WITH +	.2byte EC_MOVE(WITHDRAW) +	.2byte EC_WORD_WITHOUT +	.2byte EC_WORD_WOBBLY +	ec_duplicates 2 +	.2byte EC_POKEMON(WOBBUFFET) +	.2byte EC_POKEMON2(WOBBUFFET) +	.2byte EC_WORD_WOMAN +	.2byte EC_WORD_WON +	.2byte EC_WORD_WON_T +	.2byte EC_WORD_WONDER +	.2byte EC_WORD_WONDER_GUARD +	.2byte EC_POKEMON2(WOOPER) +	.2byte EC_WORD_WORD +	.2byte EC_WORD_WORK +	.2byte EC_WORD_WORKING +	.2byte EC_WORD_WORKS +	.2byte EC_WORD_WORLD +	.2byte EC_WORD_WORRY +	.2byte EC_WORD_WOULD +	.2byte EC_WORD_WOW +	.2byte EC_WORD_WOWEE +	.2byte EC_MOVE2(WRAP) +	.2byte EC_WORD_WROOOAAR_EXCL +	.2byte EC_POKEMON(WURMPLE) +	.2byte EC_POKEMON(WYNAUT)  gEasyChatWordsByLetter_X:  	ec_duplicates 2 -	ec_pokemon1 XATU -	ec_pokemon2 XATU +	.2byte EC_POKEMON(XATU) +	.2byte EC_POKEMON2(XATU)  gEasyChatWordsByLetter_Y: -	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 +	.2byte EC_WORD_YAHOO +	.2byte EC_POKEMON2(YANMA) +	.2byte EC_MOVE(YAWN) +	.2byte EC_WORD_YAY +	.2byte EC_WORD_YEAH +	.2byte EC_WORD_YEAH_YEAH +	.2byte EC_WORD_YEEHAW_EXCL +	.2byte EC_WORD_YES +	.2byte EC_WORD_YES_SIR_EXCL +	.2byte EC_WORD_YESTERDAY +	.2byte EC_WORD_YET +	.2byte EC_WORD_YO +	.2byte EC_WORD_YOU +	.2byte EC_WORD_YOU_RE +	.2byte EC_WORD_YOU_VE +	.2byte EC_WORD_YOUNG +	.2byte EC_WORD_YOUR +	.2byte EC_WORD_YOURS +	.2byte EC_WORD_YUP  gEasyChatWordsByLetter_Z: -	ec_pokemon1 ZANGOOSE -	ec_move2 ZAP_CANNON -	ec_pokemon2 ZAPDOS -	ec_pokemon1 ZIGZAGOON +	.2byte EC_POKEMON(ZANGOOSE) +	.2byte EC_MOVE2(ZAP_CANNON) +	.2byte EC_POKEMON2(ZAPDOS) +	.2byte EC_POKEMON(ZIGZAGOON)  	ec_duplicates 2 -	ec_pokemon1 ZUBAT -	ec_pokemon2 ZUBAT +	.2byte EC_POKEMON(ZUBAT) +	.2byte EC_POKEMON2(ZUBAT)  gEasyChatWordsByLetter_End:  	.align 1 diff --git a/data/wild_encounter.s b/data/wild_encounter.s index 317502aa9..b906a21f1 100644 --- a/data/wild_encounter.s +++ b/data/wild_encounter.s @@ -1,3 +1,5 @@ +#include "constants/maps.h" +#include "constants/species.h"  	.include "asm/macros.inc"  	.include "constants/constants.inc" | 
