summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asm/macros/pokemon_data.inc2
-rw-r--r--asm/trade.s4
-rw-r--r--constants/constants.inc12
-rw-r--r--constants/field_object_constants.inc12
-rw-r--r--data/battle_frontier/battle_frontier_mons.inc2
-rw-r--r--data/battle_frontier/battle_frontier_trainers.inc11250
-rw-r--r--data/battle_frontier/fallarbor_battle_tent_trainers.inc1050
-rw-r--r--data/battle_frontier/slateport_battle_tent_trainers.inc1026
-rw-r--r--data/battle_frontier/verdanturf_battle_tent_trainers.inc1020
-rw-r--r--data/battle_frontier_2.s2
-rw-r--r--data/battle_scripts_1.s3
-rw-r--r--data/battle_scripts_2.s1
-rw-r--r--data/battle_tower.s3
-rw-r--r--data/cable_car.s1
-rw-r--r--data/data2b.s2
-rw-r--r--data/data2c.s3
-rw-r--r--data/easy_chat.s3
-rw-r--r--data/event_scripts.s7
-rw-r--r--data/field_map_obj.s1
-rw-r--r--data/graphics/pokemon/animation_delay_table.inc2
-rw-r--r--data/graphics/pokemon/front_anim_ids_table.inc2
-rw-r--r--data/link.s1
-rw-r--r--data/map_events.s1
-rw-r--r--data/maps.s1
-rw-r--r--data/text/easy_chat/easy_chat_group_pokemon2.s2
-rw-r--r--data/text/easy_chat/easy_chat_words_by_letter.inc4850
-rw-r--r--data/wild_encounter.s1
-rw-r--r--data/wild_mons.inc3950
-rw-r--r--include/constants/easy_chat.h15
-rw-r--r--include/constants/flags.h1471
-rw-r--r--include/constants/map_objects.h481
-rw-r--r--include/constants/moves.h2
-rw-r--r--include/constants/opponents.h699
-rw-r--r--include/constants/songs.h112
-rw-r--r--include/constants/vars.h251
-rw-r--r--include/data/bard_music/pokemon.h2
-rw-r--r--include/event_data.h2
-rw-r--r--include/moves.h366
-rw-r--r--include/species.h454
-rw-r--r--include/vars.h75
-rw-r--r--src/battle_2.c6
-rw-r--r--src/battle_ai_script_commands.c4
-rw-r--r--src/battle_ai_switch_items.c4
-rw-r--r--src/battle_controller_link_opponent.c2
-rw-r--r--src/battle_controller_link_partner.c2
-rw-r--r--src/battle_controller_opponent.c4
-rw-r--r--src/battle_controller_player.c4
-rw-r--r--src/battle_controller_player_partner.c2
-rw-r--r--src/battle_controller_recorded_opponent.c2
-rw-r--r--src/battle_controller_recorded_player.c2
-rw-r--r--src/battle_controller_safari.c2
-rw-r--r--src/battle_controller_wally.c4
-rw-r--r--src/battle_controllers.c2
-rw-r--r--src/battle_dome_cards.c2
-rw-r--r--src/battle_gfx_sfx_util.c6
-rw-r--r--src/battle_interface.c4
-rw-r--r--src/battle_message.c2
-rw-r--r--src/battle_script_commands.c6
-rw-r--r--src/battle_util.c4
-rw-r--r--src/berry_blender.c6
-rwxr-xr-xsrc/braille_puzzles.c4
-rw-r--r--src/calculate_base_damage.c4
-rwxr-xr-xsrc/clear_save_data_screen.c2
-rw-r--r--src/daycare.c4
-rw-r--r--src/decompress.c2
-rw-r--r--src/decoration.c2
-rw-r--r--src/egg_hatch.c2
-rw-r--r--src/event_data.c2
-rw-r--r--src/evolution_graphics.c2
-rw-r--r--src/evolution_scene.c5
-rw-r--r--src/field_poison.c2
-rwxr-xr-xsrc/field_special_scene.c4
-rw-r--r--src/hall_of_fame.c5
-rw-r--r--src/lottery_corner.c2
-rw-r--r--src/mail.c2
-rw-r--r--src/pokeball.c4
-rw-r--r--src/pokemon_2.c2
-rw-r--r--src/pokemon_3.c4
-rw-r--r--src/pokemon_size_record.c2
-rw-r--r--src/pokemon_storage_system.c2
-rwxr-xr-xsrc/pokemon_summary_screen.c6
-rw-r--r--src/region_map.c2
-rw-r--r--src/reshow_battle_screen.c2
-rw-r--r--src/roamer.c2
-rw-r--r--src/secret_base.c2
-rw-r--r--src/sound.c2
-rw-r--r--src/starter_choose.c2
-rw-r--r--src/tv.c7
-rw-r--r--src/wild_encounter.c2
89 files changed, 13777 insertions, 13522 deletions
diff --git a/asm/macros/pokemon_data.inc b/asm/macros/pokemon_data.inc
index 31c015334..ce8ef98ac 100644
--- a/asm/macros/pokemon_data.inc
+++ b/asm/macros/pokemon_data.inc
@@ -52,5 +52,5 @@
.byte \max_level
.endif
- .2byte SPECIES_\species
+ .2byte \species
.endm
diff --git a/asm/trade.s b/asm/trade.s
index f850cc5b4..d36ae3c67 100644
--- a/asm/trade.s
+++ b/asm/trade.s
@@ -1,5 +1,7 @@
.include "asm/macros.inc"
- .include "constants/constants.inc"
+ .include "constants/gba_constants.inc"
+ .include "constants/misc_constants.inc"
+ .include "constants/species_constants.inc"
.syntax unified
diff --git a/constants/constants.inc b/constants/constants.inc
index fbd4e8af0..cf322f9e8 100644
--- a/constants/constants.inc
+++ b/constants/constants.inc
@@ -1,20 +1,20 @@
.include "constants/gba_constants.inc"
.include "constants/misc_constants.inc"
- .include "constants/species_constants.inc"
- .include "constants/ability_constants.inc"
- .include "constants/move_constants.inc"
+@ .include "constants/species_constants.inc"
+@ .include "constants/ability_constants.inc"
+@ .include "constants/move_constants.inc"
.include "constants/item_constants.inc"
.include "constants/type_constants.inc"
.include "constants/contest_constants.inc"
.include "constants/pokemon_data_constants.inc"
.include "constants/item_data_constants.inc"
.include "constants/battle_move_constants.inc"
- .include "constants/easy_chat_constants.inc"
+@ .include "constants/easy_chat_constants.inc"
.include "constants/trainer_constants.inc"
.include "constants/battle_frontier_constants.inc"
.include "constants/map_constants.inc"
- .include "constants/map_object_constants.inc"
+@ .include "constants/map_object_constants.inc"
.include "constants/berry_constants.inc"
.include "constants/field_object_constants.inc"
.include "constants/contest_move_effects.inc"
- .include "constants/songs.inc"
+@ .include "constants/songs.inc"
diff --git a/constants/field_object_constants.inc b/constants/field_object_constants.inc
index 50cdbd848..dfef07a8f 100644
--- a/constants/field_object_constants.inc
+++ b/constants/field_object_constants.inc
@@ -237,15 +237,3 @@
.set FIELD_OBJ_GFX_RUBY_SAPPHIRE_MAY, 236
.set FIELD_OBJ_GFX_LUGIA, 237
.set FIELD_OBJ_GFX_HO_OH, 238
-
- .set SHADOW_SIZE_S, 0
- .set SHADOW_SIZE_M, 1
- .set SHADOW_SIZE_L, 2
- .set SHADOW_SIZE_XL, 3
-
- .set F_INANIMATE, 1 << 6
- .set F_DISABLE_REFLECTION_PALETTE_LOAD, 1 << 7
-
- .set TRACKS_NONE, 0
- .set TRACKS_FOOT, 1
- .set TRACKS_BIKE_TIRE, 2
diff --git a/data/battle_frontier/battle_frontier_mons.inc b/data/battle_frontier/battle_frontier_mons.inc
index 47ba6b4ef..6b77c8378 100644
--- a/data/battle_frontier/battle_frontier_mons.inc
+++ b/data/battle_frontier/battle_frontier_mons.inc
@@ -960,7 +960,7 @@ gBattleFrontierMons:: @ 85D97BC
.4byte NATURE_DOCILE
@ 137
- .2byte SPECIES_FARFETCH_D
+ .2byte SPECIES_FARFETCHD
.2byte MOVE_SLASH, MOVE_KNOCK_OFF, MOVE_SWORDS_DANCE, MOVE_AGILITY
.byte BATTLE_FRONTIER_ITEM_STICK
.byte F_EV_SPREAD_SP_DEFENSE | F_EV_SPREAD_DEFENSE | F_EV_SPREAD_HP
diff --git a/data/battle_frontier/battle_frontier_trainers.inc b/data/battle_frontier/battle_frontier_trainers.inc
index fc8f29261..fc97ffe89 100644
--- a/data/battle_frontier/battle_frontier_trainers.inc
+++ b/data/battle_frontier/battle_frontier_trainers.inc
@@ -4,389 +4,389 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_YOUNGSTER
.string "BRADY$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NEVER
- ec_word GOING
- ec_word TO
- ec_word LOSE
- ec_word EXCL
-@ win speech
- ec_word I_AM
- ec_word STRONG
- ec_word AREN_T
- ec_word I
- ec_word QUES
- .2byte -1
-@ loss speech
- ec_word WHAT
- ec_word QUES
- .2byte -1
- ec_word BUT
- ec_word HOW
- ec_word QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NEVER
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_I
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
+ .2byte -1
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Brady
@ 1
.4byte TRAINER_CLASS_YOUNGSTER
.string "CONNER$", 8
@ pre-battle speech
- ec_word LOSING
- ec_word DOESN_T
- ec_word BUG
- ec_word ME
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_ME
.2byte -1
.2byte -1
@ win speech
- ec_word A
- ec_word WIN
- ec_word IS
- ec_word JUST
- ec_word AWESOME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_AWESOME
.2byte -1
@ loss speech
- ec_word DARN
- ec_word ELLIPSIS
- ec_word LOSING
- ec_word DOES
- ec_word BUG
- ec_word ME
+ .2byte EC_WORD_DARN
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_DOES
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_ME
.4byte gBattleFrontierTrainerMons_Conner
@ 2
.4byte TRAINER_CLASS_YOUNGSTER
.string "BRADLEY$", 8
@ pre-battle speech
- ec_word HEY_THERE
- ec_word EXCL
- ec_word YOU_RE
- ec_word MY
- ec_word OPPONENT
- ec_word TODAY
-@ win speech
- ec_word HAHAHA
- ec_word EXCL
- .2byte -1
- ec_word SEE_YA
- ec_word LATER
- ec_word EXCL
-@ loss speech
- ec_word TOMORROW
- ec_word IS
- ec_word WHEN
- ec_word WE
- ec_word REALLY
- ec_word BATTLE
+ .2byte EC_WORD_HEY_THERE
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_OPPONENT
+ .2byte EC_WORD_TODAY
+@ win speech
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte -1
+ .2byte EC_WORD_SEE_YA
+ .2byte EC_WORD_LATER
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_TOMORROW
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WHEN
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_BATTLE
.4byte gBattleFrontierTrainerMons_Bradley
@ 3
.4byte TRAINER_CLASS_LASS
.string "CYBIL$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word REALLY
- ec_word NOT_VERY
- ec_word SCARY
- ec_word AT
- ec_word ALL
-@ win speech
- ec_word IT_S
- ec_word SAD
- ec_word TO
- ec_word SEE
- ec_word YOU
- ec_move2 STRUGGLE
-@ loss speech
- ec_word THIS
- ec_word CAN_T
- ec_word BE
- ec_word HAPPENING
- ec_word TO_ME
- ec_word EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(STRUGGLE)
+@ loss speech
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HAPPENING
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Cybil
@ 4
.4byte TRAINER_CLASS_LASS
.string "RODETTE$", 8
@ pre-battle speech
- ec_word OH
- ec_word THIS
- ec_word IS
- ec_word SO
- ec_word EXCITING
- ec_word EXCL
-@ win speech
- ec_word IT_S
- ec_word INCREDIBLE
- ec_word HOW
- ec_word STRONG
- ec_word I_AM
- ec_word EXCL
-@ loss speech
- ec_word OH_DEAR
- ec_word ELLIPSIS
- ec_word I_AM
- ec_word JUST
- ec_word NO
- ec_word GOOD
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_INCREDIBLE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_OH_DEAR
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_GOOD
.4byte gBattleFrontierTrainerMons_Rodette
@ 5
.4byte TRAINER_CLASS_LASS
.string "PEGGY$", 8
@ pre-battle speech
- ec_word GET
- ec_word READY
- ec_word TO
- ec_word BE
- ec_word DESTROYED
- ec_word EXCL
-@ win speech
- ec_word HAHAHA
- ec_word EXCL_EXCL
- .2byte -1
- ec_word I_AM
- ec_word LOLLING
- ec_word EXCL
-@ loss speech
- ec_word I_AM
- ec_word FEELING
- ec_word SAD
- ec_word THANKS
- ec_word TO
- ec_word YOU
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte -1
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_LOLLING
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_THANKS
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Peggy
@ 6
.4byte TRAINER_CLASS_SCHOOL_KID_1
.string "KEITH$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word JUST
- ec_word STUDY
- ec_word YOU
- ec_word KNOW
-@ win speech
- ec_word YOU
- ec_word DON_T
- ec_word STUDY
- ec_word ENOUGH
- ec_word ELLIPSIS
- .2byte -1
-@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word STUDY
- ec_word MORE
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_KNOW
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_ELLIPSIS
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Keith
@ 7
.4byte TRAINER_CLASS_SCHOOL_KID_1
.string "GRAYSON$", 8
@ pre-battle speech
- ec_word A
- ec_word POKEMON
- ec_word BATTLE
- ec_word ISN_T
- ec_word CHILD_S_PLAY
- ec_word EXCL
-@ win speech
- ec_word YOU_RE
- ec_word DONE
- ec_word AREN_T
- ec_word YOU
- ec_word QUES
- .2byte -1
-@ loss speech
- ec_word WE
- ec_word WERE
- ec_word LIKE
- ec_word TOYS
- ec_word TO
- ec_word YOU
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_CHILD_S_PLAY
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_DONE
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_WERE
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Grayson
@ 8
.4byte TRAINER_CLASS_SCHOOL_KID_1
.string "GLENN$", 8
@ pre-battle speech
- ec_word I
- ec_word WOULD
- ec_word BE
- ec_word COOL
- ec_word IF_I_WIN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_IF_I_WIN
.2byte -1
@ win speech
- ec_word COOL
- ec_word EXCL
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
@ loss speech
- ec_word I_AM
- ec_word NOT
- ec_word GOING
- ec_word TO
- ec_word BE
- ec_word COOL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_COOL
.4byte gBattleFrontierTrainerMons_Glenn
@ 9
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "LILIANA$", 8
@ pre-battle speech
- ec_word I
- ec_word WON_T
- ec_word GIVE_UP
- ec_word UNTIL
- ec_word I
- ec_word WIN
-@ win speech
- ec_word THERE
- ec_word IS
- ec_word NO
- ec_word SURRENDER
- ec_word IN
- ec_word ME
-@ loss speech
- ec_word THAT_S
- ec_word IT
- ec_word ELLIPSIS
- ec_word I
- ec_word GIVE_UP
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
+@ win speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Liliana
@ 10
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "ELISE$", 8
@ pre-battle speech
- ec_word MY
- ec_word STRATEGY
- ec_word IS
- ec_word FROM
- ec_word MY
- ec_word FATHER
-@ win speech
- ec_word I
- ec_word WIN
- ec_word EXCL
- ec_word FATHER
- ec_word I_VE
- ec_word WON
-@ loss speech
- ec_word FORGIVE
- ec_word ME
- ec_word FATHER
- ec_word FOR
- ec_word I_VE
- ec_word LOST
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FATHER
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_FATHER
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_WON
+@ loss speech
+ .2byte EC_WORD_FORGIVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FATHER
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
.4byte gBattleFrontierTrainerMons_Elise
@ 11
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "ZOEY$", 8
@ pre-battle speech
- ec_word PLEASE
- ec_word BATTLE
- ec_word LIKE
- ec_word YOU
- ec_word MEAN
- ec_word IT
-@ win speech
- ec_word THANK_YOU
- ec_word EXCL_EXCL
- .2byte -1
- ec_word THANK_YOU
- ec_word SO
- ec_word MUCH
-@ loss speech
- ec_word WERE
- ec_word YOU
- ec_word REALLY
- ec_word BEING
- ec_word SERIOUS
- ec_word QUES
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_IT
+@ win speech
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte -1
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MUCH
+@ loss speech
+ .2byte EC_WORD_WERE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_SERIOUS
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Zoey
@ 12
.4byte TRAINER_CLASS_RICH_BOY
.string "MANUEL$", 8
@ pre-battle speech
- ec_word ME
- ec_word LOSE
- ec_word QUES
- ec_word THAT_S
- ec_word PREPOSTEROUS
- ec_word EXCL
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_PREPOSTEROUS
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word NATURALLY
- ec_word I
- ec_word WIN
+ .2byte EC_WORD_NATURALLY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
.2byte -1
.2byte -1
.2byte -1
@ loss speech
- ec_word WAAAH
- ec_word EXCL
+ .2byte EC_WORD_WAAAH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word LOST
- ec_word MOTHER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_MOTHER
.4byte gBattleFrontierTrainerMons_Manuel
@ 13
.4byte TRAINER_CLASS_RICH_BOY
.string "RUSS$", 8
@ pre-battle speech
- ec_word THEY
- ec_word ALL
- ec_word WANT
- ec_word MY
- ec_word FABULOUS
- ec_word POKEMON
-@ win speech
- ec_word I
- ec_word WILL
- ec_word HAVE
- ec_word A
- ec_word POKEMON
- ec_word PARTY
-@ loss speech
- ec_word HOW
- ec_word COULD
- ec_word YOU
- ec_word DO
- ec_word THAT
- ec_word QUES
+ .2byte EC_WORD_THEY
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FABULOUS
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_PARTY
+@ loss speech
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Russ
@ 14
.4byte TRAINER_CLASS_RICH_BOY
.string "DUSTIN$", 8
@ pre-battle speech
- ec_word I
- ec_word REALLY
- ec_word LIKE
- ec_word COOL
- ec_word POKEMON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_POKEMON
.2byte -1
@ win speech
- ec_word I
- ec_word LIKE
- ec_word MYSELF
- ec_word WHEN_I_WIN
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MYSELF
+ .2byte EC_WORD_WHEN_I_WIN
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word I
- ec_word LIKE
- ec_word MYSELF
- ec_word IF_I_LOSE
- ec_word TOO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MYSELF
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_TOO
.2byte -1
.4byte gBattleFrontierTrainerMons_Dustin
@@ -394,50 +394,50 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_LADY
.string "TINA$", 8
@ pre-battle speech
- ec_word IF_I_WIN
- ec_word YOU
- ec_word CAN
- ec_word HAVE
- ec_word A
- ec_move2 SWEET_KISS
-@ win speech
- ec_word HERE_IT_IS
- ec_word YOUR
- ec_move2 SWEET_KISS
- ec_word FROM
- ec_word MY
- ec_pokemon2 JYNX
-@ loss speech
- ec_word YOU
- ec_word WANT
- ec_word A
- ec_move1 SWIFT
- ec_move2 MEGA_KICK
- ec_word INSTEAD
+ .2byte EC_WORD_IF_I_WIN
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(SWEET_KISS)
+@ win speech
+ .2byte EC_WORD_HERE_IT_IS
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(SWEET_KISS)
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_MY
+ .2byte EC_POKEMON2(JYNX)
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SWIFT)
+ .2byte EC_MOVE2(MEGA_KICK)
+ .2byte EC_WORD_INSTEAD
.4byte gBattleFrontierTrainerMons_Tina
@ 16
.4byte TRAINER_CLASS_LADY
.string "GILLIAN$", 8
@ pre-battle speech
- ec_word THE
- ec_word GOURMET
- ec_word THING
- ec_word IS
- ec_word SO
- ec_word YESTERDAY
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_THING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_YESTERDAY
@ win speech
- ec_word POKEMON
- ec_word NEVER
- ec_word GO
- ec_word OUT
- ec_word OF
- ec_word FASHION
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_NEVER
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_FASHION
@ loss speech
- ec_word LOSING
- ec_word DOESN_T
- ec_word DISAPPOINT
- ec_word ME
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_DISAPPOINT
+ .2byte EC_WORD_ME
.2byte -1
.2byte -1
.4byte gBattleFrontierTrainerMons_Gillian
@@ -446,103 +446,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_LADY
.string "ZOE$", 8
@ pre-battle speech
- ec_word I
- ec_word HAVEN_T
- ec_word A
- ec_word WORRY
- ec_word AT
- ec_word ALL
-@ win speech
- ec_word LIFE
- ec_word IS
- ec_word ALWAYS
- ec_word GOOD
- ec_word TO_ME
- .2byte -1
-@ loss speech
- ec_word I
- ec_word WORRY
- ec_word ABOUT
- ec_word MY
- ec_word POKEMON
- ec_word SKILL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVEN_T
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WORRY
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
+@ win speech
+ .2byte EC_WORD_LIFE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_TO_ME
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WORRY
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_SKILL
.4byte gBattleFrontierTrainerMons_Zoe
@ 18
.4byte TRAINER_CLASS_CAMPER
.string "CHEN$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word TOTALLY
- ec_word READY
- ec_word TO
- ec_word ROCK
- ec_word TODAY
-@ win speech
- ec_word I_AM
- ec_word READY
- ec_word TO
- ec_word GO
- ec_word ON
- ec_word EXCL
-@ loss speech
- ec_word I_VE
- ec_word LOST
- ec_word MY
- ec_move1 FOCUS_ENERGY
- ec_word AND
- ec_word TOUGHNESS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ROCK
+ .2byte EC_WORD_TODAY
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(FOCUS_ENERGY)
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_TOUGHNESS
.4byte gBattleFrontierTrainerMons_Chen
@ 19
.4byte TRAINER_CLASS_CAMPER
.string "AL$", 8
@ pre-battle speech
- ec_word YOUR
- ec_word LOOK
- ec_word SAYS
- ec_word YOU_RE
- ec_word REALLY
- ec_word TOUGH
-@ win speech
- ec_word IT_S
- ec_word ME
- ec_word WHO_IS
- ec_word REALLY
- ec_word TOUGH
- .2byte -1
-@ loss speech
- ec_word I_AM
- ec_word RIGHT
- ec_word EXCL
- ec_word YOU_RE
- ec_word REALLY
- ec_word TOUGH
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_SAYS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_TOUGH
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_WHO_IS
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_TOUGH
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_TOUGH
.4byte gBattleFrontierTrainerMons_Al
@ 20
.4byte TRAINER_CLASS_CAMPER
.string "MITCH$", 8
@ pre-battle speech
- ec_word MOTHER
- ec_word NATURE
- ec_word IS
- ec_word MY
- ec_word ALLY
- ec_word EXCL
-@ win speech
- ec_word WAS
- ec_word THAT
- ec_word ENOUGH
- ec_word FOR
- ec_word YOU
- ec_word QUES
-@ loss speech
- ec_word MOTHER
- ec_word NATURE
- ec_word DIDN_T
- ec_word LET_ME_WIN
- ec_word QUES
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_NATURE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_ALLY
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_NATURE
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_LET_ME_WIN
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Mitch
@@ -550,25 +550,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PICNICKER
.string "ANNE$", 8
@ pre-battle speech
- ec_word I
- ec_word CAN_T
- ec_word WAIT
- ec_word LET_S
- ec_word BATTLE
- ec_word NOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_NOW
@ win speech
- ec_word MY
- ec_word HAPPINESS
- ec_word IS
- ec_word OVERWHELMING
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HAPPINESS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_OVERWHELMING
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word YOU_VE
- ec_word DESTROYED
- ec_word MY
- ec_word HAPPINESS
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU_VE
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HAPPINESS
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Anne
@@ -576,207 +576,207 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PICNICKER
.string "ALIZE$", 8
@ pre-battle speech
- ec_word CUTE
- ec_word AND
- ec_word AWFULLY
- ec_word STRONG
- ec_word THAT_S
- ec_word ME
-@ win speech
- ec_word YUP
- ec_word I_AM
- ec_word CUTE
- ec_word AND
- ec_word AWFULLY
- ec_word STRONG
-@ loss speech
- ec_word I_AM
- ec_word WEAK
- ec_word ELLIPSIS
- ec_word BUT
- ec_word I_AM
- ec_word CUTE
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_AWFULLY
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_ME
+@ win speech
+ .2byte EC_WORD_YUP
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_AWFULLY
+ .2byte EC_WORD_STRONG
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_CUTE
.4byte gBattleFrontierTrainerMons_Alize
@ 23
.4byte TRAINER_CLASS_PICNICKER
.string "LAUREN$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word OLD
- ec_word BUT
- ec_word I_AM
- ec_word ALSO
- ec_word GOOD
-@ win speech
- ec_word I
- ec_word SAID
- ec_word I_WAS
- ec_word OLD
- ec_word BUT
- ec_word GOOD
-@ loss speech
- ec_word WHAT
- ec_word A
- ec_word WEIRD
- ec_word DREAM
- ec_word THAT_WAS
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ALSO
+ .2byte EC_WORD_GOOD
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SAID
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_GOOD
+@ loss speech
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WEIRD
+ .2byte EC_WORD_DREAM
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Lauren
@ 24
.4byte TRAINER_CLASS_TUBER_2
.string "KIPP$", 8
@ pre-battle speech
- ec_word IF_I_WIN
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word GO
- ec_move2 SURF
-@ win speech
- ec_word YEAH
- ec_word EXCL
- ec_word I_AM
- ec_word OFF
- ec_word TO
- ec_move2 SURF
-@ loss speech
- ec_word OH
- ec_word NO
- ec_word EXCL
- ec_word A
- ec_move1 WHIRLPOOL
- ec_word EXCL
+ .2byte EC_WORD_IF_I_WIN
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_MOVE2(SURF)
+@ win speech
+ .2byte EC_WORD_YEAH
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_OFF
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(SURF)
+@ loss speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(WHIRLPOOL)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Kipp
@ 25
.4byte TRAINER_CLASS_TUBER_2
.string "JASON$", 8
@ pre-battle speech
- ec_word TEACH
- ec_word ME
- ec_word A
- ec_word GOOD
- ec_word STRATEGY
+ .2byte EC_WORD_TEACH
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_STRATEGY
.2byte -1
@ win speech
- ec_word THAT_WAS
- ec_word YOUR
- ec_word GOOD
- ec_word STRATEGY
- ec_word QUES_EXCL
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
@ loss speech
- ec_word WOW
- ec_word THAT
- ec_word IS
- ec_word AN
- ec_word AWESOME
- ec_word STRATEGY
+ .2byte EC_WORD_WOW
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_STRATEGY
.4byte gBattleFrontierTrainerMons_Jason
@ 26
.4byte TRAINER_CLASS_TUBER_2
.string "JOHN$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word A
- ec_word PRETTY
- ec_word NEW
- ec_word TRAINER
- .2byte -1
-@ win speech
- ec_word I_AM
- ec_word NEW
- ec_word BUT
- ec_word I
- ec_word WON
- ec_word EXCL
-@ loss speech
- ec_word I_AM
- ec_word NEW
- ec_word SO
- ec_word WHAT
- ec_word IF_I_LOSE
- ec_word QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_NEW
+ .2byte EC_WORD_TRAINER
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NEW
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NEW
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_John
@ 27
.4byte TRAINER_CLASS_TUBER_1
.string "ANN$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word SO
- ec_word EXCITING
- ec_word IT
- ec_word REALLY
- ec_word IS
-@ win speech
- ec_word I_AM
- ec_word SO
- ec_word HAPPY
- ec_word I
- ec_word CAN
- ec_word CRY
-@ loss speech
- ec_word I_AM
- ec_word SO
- ec_word SAD
- ec_word I
- ec_word WILL
- ec_word CRY
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_IS
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_CRY
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_CRY
.4byte gBattleFrontierTrainerMons_Ann
@ 28
.4byte TRAINER_CLASS_TUBER_1
.string "EILEEN$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word PRETEND
- ec_word I_AM
- ec_word AN
- ec_word ADULT
- ec_word OK_QUES
-@ win speech
- ec_word SO
- ec_word THIS
- ec_word IS
- ec_word AN
- ec_word ADULT
- ec_word FEELING
-@ loss speech
- ec_word AN
- ec_word ADULT
- ec_word CAN_T
- ec_word BEAT
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_PRETEND
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_OK_QUES
+@ win speech
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_FEELING
+@ loss speech
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Eileen
@ 29
.4byte TRAINER_CLASS_TUBER_1
.string "CARLIE$", 8
@ pre-battle speech
- ec_word MY
- ec_word SUMMER
- ec_word VACATION
- ec_word IS
- ec_word FOR
- ec_word POKEMON
-@ win speech
- ec_word MY
- ec_word SUMMER
- ec_word VACATION
- ec_word WILL
- ec_word BE
- ec_word AWESOME
-@ loss speech
- ec_word I
- ec_word CAN_T_WIN
- ec_word LIKE
- ec_word THIS
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SUMMER
+ .2byte EC_WORD_VACATION
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SUMMER
+ .2byte EC_WORD_VACATION
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_AWESOME
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T_WIN
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Carlie
@@ -784,389 +784,389 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_SWIMMER_M
.string "GORDON$", 8
@ pre-battle speech
- ec_word VICTORY
- ec_word WILL
- ec_word COME
- ec_word TO_ME
- ec_word EXCL
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word OH_YEAH
- ec_word EXCL
+ .2byte EC_WORD_OH_YEAH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word REALLY
- ec_word WON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_WON
@ loss speech
- ec_word NOTHING
- ec_word IS
- ec_word WORKING
- ec_word OUT
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_NOTHING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WORKING
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.4byte gBattleFrontierTrainerMons_Gordon
@ 31
.4byte TRAINER_CLASS_SWIMMER_M
.string "AYDEN$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word I
- ec_word NEED
- ec_word A
- ec_word HOT
- ec_word BATTLE
-@ win speech
- ec_word I
- ec_word NEED
- ec_word WATER
- ec_word TO
- ec_word COOL
- ec_word DOWN
-@ loss speech
- ec_word YOU
- ec_word HAVE
- ec_word ME
- ec_word FEELING
- ec_word ICE
- ec_word COLD
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HOT
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_WATER
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_DOWN
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_ICE
+ .2byte EC_WORD_COLD
.4byte gBattleFrontierTrainerMons_Ayden
@ 32
.4byte TRAINER_CLASS_SWIMMER_M
.string "MARCO$", 8
@ pre-battle speech
- ec_word I
- ec_move2 SURF
- ec_word IN
- ec_word THE
- ec_word WINTER
- ec_word TOO
-@ win speech
- ec_word I
- ec_word WILL
- ec_word GO
- ec_move2 SURF
- ec_word RIGHT
- ec_word NOW
-@ loss speech
- ec_word I
- ec_word WILL
- ec_move2 BEAT_UP
- ec_word MY
- ec_move2 SURF
- ec_word BOARD
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(SURF)
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WINTER
+ .2byte EC_WORD_TOO
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GO
+ .2byte EC_MOVE2(SURF)
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_NOW
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(SURF)
+ .2byte EC_WORD_BOARD
.4byte gBattleFrontierTrainerMons_Marco
@ 33
.4byte TRAINER_CLASS_SWIMMER_F
.string "CIERRA$", 8
@ pre-battle speech
- ec_word I
- ec_word LIKE
- ec_word TO
- ec_word SYNCHRONIZE
- ec_word MY
- ec_word SWIFT_SWIM
-@ win speech
- ec_word MY
- ec_word POKEMON
- ec_word SYNCHRONIZE
- ec_word WITH
- ec_word ME
- .2byte -1
-@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word SYNCHRONIZE
- ec_word BETTER
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SYNCHRONIZE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SWIFT_SWIM
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_SYNCHRONIZE
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_ME
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SYNCHRONIZE
+ .2byte EC_WORD_BETTER
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Cierra
@ 34
.4byte TRAINER_CLASS_SWIMMER_F
.string "MARCY$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word A
- ec_word KNOCKOUT
- ec_word YOU
- ec_word CAN_T_WIN
- ec_word EXCL
-@ win speech
- ec_word AFTER
- ec_word ALL
- ec_word I_AM
- ec_word A
- ec_word KNOCKOUT
- ec_word EXCL
-@ loss speech
- ec_word THAT_S
- ec_word NOT
- ec_word THE
- ec_word KNOCKOUT
- ec_word I
- ec_word MEAN
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_KNOCKOUT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T_WIN
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_AFTER
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_KNOCKOUT
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_KNOCKOUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_MEAN
.4byte gBattleFrontierTrainerMons_Marcy
@ 35
.4byte TRAINER_CLASS_SWIMMER_F
.string "KATHY$", 8
@ pre-battle speech
- ec_word I_VE
- ec_word WON
- ec_word EVERY
- ec_word MATCH
- ec_word TODAY
- ec_word EXCL
-@ win speech
- ec_word IT_S
- ec_word SO
- ec_word GREAT
- ec_word TO
- ec_word WIN
- ec_word EXCL
-@ loss speech
- ec_word HUH_QUES
- ec_word I
- ec_word SHOULD
- ec_word NOT
- ec_word HAVE
- ec_word LOST
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_MATCH
+ .2byte EC_WORD_TODAY
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_GREAT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_LOST
.4byte gBattleFrontierTrainerMons_Kathy
@ 36
.4byte TRAINER_CLASS_POKEFAN_1
.string "PEYTON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NEVER
- ec_word DISAPPOINTED
- ec_word WITH
- ec_word MY
- ec_word POKEMON
-@ win speech
- ec_word I_AM
- ec_word HAPPY
- ec_word IF
- ec_word WE
- ec_word WIN
- ec_word TOGETHER
-@ loss speech
- ec_word I
- ec_word ADORE
- ec_word MY
- ec_word POKEMON
- ec_word MORE
- ec_word IF_I_LOSE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NEVER
+ .2byte EC_WORD_DISAPPOINTED
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_TOGETHER
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_IF_I_LOSE
.4byte gBattleFrontierTrainerMons_Peyton
@ 37
.4byte TRAINER_CLASS_POKEFAN_1
.string "JULIAN$", 8
@ pre-battle speech
- ec_word YOU
- ec_word ADORE
- ec_word YOUR
- ec_word POKEMON
- ec_word RIGHT
- ec_word QUES
-@ win speech
- ec_word YOU_RE
- ec_word TOTALLY
- ec_word OUT
- ec_word OF
- ec_word THE
- ec_word QUESTION
-@ loss speech
- ec_word YOU
- ec_word DO
- ec_word ADORE
- ec_word YOUR
- ec_word POKEMON
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_QUESTION
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Julian
@ 38
.4byte TRAINER_CLASS_POKEFAN_1
.string "QUINN$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word ARE
- ec_word BUT
- ec_word A
- ec_word DREAM
-@ win speech
- ec_word THIS
- ec_word IS
- ec_word A
- ec_word BEAUTIFUL
- ec_word DREAM
- ec_word EXCL
-@ loss speech
- ec_word THIS
- ec_word IS
- ec_word AN
- ec_word AWFUL
- ec_move1 NIGHTMARE
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_DREAM
+@ win speech
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BEAUTIFUL
+ .2byte EC_WORD_DREAM
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_AWFUL
+ .2byte EC_MOVE(NIGHTMARE)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Quinn
@ 39
.4byte TRAINER_CLASS_POKEFAN_2
.string "HAYLEE$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word KNOW
- ec_word HOW
- ec_word I_AM
- ec_word FEELING
-@ win speech
- ec_word I_AM
- ec_word FEELING
- ec_word OVERWHELMING
- ec_word JOY
- ec_word OVER
- ec_word THIS
-@ loss speech
- ec_word DESTROYED
- ec_word IS
- ec_word THE
- ec_word WAY
- ec_word I_AM
- ec_word FEELING
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_OVERWHELMING
+ .2byte EC_WORD_JOY
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_THIS
+@ loss speech
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
.4byte gBattleFrontierTrainerMons_Haylee
@ 40
.4byte TRAINER_CLASS_POKEFAN_2
.string "AMANDA$", 8
@ pre-battle speech
- ec_word I
- ec_word COME
- ec_word FROM
- ec_word A
- ec_word TRAINER
- ec_word FAMILY
-@ win speech
- ec_word I
- ec_word WILL
- ec_word TREASURE
- ec_word THIS
- ec_word WIN
- .2byte -1
-@ loss speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word GO_HOME
- ec_word RIGHT
- ec_word NOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_FAMILY
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_TREASURE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_WIN
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO_HOME
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_NOW
.4byte gBattleFrontierTrainerMons_Amanda
@ 41
.4byte TRAINER_CLASS_POKEFAN_2
.string "STACY$", 8
@ pre-battle speech
- ec_word ALL
- ec_word POKEMON
- ec_word HAVE
- ec_word THEIR
- ec_word OWN
- ec_word CUTE_CHARM
-@ win speech
- ec_word YOU
- ec_word SEE
- ec_word WHAT
- ec_word I
- ec_word MEAN
- ec_word QUES
-@ loss speech
- ec_word SHOULD
- ec_word I
- ec_word NOT
- ec_word ADORE
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_THEIR
+ .2byte EC_WORD_OWN
+ .2byte EC_WORD_CUTE_CHARM
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Stacy
@ 42
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "RAFAEL$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word EXCL
- ec_word LET_S
- ec_word SEE
- ec_word SOME
- ec_word SPIRIT
-@ win speech
- ec_word THAT_S_IT_EXCL
- ec_word THAT_S
- ec_word THE
- ec_word SPIRIT
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word WELL
- ec_word SO
- ec_word MUCH
- ec_word FOR
- ec_word OUR
- ec_word SPIRIT
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_SPIRIT
+@ win speech
+ .2byte EC_WORD_THAT_S_IT_EXCL
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_SPIRIT
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_OUR
+ .2byte EC_WORD_SPIRIT
.4byte gBattleFrontierTrainerMons_Rafael
@ 43
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "OLIVER$", 8
@ pre-battle speech
- ec_word A
- ec_word GENIUS
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
- ec_word EXCL
-@ win speech
- ec_word THAT_S
- ec_word HOW
- ec_word A
- ec_word GENIUS
- ec_word WORKS
- ec_word EXCL
-@ loss speech
- ec_word YOU_RE
- ec_word MORE
- ec_word A
- ec_word GENIUS
- ec_word THAN
- ec_word I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_WORKS
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_I_AM
.4byte gBattleFrontierTrainerMons_Oliver
@ 44
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "PAYTON$", 8
@ pre-battle speech
- ec_word I
- ec_word TRAIN
- ec_word FROM
- ec_word THE
- ec_word EGG
- ec_word UP
+ .2byte EC_WORD_I
+ .2byte EC_WORD_TRAIN
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_EGG
+ .2byte EC_WORD_UP
@ win speech
- ec_word WELL
- ec_word DONE
- ec_word EXCL
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_DONE
+ .2byte EC_WORD_EXCL
.2byte -1
.2byte -1
.2byte -1
@ loss speech
- ec_word THAT_WAS
- ec_word A
- ec_move2 SOFT_BOILED
- ec_word LOSS
- ec_word ELLIPSIS
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(SOFT_BOILED)
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Payton
@@ -1174,129 +1174,129 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "PAMELA$", 8
@ pre-battle speech
- ec_word ALL
- ec_word POKEMON
- ec_word ADORE
- ec_word A
- ec_word KIND
- ec_word TRAINER
-@ win speech
- ec_word IT_S
- ec_word TOO
- ec_word BAD
- ec_word YOU
- ec_word LOST
- .2byte -1
-@ loss speech
- ec_word YOU_RE
- ec_word KIND
- ec_word AND
- ec_word YOU_RE
- ec_word ALSO
- ec_word STRONG
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_TRAINER
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LOST
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_ALSO
+ .2byte EC_WORD_STRONG
.4byte gBattleFrontierTrainerMons_Pamela
@ 46
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "ELIZA$", 8
@ pre-battle speech
- ec_word I
- ec_word ADORE
- ec_word POKEMON
- ec_word LIKE
- ec_word MY
- ec_word CHILDREN
-@ win speech
- ec_word I_AM
- ec_word SO
- ec_word HAPPY
- ec_word FOR
- ec_word MY
- ec_word POKEMON
-@ loss speech
- ec_word OH_DEAR
- ec_word I_AM
- ec_word SO
- ec_word SORRY
- ec_word ABOUT
- ec_word THIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CHILDREN
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+@ loss speech
+ .2byte EC_WORD_OH_DEAR
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_THIS
.4byte gBattleFrontierTrainerMons_Eliza
@ 47
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "MARISA$", 8
@ pre-battle speech
- ec_word I
- ec_word PROMISE
- ec_word TO
- ec_word BATTLE
- ec_word SERIOUSLY
- .2byte -1
-@ win speech
- ec_word PROMISE
- ec_word ME
- ec_word YOU
- ec_word WILL
- ec_word DO
- ec_word BETTER
-@ loss speech
- ec_word PROMISE
- ec_word ME
- ec_word ANOTHER
- ec_word BATTLE
- ec_word PLEASE
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SERIOUSLY
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_BETTER
+@ loss speech
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Marisa
@ 48
.4byte TRAINER_CLASS_BUG_CATCHER
.string "LEWIS$", 8
@ pre-battle speech
- ec_word A_LITTLE
- ec_word BUG
- ec_word IS
- ec_word SCARY
- ec_word QUES
- ec_word HAHAHA
-@ win speech
- ec_word LOOK
- ec_word LOOK
- ec_word EXCL
- ec_word A
- ec_word SCARY
- ec_word BUG
-@ loss speech
- ec_word OH
- ec_word A
- ec_word BUG
- ec_word ISN_T
- ec_word SCARY
- ec_word ELLIPSIS
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_HAHAHA
+@ win speech
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_BUG
+@ loss speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Lewis
@ 49
.4byte TRAINER_CLASS_BUG_CATCHER
.string "YOSHI$", 8
@ pre-battle speech
- ec_word BUG
- ec_word POKEMON
- ec_word MAKE
- ec_word ME
- ec_word FEELING
- ec_word LOVEY_DOVEY
-@ win speech
- ec_word BUG
- ec_word POKEMON
- ec_word ARE
- ec_word THE
- ec_word BEST
- ec_word EXCL
-@ loss speech
- ec_word YOU_RE
- ec_word IGNORANT
- ec_word ABOUT
- ec_word BUG
- ec_word POKEMON
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_LOVEY_DOVEY
+@ win speech
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_IGNORANT
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
.2byte -1
.4byte gBattleFrontierTrainerMons_Yoshi
@@ -1304,25 +1304,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BUG_CATCHER
.string "DESTIN$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word WAY
- ec_word TOO
- ec_word HOT
- ec_word HERE
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_HOT
+ .2byte EC_WORD_HERE
.2byte -1
@ win speech
- ec_word I_AM
- ec_word ABOUT
- ec_word TO
- ec_move1 OVERHEAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(OVERHEAT)
.2byte -1
.2byte -1
@ loss speech
- ec_word PLEASE
- ec_word I
- ec_word NEED
- ec_word SOME
- ec_word WATER
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_WATER
.2byte -1
.4byte gBattleFrontierTrainerMons_Destin
@@ -1330,23 +1330,23 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_NINJA_BOY
.string "KEON$", 8
@ pre-battle speech
- ec_word FORGIVE
- ec_word ME
- ec_word BUT
- ec_word HERE_I_COME
- ec_word EXCL
+ .2byte EC_WORD_FORGIVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_HERE_I_COME
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word FORGIVE
- ec_word ME
- ec_word FOR
- ec_word MY
- ec_word OVERWHELMING
- ec_word POWER
+ .2byte EC_WORD_FORGIVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_OVERWHELMING
+ .2byte EC_WORD_POWER
@ loss speech
- ec_word I_AM
- ec_word SORRY
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
@@ -1356,51 +1356,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_NINJA_BOY
.string "STUART$", 8
@ pre-battle speech
- ec_word I
- ec_word PROMISE
- ec_word YOU
- ec_word A
- ec_word HOT
- ec_word BATTLE
-@ win speech
- ec_word THE
- ec_word MASTER
- ec_word OF
- ec_word COOL
- ec_word THAT_S
- ec_word ME
-@ loss speech
- ec_word I
- ec_word SEE
- ec_word I_AM
- ec_word NOT
- ec_word SO
- ec_word COOL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HOT
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_MASTER
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_COOL
.4byte gBattleFrontierTrainerMons_Stuart
@ 53
.4byte TRAINER_CLASS_NINJA_BOY
.string "NESTOR$", 8
@ pre-battle speech
- ec_word SHOW
- ec_word ME
- ec_word A
- ec_word REALLY
- ec_word SMOOTH
- ec_word MOVE
-@ win speech
- ec_word THERE
- ec_word WAS
- ec_word NOTHING
- ec_word SMOOTH
- ec_word ABOUT
- ec_word THAT
-@ loss speech
- ec_word YOU
- ec_word REALLY
- ec_word ARE
- ec_word SMOOTH
- ec_word EXCL
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_SMOOTH
+ .2byte EC_WORD_MOVE
+@ win speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_NOTHING
+ .2byte EC_WORD_SMOOTH
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_THAT
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SMOOTH
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Nestor
@@ -1408,50 +1408,50 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BUG_MANIAC
.string "DERRICK$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word SEE
- ec_word YOU
- ec_move2 MEDITATE
- ec_word LIKE
- ec_word ME
-@ win speech
- ec_word HOW
- ec_word I
- ec_move2 MEDITATE
- ec_word IS
- ec_word JUST
- ec_word BEAUTIFUL
-@ loss speech
- ec_word I
- ec_word WILL
- ec_move2 MEDITATE
- ec_word FOR
- ec_word A
- ec_move2 CALM_MIND
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(MEDITATE)
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_ME
+@ win speech
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(MEDITATE)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_BEAUTIFUL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE2(MEDITATE)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(CALM_MIND)
.4byte gBattleFrontierTrainerMons_Derrick
@ 55
.4byte TRAINER_CLASS_BUG_MANIAC
.string "BRYSON$", 8
@ pre-battle speech
- ec_move2 POISON_POWDER
- ec_word IS
- ec_word IN
- ec_word OUR
- ec_move2 COTTON_SPORE
- ec_word MOVE
+ .2byte EC_MOVE2(POISON_POWDER)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_OUR
+ .2byte EC_MOVE2(COTTON_SPORE)
+ .2byte EC_WORD_MOVE
@ win speech
- ec_word HOW_DO
- ec_word YOU
- ec_word LIKE
- ec_word OUR
- ec_move2 POISON_POWDER
- ec_word QUES
+ .2byte EC_WORD_HOW_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_OUR
+ .2byte EC_MOVE2(POISON_POWDER)
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word MY
- ec_move2 COTTON_SPORE
- ec_word WAS
- ec_word USELESS
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(COTTON_SPORE)
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_USELESS
.2byte -1
.2byte -1
.4byte gBattleFrontierTrainerMons_Bryson
@@ -1460,103 +1460,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BUG_MANIAC
.string "CLAYTON$", 8
@ pre-battle speech
- ec_word HUH_QUES
+ .2byte EC_WORD_HUH_QUES
.2byte -1
.2byte -1
- ec_word WHERE
- ec_word IS_IT_QUES
+ .2byte EC_WORD_WHERE
+ .2byte EC_WORD_IS_IT_QUES
.2byte -1
@ win speech
- ec_word WHERE
- ec_word IS_IT_QUES
- ec_word I_VE
- ec_word LOST
- ec_word MY
- ec_word POKENAV
+ .2byte EC_WORD_WHERE
+ .2byte EC_WORD_IS_IT_QUES
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKENAV
@ loss speech
- ec_word WHERE
- ec_word IS_IT_QUES
- ec_word I_VE
- ec_word LOST
- ec_word MY
- ec_word SENSE
+ .2byte EC_WORD_WHERE
+ .2byte EC_WORD_IS_IT_QUES
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SENSE
.4byte gBattleFrontierTrainerMons_Clayton
@ 57
.4byte TRAINER_CLASS_FISHERMAN
.string "TRENTON$", 8
@ pre-battle speech
- ec_word COME_OVER
- ec_word FOR
- ec_word SOME
- ec_word TASTY
- ec_word WATER
- .2byte -1
-@ win speech
- ec_word MMM
- ec_word DO
- ec_word YOU
- ec_word WANT
- ec_word SOME
- ec_word QUES
-@ loss speech
- ec_word I
- ec_word GOT
- ec_word THIS
- ec_word TASTY
- ec_word WATER
- ec_word SHOPPING
+ .2byte EC_WORD_COME_OVER
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_WATER
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_WATER
+ .2byte EC_WORD_SHOPPING
.4byte gBattleFrontierTrainerMons_Trenton
@ 58
.4byte TRAINER_CLASS_FISHERMAN
.string "JENSON$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word WILL
- ec_word MAKE
- ec_word YOU
- ec_word DOWNCAST
-@ win speech
- ec_word YOUR
- ec_word POKEMON
- ec_word DON_T
- ec_word MAKE
- ec_word THE
- ec_move1 CUT
-@ loss speech
- ec_word I_AM
- ec_word THE
- ec_word TRAINER
- ec_word WHO_IS
- ec_word FEELING
- ec_word DOWNCAST
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DOWNCAST
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE(CUT)
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_WHO_IS
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_DOWNCAST
.4byte gBattleFrontierTrainerMons_Jenson
@ 59
.4byte TRAINER_CLASS_FISHERMAN
.string "WESLEY$", 8
@ pre-battle speech
- ec_pokemon2 MEW
- ec_pokemon2 MEW
- ec_word IS
- ec_word HOW
- ec_word I
- ec_word CRY
-@ win speech
- ec_word YES
- ec_word I
- ec_word KNOW
- ec_word I_AM
- ec_word CUTE
- ec_word EXCL
-@ loss speech
- ec_pokemon2 MEW
- ec_pokemon2 MEW
- ec_word EXCL
- ec_pokemon2 MEW
- ec_word EXCL_EXCL
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CRY
+@ win speech
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_WORD_EXCL
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Wesley
@@ -1564,129 +1564,129 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "ANTON$", 8
@ pre-battle speech
- ec_word GET
- ec_word READY
- ec_word FOR
- ec_word ME
- ec_word TO
- ec_move1 THRASH
-@ win speech
- ec_word WAHAHAHA
- ec_word EXCL
- ec_word SORRY
- ec_word ABOUT
- ec_word THAT
- ec_word EXCL
-@ loss speech
- ec_word IT_S
- ec_word A
- ec_word TOUGH
- ec_word LOSS
- ec_word TO
- ec_move2 SWALLOW
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(THRASH)
+@ win speech
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(SWALLOW)
.4byte gBattleFrontierTrainerMons_Anton
@ 61
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "LAWSON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word YOUNG
- ec_word AT
- ec_word HEART
- ec_word EXCL
- .2byte -1
-@ win speech
- ec_word NOT
- ec_word COOL
- ec_word EXCL
- ec_word NOT
- ec_word AT
- ec_word ALL
-@ loss speech
- ec_word I_AM
- ec_word OLD
- ec_word AND
- ec_word FEELING
- ec_word SHAKY
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_YOUNG
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_HEART
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_SHAKY
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Lawson
@ 62
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "SAMMY$", 8
@ pre-battle speech
- ec_word MY
- ec_word PARTY
- ec_word IS
- ec_word READY
- ec_word TO
- ec_word ROCK
-@ win speech
- ec_word MY
- ec_word PARTY
- ec_word IS
- ec_word JUST
- ec_word INCREDIBLE
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word CRY
- ec_word FOR
- ec_word MY
- ec_word PARTY
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ROCK
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_INCREDIBLE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CRY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Sammy
@ 63
.4byte TRAINER_CLASS_COLLECTOR
.string "ARNIE$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NO_1
- ec_word I
- ec_word HAVE
- ec_word NO
- ec_word RIVAL
-@ win speech
- ec_word YOU
- ec_word SEE
- ec_word QUES
- ec_word I
- ec_word CAN_T
- ec_word LOSE
-@ loss speech
- ec_word NO
- ec_word EXCL
- ec_word I
- ec_word WON_T
- ec_word ACCEPT
- ec_word THIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_RIVAL
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_LOSE
+@ loss speech
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_WORD_THIS
.4byte gBattleFrontierTrainerMons_Arnie
@ 64
.4byte TRAINER_CLASS_COLLECTOR
.string "ADRIAN$", 8
@ pre-battle speech
- ec_word YAHOO
- ec_word EXCL
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word YAHOO
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word THANK_YOU
- ec_word EXCL
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word THANK_YOU
- ec_word EXCL_EXCL
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ loss speech
- ec_word GOOD_BYE
- ec_word EXCL
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word GOOD_BYE
- ec_word EXCL_EXCL
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Adrian
@@ -1694,103 +1694,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_COLLECTOR
.string "TRISTAN$", 8
@ pre-battle speech
- ec_word CONFUSED
- ec_word QUES
+ .2byte EC_WORD_CONFUSED
+ .2byte EC_WORD_QUES
.2byte -1
- ec_word I_AM
- ec_word A
- ec_word GENIUS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
@ win speech
- ec_word SEE
- ec_word QUES
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
.2byte -1
- ec_word I_AM
- ec_word A
- ec_word GENIUS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
@ loss speech
- ec_word I_AM
- ec_word NOT
- ec_word A
- ec_word GENIUS
- ec_word IN
- ec_word BATTLE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_BATTLE
.4byte gBattleFrontierTrainerMons_Tristan
@ 66
.4byte TRAINER_CLASS_PARASOL_LADY
.string "JULIANA$", 8
@ pre-battle speech
- ec_word I
- ec_word THINK
- ec_word I_AM
- ec_word SHOPPING
- ec_word TOO
- ec_word MUCH
-@ win speech
- ec_word BUT
- ec_word I
- ec_word WANT
- ec_word A
- ec_word POKEMON
- ec_word PLUSH_DOLL
-@ loss speech
- ec_word I
- ec_word SO
- ec_word WANT
- ec_word ANOTHER
- ec_word POKEMON
- ec_word PLUSH_DOLL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SHOPPING
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+@ win speech
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_PLUSH_DOLL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_PLUSH_DOLL
.4byte gBattleFrontierTrainerMons_Juliana
@ 67
.4byte TRAINER_CLASS_PARASOL_LADY
.string "RYLEE$", 8
@ pre-battle speech
- ec_word SHOW
- ec_word ME
- ec_word THAT
- ec_word YOU
- ec_word HAVE
- ec_word GUTS
-@ win speech
- ec_word BYE_BYE
- ec_word EXCL
- ec_word YOU
- ec_word HAVE
- ec_word NO
- ec_word GUTS
-@ loss speech
- ec_word THAT_WAS
- ec_word GUTSY
- ec_word ELLIPSIS
- ec_word YOU_RE
- ec_word QUITE
- ec_word SUPER
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_GUTS
+@ win speech
+ .2byte EC_WORD_BYE_BYE
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_GUTS
+@ loss speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_GUTSY
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_QUITE
+ .2byte EC_WORD_SUPER
.4byte gBattleFrontierTrainerMons_Rylee
@ 68
.4byte TRAINER_CLASS_PARASOL_LADY
.string "CHELSEA$", 8
@ pre-battle speech
- ec_word I
- ec_word SERIOUSLY
- ec_word MEAN
- ec_word TO
- ec_word WIN
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SERIOUSLY
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word THAT_WAS
- ec_word MY
- ec_word WILL
- ec_word TO
- ec_word WIN
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WIN
.2byte -1
@ loss speech
- ec_word YOU_RE
- ec_word FAR
- ec_word TOO_STRONG
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_FAR
+ .2byte EC_WORD_TOO_STRONG
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.2byte -1
.4byte gBattleFrontierTrainerMons_Chelsea
@@ -1798,233 +1798,233 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BEAUTY
.string "DANELA$", 8
@ pre-battle speech
- ec_word YOU
- ec_word MUST_BE
- ec_word MY
- ec_word OPPONENT
- ec_word NOW
- ec_word EXCL
-@ win speech
- ec_word OH_DEAR
- ec_word TOO_WEAK
- ec_word EXCL
- ec_word DON_T
- ec_word GIVE_UP
- ec_word EXCL
-@ loss speech
- ec_word THAT_WAS
- ec_word GOOD
- ec_word AND
- ec_word THIS
- ec_word IS
- ec_word GOOD_BYE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MUST_BE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_OPPONENT
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_OH_DEAR
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_GOOD_BYE
.4byte gBattleFrontierTrainerMons_Danela
@ 70
.4byte TRAINER_CLASS_BEAUTY
.string "LIZBETH$", 8
@ pre-battle speech
- ec_word IF_I_LOSE
- ec_word YOU
- ec_word CAN
- ec_word HAVE
- ec_word A
- ec_move2 PRESENT
-@ win speech
- ec_word HERE_IT_IS
- ec_word A_LITTLE
- ec_word PRAISE
- ec_word AS
- ec_word YOUR
- ec_move2 PRESENT
-@ loss speech
- ec_word YOUR
- ec_move2 PRESENT
- ec_word QUES_EXCL
- ec_word HERE_IT_IS
- ec_word A
- ec_move1 DOUBLE_SLAP
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(PRESENT)
+@ win speech
+ .2byte EC_WORD_HERE_IT_IS
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_PRAISE
+ .2byte EC_WORD_AS
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(PRESENT)
+@ loss speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(PRESENT)
+ .2byte EC_WORD_QUES_EXCL
+ .2byte EC_WORD_HERE_IT_IS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(DOUBLE_SLAP)
.4byte gBattleFrontierTrainerMons_Lizbeth
@ 71
.4byte TRAINER_CLASS_BEAUTY
.string "AMELIA$", 8
@ pre-battle speech
- ec_word I
- ec_word BELIEVE
- ec_word IN
- ec_word CUTE
- ec_word FASHION
- ec_word APPEAL
-@ win speech
- ec_word YOUR
- ec_word FASHION
- ec_word SENSE
- ec_word IS
- ec_word A
- ec_word DISASTER
-@ loss speech
- ec_word THAT_WAS
- ec_word AWFUL
- ec_word EXCL
- ec_word I_AM
- ec_word GOING
- ec_word HOME
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_APPEAL
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_DISASTER
+@ loss speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_HOME
.4byte gBattleFrontierTrainerMons_Amelia
@ 72
.4byte TRAINER_CLASS_AROMA_LADY
.string "JILLIAN$", 8
@ pre-battle speech
- ec_word WHAT
- ec_word IS
- ec_word THAT
- ec_word I
- ec_word SMELL
- ec_word QUES
-@ win speech
- ec_word IT_S
- ec_word THE
- ec_move1 SWEET_SCENT
- ec_word OF
- ec_word TASTY
- ec_word WATER
-@ loss speech
- ec_word IT_S
- ec_word YOUR
- ec_word OFFENSIVE
- ec_word STENCH
- ec_word THAT_S
- ec_word WHAT
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SMELL
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE(SWEET_SCENT)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_WATER
+@ loss speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_OFFENSIVE
+ .2byte EC_WORD_STENCH
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
.4byte gBattleFrontierTrainerMons_Jillian
@ 73
.4byte TRAINER_CLASS_AROMA_LADY
.string "ABBIE$", 8
@ pre-battle speech
- ec_word YOU
- ec_word TRY
- ec_word MY
- ec_word SECRET
- ec_move1 AROMATHERAPY
- ec_word OK_QUES
-@ win speech
- ec_word MY
- ec_move1 AROMATHERAPY
- ec_word IS
- ec_word TERRIBLE
- ec_word FOR
- ec_word YOU
-@ loss speech
- ec_word DIDN_T
- ec_word YOU
- ec_word SMELL
- ec_word A
- ec_word THING
- ec_word QUES_EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_TRY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SECRET
+ .2byte EC_MOVE(AROMATHERAPY)
+ .2byte EC_WORD_OK_QUES
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(AROMATHERAPY)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
+@ loss speech
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SMELL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_THING
+ .2byte EC_WORD_QUES_EXCL
.4byte gBattleFrontierTrainerMons_Abbie
@ 74
.4byte TRAINER_CLASS_AROMA_LADY
.string "BRIANA$", 8
@ pre-battle speech
- ec_word MY
- ec_word BOY
- ec_word FRIEND
- ec_word WORKS
- ec_word TOO
- ec_word MUCH
-@ win speech
- ec_word I
- ec_word ONLY
- ec_word MISS
- ec_word HIM
- ec_word MORE
- ec_word ELLIPSIS
-@ loss speech
- ec_word I_AM
- ec_word SO
- ec_word LONESOME
- ec_word WITHOUT
- ec_word HIM
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BOY
+ .2byte EC_WORD_FRIEND
+ .2byte EC_WORD_WORKS
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_MISS
+ .2byte EC_WORD_HIM
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_LONESOME
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_HIM
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Briana
@ 75
.4byte TRAINER_CLASS_GUITARIST
.string "ANTONIO$", 8
@ pre-battle speech
- ec_word I
- ec_word KNOW
- ec_word HOW
- ec_word TO
- ec_word GO
- ec_word GO
-@ win speech
- ec_word BUT
- ec_word I
- ec_word DON_T
- ec_word LIKE
- ec_word TO
- ec_word DANCE
-@ loss speech
- ec_word GO
- ec_word GO
- ec_word ELLIPSIS
- ec_word JUST
- ec_move1 FLAIL
- ec_word ABOUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_GO
+@ win speech
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_DANCE
+@ loss speech
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_JUST
+ .2byte EC_MOVE(FLAIL)
+ .2byte EC_WORD_ABOUT
.4byte gBattleFrontierTrainerMons_Antonio
@ 76
.4byte TRAINER_CLASS_GUITARIST
.string "JADEN$", 8
@ pre-battle speech
- ec_word HELLO
- ec_word I
- ec_word THINK
- ec_word I
- ec_word ADORE
- ec_word YOU
+ .2byte EC_WORD_HELLO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_YOU
@ win speech
- ec_word YOU
- ec_word MAKE
- ec_word ME
- ec_move1 THRASH
- ec_word IN
- ec_move2 FRUSTRATION
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_MOVE(THRASH)
+ .2byte EC_WORD_IN
+ .2byte EC_MOVE2(FRUSTRATION)
@ loss speech
- ec_word THIS_IS_IT_EXCL
+ .2byte EC_WORD_THIS_IS_IT_EXCL
.2byte -1
.2byte -1
- ec_word GOOD_BYE
- ec_word FOREVER
- ec_word EXCL
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_FOREVER
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Jaden
@ 77
.4byte TRAINER_CLASS_GUITARIST
.string "DAKOTA$", 8
@ pre-battle speech
- ec_word YOU
- ec_word HAVE
- ec_word TO
- ec_word DANCE
- ec_word WITH
- ec_word POWER
-@ win speech
- ec_word GOT
- ec_word IT
- ec_word QUES
- ec_word DANCE
- ec_word WITH
- ec_word POWER
-@ loss speech
- ec_word OKAY
- ec_word YOU
- ec_word UNDERSTAND
- ec_word ALL_RIGHT
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_POWER
+@ win speech
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_POWER
+@ loss speech
+ .2byte EC_WORD_OKAY
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_UNDERSTAND
+ .2byte EC_WORD_ALL_RIGHT
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Dakota
@@ -2032,74 +2032,74 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "BRAYDEN$", 8
@ pre-battle speech
- ec_word COLOR_CHANGE
- ec_word VERSION
- ec_word TOYS
- ec_word ARE
- ec_word USELESS
- ec_word EXCL
-@ win speech
- ec_word I
- ec_word ONLY
- ec_word COLLECT
- ec_word NORMAL
- ec_word VERSION
- ec_word TOYS
-@ loss speech
- ec_word I
- ec_move2 ATTRACT
- ec_word COLOR_CHANGE
- ec_word VERSION
- ec_word TOYS
- ec_word ELLIPSIS
+ .2byte EC_WORD_COLOR_CHANGE
+ .2byte EC_WORD_VERSION
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_USELESS
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_COLLECT
+ .2byte EC_WORD_NORMAL
+ .2byte EC_WORD_VERSION
+ .2byte EC_WORD_TOYS
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(ATTRACT)
+ .2byte EC_WORD_COLOR_CHANGE
+ .2byte EC_WORD_VERSION
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Brayden
@ 79
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "CORSON$", 8
@ pre-battle speech
- ec_word I
- ec_word GET
- ec_word TO
- ec_move2 BEAT_UP
- ec_word ON
- ec_word YOU
-@ win speech
- ec_word TOO
- ec_word EASY
- ec_word EXCL
- ec_word I_AM
- ec_word SO
- ec_word COOL
-@ loss speech
- ec_word WHY
- ec_word QUES_EXCL
- .2byte -1
- ec_word I
- ec_move2 CURSE
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_YOU
+@ win speech
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_COOL
+@ loss speech
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_QUES_EXCL
+ .2byte -1
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(CURSE)
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Corson
@ 80
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "TREVIN$", 8
@ pre-battle speech
- ec_word THERE
- ec_word IS
- ec_word NONE
- ec_word BETTER
- ec_word THAN
- ec_word ME
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_NONE
+ .2byte EC_WORD_BETTER
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_ME
@ win speech
- ec_word YES_SIR_EXCL
+ .2byte EC_WORD_YES_SIR_EXCL
.2byte -1
.2byte -1
- ec_word I_AM
- ec_word THE
- ec_word BEST
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
@ loss speech
- ec_word SERIOUS
- ec_word QUES_EXCL
+ .2byte EC_WORD_SERIOUS
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
.2byte -1
.2byte -1
@@ -2110,77 +2110,77 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_SAILOR
.string "PATRICK$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word PERFECT
- ec_word EXCL
- ec_word GIVE_UP
- ec_word NOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_PERFECT
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_NOW
.2byte -1
@ win speech
- ec_word DON_T
- ec_word BE
- ec_word DISAPPOINTED
- ec_word I_AM
- ec_word PERFECT
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_DISAPPOINTED
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_PERFECT
.2byte -1
@ loss speech
- ec_word BUT
- ec_word HOW
- ec_word QUES
- ec_word I_AM
- ec_word PERFECT
- ec_word ELLIPSIS
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_PERFECT
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Patrick
@ 82
.4byte TRAINER_CLASS_SAILOR
.string "KADEN$", 8
@ pre-battle speech
- ec_word WHAT
- ec_word ARE
- ec_word YOU
- ec_word UP
- ec_word TO
- ec_word QUES
-@ win speech
- ec_word YOU
- ec_word WERE
- ec_word A
- ec_word SURPRISE
- ec_word TO_ME
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word DON_T
- ec_word KNOW
- ec_word WHO
- ec_word I_AM
- ec_word ELLIPSIS
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WERE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SURPRISE
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_WHO
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Kaden
@ 83
.4byte TRAINER_CLASS_SAILOR
.string "MAXWELL$", 8
@ pre-battle speech
- ec_word HEY_THERE
- ec_word WHO_IS
- ec_word YOUR
- ec_word RIVAL
- ec_word QUES
+ .2byte EC_WORD_HEY_THERE
+ .2byte EC_WORD_WHO_IS
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_RIVAL
+ .2byte EC_WORD_QUES
.2byte -1
@ win speech
- ec_word MY
- ec_word RIVAL
- ec_word IS
- ec_word MY
- ec_word GIRL
- ec_word FRIEND
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_RIVAL
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_FRIEND
@ loss speech
- ec_word I_AM
- ec_word MAKING
- ec_word YOU
- ec_word MY
- ec_word RIVAL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_RIVAL
.2byte -1
.4byte gBattleFrontierTrainerMons_Maxwell
@@ -2188,49 +2188,49 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_HIKER
.string "DARYL$", 8
@ pre-battle speech
- ec_word I
- ec_word ONLY
- ec_word KNOW
- ec_word HOW
- ec_word TO
- ec_move1 CHARGE
-@ win speech
- ec_word AM
- ec_word I
- ec_word OVERWHELMING
- ec_word OR
- ec_word WHAT
- ec_word QUES
-@ loss speech
- ec_word YOU_RE
- ec_word GOING
- ec_word TO
- ec_word A
- ec_word LEGEND
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(CHARGE)
+@ win speech
+ .2byte EC_WORD_AM
+ .2byte EC_WORD_I
+ .2byte EC_WORD_OVERWHELMING
+ .2byte EC_WORD_OR
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LEGEND
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Daryl
@ 85
.4byte TRAINER_CLASS_HIKER
.string "KENNETH$", 8
@ pre-battle speech
- ec_word YOU
- ec_word BETTER
- ec_word NOT
- ec_move2 SLACK_OFF
- ec_word WITH
- ec_word ME
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_BETTER
+ .2byte EC_WORD_NOT
+ .2byte EC_MOVE2(SLACK_OFF)
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_ME
@ win speech
- ec_word DID
- ec_word MY
- ec_move2 TAUNT
- ec_word INTIMIDATE
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(TAUNT)
+ .2byte EC_WORD_INTIMIDATE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word I_AM
- ec_word SORRY
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
@@ -2240,25 +2240,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_HIKER
.string "RICH$", 8
@ pre-battle speech
- ec_word YOUR
- ec_move1 FACADE
- ec_word DOESN_T
- ec_move2 TRICK
- ec_word ME
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE(FACADE)
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_MOVE2(TRICK)
+ .2byte EC_WORD_ME
.2byte -1
@ win speech
- ec_word SERIOUSLY
- ec_word ARE
- ec_word YOU
- ec_word REALLY
- ec_word OK_QUES
+ .2byte EC_WORD_SERIOUSLY
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_OK_QUES
.2byte -1
@ loss speech
- ec_word THAT_WAS
- ec_word REALLY
- ec_word TOUGH
- ec_word ON
- ec_word ME
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_ME
.2byte -1
.4byte gBattleFrontierTrainerMons_Rich
@@ -2266,181 +2266,181 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_KINDLER
.string "CADEN$", 8
@ pre-battle speech
- ec_word I
- ec_word CAN_T
- ec_word BE
- ec_word DEFEATED
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_DEFEATED
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word FIRE
- ec_word EXCL
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word FIRE
- ec_word EXCL_EXCL
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ loss speech
- ec_word I_AM
- ec_word TIRED
- ec_word ELLIPSIS
- ec_word IT_S
- ec_word SO
- ec_word HOT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TIRED
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_HOT
.4byte gBattleFrontierTrainerMons_Caden
@ 88
.4byte TRAINER_CLASS_KINDLER
.string "MARLON$", 8
@ pre-battle speech
- ec_word A
- ec_word POKEDEX
- ec_word IS
- ec_word A_LITTLE
- ec_word RADIO
- ec_word QUES
-@ win speech
- ec_word A_LITTLE
- ec_word RADIO
- ec_word HUH_QUES
- ec_word THAT_S
- ec_word TOTALLY
- ec_word COOL
-@ loss speech
- ec_word IT_S
- ec_word NOT
- ec_word QUES
- ec_word IS
- ec_word POKENAV
- ec_word QUES
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEDEX
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_RADIO
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_RADIO
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_COOL
+@ loss speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_POKENAV
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Marlon
@ 89
.4byte TRAINER_CLASS_KINDLER
.string "NASH$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word ON
- ec_word FIRE
- ec_word BABY
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_BABY
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word I
- ec_word LEFT
- ec_word YOU
- ec_word JUST
- ec_word AN
- ec_move2 EMBER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LEFT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE2(EMBER)
@ loss speech
- ec_word AIYEEH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_AIYEEH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word NO
- ec_word WATER
- ec_word PLEASE
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_WATER
+ .2byte EC_WORD_PLEASE
.4byte gBattleFrontierTrainerMons_Nash
@ 90
.4byte TRAINER_CLASS_TRIATHLETE_3
.string "ROBBY$", 8
@ pre-battle speech
- ec_word HAHAHA
- ec_word EXCL
- ec_word HAPPY
- ec_word TO
- ec_word MEET_YOU
- ec_word EXCL
-@ win speech
- ec_word I_AM
- ec_word THE
- ec_word LEADER
- ec_word WITH
- ec_word REFRESHING
- ec_word SERENE_GRACE
-@ loss speech
- ec_word I
- ec_word WILL
- ec_move1 THRASH
- ec_word MY
- ec_word TOYS
- ec_word EXCL
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_MEET_YOU
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_LEADER
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_REFRESHING
+ .2byte EC_WORD_SERENE_GRACE
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE(THRASH)
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Robby
@ 91
.4byte TRAINER_CLASS_TRIATHLETE_3
.string "REECE$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 QUICK_ATTACK
- ec_word CAN
- ec_word BEAT
- ec_word A
- ec_move2 TELEPORT
-@ win speech
- ec_word LIKE
- ec_word I
- ec_word SAID
- ec_word I_AM
- ec_word DARN
- ec_word FAST
-@ loss speech
- ec_word I_WAS
- ec_word KIDDING
- ec_word ABOUT
- ec_word THAT
- ec_move2 TELEPORT
- ec_word THING
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(QUICK_ATTACK)
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(TELEPORT)
+@ win speech
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SAID
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_DARN
+ .2byte EC_WORD_FAST
+@ loss speech
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_KIDDING
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_THAT
+ .2byte EC_MOVE2(TELEPORT)
+ .2byte EC_WORD_THING
.4byte gBattleFrontierTrainerMons_Reece
@ 92
.4byte TRAINER_CLASS_TRIATHLETE_4
.string "KATHRYN$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word TRAIN
- ec_word GOOD
- ec_word ENOUGH
- ec_word QUES
-@ win speech
- ec_word DON_T
- ec_move2 TAUNT
- ec_word ME
- ec_word LIKE
- ec_word THAT
- ec_word OK_QUES
-@ loss speech
- ec_word WHY
- ec_word COULDN_T
- ec_word I
- ec_word WIN
- ec_word THIS
- ec_word QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_TRAIN
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_MOVE2(TAUNT)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_OK_QUES
+@ loss speech
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_COULDN_T
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Kathryn
@ 93
.4byte TRAINER_CLASS_TRIATHLETE_4
.string "ELLEN$", 8
@ pre-battle speech
- ec_word CRUSH
- ec_word YOU
- ec_word LIKE
- ec_word AN
- ec_word EGG
- ec_word EXCL
-@ win speech
- ec_word THAT_WAS
- ec_word A
- ec_word TASTY
- ec_word VICTORY
- ec_word FOR
- ec_word ME
-@ loss speech
- ec_word TOO
- ec_word TOUGH
- ec_word TO
- ec_word CRUSH
- ec_word EXCL
+ .2byte EC_WORD_CRUSH
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EGG
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_CRUSH
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Ellen
@@ -2448,51 +2448,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_5
.string "RAMON$", 8
@ pre-battle speech
- ec_word OKAY
- ec_word EXCL
- .2byte -1
- ec_word THIS
- ec_word IS
- ec_word PERFECTION
-@ win speech
- ec_word I_AM
- ec_word HAPPY
- ec_word THAT
- ec_word I
- ec_word WON
- ec_word EXCL
-@ loss speech
- ec_word IT_S
- ec_word A
- ec_word SECRET
- ec_word WHY
- ec_word I_AM
- ec_word HAPPY
+ .2byte EC_WORD_OKAY
+ .2byte EC_WORD_EXCL
+ .2byte -1
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_PERFECTION
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
.4byte gBattleFrontierTrainerMons_Ramon
@ 95
.4byte TRAINER_CLASS_TRIATHLETE_5
.string "ARTHUR$", 8
@ pre-battle speech
- ec_word HERE_I_COME
- ec_word FEELING
- ec_word READY
- ec_word FOR
- ec_word IT
- ec_word ALL
+ .2byte EC_WORD_HERE_I_COME
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ALL
@ win speech
- ec_word THAT_S_IT_EXCL
+ .2byte EC_WORD_THAT_S_IT_EXCL
.2byte -1
.2byte -1
- ec_word THAT_WAS
- ec_word FABULOUS
- ec_word EXCL
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_FABULOUS
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word THAT_WAS
- ec_word NOT
- ec_word WHAT
- ec_word I
- ec_word NEED
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
.2byte -1
.4byte gBattleFrontierTrainerMons_Arthur
@@ -2500,51 +2500,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_6
.string "ALONDRA$", 8
@ pre-battle speech
- ec_word EVERY
- ec_word DAY
- ec_word IS
- ec_word A
- ec_word GREAT
- ec_word DAY
-@ win speech
- ec_word MY
- ec_move2 DIVE
- ec_word WILL
- ec_word BE
- ec_word A
- ec_word LEGEND
-@ loss speech
- ec_word MY
- ec_move2 DIVE
- ec_word LEFT
- ec_word ME
- ec_word COLD
- ec_word ELLIPSIS
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_DAY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GREAT
+ .2byte EC_WORD_DAY
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LEGEND
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_LEFT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_COLD
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Alondra
@ 97
.4byte TRAINER_CLASS_TRIATHLETE_6
.string "ADRIANA$", 8
@ pre-battle speech
- ec_word COME
- ec_word SEE
- ec_word AN
- ec_word INCREDIBLE
- ec_word SWIFT_SWIM
- ec_word EXCL
-@ win speech
- ec_word I
- ec_word MAKE
- ec_word IT
- ec_word LOOK
- ec_word SO
- ec_word EASY
-@ loss speech
- ec_word I_AM
- ec_word FEELING
- ec_move2 BEAT_UP
- ec_word AND
- ec_word TIRED
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_INCREDIBLE
+ .2byte EC_WORD_SWIFT_SWIM
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_EASY
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_TIRED
.2byte -1
.4byte gBattleFrontierTrainerMons_Adriana
@@ -2552,207 +2552,207 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_1
.string "MALIK$", 8
@ pre-battle speech
- ec_word OH
- ec_word NOT
- ec_word ANOTHER
- ec_word BATTLE
- ec_word PLEASE
- ec_word ELLIPSIS
-@ win speech
- ec_word I
- ec_word FINALLY
- ec_word WON
- ec_word ELLIPSIS
- ec_word I_AM
- ec_word TIRED
-@ loss speech
- ec_word I
- ec_word FINALLY
- ec_word LOST
- ec_word ELLIPSIS
- ec_word I_AM
- ec_word TIRED
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_FINALLY
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TIRED
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_FINALLY
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TIRED
.4byte gBattleFrontierTrainerMons_Malik
@ 99
.4byte TRAINER_CLASS_TRIATHLETE_2
.string "JILL$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word THE
- ec_move2 QUICK_ATTACK
- ec_word TRAINER
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(QUICK_ATTACK)
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word THE
- ec_move2 QUICK_ATTACK
- ec_word TRAINER
- ec_word WINS
- ec_word EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(QUICK_ATTACK)
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_WINS
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word THE
- ec_move2 QUICK_ATTACK
- ec_word TRAINER
- ec_word GIVES
- ec_word UP
- ec_word EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(QUICK_ATTACK)
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_GIVES
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Jill
@ 100
.4byte TRAINER_CLASS_TRIATHLETE_3
.string "ERIK$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word THE
- ec_word SPEED_BOOST
- ec_word HERO
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_SPEED_BOOST
+ .2byte EC_WORD_HERO
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word THANK_YOU
- ec_word FROM
- ec_word THE
- ec_word SPEED_BOOST
- ec_word HERO
- ec_word EXCL
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_SPEED_BOOST
+ .2byte EC_WORD_HERO
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word WAAAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_WAAAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word NO
- ec_word NO
- ec_word EXCL_EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL_EXCL
.4byte gBattleFrontierTrainerMons_Erik
@ 101
.4byte TRAINER_CLASS_TRIATHLETE_4
.string "YAZMIN$", 8
@ pre-battle speech
- ec_word I
- ec_word WOULD
- ec_word RATHER
- ec_word RUN
- ec_word THAN
- ec_word BIKE
-@ win speech
- ec_word YES
- ec_word I
- ec_word WOULD
- ec_word MUCH
- ec_word RATHER
- ec_word RUN
-@ loss speech
- ec_word BYE_BYE
- ec_word EXCL
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word RUN_AWAY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_RATHER
+ .2byte EC_WORD_RUN
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_BIKE
+@ win speech
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_RATHER
+ .2byte EC_WORD_RUN
+@ loss speech
+ .2byte EC_WORD_BYE_BYE
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_RUN_AWAY
.4byte gBattleFrontierTrainerMons_Yazmin
@ 102
.4byte TRAINER_CLASS_TRIATHLETE_5
.string "JAMAL$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word BE
- ec_word A
- ec_word FATHER
-@ win speech
- ec_word I
- ec_word CAN_T
- ec_word WAIT
- ec_word FOR
- ec_word MY
- ec_word BABY
-@ loss speech
- ec_word MY
- ec_word BABY
- ec_word WILL
- ec_word BE
- ec_word TOTALLY
- ec_word AWESOME
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_FATHER
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BABY
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BABY
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_AWESOME
.4byte gBattleFrontierTrainerMons_Jamal
@ 103
.4byte TRAINER_CLASS_TRIATHLETE_6
.string "LESLIE$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word BE
- ec_word A
- ec_word MOTHER
-@ win speech
- ec_word A
- ec_word BABY
- ec_word WILL
- ec_word BE
- ec_word A_LITTLE
- ec_word CHALLENGE
-@ loss speech
- ec_word I_AM
- ec_word TOO
- ec_word HAPPY
- ec_word TO
- ec_word BE
- ec_word ANGRY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MOTHER
+@ win speech
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BABY
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_CHALLENGE
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_ANGRY
.4byte gBattleFrontierTrainerMons_Leslie
@ 104
.4byte TRAINER_CLASS_TRIATHLETE_1
.string "DAVE$", 8
@ pre-battle speech
- ec_word WHAT
- ec_word SHOULD
- ec_word I
- ec_word DO
- ec_word TODAY
- ec_word QUES
-@ win speech
- ec_word I
- ec_word SHOULD
- ec_word ENJOY
- ec_word SOME
- ec_word SPORTS
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word WILL
- ec_word GO
- ec_word PLAY
- ec_word A
- ec_word GAME
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_TODAY
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_SPORTS
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GAME
.4byte gBattleFrontierTrainerMons_Dave
@ 105
.4byte TRAINER_CLASS_TRIATHLETE_1
.string "CARLO$", 8
@ pre-battle speech
- ec_word HAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_HAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word YEAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YEAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word I
- ec_word DO
- ec_word THINGS
- ec_word AT
- ec_move1 EXTREME_SPEED
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_THINGS
+ .2byte EC_WORD_AT
+ .2byte EC_MOVE(EXTREME_SPEED)
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word I
- ec_word LOST
- ec_word AT
- ec_move1 EXTREME_SPEED
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_AT
+ .2byte EC_MOVE(EXTREME_SPEED)
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Carlo
@@ -2760,103 +2760,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_2
.string "EMILIA$", 8
@ pre-battle speech
- ec_word ME
- ec_word WORRY
- ec_word QUES
- ec_word I
- ec_word HAVE
- ec_word NONE
-@ win speech
- ec_word AHAHA
- ec_word SEE
- ec_word QUES
- ec_word THAT_WAS
- ec_word FANTASTIC
- ec_word EXCL
-@ loss speech
- ec_word AHAHA
- ec_word SEE
- ec_word QUES
- ec_word THAT_WAS
- ec_word ENTERTAINING
- ec_word EXCL
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_WORRY
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_NONE
+@ win speech
+ .2byte EC_WORD_AHAHA
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_FANTASTIC
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_AHAHA
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_ENTERTAINING
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Emilia
@ 107
.4byte TRAINER_CLASS_TRIATHLETE_2
.string "DALIA$", 8
@ pre-battle speech
- ec_word MY
- ec_word BIKE
- ec_word IS
- ec_word VERY
- ec_word EXPENSIVE
- .2byte -1
-@ win speech
- ec_word DON_T
- ec_word COME
- ec_word NEAR
- ec_word MY
- ec_word BIKE
- ec_word EXCL
-@ loss speech
- ec_word MY
- ec_word BIKE
- ec_word IS
- ec_word MY
- ec_word BEST
- ec_word FRIEND
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BIKE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_EXPENSIVE
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_NEAR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BIKE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BIKE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_FRIEND
.4byte gBattleFrontierTrainerMons_Dalia
@ 108
.4byte TRAINER_CLASS_BLACK_BELT
.string "HITOMI$", 8
@ pre-battle speech
- ec_word YEAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YEAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word HAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_HAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word WHAT
- ec_word QUES_EXCL
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
- ec_word I
- ec_word WON
- ec_word QUES_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_QUES_EXCL
@ loss speech
- ec_word AIYEEH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_AIYEEH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word I_AM
- ec_word SORRY
- ec_word EXCL_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_EXCL_EXCL
.4byte gBattleFrontierTrainerMons_Hitomi
@ 109
.4byte TRAINER_CLASS_BLACK_BELT
.string "RICARDO$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word EXCL
- ec_word PLAY
- ec_word TIME
- ec_word IS
- ec_word OVER
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_OVER
@ win speech
- ec_word YOU_RE
- ec_word OUT
- ec_word OF
- ec_word HERE
- ec_word EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_HERE
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word PLEASE
- ec_word DON_T
- ec_word HIT
- ec_word ME
- ec_word EXCL
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_HIT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Ricardo
@@ -2864,178 +2864,178 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BLACK_BELT
.string "SHIZUKA$", 8
@ pre-battle speech
- ec_word SHOW
- ec_word ME
- ec_word THAT
- ec_word YOU_RE
- ec_word SERIOUS
- ec_word EXCL
-@ win speech
- ec_word I
- ec_word WON_T
- ec_word FORGET
- ec_word ABOUT
- ec_word YOU
- .2byte -1
-@ loss speech
- ec_word YOU_RE
- ec_word PERFECT
- ec_word IN
- ec_word EVERY
- ec_word WAY
- ec_word EXCL
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SERIOUS
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_FORGET
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_YOU
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_PERFECT
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Shizuka
@ 111
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "JOANA$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word GOING
- ec_word TO
- ec_word LOSE
- ec_word RIGHT
- ec_word AWAY
-@ win speech
- ec_word I_AM
- ec_word THE
- ec_word WINNER
- ec_word HEAR
- ec_word ME
- ec_move2 ROAR
-@ loss speech
- ec_word I
- ec_word REFUSE
- ec_word TO
- ec_word ACCEPT
- ec_word THAT
- ec_move1 OUTRAGE
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_AWAY
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WINNER
+ .2byte EC_WORD_HEAR
+ .2byte EC_WORD_ME
+ .2byte EC_MOVE2(ROAR)
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REFUSE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_WORD_THAT
+ .2byte EC_MOVE(OUTRAGE)
.4byte gBattleFrontierTrainerMons_Joana
@ 112
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "KELLY$", 8
@ pre-battle speech
- ec_word MY
- ec_word NIGHT
- ec_word SCHOOL
- ec_word IS
- ec_word REALLY
- ec_word SCARY
-@ win speech
- ec_word A
- ec_word LADY
- ec_word GHOST
- ec_word APPEARS
- ec_word THERE
- .2byte -1
-@ loss speech
- ec_word THE
- ec_word HOME
- ec_word WORK
- ec_word IS
- ec_word AWFULLY
- ec_word SCARY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NIGHT
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_SCARY
+@ win speech
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LADY
+ .2byte EC_WORD_GHOST
+ .2byte EC_WORD_APPEARS
+ .2byte EC_WORD_THERE
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_HOME
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_AWFULLY
+ .2byte EC_WORD_SCARY
.4byte gBattleFrontierTrainerMons_Kelly
@ 113
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "RAYNA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NO_1
- ec_word WHEN
- ec_word IT_S
- ec_word ABOUT
- ec_word POWER
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_WHEN
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_POWER
@ win speech
- ec_word UNDERSTAND
- ec_word MY
- ec_word POWER
- ec_word NOW
- ec_word QUES
+ .2byte EC_WORD_UNDERSTAND
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word TERRIBLE
- ec_word ELLIPSIS
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
- ec_word I_AM
- ec_word TERRIBLE
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Rayna
@ 114
.4byte TRAINER_CLASS_EXPERT_1
.string "EVAN$", 8
@ pre-battle speech
- ec_word EVERY
- ec_word BATTLE
- ec_word HAS
- ec_word A
- ec_word SMELL
- .2byte -1
-@ win speech
- ec_word OH
- ec_word EXCL
- ec_word THE
- ec_move1 SWEET_SCENT
- ec_word OF
- ec_word VICTORY
-@ loss speech
- ec_word THE
- ec_word AWFUL
- ec_word STENCH
- ec_word OF
- ec_word A
- ec_word LOSS
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SMELL
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE(SWEET_SCENT)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_VICTORY
+@ loss speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_STENCH
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LOSS
.4byte gBattleFrontierTrainerMons_Evan
@ 115
.4byte TRAINER_CLASS_EXPERT_1
.string "JORDAN$", 8
@ pre-battle speech
- ec_word GOOD
- ec_word EXCL
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word COME_ON
- ec_word EXCL_EXCL
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word YOU
- ec_word CAN_T
- ec_word BEAT
- ec_word ME
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word WHAT
- ec_word QUES_EXCL
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
- ec_word BUT
- ec_word HOW
- ec_word QUES
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Jordan
@ 116
.4byte TRAINER_CLASS_EXPERT_1
.string "JOEL$", 8
@ pre-battle speech
- ec_word FUFUFU
- ec_word ELLIPSIS
+ .2byte EC_WORD_FUFUFU
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
.2byte -1
@ win speech
- ec_word GIGGLE
- ec_word ELLIPSIS
+ .2byte EC_WORD_GIGGLE
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
.2byte -1
@ loss speech
- ec_word HAHAHA
- ec_word ELLIPSIS
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
@@ -3046,129 +3046,129 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_EXPERT_2
.string "KRISTEN$", 8
@ pre-battle speech
- ec_word HAHAHA
- ec_word ELLIPSIS
- .2byte -1
- ec_word A
- ec_word KID
- ec_word ELLIPSIS
-@ win speech
- ec_word JUST
- ec_word A_LITTLE
- ec_word KID
- ec_word AFTER
- ec_word ALL
- ec_word EXCL
-@ loss speech
- ec_word A
- ec_word TOUGH
- ec_word KID
- ec_word HUH_QUES
- ec_word HUMPH
- ec_word EXCL
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_ELLIPSIS
+ .2byte -1
+ .2byte EC_WORD_A
+ .2byte EC_WORD_KID
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_KID
+ .2byte EC_WORD_AFTER
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_KID
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_HUMPH
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Kristen
@ 118
.4byte TRAINER_CLASS_EXPERT_2
.string "SELPHY$", 8
@ pre-battle speech
- ec_word HUH_QUES
- ec_word WHAT
- ec_word IS_IT_QUES
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IS_IT_QUES
.2byte -1
.2byte -1
.2byte -1
@ win speech
- ec_word OH
- ec_word YES
- ec_word EXCL
- ec_word WHY
- ec_word NOT
- ec_word QUES
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word OH
- ec_word NO
- ec_word EXCL
- ec_word WHY
- ec_word NOT
- ec_word QUES
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Selphy
@ 119
.4byte TRAINER_CLASS_EXPERT_2
.string "CHLOE$", 8
@ pre-battle speech
- ec_word COME
- ec_word WE
- ec_word WILL
- ec_word DO
- ec_word BATTLE
- ec_word NOW
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_NOW
@ win speech
- ec_word MORE
- ec_word EXCL
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word ANOTHER
- ec_word BATTLE
- ec_word EXCL
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word OH
- ec_word EXCL
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word STRONG
- ec_word YOU
- ec_word ARE
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ARE
.4byte gBattleFrontierTrainerMons_Chloe
@ 120
.4byte TRAINER_CLASS_PSYCHIC_1
.string "NORTON$", 8
@ pre-battle speech
- ec_word I
- ec_word KNOW
- ec_word ONLY
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_YOU
.2byte -1
.2byte -1
@ win speech
- ec_word EXCUSE_ME
- ec_word BUT
- ec_word YOU_RE
- ec_word A
- ec_word PUSHOVER
- ec_word EXCL
+ .2byte EC_WORD_EXCUSE_ME
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_PUSHOVER
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word YOU_RE
- ec_word SOME
- ec_word KIND
- ec_word OF
- ec_word AWESOME
- ec_word EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Norton
@ 121
.4byte TRAINER_CLASS_PSYCHIC_1
.string "LUKAS$", 8
@ pre-battle speech
- ec_word MY
- ec_word JOKING
- ec_word IS
- ec_word PRETTY
- ec_word TERRIBLE
- ec_word ELLIPSIS
-@ win speech
- ec_word YOUR
- ec_word ROCK_HEAD
- ec_word EXISTS
- ec_word TO
- ec_word SHINE
- ec_word EXCL
-@ loss speech
- ec_word YOUR
- ec_word ROCK_HEAD
- ec_word COME
- ec_word TO
- ec_word SHINE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_JOKING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_ROCK_HEAD
+ .2byte EC_WORD_EXISTS
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SHINE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_ROCK_HEAD
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SHINE
.2byte -1
.4byte gBattleFrontierTrainerMons_Lukas
@@ -3176,77 +3176,77 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PSYCHIC_1
.string "ZACH$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word AN
- ec_word EXCELLENT
- ec_move2 MIMIC
- ec_word OF
- ec_word POKEMON
-@ win speech
- ec_word I_AM
- ec_word HAPPY
- ec_word LIKE
- ec_word A_LITTLE
- ec_pokemon2 TOGEPI
- ec_word EXCL
-@ loss speech
- ec_word I_AM
- ec_word ANGRY
- ec_word LIKE
- ec_word A
- ec_pokemon2 MANKEY
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EXCELLENT
+ .2byte EC_MOVE2(MIMIC)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_POKEMON2(TOGEPI)
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ANGRY
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON2(MANKEY)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Zach
@ 123
.4byte TRAINER_CLASS_PSYCHIC_2
.string "KAITLYN$", 8
@ pre-battle speech
- ec_word I
- ec_word CRUSH
- ec_word THINGS
- ec_word WITH
- ec_word PSYCHIC
- ec_word POWER
-@ win speech
- ec_word MY
- ec_word VICTORY
- ec_word WILL
- ec_word MAKE
- ec_word THE
- ec_word NEWS
-@ loss speech
- ec_word NO
- ec_word NO
- ec_word ELLIPSIS
- ec_word THIS
- ec_word WON_T
- ec_word DO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CRUSH
+ .2byte EC_WORD_THINGS
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_PSYCHIC
+ .2byte EC_WORD_POWER
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_NEWS
+@ loss speech
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_DO
.4byte gBattleFrontierTrainerMons_Kaitlyn
@ 124
.4byte TRAINER_CLASS_PSYCHIC_2
.string "BREANNA$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word WILL
- ec_word CRUSH
- ec_word YOU
- ec_word EXCL
-@ win speech
- ec_word HAVE
- ec_word SOME
- ec_word MORE
- ec_word OF
- ec_word THIS
- ec_word EXCL
-@ loss speech
- ec_word YOU
- ec_word HAVE
- ec_word GUTS
- ec_word AND
- ec_word SKILL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_CRUSH
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_GUTS
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_SKILL
.2byte -1
.4byte gBattleFrontierTrainerMons_Breanna
@@ -3254,25 +3254,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PSYCHIC_2
.string "KENDRA$", 8
@ pre-battle speech
- ec_word IF
- ec_word YOU_RE
- ec_word SMART
- ec_word STOP
- ec_word RIGHT
- ec_word NOW
-@ win speech
- ec_word I
- ec_word SAID
- ec_word THAT
- ec_word YOU
- ec_word SHOULD
- ec_word STOP
-@ loss speech
- ec_word WHY
- ec_word DIDN_T
- ec_word YOU
- ec_word STOP
- ec_word QUES
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SMART
+ .2byte EC_WORD_STOP
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_NOW
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SAID
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_STOP
+@ loss speech
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_STOP
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Kendra
@@ -3280,25 +3280,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_HEX_MANIAC
.string "MOLLY$", 8
@ pre-battle speech
- ec_word WILL
- ec_word MY
- ec_word CUTE_CHARM
- ec_move2 ATTRACT
- ec_word YOU
- ec_word QUES
-@ win speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word MY
- ec_word TOYS
- ec_word NOW
-@ loss speech
- ec_word OH
- ec_word HOW
- ec_word COULD
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CUTE_CHARM
+ .2byte EC_MOVE2(ATTRACT)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_NOW
+@ loss speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Molly
@@ -3306,205 +3306,205 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_HEX_MANIAC
.string "JAZMIN$", 8
@ pre-battle speech
- ec_word I
- ec_word FORECAST
- ec_word TERRIBLE
- ec_word THINGS
- ec_word FOR
- ec_word YOU
-@ win speech
- ec_word THERE
- ec_word WASN_T
- ec_word MY
- ec_word FORECAST
- ec_word RIGHT
- ec_word QUES
-@ loss speech
- ec_word MY
- ec_move2 FORESIGHT
- ec_word DIDN_T
- ec_word SHOW
- ec_word ME
- ec_word THIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_FORECAST
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_THINGS
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
+@ win speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_WASN_T
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FORECAST
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_THIS
.4byte gBattleFrontierTrainerMons_Jazmin
@ 128
.4byte TRAINER_CLASS_HEX_MANIAC
.string "KELSEY$", 8
@ pre-battle speech
- ec_word I
- ec_word HAVEN_T
- ec_word SLEPT
- ec_word IN
- ec_word DAYS
- ec_word ELLIPSIS
-@ win speech
- ec_word MY
- ec_word SLEEP
- ec_word WILL
- ec_word BE
- ec_word EXCELLENT
- ec_word NOW
-@ loss speech
- ec_word YOU
- ec_word HAVE
- ec_word DESTROYED
- ec_word MY
- ec_word SLEEP
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVEN_T
+ .2byte EC_WORD_SLEPT
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_DAYS
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SLEEP
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_EXCELLENT
+ .2byte EC_WORD_NOW
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SLEEP
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Kelsey
@ 129
.4byte TRAINER_CLASS_POKEMANIAC
.string "JALEN$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word ALLOW
- ec_word POKEMON
- ec_word TO
- ec_move1 THRASH
-@ win speech
- ec_word HAHAHA
- ec_word EXCL
- ec_word ARE
- ec_word YOU
- ec_word ANGRY
- ec_word QUES
-@ loss speech
- ec_word WHY
- ec_word IS
- ec_word THIS
- ec_word SO
- ec_word HARD
- ec_word QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_ALLOW
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(THRASH)
+@ win speech
+ .2byte EC_WORD_HAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ANGRY
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_HARD
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Jalen
@ 130
.4byte TRAINER_CLASS_POKEMANIAC
.string "GRIFFEN$", 8
@ pre-battle speech
- ec_word I
- ec_move2 SWALLOW
- ec_move2 SLUDGE
- ec_word TO
- ec_move2 TRANSFORM
- ec_word MYSELF
-@ win speech
- ec_word I
- ec_word HAVE
- ec_word A
- ec_move1 GROWTH
- ec_word OF
- ec_move2 ACID_ARMOR
-@ loss speech
- ec_word I
- ec_word HAVE
- ec_word A
- ec_move1 GROWTH
- ec_word OF
- ec_word SUCTION_CUPS
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(SWALLOW)
+ .2byte EC_MOVE2(SLUDGE)
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(TRANSFORM)
+ .2byte EC_WORD_MYSELF
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(GROWTH)
+ .2byte EC_WORD_OF
+ .2byte EC_MOVE2(ACID_ARMOR)
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(GROWTH)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_SUCTION_CUPS
.4byte gBattleFrontierTrainerMons_Griffen
@ 131
.4byte TRAINER_CLASS_POKEMANIAC
.string "XANDER$", 8
@ pre-battle speech
- ec_word I
- ec_word GOT
- ec_word MY
- ec_word POKEMON
- ec_word ON
- ec_word RENTAL
-@ win speech
- ec_word IT_S
- ec_word INCREDIBLE
- ec_word MY
- ec_word RENTAL
- ec_word POKEMON
- ec_word WON
-@ loss speech
- ec_word RENTAL
- ec_word POKEMON
- ec_word AREN_T
- ec_word UP
- ec_word TO
- ec_move2 SCRATCH
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_RENTAL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_INCREDIBLE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_RENTAL
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WON
+@ loss speech
+ .2byte EC_WORD_RENTAL
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(SCRATCH)
.4byte gBattleFrontierTrainerMons_Xander
@ 132
.4byte TRAINER_CLASS_GENTLEMAN
.string "MARVIN$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word UP
- ec_word TO
- ec_word THE
- ec_word CHALLENGE
- ec_word QUES
-@ win speech
- ec_word I
- ec_word DIDN_T
- ec_word THINK
- ec_word YOU_RE
- ec_word GOOD
- ec_word ENOUGH
-@ loss speech
- ec_word I_AM
- ec_word FEELING
- ec_word PERFECT
- ec_word THANK_YOU
- ec_word SO
- ec_word MUCH
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_CHALLENGE
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_ENOUGH
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_PERFECT
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MUCH
.4byte gBattleFrontierTrainerMons_Marvin
@ 133
.4byte TRAINER_CLASS_GENTLEMAN
.string "BRENNAN$", 8
@ pre-battle speech
- ec_word I
- ec_move2 WISH
- ec_word TO
- ec_word SEE
- ec_word THE
- ec_word NEWS
-@ win speech
- ec_word COMICS
- ec_word GET
- ec_word DAMP
- ec_word FROM
- ec_word DRIZZLE
- ec_word QUES
-@ loss speech
- ec_word THE
- ec_word TIGHT
- ec_word MONEY
- ec_word LIVING
- ec_word CHANNEL
- ec_word QUES_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(WISH)
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_NEWS
+@ win speech
+ .2byte EC_WORD_COMICS
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_DAMP
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_DRIZZLE
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_TIGHT
+ .2byte EC_WORD_MONEY
+ .2byte EC_WORD_LIVING
+ .2byte EC_WORD_CHANNEL
+ .2byte EC_WORD_QUES_EXCL
.4byte gBattleFrontierTrainerMons_Brennan
@ 134
.4byte TRAINER_CLASS_BUG_MANIAC
.string "BALEY$", 8
@ pre-battle speech
- ec_move1 SCREECH
- ec_word IS
- ec_word LIKE
- ec_word MUSIC
- ec_word TO_ME
- ec_word EXCL
+ .2byte EC_MOVE(SCREECH)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word MY
- ec_move1 SCREECH
- ec_word STRATEGY
- ec_word IS
- ec_word THE
- ec_word BEST
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(SCREECH)
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
@ loss speech
- ec_word YOU_RE
- ec_word SOUNDPROOF
- ec_word QUES
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SOUNDPROOF
+ .2byte EC_WORD_QUES
.2byte -1
.2byte -1
.2byte -1
@@ -3514,51 +3514,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "ZACKARY$", 8
@ pre-battle speech
- ec_word CAN
- ec_word YOU
- ec_move1 DIG
- ec_word IT
- ec_word YO
- ec_word QUES
-@ win speech
- ec_move2 TAKE_DOWN
- ec_word TAKE
- ec_word A
- ec_move2 DIVE
- ec_word YO
- ec_word YO
-@ loss speech
- ec_word BREAK
- ec_word DOWN
- ec_move2 DIVE
- ec_word TIME
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE(DIG)
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_YO
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_MOVE2(TAKE_DOWN)
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_YO
+ .2byte EC_WORD_YO
+@ loss speech
+ .2byte EC_WORD_BREAK
+ .2byte EC_WORD_DOWN
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.4byte gBattleFrontierTrainerMons_Zackary
@ 136
.4byte TRAINER_CLASS_COLLECTOR
.string "GABRIEL$", 8
@ pre-battle speech
- ec_move2 POUND
- ec_word THE
- ec_word THICK_FAT
- ec_word ON
- ec_word MY
- ec_move2 BELLY_DRUM
-@ win speech
- ec_move2 POUND
- ec_word MY
- ec_move2 BELLY_DRUM
- ec_move2 POUND
- ec_word MY
- ec_move2 BELLY_DRUM
-@ loss speech
- ec_word MY
- ec_move2 BELLY_DRUM
- ec_word WAS
- ec_word TOO_WEAK
- ec_word ELLIPSIS
+ .2byte EC_MOVE2(POUND)
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_THICK_FAT
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(BELLY_DRUM)
+@ win speech
+ .2byte EC_MOVE2(POUND)
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(BELLY_DRUM)
+ .2byte EC_MOVE2(POUND)
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(BELLY_DRUM)
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(BELLY_DRUM)
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Gabriel
@@ -3566,77 +3566,77 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PARASOL_LADY
.string "EMILY$", 8
@ pre-battle speech
- ec_word HOW
- ec_word ABOUT
- ec_word A_TINY_BIT
- ec_word OF
- ec_move1 HYPNOSIS
- ec_word QUES
-@ win speech
- ec_word MY
- ec_move1 HYPNOSIS
- ec_word STRATEGY
- ec_word WORKS
- ec_word TO
- ec_word PERFECTION
-@ loss speech
- ec_word MY
- ec_move1 HYPNOSIS
- ec_word STRATEGY
- ec_word WENT
- ec_word BADLY
- ec_word ELLIPSIS
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_A_TINY_BIT
+ .2byte EC_WORD_OF
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_WORKS
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PERFECTION
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_WENT
+ .2byte EC_WORD_BADLY
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Emily
@ 138
.4byte TRAINER_CLASS_BEAUTY
.string "JORDYN$", 8
@ pre-battle speech
- ec_word YOU
- ec_word DON_T
- ec_word KNOW
- ec_word MY
- ec_word SECRET
- ec_word ELLIPSIS
-@ win speech
- ec_word I_AM
- ec_word NOT
- ec_word AS
- ec_word I
- ec_word APPEAR
- ec_word ELLIPSIS
-@ loss speech
- ec_word BUT
- ec_word HOW
- ec_word DID
- ec_word YOU
- ec_word KNOW
- ec_word QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_AS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_APPEAR
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Jordyn
@ 139
.4byte TRAINER_CLASS_AROMA_LADY
.string "SOFIA$", 8
@ pre-battle speech
- ec_pokemon1 LOUDRED
- ec_word PROBABLY
- ec_word HAS
- ec_word A
- ec_move1 SWEET_SCENT
+ .2byte EC_POKEMON(LOUDRED)
+ .2byte EC_WORD_PROBABLY
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SWEET_SCENT)
.2byte -1
@ win speech
- ec_word THAT_S
- ec_word THE
- ec_word FEELING
- ec_word THAT
- ec_word I
- ec_word GET
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GET
@ loss speech
- ec_word I
- ec_word WORK
- ec_word AT
- ec_word THE
- ec_word DEPT_STORE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_DEPT_STORE
.2byte -1
.4byte gBattleFrontierTrainerMons_Sofia
@@ -3644,51 +3644,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "BRADEN$", 8
@ pre-battle speech
- ec_word I_CHOOSE_YOU
- ec_word EXCL
+ .2byte EC_WORD_I_CHOOSE_YOU
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word THIS_IS_IT_EXCL
+ .2byte EC_WORD_THIS_IS_IT_EXCL
.2byte -1
.2byte -1
@ win speech
- ec_word I_AM
- ec_word FEELING
- ec_word PRETTY
- ec_word AWESOME
- ec_word ABOUT
- ec_word MYSELF
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_MYSELF
@ loss speech
- ec_word ALL_RIGHT
- ec_word EXCL
+ .2byte EC_WORD_ALL_RIGHT
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word SURRENDER
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Braden
@ 141
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "KAYDEN$", 8
@ pre-battle speech
- ec_word THEY
- ec_word OVERDO
- ec_word THAT
- ec_word GOURMET
- ec_word THING
- ec_word ELLIPSIS
-@ win speech
- ec_word THAT
- ec_word GOURMET
- ec_word THING
- ec_word ISN_T
- ec_word FOR
- ec_word ME
-@ loss speech
- ec_word HEY
- ec_word THIS
- ec_word IS
- ec_word PRETTY
- ec_word TASTY
+ .2byte EC_WORD_THEY
+ .2byte EC_WORD_OVERDO
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_THING
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_THING
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_HEY
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_TASTY
.2byte -1
.4byte gBattleFrontierTrainerMons_Kayden
@@ -3696,259 +3696,259 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "COOPER$", 8
@ pre-battle speech
- ec_word THIS
- ec_word SHOULD
- ec_word ABSOLUTELY
- ec_word BE
- ec_word A
- ec_word PUSHOVER
-@ win speech
- ec_word THAT_WAS
- ec_word TOO
- ec_word EXCITING
- ec_word FOR
- ec_word ME
- ec_word ELLIPSIS
-@ loss speech
- ec_word PLEASE
- ec_word EXCL
- .2byte -1
- ec_word SORRY
- ec_word I_AM
- ec_word SORRY
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_ABSOLUTELY
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_PUSHOVER
+@ win speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_EXCL
+ .2byte -1
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
.4byte gBattleFrontierTrainerMons_Cooper
@ 143
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "JULIA$", 8
@ pre-battle speech
- ec_word SPIRIT
- ec_word ALONE
- ec_word WON_T
- ec_word MAKE
- ec_word YOU
- ec_word WIN
-@ win speech
- ec_word YOU
- ec_word SHOULD
- ec_word ACCEPT
- ec_word THIS
- ec_word WITH
- ec_word SERENE_GRACE
-@ loss speech
- ec_word FOR_NOW
- ec_word GOOD_BYE
- ec_word BUT
- ec_word IT_S
- ec_word NOT
- ec_word OVER
+ .2byte EC_WORD_SPIRIT
+ .2byte EC_WORD_ALONE
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WIN
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_SERENE_GRACE
+@ loss speech
+ .2byte EC_WORD_FOR_NOW
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_OVER
.4byte gBattleFrontierTrainerMons_Julia
@ 144
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "AMARA$", 8
@ pre-battle speech
- ec_word WROOOAAR_EXCL
- ec_word EXCL_EXCL
- ec_word I_AM
- ec_word SO
- ec_word READY
- ec_word EXCL_EXCL
-@ win speech
- ec_word I
- ec_word LOSE
- ec_word MYSELF
- ec_word IF
- ec_word IT_S
- ec_word EXCITING
-@ loss speech
- ec_word THAT_S
- ec_word TOO
- ec_word MUCH
- ec_word TO
- ec_move2 TACKLE
- ec_word EXCL
+ .2byte EC_WORD_WROOOAAR_EXCL
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_READY
+ .2byte EC_WORD_EXCL_EXCL
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_MYSELF
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_EXCITING
+@ loss speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(TACKLE)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Amara
@ 145
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "LYNN$", 8
@ pre-battle speech
- ec_word YOUR
- ec_word SECRET
- ec_word CAN_T
- ec_word BE
- ec_word HIDDEN
- ec_word FOREVER
-@ win speech
- ec_word I
- ec_word KNOW
- ec_word YOUR
- ec_word SECRET
- ec_word NOW
- ec_word EXCL
-@ loss speech
- ec_word YOU
- ec_word CAN_T
- ec_move1 SAFEGUARD
- ec_word YOUR
- ec_word OWN
- ec_word SECRET
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HIDDEN
+ .2byte EC_WORD_FOREVER
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_MOVE(SAFEGUARD)
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_OWN
+ .2byte EC_WORD_SECRET
.4byte gBattleFrontierTrainerMons_Lynn
@ 146
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "JOVAN$", 8
@ pre-battle speech
- ec_word YOUR
- ec_word BATTLE
- ec_word SENSE
- ec_word IS
- ec_word SADLY
- ec_word LACKING
-@ win speech
- ec_word MY
- ec_word BATTLE
- ec_word SENSE
- ec_word IS
- ec_word COOL
- ec_word ISN_T_IT_QUES
-@ loss speech
- ec_word I_WAS
- ec_word MINUS
- ec_word MY
- ec_word NORMAL
- ec_word POWER
- ec_word TODAY
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_SADLY
+ .2byte EC_WORD_LACKING
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_ISN_T_IT_QUES
+@ loss speech
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_MINUS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NORMAL
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_TODAY
.4byte gBattleFrontierTrainerMons_Jovan
@ 147
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "DOMINIC$", 8
@ pre-battle speech
- ec_word I
- ec_word HAVE
- ec_word THIS
- ec_word EXCELLENT
- ec_word CAMERA
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_EXCELLENT
+ .2byte EC_WORD_CAMERA
.2byte -1
@ win speech
- ec_word MY
- ec_word CAMERA
- ec_word WAS
- ec_word AWFULLY
- ec_word EXPENSIVE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CAMERA
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_AWFULLY
+ .2byte EC_WORD_EXPENSIVE
.2byte -1
@ loss speech
- ec_word MY
- ec_word CAMERA
- ec_word DOESN_T
- ec_word MISS
- ec_word A
- ec_word THING
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CAMERA
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_MISS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_THING
.4byte gBattleFrontierTrainerMons_Dominic
@ 148
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "NIKOLAS$", 8
@ pre-battle speech
- ec_word I
- ec_move2 MIMIC
- ec_word POKEMON
- ec_word AFTER
- ec_word EVERY
- ec_word BATTLE
-@ win speech
- ec_word IF_I_WIN
- ec_word I
- ec_word PRETEND
- ec_word I_AM
- ec_word A
- ec_pokemon2 TAUROS
-@ loss speech
- ec_word IF_I_LOSE
- ec_word I
- ec_word PRETEND
- ec_word I_AM
- ec_word A
- ec_pokemon2 MILTANK
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(MIMIC)
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_AFTER
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_IF_I_WIN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PRETEND
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON2(TAUROS)
+@ loss speech
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PRETEND
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON2(MILTANK)
.4byte gBattleFrontierTrainerMons_Nikolas
@ 149
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "VALERIA$", 8
@ pre-battle speech
- ec_word I
- ec_move2 WISH
- ec_word YOU
- ec_word WOULD
- ec_word NOT
- ec_move2 GLARE
-@ win speech
- ec_word YOU_RE
- ec_word MEAN
- ec_word EXCL
- ec_word I
- ec_word MEAN
- ec_word REALLY
-@ loss speech
- ec_word YOU
- ec_word HAVE
- ec_word A
- ec_word REALLY
- ec_move1 SCARY_FACE
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(WISH)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_MOVE2(GLARE)
+@ win speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_REALLY
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_REALLY
+ .2byte EC_MOVE(SCARY_FACE)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Valeria
@ 150
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "DELANEY$", 8
@ pre-battle speech
- ec_word SCHOOL
- ec_word IS
- ec_word OVER
- ec_word TIME
- ec_word TO
- ec_word PLAY
-@ win speech
- ec_word MY
- ec_word BOY
- ec_word FRIEND
- ec_word IS
- ec_word FROM
- ec_word SCHOOL
-@ loss speech
- ec_word I
- ec_word HAVE
- ec_word TO
- ec_word WORK
- ec_word NEXT
- ec_word WEEK
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PLAY
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BOY
+ .2byte EC_WORD_FRIEND
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_SCHOOL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_NEXT
+ .2byte EC_WORD_WEEK
.4byte gBattleFrontierTrainerMons_Delaney
@ 151
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "MEGHAN$", 8
@ pre-battle speech
- ec_word SCHOOL
- ec_word IS
- ec_word OUT
- ec_word TIME
- ec_word TO
- ec_word PLAY
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PLAY
@ win speech
- ec_word MY
- ec_word BOY
- ec_word FRIEND
- ec_word LIKES
- ec_word COMICS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BOY
+ .2byte EC_WORD_FRIEND
+ .2byte EC_WORD_LIKES
+ .2byte EC_WORD_COMICS
.2byte -1
@ loss speech
- ec_word IT_S
- ec_word BACK
- ec_word TO
- ec_word SCHOOL
- ec_word SOON
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_SOON
.2byte -1
.4byte gBattleFrontierTrainerMons_Meghan
@@ -3956,25 +3956,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "ROBERTO$", 8
@ pre-battle speech
- ec_word DRAGON
- ec_word POKEMON
- ec_word ARE
- ec_word INVINCIBLE
- ec_word EXCL
+ .2byte EC_WORD_DRAGON
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word YOU
- ec_word WEREN_T
- ec_word BAD
- ec_word I_WAS
- ec_word JUST
- ec_word BETTER
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WEREN_T
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_BETTER
@ loss speech
- ec_word AREN_T
- ec_word YOU
- ec_word SATISFIED
- ec_word YET
- ec_word QUES
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SATISFIED
+ .2byte EC_WORD_YET
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Roberto
@@ -3982,25 +3982,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "DAMIAN$", 8
@ pre-battle speech
- ec_word MY
- ec_word PURE_POWER
- ec_word IS
- ec_word MACHINE
- ec_word LIKE
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PURE_POWER
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MACHINE
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word MY
- ec_move2 MACH_PUNCH
- ec_word WILL
- ec_word MAKE
- ec_word A
- ec_move1 BRICK_BREAK
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(MACH_PUNCH)
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(BRICK_BREAK)
@ loss speech
- ec_word ARRGH
- ec_word EXCL
+ .2byte EC_WORD_ARRGH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word NO
- ec_word EXCL_EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Damian
@@ -4008,103 +4008,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "BRODY$", 8
@ pre-battle speech
- ec_word MY
- ec_word FASHION
- ec_word SENSE
- ec_word SEEMS
- ec_pokemon1 ODDISH
- ec_word QUES
-@ win speech
- ec_word IT_S
- ec_word MY
- ec_word FAMILY
- ec_word STAY_AT_HOME
- ec_word LOOK
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word QUESTION
- ec_word YOUR
- ec_word FASHION
- ec_word SENSE
- ec_word SERIOUSLY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_SEEMS
+ .2byte EC_POKEMON(ODDISH)
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FAMILY
+ .2byte EC_WORD_STAY_AT_HOME
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_QUESTION
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_SERIOUSLY
.4byte gBattleFrontierTrainerMons_Brody
@ 155
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "GRAHAM$", 8
@ pre-battle speech
- ec_word YEAH
- ec_word EXCL
+ .2byte EC_WORD_YEAH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word YEAH_YEAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YEAH_YEAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word WAHAHAHA
- ec_word WAHAHAHA
- ec_word EXCL
- ec_word WAHAHAHA
- ec_word WAHAHAHA
- ec_word EXCL_EXCL
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL_EXCL
@ loss speech
- ec_word I_AM
- ec_word SORRY
- ec_word ELLIPSIS
- ec_word IT_S
- ec_word MY
- ec_word BAD
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BAD
.4byte gBattleFrontierTrainerMons_Graham
@ 156
.4byte TRAINER_CLASS_POKEFAN_1
.string "TYLOR$", 8
@ pre-battle speech
- ec_word ARE
- ec_word YOU
- ec_word FEELING
- ec_word MY
- ec_move2 HEAT_WAVE
- ec_word QUES
-@ win speech
- ec_word YES
- ec_word I_AM
- ec_word ON
- ec_word FIRE
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word BUT
- ec_word I_WAS
- ec_word ON
- ec_word FIRE
- ec_word FOR
- ec_word YOU
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(HEAT_WAVE)
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Tylor
@ 157
.4byte TRAINER_CLASS_POKEFAN_2
.string "JAREN$", 8
@ pre-battle speech
- ec_word FIGHTING
- ec_word SPIRIT
- ec_word QUES
- ec_word ME
- ec_word QUES
+ .2byte EC_WORD_FIGHTING
+ .2byte EC_WORD_SPIRIT
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_QUES
.2byte -1
@ win speech
- ec_word I
- ec_word WANT
- ec_word MORE
- ec_word CUTE
- ec_word POKEMON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_POKEMON
.2byte -1
@ loss speech
- ec_word YOUR
- ec_word POKEMON
- ec_word LOOK
- ec_word QUITE
- ec_word CUTE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_QUITE
+ .2byte EC_WORD_CUTE
.2byte -1
.4byte gBattleFrontierTrainerMons_Jaren
@@ -4112,389 +4112,389 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "CORDELL$", 8
@ pre-battle speech
- ec_word A
- ec_word BATTLE
- ec_word IS
- ec_word DECIDED
- ec_word ON
- ec_word SPIRIT
-@ win speech
- ec_word CAN_T
- ec_word YOU
- ec_word ACCEPT
- ec_word THAT
- ec_word QUES
- .2byte -1
-@ loss speech
- ec_word I
- ec_word WILL
- ec_word BE
- ec_word ON
- ec_word MY
- ec_word WAY
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_DECIDED
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_SPIRIT
+@ win speech
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_WAY
.4byte gBattleFrontierTrainerMons_Cordell
@ 159
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "JAZLYN$", 8
@ pre-battle speech
- ec_word IS
- ec_word YOUR
- ec_word POKEDEX
- ec_word REALLY
- ec_word AWESOME
- ec_word QUES
-@ win speech
- ec_word OH_YEAH
- ec_word WOW
- ec_word YOUR
- ec_word POKEDEX
- ec_word IS
- ec_word SUPER
-@ loss speech
- ec_word AN
- ec_word AVANT_GARDE
- ec_word POKEDEX
- ec_word WOULD
- ec_word BE
- ec_word AWESOME
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEDEX
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_OH_YEAH
+ .2byte EC_WORD_WOW
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEDEX
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_SUPER
+@ loss speech
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_AVANT_GARDE
+ .2byte EC_WORD_POKEDEX
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_AWESOME
.4byte gBattleFrontierTrainerMons_Jazlyn
@ 160
.4byte TRAINER_CLASS_YOUNGSTER
.string "ZACHERY$", 8
@ pre-battle speech
- ec_word I
- ec_word HAVE
- ec_word MY
- ec_word OWN
- ec_word PLACE
- ec_word YEEHAW_EXCL
-@ win speech
- ec_word IT_S
- ec_word AN
- ec_word EXCITING
- ec_word TIME
- ec_word FOR
- ec_word ME
-@ loss speech
- ec_word YOU
- ec_word CAN_T
- ec_word FLATTEN
- ec_word MY
- ec_word HAPPINESS
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_OWN
+ .2byte EC_WORD_PLACE
+ .2byte EC_WORD_YEEHAW_EXCL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_FLATTEN
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HAPPINESS
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Zachery
@ 161
.4byte TRAINER_CLASS_YOUNGSTER
.string "JOHAN$", 8
@ pre-battle speech
- ec_word WINTER
- ec_word WILL
- ec_word SOON
- ec_word BE
- ec_word HERE
- .2byte -1
-@ win speech
- ec_word MY
- ec_word ALLOWANCE
- ec_word COULD
- ec_word USE
- ec_word A
- ec_move2 HELPING_HAND
-@ loss speech
- ec_word I
- ec_word ALWAYS
- ec_word USE
- ec_word MY
- ec_word ALLOWANCE
- ec_word UP
+ .2byte EC_WORD_WINTER
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HERE
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_ALLOWANCE
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_USE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(HELPING_HAND)
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_USE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_ALLOWANCE
+ .2byte EC_WORD_UP
.4byte gBattleFrontierTrainerMons_Johan
@ 162
.4byte TRAINER_CLASS_LASS
.string "SHEA$", 8
@ pre-battle speech
- ec_word DO
- ec_word YOU
- ec_word BATTLE
- ec_word WITH
- ec_word BEAUTY
- ec_word QUES
-@ win speech
- ec_word YOU
- ec_word BATTLE
- ec_word IN
- ec_word AN
- ec_word UGLY
- ec_word WAY
-@ loss speech
- ec_word WHAT
- ec_word IS
- ec_word BEAUTY
- ec_word TO
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_BEAUTY
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_UGLY
+ .2byte EC_WORD_WAY
+@ loss speech
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_BEAUTY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Shea
@ 163
.4byte TRAINER_CLASS_LASS
.string "KAILA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word FEELING
- ec_word THIRSTY
- ec_word RIGHT
- ec_word NOW
- ec_word ELLIPSIS
-@ win speech
- ec_word I
- ec_word COULD
- ec_word USE
- ec_word A
- ec_word COLD
- ec_word DRINK
-@ loss speech
- ec_word THAT
- ec_word LOSS
- ec_word IS
- ec_word HARD
- ec_word TO
- ec_move2 SWALLOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_THIRSTY
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_USE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_COLD
+ .2byte EC_WORD_DRINK
+@ loss speech
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_HARD
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(SWALLOW)
.4byte gBattleFrontierTrainerMons_Kaila
@ 164
.4byte TRAINER_CLASS_SCHOOL_KID_1
.string "ISIAH$", 8
@ pre-battle speech
- ec_word I
- ec_word PRETEND
- ec_word TO
- ec_word STUDY
- ec_word A_LOT
- .2byte -1
-@ win speech
- ec_word I
- ec_move2 TRICK
- ec_word MOTHER
- ec_word FOR
- ec_word MY
- ec_word ALLOWANCE
-@ loss speech
- ec_word I
- ec_word DON_T
- ec_word WANT
- ec_word TO
- ec_word STUDY
- ec_word MORE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PRETEND
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_A_LOT
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(TRICK)
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_ALLOWANCE
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_MORE
.4byte gBattleFrontierTrainerMons_Isiah
@ 165
.4byte TRAINER_CLASS_SCHOOL_KID_1
.string "GARRETT$", 8
@ pre-battle speech
- ec_word I
- ec_word ENJOY
- ec_word COMICS
- ec_word AND
- ec_word THIS
- ec_word GAME
-@ win speech
- ec_word I
- ec_word LIKE
- ec_word THIS
- ec_word MUSIC
- ec_word IDOL
- ec_word TOO
-@ loss speech
- ec_word BUT
- ec_word I
- ec_word HAVE
- ec_word TO
- ec_word STUDY
- ec_word MORE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_COMICS
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_GAME
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_IDOL
+ .2byte EC_WORD_TOO
+@ loss speech
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_MORE
.4byte gBattleFrontierTrainerMons_Garrett
@ 166
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "HAYLIE$", 8
@ pre-battle speech
- ec_word I
- ec_word WORRY
- ec_word TOO
- ec_word MUCH
- ec_word TO
- ec_word SLEEP
-@ win speech
- ec_word A
- ec_word WIN
- ec_word GIVES
- ec_word ME
- ec_word A
- ec_move2 CALM_MIND
-@ loss speech
- ec_word MY
- ec_word INSOMNIA
- ec_word WILL
- ec_word GET
- ec_word BAD
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WORRY
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SLEEP
+@ win speech
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_GIVES
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(CALM_MIND)
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_INSOMNIA
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Haylie
@ 167
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "MEGAN$", 8
@ pre-battle speech
- ec_word I
- ec_word BELIEVE
- ec_word IN
- ec_word AN
- ec_move1 AROMATHERAPY
- ec_word BATH
-@ win speech
- ec_word I
- ec_word WANT
- ec_word A
- ec_word HEALTHY
- ec_word CLEAR_BODY
- .2byte -1
-@ loss speech
- ec_word IF
- ec_word ONLY
- ec_move1 AROMATHERAPY
- ec_word WERE
- ec_word LESS
- ec_word EXPENSIVE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(AROMATHERAPY)
+ .2byte EC_WORD_BATH
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HEALTHY
+ .2byte EC_WORD_CLEAR_BODY
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_ONLY
+ .2byte EC_MOVE(AROMATHERAPY)
+ .2byte EC_WORD_WERE
+ .2byte EC_WORD_LESS
+ .2byte EC_WORD_EXPENSIVE
.4byte gBattleFrontierTrainerMons_Megan
@ 168
.4byte TRAINER_CLASS_RICH_BOY
.string "ISSAC$", 8
@ pre-battle speech
- ec_word MY
- ec_word HOBBY
- ec_word QUES
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HOBBY
+ .2byte EC_WORD_QUES
.2byte -1
.2byte -1
.2byte -1
@ win speech
- ec_word I
- ec_word LIKE
- ec_word ANY
- ec_word KIND
- ec_word OF
- ec_move2 WATER_SPORT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_OF
+ .2byte EC_MOVE2(WATER_SPORT)
@ loss speech
- ec_word I
- ec_word DISLIKE
- ec_word ANY
- ec_word KIND
- ec_word OF
- ec_move2 MUD_SPORT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_OF
+ .2byte EC_MOVE2(MUD_SPORT)
.4byte gBattleFrontierTrainerMons_Issac
@ 169
.4byte TRAINER_CLASS_RICH_BOY
.string "QUINTON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word SAD
- ec_word CAUSE
- ec_word I_AM
- ec_word TOO_WEAK
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_CAUSE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOO_WEAK
.2byte -1
@ win speech
- ec_word YOU
- ec_word AREN_T
- ec_word TOO_STRONG
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_TOO_STRONG
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.2byte -1
@ loss speech
- ec_word HEY
- ec_word WHAT
- ec_word DID
- ec_word I
- ec_word DO
- ec_word QUES
+ .2byte EC_WORD_HEY
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Quinton
@ 170
.4byte TRAINER_CLASS_LADY
.string "SALMA$", 8
@ pre-battle speech
- ec_word YOU_VE
- ec_word GOT
- ec_word YOUR
- ec_word HUSTLE
- ec_word ON
- ec_word EXCL
-@ win speech
- ec_word I
- ec_word WIN
- ec_word YOU
- ec_word HUSTLE
- ec_word ON
- ec_word OUT
-@ loss speech
- ec_word I
- ec_word DON_T
- ec_word GET
- ec_word HOW
- ec_word I
- ec_word LOST
+ .2byte EC_WORD_YOU_VE
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_HUSTLE
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HUSTLE
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_OUT
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
.4byte gBattleFrontierTrainerMons_Salma
@ 171
.4byte TRAINER_CLASS_LADY
.string "ANSLEY$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word BORED
- ec_word ELLIPSIS
- ec_word DANCE
- ec_word FOR
- ec_word ME
-@ win speech
- ec_word YOU_VE
- ec_word BORED
- ec_word ME
- ec_word SOME
- ec_word MORE
- .2byte -1
-@ loss speech
- ec_word TAKE
- ec_word YOUR
- ec_move2 FRUSTRATION
- ec_word SOME
- ec_word OTHER
- ec_word PLACE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_BORED
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ win speech
+ .2byte EC_WORD_YOU_VE
+ .2byte EC_WORD_BORED
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_MORE
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(FRUSTRATION)
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_OTHER
+ .2byte EC_WORD_PLACE
.4byte gBattleFrontierTrainerMons_Ansley
@ 172
.4byte TRAINER_CLASS_BUG_CATCHER
.string "HOLDEN$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word COMMEMORATE
- ec_word MY
- ec_word COOLNESS
- ec_word IN
- ec_word BATTLE
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_COMMEMORATE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_COOLNESS
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_BATTLE
@ win speech
- ec_word YOU_RE
- ec_word TOO_WEAK
- ec_word FOR
- ec_word ANY
- ec_word PRAISE
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_PRAISE
.2byte -1
@ loss speech
- ec_word YOUR
- ec_word BATTLE
- ec_word SENSE
- ec_word IS
- ec_word AMUSING
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_AMUSING
.2byte -1
.4byte gBattleFrontierTrainerMons_Holden
@@ -4502,103 +4502,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BUG_CATCHER
.string "LUCA$", 8
@ pre-battle speech
- ec_word WE
- ec_word WILL
- ec_word HAVE
- ec_word A
- ec_word COOL
- ec_word BATTLE
-@ win speech
- ec_word I
- ec_word WON
- ec_word IN
- ec_word A
- ec_word COOL
- ec_word WAY
-@ loss speech
- ec_word HELLO
- ec_word QUES
- ec_word I_AM
- ec_word JUST
- ec_word A
- ec_word KID
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_A
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_WAY
+@ loss speech
+ .2byte EC_WORD_HELLO
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_A
+ .2byte EC_WORD_KID
.4byte gBattleFrontierTrainerMons_Luca
@ 174
.4byte TRAINER_CLASS_NINJA_BOY
.string "JAMISON$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 SECRET_POWER
- ec_word IS
- ec_word OVERWHELMING
- ec_word TO
- ec_word POKEMON
-@ win speech
- ec_word DID
- ec_word YOU
- ec_word SEE
- ec_word THAT
- ec_word QUES
- .2byte -1
-@ loss speech
- ec_word I
- ec_word WILL
- ec_word USE
- ec_move1 SMOKESCREEN
- ec_word TO
- ec_word ESCAPE
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(SECRET_POWER)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_OVERWHELMING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_USE
+ .2byte EC_MOVE(SMOKESCREEN)
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ESCAPE
.4byte gBattleFrontierTrainerMons_Jamison
@ 175
.4byte TRAINER_CLASS_NINJA_BOY
.string "GUNNAR$", 8
@ pre-battle speech
- ec_word I
- ec_move1 CUT
- ec_word DOWN
- ec_word EVERY
- ec_word OPPONENT
- .2byte -1
-@ win speech
- ec_word DON_T
- ec_move1 GRUDGE
- ec_word ME
- ec_word FOR
- ec_word YOUR
- ec_word LOSS
-@ loss speech
- ec_word PLEASE
- ec_word LOSE
- ec_word THAT
- ec_move1 SCARY_FACE
- ec_word OF
- ec_word YOURS
+ .2byte EC_WORD_I
+ .2byte EC_MOVE(CUT)
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_OPPONENT
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_MOVE(GRUDGE)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_LOSS
+@ loss speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_THAT
+ .2byte EC_MOVE(SCARY_FACE)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_YOURS
.4byte gBattleFrontierTrainerMons_Gunnar
@ 176
.4byte TRAINER_CLASS_TUBER_2
.string "CRAIG$", 8
@ pre-battle speech
- ec_word I
- ec_word CAN_T
- ec_word WAIT
- ec_word FOR
- ec_word MY
- ec_word TRAIN
-@ win speech
- ec_word MY
- ec_word TRAIN
- ec_word ISN_T
- ec_word HERE
- ec_word YET
- ec_word ELLIPSIS
-@ loss speech
- ec_word HERE_IT_IS
- ec_word MY
- ec_word TRAIN
- ec_word SEE_YA
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TRAIN
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TRAIN
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_HERE
+ .2byte EC_WORD_YET
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_HERE_IT_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TRAIN
+ .2byte EC_WORD_SEE_YA
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Craig
@@ -4606,25 +4606,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TUBER_2
.string "PIERCE$", 8
@ pre-battle speech
- ec_word THERE
- ec_word WAS
- ec_word A
- ec_move2 HEAT_WAVE
- ec_word LAST
- ec_word WEEK
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(HEAT_WAVE)
+ .2byte EC_WORD_LAST
+ .2byte EC_WORD_WEEK
@ win speech
- ec_word I
- ec_word CAN_T
- ec_word TAKE
- ec_word A
- ec_move2 HEAT_WAVE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(HEAT_WAVE)
.2byte -1
@ loss speech
- ec_word DIDN_T
- ec_word IT
- ec_move1 HAIL
- ec_word TOO
- ec_word QUES
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_IT
+ .2byte EC_MOVE(HAIL)
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Pierce
@@ -4632,155 +4632,155 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TUBER_1
.string "REGINA$", 8
@ pre-battle speech
- ec_word I
- ec_word LIKE
- ec_word TO
- ec_word PLAY
- ec_word IN
- ec_word WATER
-@ win speech
- ec_word I
- ec_word REFUSE
- ec_word TO
- ec_word COME
- ec_word OUT
- .2byte -1
-@ loss speech
- ec_word YOU_RE
- ec_word NOT
- ec_word MUCH
- ec_word GOOD
- ec_word IN
- ec_word WATER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_WATER
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REFUSE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_OUT
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_WATER
.4byte gBattleFrontierTrainerMons_Regina
@ 179
.4byte TRAINER_CLASS_TUBER_1
.string "ALISON$", 8
@ pre-battle speech
- ec_word THIS
- ec_word KINDERGARTEN
- ec_word MAGAZINE
- ec_word IS
- ec_word TOO
- ec_word MUCH
-@ win speech
- ec_word HOW
- ec_word TO
- ec_word BUG
- ec_word YOUR
- ec_word TEACHER
- ec_word QUES
-@ loss speech
- ec_word ENJOY
- ec_word A
- ec_word TASTY
- ec_word SCHOOL
- ec_word DIET
- ec_word QUES
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_KINDERGARTEN
+ .2byte EC_WORD_MAGAZINE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+@ win speech
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_TEACHER
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_DIET
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Alison
@ 180
.4byte TRAINER_CLASS_BUG_MANIAC
.string "HANK$", 8
@ pre-battle speech
- ec_word THERE
- ec_word IS
- ec_word A
- ec_word BUG
- ec_word EVENT
- ec_word SOON
-@ win speech
- ec_word IT_S
- ec_word A
- ec_word BUG
- ec_word FASHION
- ec_word SHOW
- ec_word EXCL
-@ loss speech
- ec_word DON_T
- ec_word YOU
- ec_word LIKE
- ec_word BUG
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_EVENT
+ .2byte EC_WORD_SOON
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Hank
@ 181
.4byte TRAINER_CLASS_BUG_MANIAC
.string "EARL$", 8
@ pre-battle speech
- ec_word THE
- ec_word INVINCIBLE
- ec_word BUG
- ec_word TRAINER
- ec_word IS
- ec_word HERE
-@ win speech
- ec_word THE
- ec_word INVINCIBLE
- ec_word BUG
- ec_word TRAINER
- ec_word AM
- ec_word I
-@ loss speech
- ec_word SEE
- ec_word HOW
- ec_word FAST
- ec_word I
- ec_word RUN_AWAY
- ec_word EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_HERE
+@ win speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_AM
+ .2byte EC_WORD_I
+@ loss speech
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_FAST
+ .2byte EC_WORD_I
+ .2byte EC_WORD_RUN_AWAY
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Earl
@ 182
.4byte TRAINER_CLASS_FISHERMAN
.string "RAMIRO$", 8
@ pre-battle speech
- ec_word I
- ec_word WENT
- ec_word TO
- ec_word A
- ec_word FISHING
- ec_word SCHOOL
-@ win speech
- ec_word SERIOUSLY
- ec_word I_AM
- ec_word IN
- ec_word THE
- ec_word FISHING
- ec_word HALL_OF_FAME
-@ loss speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word GO
- ec_word BACK
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WENT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_A
+ .2byte EC_WORD_FISHING
+ .2byte EC_WORD_SCHOOL
+@ win speech
+ .2byte EC_WORD_SERIOUSLY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_FISHING
+ .2byte EC_WORD_HALL_OF_FAME
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Ramiro
@ 183
.4byte TRAINER_CLASS_FISHERMAN
.string "HUNTER$", 8
@ pre-battle speech
- ec_word SHOW
- ec_word ME
- ec_word A
- ec_word TOTALLY
- ec_word COOL
- ec_move1 CROSS_CHOP
-@ win speech
- ec_word YOU_RE
- ec_word TOO_WEAK
- ec_word TO
- ec_word DO
- ec_word A
- ec_move1 CROSS_CHOP
-@ loss speech
- ec_word WAS
- ec_word IT
- ec_word A
- ec_word MISTAKE
- ec_word QUES
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_COOL
+ .2byte EC_MOVE(CROSS_CHOP)
+@ win speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(CROSS_CHOP)
+@ loss speech
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MISTAKE
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Hunter
@@ -4788,103 +4788,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "AIDEN$", 8
@ pre-battle speech
- ec_word MY
- ec_word WORK
- ec_word IS
- ec_word MAKING
- ec_word ME
- ec_word HEALTHY
-@ win speech
- ec_word YOU
- ec_word SEE
- ec_word QUES
- ec_word I_AM
- ec_word HEALTHY
- ec_word EXCL
-@ loss speech
- ec_word YOU_RE
- ec_word MORE
- ec_word HEALTHY
- ec_word THAN
- ec_word I_AM
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_HEALTHY
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HEALTHY
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_HEALTHY
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Aiden
@ 185
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "XAVIER$", 8
@ pre-battle speech
- ec_word HEY_THERE
- ec_word EXCL
+ .2byte EC_WORD_HEY_THERE
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word LOOK
- ec_word LOOK
- ec_word EXCL_EXCL
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_EXCL_EXCL
@ win speech
- ec_word GOOD_BYE
- ec_word AND
- ec_word THANK_YOU
- ec_word THAT_WAS
- ec_word FUNNY
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_FUNNY
.2byte -1
@ loss speech
- ec_word WOWEE
- ec_word EXCL
+ .2byte EC_WORD_WOWEE
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word NO
- ec_word NO
- ec_word EXCL_EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL_EXCL
.4byte gBattleFrontierTrainerMons_Xavier
@ 186
.4byte TRAINER_CLASS_COLLECTOR
.string "CLINTON$", 8
@ pre-battle speech
- ec_word WANT
- ec_word TO
- ec_word SEE
- ec_word MY
- ec_move1 HYPNOSIS
- ec_word QUES
-@ win speech
- ec_word YOUR
- ec_move2 FURY_SWIPES
- ec_word YOUR
- ec_move1 STRENGTH
- ec_word YOUNG
- ec_word TRAINER
-@ loss speech
- ec_word TCH
- ec_word ELLIPSIS
- .2byte -1
- ec_word I_AM
- ec_word TOO_WEAK
- ec_word ELLIPSIS
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(FURY_SWIPES)
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE(STRENGTH)
+ .2byte EC_WORD_YOUNG
+ .2byte EC_WORD_TRAINER
+@ loss speech
+ .2byte EC_WORD_TCH
+ .2byte EC_WORD_ELLIPSIS
+ .2byte -1
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Clinton
@ 187
.4byte TRAINER_CLASS_COLLECTOR
.string "JESSE$", 8
@ pre-battle speech
- ec_word THIS
- ec_word BATTLE
- ec_word IS
- ec_word FOR
- ec_word MY
- ec_word MOTHER
-@ win speech
- ec_word MOTHER
- ec_word WILL
- ec_word BE
- ec_word HAPPY
- ec_word FOR
- ec_word ME
-@ loss speech
- ec_word I
- ec_word WANT
- ec_word MY
- ec_word MOTHER
- ec_word EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_MOTHER
+@ win speech
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Jesse
@@ -4892,77 +4892,77 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_GUITARIST
.string "EDUARDO$", 8
@ pre-battle speech
- ec_word OUR
- ec_word MUSIC
- ec_word WILL
- ec_word PLAY
- ec_word ALL
- ec_word NIGHT
-@ win speech
- ec_word NIGHTTIME
- ec_word IS
- ec_word WHEN
- ec_word I
- ec_word PLAY
- ec_word BEST
-@ loss speech
- ec_word LET_S
- ec_word PARTY
- ec_word UNTIL
- ec_word THE
- ec_move1 MORNING_SUN
- ec_word EXCL
+ .2byte EC_WORD_OUR
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_NIGHT
+@ win speech
+ .2byte EC_WORD_NIGHTTIME
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WHEN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_BEST
+@ loss speech
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE(MORNING_SUN)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Eduardo
@ 189
.4byte TRAINER_CLASS_GUITARIST
.string "HAL$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word TRENDY
- ec_word AREN_T
- ec_word I
- ec_word QUES
- .2byte -1
-@ win speech
- ec_word I_AM
- ec_word FEELING
- ec_word HIP_AND
- ec_word HAPPENING
- ec_word OH_YEAH
- ec_word EXCL
-@ loss speech
- ec_word I_AM
- ec_word ALWAYS
- ec_word TRENDY
- ec_word THANK_YOU
- ec_word VERY
- ec_word MUCH
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TRENDY
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_I
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_HIP_AND
+ .2byte EC_WORD_HAPPENING
+ .2byte EC_WORD_OH_YEAH
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_TRENDY
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_MUCH
.4byte gBattleFrontierTrainerMons_Hal
@ 190
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "GAGE$", 8
@ pre-battle speech
- ec_word HERE_IT_IS
- ec_word A
- ec_word FLYING
- ec_word TYPE
- ec_word HIDDEN
- ec_word MOVE
-@ win speech
- ec_word IT_S
- ec_word A
- ec_word FLYING
- ec_word TYPE
- ec_word VICTORY
- ec_word EXCL
-@ loss speech
- ec_word IF_I_LOSE
- ec_word I
- ec_word JUST
- ec_move1 FLY
- ec_word AWAY
+ .2byte EC_WORD_HERE_IT_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_FLYING
+ .2byte EC_WORD_TYPE
+ .2byte EC_WORD_HIDDEN
+ .2byte EC_WORD_MOVE
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_FLYING
+ .2byte EC_WORD_TYPE
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_JUST
+ .2byte EC_MOVE(FLY)
+ .2byte EC_WORD_AWAY
.2byte -1
.4byte gBattleFrontierTrainerMons_Gage
@@ -4970,181 +4970,181 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "ARNOLD$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word FEELING
- ec_word WEIRD
- ec_word FROM
- ec_word A
- ec_word DREAM
-@ win speech
- ec_word YOUR
- ec_move1 SCARY_FACE
- ec_word WAS
- ec_word IN
- ec_word MY
- ec_word DREAM
-@ loss speech
- ec_word MY
- ec_word INCREDIBLE
- ec_word DREAM
- ec_word WAS
- ec_word SO
- ec_word WEIRD
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_WEIRD
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_DREAM
+@ win speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE(SCARY_FACE)
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_DREAM
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_INCREDIBLE
+ .2byte EC_WORD_DREAM
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_WEIRD
.4byte gBattleFrontierTrainerMons_Arnold
@ 192
.4byte TRAINER_CLASS_SAILOR
.string "JARRETT$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word LET_S
- ec_word DANCE
- ec_word LIKE
- ec_word IT_S
- ec_word YESTERDAY
-@ win speech
- ec_word YOU
- ec_word LIKE
- ec_word HOW
- ec_word I
- ec_word DANCE
- ec_word QUES
-@ loss speech
- ec_word YOU
- ec_word DON_T
- ec_word APPRECIATE
- ec_word HOW
- ec_word I
- ec_word DANCE
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_YESTERDAY
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_APPRECIATE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DANCE
.4byte gBattleFrontierTrainerMons_Jarrett
@ 193
.4byte TRAINER_CLASS_SAILOR
.string "GARETT$", 8
@ pre-battle speech
- ec_word MY
- ec_word GIRL
- ec_word GIVES
- ec_word ME
- ec_word A_LITTLE
- ec_move2 SWEET_KISS
-@ win speech
- ec_word MY
- ec_word GIRL
- ec_word FRIEND
- ec_word IS
- ec_word MY
- ec_word TREASURE
-@ loss speech
- ec_word A
- ec_word TREASURE
- ec_word ISN_T
- ec_word ALWAYS
- ec_word ABOUT
- ec_word MONEY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_GIVES
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_MOVE2(SWEET_KISS)
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_FRIEND
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TREASURE
+@ loss speech
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TREASURE
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_MONEY
.4byte gBattleFrontierTrainerMons_Garett
@ 194
.4byte TRAINER_CLASS_HIKER
.string "EMANUEL$", 8
@ pre-battle speech
- ec_word SMARTNESS
- ec_word ALONE
- ec_word WON_T
- ec_word MAKE
- ec_word YOU
- ec_word WIN
-@ win speech
- ec_word I_AM
- ec_word NOT_VERY
- ec_word SMART
- ec_word BUT
- ec_word I
- ec_word WON
-@ loss speech
- ec_word HOW
- ec_word DID
- ec_word YOU
- ec_move2 FAKE_OUT
- ec_word ME
- ec_word QUES
+ .2byte EC_WORD_SMARTNESS
+ .2byte EC_WORD_ALONE
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WIN
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_SMART
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+@ loss speech
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(FAKE_OUT)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Emanuel
@ 195
.4byte TRAINER_CLASS_HIKER
.string "GUSTAVO$", 8
@ pre-battle speech
- ec_move1 CHARGE
- ec_word EXCL
+ .2byte EC_MOVE(CHARGE)
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_move1 CHARGE
- ec_word EXCL_EXCL
+ .2byte EC_MOVE(CHARGE)
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ win speech
- ec_word SURRENDER
- ec_word QUES
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_QUES
.2byte -1
- ec_word SO
- ec_word SOON
- ec_word QUES
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word YOU
- ec_word CAN_T
- ec_word MAKE
- ec_word ME
- ec_word SURRENDER
- ec_word YET
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_YET
.4byte gBattleFrontierTrainerMons_Gustavo
@ 196
.4byte TRAINER_CLASS_KINDLER
.string "KAMERON$", 8
@ pre-battle speech
- ec_word TAKE_THAT
- ec_word EXCL
- ec_word IT_S
- ec_word MY
- ec_word FIERY
- ec_move2 TRICK
-@ win speech
- ec_word DID
- ec_word MY
- ec_word FIERY
- ec_move2 TRICK
- ec_move1 ASTONISH
- ec_word QUES
-@ loss speech
- ec_word YOU
- ec_word DIDN_T
- ec_word FALL
- ec_word FOR
- ec_word MY
- ec_move2 TRICK
+ .2byte EC_WORD_TAKE_THAT
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FIERY
+ .2byte EC_MOVE2(TRICK)
+@ win speech
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FIERY
+ .2byte EC_MOVE2(TRICK)
+ .2byte EC_MOVE(ASTONISH)
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_FALL
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(TRICK)
.4byte gBattleFrontierTrainerMons_Kameron
@ 197
.4byte TRAINER_CLASS_KINDLER
.string "ALFREDO$", 8
@ pre-battle speech
- ec_word A
- ec_word FIERY
- ec_word GOURMET
- ec_word AM
- ec_word I
- ec_word EXCL
-@ win speech
- ec_word IT_S
- ec_word A
- ec_word TASTY
- ec_word GOURMET
- ec_word VICTORY
- ec_word EXCL
-@ loss speech
- ec_word WHAT
- ec_word A
- ec_word DISASTER
- ec_word THAT_WAS
- ec_word EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_FIERY
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_AM
+ .2byte EC_WORD_I
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_DISASTER
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Alfredo
@@ -5152,25 +5152,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_GENTLEMAN
.string "RUBEN$", 8
@ pre-battle speech
- ec_word I
- ec_word CAN_T
- ec_word WAIT
- ec_word TO
- ec_word GET
- ec_word GOING
-@ win speech
- ec_word GET
- ec_word GOING
- ec_word EXCL
- ec_word THIS
- ec_word IS
- ec_word GOOD_BYE
-@ loss speech
- ec_word I_VE
- ec_word GOT
- ec_word TO
- ec_word GET
- ec_word GOING
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_GOING
+@ win speech
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_GOOD_BYE
+@ loss speech
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_GOING
.2byte -1
.4byte gBattleFrontierTrainerMons_Ruben
@@ -5178,25 +5178,25 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_GENTLEMAN
.string "LAMAR$", 8
@ pre-battle speech
- ec_word A
- ec_move2 PRESENT
- ec_word FOR
- ec_word ME
- ec_word QUES
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(PRESENT)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_QUES
.2byte -1
@ win speech
- ec_word MMM
- ec_word THIS
- ec_word IS
- ec_word QUITE
- ec_word TASTY
- ec_word ELLIPSIS
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_QUITE
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_ELLIPSIS
@ loss speech
- ec_word OH
- ec_word IT_S
- ec_word A
- ec_word GAME
- ec_word IS_IT_QUES
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GAME
+ .2byte EC_WORD_IS_IT_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Lamar
@@ -5204,155 +5204,155 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_YOUNGSTER
.string "JAXON$", 8
@ pre-battle speech
- ec_word A
- ec_word SHELL_ARMOR
- ec_word IS
- ec_word WHAT
- ec_word I
- ec_word WANT
-@ win speech
- ec_word MY
- ec_word FATHER
- ec_word AND
- ec_word MOTHER
- ec_word WON_T
- ec_word ACCEPT
-@ loss speech
- ec_word PLEASE
- ec_word I
- ec_word NEED
- ec_word A
- ec_word SHELL_ARMOR
- ec_word EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SHELL_ARMOR
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FATHER
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_ACCEPT
+@ loss speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SHELL_ARMOR
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Jaxon
@ 201
.4byte TRAINER_CLASS_YOUNGSTER
.string "LOGAN$", 8
@ pre-battle speech
- ec_word IF_I_LOSE
- ec_word I
- ec_word WILL
- ec_word STUDY
- ec_word FOR
- ec_word SCHOOL
-@ win speech
- ec_word ME
- ec_word STUDY
- ec_word QUES
- ec_word NOT_VERY
- ec_word LIKELY_TO
- ec_word SEE
-@ loss speech
- ec_word NO
- ec_word THANKS
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word SLEEP
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_SCHOOL
+@ win speech
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_LIKELY_TO
+ .2byte EC_WORD_SEE
+@ loss speech
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_THANKS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SLEEP
.4byte gBattleFrontierTrainerMons_Logan
@ 202
.4byte TRAINER_CLASS_LASS
.string "EMILEE$", 8
@ pre-battle speech
- ec_word IS
- ec_word THIS
- ec_word KIND
- ec_word OF
- ec_word BATTLE
- ec_word OK_QUES
-@ win speech
- ec_word LET_S
- ec_word GO
- ec_word FOR
- ec_word AN
- ec_move1 ICY_WIND
- ec_move2 SURF
-@ loss speech
- ec_word HOW
- ec_word ABOUT
- ec_word A
- ec_move1 ROCK_SLIDE
- ec_word SHOW
- ec_word QUES
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_OK_QUES
+@ win speech
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(ICY_WIND)
+ .2byte EC_MOVE2(SURF)
+@ loss speech
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(ROCK_SLIDE)
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Emilee
@ 203
.4byte TRAINER_CLASS_LASS
.string "JOSIE$", 8
@ pre-battle speech
- ec_word A
- ec_word POKEMON
- ec_word FASHION
- ec_word CONTEST
- ec_word IS
- ec_word PRETTY
-@ win speech
- ec_word I
- ec_word REALLY
- ec_word LIKE
- ec_word MODE
- ec_word FASHION
- ec_word THINGS
-@ loss speech
- ec_word YOU_RE
- ec_word TOTALLY
- ec_word LACKING
- ec_word IN
- ec_word FASHION
- ec_word SENSE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_CONTEST
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_PRETTY
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MODE
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_THINGS
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_LACKING
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
.4byte gBattleFrontierTrainerMons_Josie
@ 204
.4byte TRAINER_CLASS_CAMPER
.string "ARMANDO$", 8
@ pre-battle speech
- ec_word I
- ec_word NEED
- ec_word MORE
- ec_word GRASS
- ec_word TYPE
- ec_word POKEMON
-@ win speech
- ec_word TRADE
- ec_word ME
- ec_word A
- ec_word GRASS
- ec_word POKEMON
- ec_word PLEASE
-@ loss speech
- ec_word THERE
- ec_word AREN_T
- ec_word ENOUGH
- ec_word GRASS
- ec_word TYPE
- ec_word POKEMON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_GRASS
+ .2byte EC_WORD_TYPE
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_TRADE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GRASS
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_PLEASE
+@ loss speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_GRASS
+ .2byte EC_WORD_TYPE
+ .2byte EC_WORD_POKEMON
.4byte gBattleFrontierTrainerMons_Armando
@ 205
.4byte TRAINER_CLASS_CAMPER
.string "SKYLER$", 8
@ pre-battle speech
- ec_move2 INGRAIN
- ec_word IS
- ec_word MY
- ec_word CHOICE
- ec_word BATTLE
- ec_word MOVE
-@ win speech
- ec_word YOU
- ec_word CAN_T
- ec_word MOVE
- ec_word ME
- ec_word NOW
- ec_word EXCL
-@ loss speech
- ec_word YOU
- ec_move1 CUT
- ec_word ME
- ec_word DOWN
- ec_word ELLIPSIS
+ .2byte EC_MOVE2(INGRAIN)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CHOICE
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_MOVE
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_MOVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE(CUT)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Skyler
@@ -5360,154 +5360,154 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PICNICKER
.string "RUTH$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word ENJOY
- ec_word THIS
- ec_word BATTLE
-@ win speech
- ec_word THAT_WAS
- ec_word MUCH
- ec_word TOO
- ec_word EASY
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word PLEASE
- ec_word STOP
- ec_word I
- ec_word DON_T
- ec_word ENJOY
- ec_word THIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_STOP
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_THIS
.4byte gBattleFrontierTrainerMons_Ruth
@ 207
.4byte TRAINER_CLASS_PICNICKER
.string "MELODY$", 8
@ pre-battle speech
- ec_word I
- ec_move2 WISH
- ec_word SUNDAY
- ec_word IS
- ec_word A
- ec_move2 SUNNY_DAY
-@ win speech
- ec_word SUNDAY
- ec_word SEEMS
- ec_word FOREVER
- ec_word TO
- ec_word COME
- ec_word ELLIPSIS
-@ loss speech
- ec_word THE
- ec_word FORECAST
- ec_word SAYS
- ec_word IT
- ec_word WILL
- ec_move1 HAIL
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(WISH)
+ .2byte EC_WORD_SUNDAY
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(SUNNY_DAY)
+@ win speech
+ .2byte EC_WORD_SUNDAY
+ .2byte EC_WORD_SEEMS
+ .2byte EC_WORD_FOREVER
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_FORECAST
+ .2byte EC_WORD_SAYS
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE(HAIL)
.4byte gBattleFrontierTrainerMons_Melody
@ 208
.4byte TRAINER_CLASS_SWIMMER_M
.string "PEDRO$", 8
@ pre-battle speech
- ec_word A
- ec_word SWIFT_SWIM
- ec_word WILL
- ec_word DO
- ec_word YOU
- ec_word GOOD
-@ win speech
- ec_word THAT_S
- ec_word HOW
- ec_word I
- ec_word SINK
- ec_word AN
- ec_word OPPONENT
-@ loss speech
- ec_word UH_OH
- ec_word EXCL
- .2byte -1
- ec_word A
- ec_move1 WHIRLPOOL
- ec_word EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SWIFT_SWIM
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_GOOD
+@ win speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SINK
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_OPPONENT
+@ loss speech
+ .2byte EC_WORD_UH_OH
+ .2byte EC_WORD_EXCL
+ .2byte -1
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(WHIRLPOOL)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Pedro
@ 209
.4byte TRAINER_CLASS_SWIMMER_M
.string "ERICK$", 8
@ pre-battle speech
- ec_word I
- ec_word WILL
- ec_move2 TACKLE
- ec_word YOU
- ec_word DOWN
- ec_word EXCL
-@ win speech
- ec_word DON_T
- ec_word YOU
- ec_word RUN_AWAY
- ec_word YOU
- ec_word LOSER
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word DIDN_T
- ec_word THINK
- ec_word YOU
- ec_word WOULD
- ec_move1 COUNTER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE2(TACKLE)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_RUN_AWAY
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LOSER
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WOULD
+ .2byte EC_MOVE(COUNTER)
.4byte gBattleFrontierTrainerMons_Erick
@ 210
.4byte TRAINER_CLASS_SWIMMER_F
.string "ELAINE$", 8
@ pre-battle speech
- ec_word MY
- ec_word HEROINE
- ec_word ADVENTURE
- ec_word ISN_T
- ec_word GOING
- ec_word WELL
-@ win speech
- ec_word THANK_YOU
- ec_word EXCL
- ec_word THAT_S
- ec_word WHAT
- ec_word I
- ec_word NEED
-@ loss speech
- ec_word I
- ec_word KNOW
- ec_word I_AM
- ec_word NOT
- ec_word A
- ec_word HEROINE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HEROINE
+ .2byte EC_WORD_ADVENTURE
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_WELL
+@ win speech
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HEROINE
.4byte gBattleFrontierTrainerMons_Elaine
@ 211
.4byte TRAINER_CLASS_SWIMMER_F
.string "JOYCE$", 8
@ pre-battle speech
- ec_word YOU
- ec_word MAKE
- ec_word ME
- ec_word GO
- ec_word AHAHA
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_AHAHA
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word LALALA
- ec_word NO
- ec_word LOSING
- ec_word FOR
- ec_word ME
- ec_word EXCL
+ .2byte EC_WORD_LALALA
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word LALALA
- ec_word ELLIPSIS
+ .2byte EC_WORD_LALALA
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
- ec_word HUH_QUES
+ .2byte EC_WORD_HUH_QUES
.2byte -1
.2byte -1
.4byte gBattleFrontierTrainerMons_Joyce
@@ -5516,129 +5516,129 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_POKEFAN_1
.string "TODD$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word A
- ec_word LIGHTNINGROD
- ec_word FOR
- ec_word MY
- ec_word POWER
-@ win speech
- ec_word THAT_S
- ec_word ALL
- ec_word YOU
- ec_word COULD
- ec_move1 ABSORB
- ec_word QUES
-@ loss speech
- ec_word YOU
- ec_move2 REFLECT
- ec_word MY
- ec_word POWER
- ec_word BACK
- ec_word QUES
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LIGHTNINGROD
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POWER
+@ win speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_COULD
+ .2byte EC_MOVE(ABSORB)
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(REFLECT)
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Todd
@ 213
.4byte TRAINER_CLASS_POKEFAN_1
.string "GAVIN$", 8
@ pre-battle speech
- ec_word I
- ec_word WILL
- ec_move1 BIDE
- ec_word MY
- ec_word TIME
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE(BIDE)
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_TIME
.2byte -1
@ win speech
- ec_word IT_S
- ec_word OVER
- ec_word SO
- ec_word SOON
- ec_word QUES
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word MY
- ec_word MISTAKE
- ec_word WAS
- ec_word TOO
- ec_word EXPENSIVE
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_MISTAKE
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EXPENSIVE
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Gavin
@ 214
.4byte TRAINER_CLASS_POKEFAN_2
.string "MALORY$", 8
@ pre-battle speech
- ec_word PROMISE
- ec_word TO
- ec_word SHOW
- ec_word ME
- ec_word CUTE
- ec_word POKEMON
-@ win speech
- ec_word GIGGLE
- ec_word ELLIPSIS
- .2byte -1
- ec_word THANK_YOU
- ec_word SO
- ec_word MUCH
-@ loss speech
- ec_word TCH
- ec_word YOUR
- ec_word POKEMON
- ec_word AREN_T
- ec_word VERY
- ec_word NICE
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_GIGGLE
+ .2byte EC_WORD_ELLIPSIS
+ .2byte -1
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MUCH
+@ loss speech
+ .2byte EC_WORD_TCH
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_NICE
.4byte gBattleFrontierTrainerMons_Malory
@ 215
.4byte TRAINER_CLASS_POKEFAN_2
.string "ESTHER$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word A
- ec_word NICE
- ec_move2 PRESENT
- ec_word ELLIPSIS
-@ win speech
- ec_word PLEASE
- ec_word GET
- ec_word ME
- ec_word A
- ec_word POKEMON
- ec_word GAME
-@ loss speech
- ec_word MESSAGE
- ec_word CARDS
- ec_word MAKE
- ec_word A
- ec_word WEAK
- ec_move2 PRESENT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_NICE
+ .2byte EC_MOVE2(PRESENT)
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_GAME
+@ loss speech
+ .2byte EC_WORD_MESSAGE
+ .2byte EC_WORD_CARDS
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WEAK
+ .2byte EC_MOVE2(PRESENT)
.4byte gBattleFrontierTrainerMons_Esther
@ 216
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "OSCAR$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word SEE
- ec_word YOUR
- ec_word POWER
- ec_word IN
- ec_word FULL
-@ win speech
- ec_word THAT_WAS
- ec_word NOT
- ec_word YOUR
- ec_word FULL
- ec_word POWER
- ec_word EXCL
-@ loss speech
- ec_word NOT
- ec_word FUNNY
- ec_word ELLIPSIS
- ec_word YOU_RE
- ec_word TOO_STRONG
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_FULL
+@ win speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_FULL
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_FUNNY
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOO_STRONG
.2byte -1
.4byte gBattleFrontierTrainerMons_Oscar
@@ -5646,129 +5646,129 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PKMN_BREEDER_2
.string "WILSON$", 8
@ pre-battle speech
- ec_word WORK
- ec_word IS
- ec_word MAKING
- ec_word ME
- ec_word AN
- ec_word EARLY_BIRD
-@ win speech
- ec_word ALL
- ec_word WORK
- ec_word AND
- ec_word NO
- ec_word PLAY
- ec_word ELLIPSIS
-@ loss speech
- ec_move1 ENDURE
- ec_word IS
- ec_word ALL
- ec_word I
- ec_word CAN
- ec_word DO
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EARLY_BIRD
+@ win speech
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_MOVE(ENDURE)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_DO
.4byte gBattleFrontierTrainerMons_Wilson
@ 218
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "CLARE$", 8
@ pre-battle speech
- ec_word YAY
- ec_word EXCL
- ec_word A
- ec_word TOUGH
- ec_word TRAINER
- ec_word EXCL
-@ win speech
- ec_word AWW
- ec_word EXCL
- ec_word A
- ec_word WIMPY
- ec_word TRAINER
- ec_word EXCL
-@ loss speech
- ec_word COOL
- ec_word EXCL
- ec_word A
- ec_word GENIUS
- ec_word TRAINER
- ec_word EXCL
+ .2byte EC_WORD_YAY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_WIMPY
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Clare
@ 219
.4byte TRAINER_CLASS_PKMN_BREEDER_1
.string "TESS$", 8
@ pre-battle speech
- ec_word WANT
- ec_word SOME
- ec_pokemon1 GULPIN
- ec_word DESIGN
- ec_word SWEETS
- ec_word QUES
-@ win speech
- ec_word THEY_RE
- ec_word A
- ec_word SECRET
- ec_word POKEMON
- ec_word GOURMET
- ec_word ITEM
-@ loss speech
- ec_word THEY_RE
- ec_word TASTY
- ec_word EXCL
- ec_word REFRESHING
- ec_word TOO
- ec_word EXCL
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_SOME
+ .2byte EC_POKEMON(GULPIN)
+ .2byte EC_WORD_DESIGN
+ .2byte EC_WORD_SWEETS
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_THEY_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_ITEM
+@ loss speech
+ .2byte EC_WORD_THEY_RE
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_REFRESHING
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Tess
@ 220
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "LEON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word BETTER
- ec_word THAN
- ec_word ANY
- ec_word OTHER
- ec_word TRAINER
-@ win speech
- ec_word I
- ec_word DID
- ec_word IT
- ec_move2 JUMP_KICK
- ec_word FOR
- ec_word JOY
-@ loss speech
- ec_word BACK
- ec_word HOME
- ec_word I
- ec_word WILL
- ec_word GO
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_BETTER
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_OTHER
+ .2byte EC_WORD_TRAINER
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_IT
+ .2byte EC_MOVE2(JUMP_KICK)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_JOY
+@ loss speech
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_HOME
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Leon
@ 221
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "ALONZO$", 8
@ pre-battle speech
- ec_word I_VE
- ec_word NOT
- ec_word LOST
- ec_word ONCE
- ec_word YET
- ec_word EXCL
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_ONCE
+ .2byte EC_WORD_YET
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word YOUR
- ec_word SAD
- ec_word LOOK
- ec_word BECOMES
- ec_word YOU
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_BECOMES
+ .2byte EC_WORD_YOU
.2byte -1
@ loss speech
- ec_word I
- ec_word DON_T
- ec_word BELIEVE
- ec_word THIS
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Alonzo
@@ -5776,363 +5776,363 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "VINCE$", 8
@ pre-battle speech
- ec_word THE
- ec_word TOP
- ec_word TRAINER
- ec_word THAT_S
- ec_word ME
- ec_word EXCL
-@ win speech
- ec_word THE
- ec_word TOP
- ec_word RANK
- ec_word BELONGS_TO
- ec_word ME
- ec_word EXCL
-@ loss speech
- ec_word I
- ec_word WILL
- ec_word APPEAL
- ec_word THIS
- ec_move1 OUTRAGE
- ec_word EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_TOP
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_TOP
+ .2byte EC_WORD_RANK
+ .2byte EC_WORD_BELONGS_TO
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_APPEAL
+ .2byte EC_WORD_THIS
+ .2byte EC_MOVE(OUTRAGE)
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Vince
@ 223
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "BRYON$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 BARRAGE
- ec_word WILL
- ec_move2 SLAM
- ec_word YOU
- ec_word EXCL
-@ win speech
- ec_word YOU
- ec_word DIDN_T
- ec_word COUNT_ON
- ec_word ANY
- ec_word LESS
- ec_word QUES
-@ loss speech
- ec_word I
- ec_word JUST
- ec_word DON_T
- ec_word GET
- ec_word IT
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(BARRAGE)
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE2(SLAM)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_COUNT_ON
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_LESS
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Bryon
@ 224
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "AVA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word A
- ec_word TREASURE
- ec_word OF
- ec_word THIS
- ec_word WORLD
-@ win speech
- ec_word MY
- ec_word WORLD
- ec_word IS
- ec_word FULL
- ec_word OF
- ec_word WONDER
-@ loss speech
- ec_word WHY
- ec_word ARE
- ec_word YOU
- ec_word SO
- ec_word TERRIBLE
- ec_word QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TREASURE
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_WORLD
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_WORLD
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_FULL
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_WONDER
+@ loss speech
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Ava
@ 225
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "MIRIAM$", 8
@ pre-battle speech
- ec_word OH
- ec_word A
- ec_word TRAINER
- ec_word WITH
- ec_word A
- ec_move1 SCARY_FACE
-@ win speech
- ec_word AHAHA
- ec_word YOU
- ec_word ONLY
- ec_word LOOK
- ec_word SCARY
- ec_word EXCL
-@ loss speech
- ec_word AIYEEH
- ec_word EXCL
- ec_word YOU
- ec_word REALLY
- ec_word ARE
- ec_word SCARY
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SCARY_FACE)
+@ win speech
+ .2byte EC_WORD_AHAHA
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_AIYEEH
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SCARY
.4byte gBattleFrontierTrainerMons_Miriam
@ 226
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "CARRIE$", 8
@ pre-battle speech
- ec_word I
- ec_word WILL
- ec_word SHOW
- ec_word YOU
- ec_word GUTSY
- ec_word EXCL
-@ win speech
- ec_word IT_S
- ec_word ALL
- ec_word ABOUT
- ec_word GUTS
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word OH
- ec_word NO
- ec_word ELLIPSIS
- ec_move1 SELF_DESTRUCT
- ec_word MODE
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_GUTSY
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_GUTS
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_MOVE(SELF_DESTRUCT)
+ .2byte EC_WORD_MODE
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Carrie
@ 227
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "GILLIAN$", 8
@ pre-battle speech
- ec_word I
- ec_word SEEK
- ec_word A
- ec_word TRULY
- ec_word GREAT
- ec_word BATTLE
-@ win speech
- ec_word I
- ec_word NEED
- ec_word A_LOT
- ec_word BETTER
- ec_word BATTLE
- ec_word ELLIPSIS
-@ loss speech
- ec_word THAT_WAS
- ec_word A_LITTLE
- ec_word TOO
- ec_word MUCH
- ec_word TO
- ec_word TAKE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SEEK
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRULY
+ .2byte EC_WORD_GREAT
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A_LOT
+ .2byte EC_WORD_BETTER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_TAKE
.4byte gBattleFrontierTrainerMons_Gillian2
@ 228
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "TYLER$", 8
@ pre-battle speech
- ec_word YO
- ec_word EXCL
+ .2byte EC_WORD_YO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word LET_S
- ec_word GO
- ec_word EXCL_EXCL
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_EXCL_EXCL
@ win speech
- ec_word YO
- ec_word EXCL
+ .2byte EC_WORD_YO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word WON
- ec_word YO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_YO
@ loss speech
- ec_word YO
- ec_word EXCL
+ .2byte EC_WORD_YO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word LOST
- ec_word YO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_YO
.4byte gBattleFrontierTrainerMons_Tyler
@ 229
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "CHAZ$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word HAVE
- ec_word TOO
- ec_word MUCH
- ec_word POWER
-@ win speech
- ec_word THEY
- ec_word HAVE
- ec_word MORE
- ec_word POWER
- ec_word NOW
- ec_word EXCL
-@ loss speech
- ec_word YEAH
- ec_move2 TAKE_DOWN
- ec_word THEIR
- ec_word POWER
- ec_word A_TINY_BIT
- ec_word PLEASE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_POWER
+@ win speech
+ .2byte EC_WORD_THEY
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YEAH
+ .2byte EC_MOVE2(TAKE_DOWN)
+ .2byte EC_WORD_THEIR
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_A_TINY_BIT
+ .2byte EC_WORD_PLEASE
.4byte gBattleFrontierTrainerMons_Chaz
@ 230
.4byte TRAINER_CLASS_PKMN_RANGER_1
.string "NELSON$", 8
@ pre-battle speech
- ec_word WELL_THEN
- ec_word WILL
- ec_word THIS
- ec_word POKEMON
- ec_word WORK
- ec_word QUES
-@ win speech
- ec_word I
- ec_word SEE
- ec_word THAT
- ec_word IT
- ec_word WAS
- ec_word TOO_STRONG
-@ loss speech
- ec_word IT
- ec_word DIDN_T
- ec_word MATCH_UP
- ec_word WELL
- ec_word I
- ec_word THINK
+ .2byte EC_WORD_WELL_THEN
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_TOO_STRONG
+@ loss speech
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_MATCH_UP
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_THINK
.4byte gBattleFrontierTrainerMons_Nelson
@ 231
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "SHANIA$", 8
@ pre-battle speech
- ec_word ALL
- ec_word MY
- ec_word POKEMON
- ec_word ABSOLUTELY
- ec_word ADORE
- ec_word ME
-@ win speech
- ec_word HAPPINESS
- ec_word IS
- ec_word A
- ec_word POKEMON
- ec_word WITH
- ec_word CUTE_CHARM
-@ loss speech
- ec_word YOU_RE
- ec_word SO
- ec_word MEAN
- ec_word TO
- ec_word CUTE
- ec_word POKEMON
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ABSOLUTELY
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_ME
+@ win speech
+ .2byte EC_WORD_HAPPINESS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_CUTE_CHARM
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_POKEMON
.4byte gBattleFrontierTrainerMons_Shania
@ 232
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "STELLA$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word SEE
- ec_word YOUR
- ec_word POKEMON
-@ win speech
- ec_word WELL
- ec_word AREN_T
- ec_word THEY
- ec_word BORING
- ec_word QUES
- ec_word AHAHA
-@ loss speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word SOMETHING
- ec_word ELSE
- ec_word ALL_RIGHT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_THEY
+ .2byte EC_WORD_BORING
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_AHAHA
+@ loss speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SOMETHING
+ .2byte EC_WORD_ELSE
+ .2byte EC_WORD_ALL_RIGHT
.4byte gBattleFrontierTrainerMons_Stella
@ 233
.4byte TRAINER_CLASS_PKMN_RANGER_2
.string "DORINE$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word YOUNG
- ec_word AND
- ec_word STRONG
- ec_word EXCL
- .2byte -1
-@ win speech
- ec_word SEE
- ec_word QUES
- ec_word AREN_T
- ec_word I
- ec_word GOOD
- ec_word QUES
-@ loss speech
- ec_word THIS
- ec_word ISN_T
- ec_word WORKING
- ec_word OUT
- ec_word AT
- ec_word ALL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_YOUNG
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_WORKING
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
.4byte gBattleFrontierTrainerMons_Dorine
@ 234
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "MADDOX$", 8
@ pre-battle speech
- ec_word DRAGON
- ec_word POKEMON
- ec_word ARE
- ec_word MY
- ec_word NO_1
- ec_word CHOICE
-@ win speech
- ec_word IT_S
- ec_word NO
- ec_word SECRET
- ec_word DRAGON
- ec_word POKEMON
- ec_word WIN
-@ loss speech
- ec_word DRAGON
- ec_word POKEMON
- ec_word SHOULD
- ec_word NOT
- ec_word LOSE
- ec_word EXCL
+ .2byte EC_WORD_DRAGON
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_CHOICE
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_DRAGON
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WIN
+@ loss speech
+ .2byte EC_WORD_DRAGON
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Maddox
@ 235
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "DAVIN$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word HEAR
- ec_word YOU
- ec_move2 ROAR
- ec_word EXCL
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_HEAR
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(ROAR)
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word WROOOAAR_EXCL
+ .2byte EC_WORD_WROOOAAR_EXCL
.2byte -1
.2byte -1
- ec_word VICTORY
- ec_word EXCL_EXCL
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ loss speech
- ec_word WROOOAAR_EXCL
+ .2byte EC_WORD_WROOOAAR_EXCL
.2byte -1
.2byte -1
- ec_word WHY
- ec_word QUES_EXCL
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Davin
@@ -6140,285 +6140,285 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_DRAGON_TAMER
.string "TREVON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word LIVING
- ec_word ONLY
- ec_word WITH
- ec_word DRAGON
- ec_word POKEMON
-@ win speech
- ec_word THE
- ec_word WAY
- ec_word I_AM
- ec_word LIVING
- ec_word IS
- ec_word PERFECT
-@ loss speech
- ec_word YOU_VE
- ec_word DESTROYED
- ec_word THE
- ec_word WAY
- ec_word I_AM
- ec_word LIVING
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_LIVING
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_DRAGON
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_LIVING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_PERFECT
+@ loss speech
+ .2byte EC_WORD_YOU_VE
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_LIVING
.4byte gBattleFrontierTrainerMons_Trevon
@ 237
.4byte TRAINER_CLASS_BLACK_BELT
.string "MATEO$", 8
@ pre-battle speech
- ec_word THIS
- ec_word SHOULD
- ec_word BE
- ec_word OVER
- ec_word SOON
- ec_word ENOUGH
-@ win speech
- ec_word WELL
- ec_word THAT
- ec_word DIDN_T
- ec_word TAKE
- ec_word VERY
- ec_word MUCH
-@ loss speech
- ec_word I
- ec_word CAN_T
- ec_word LOSE
- ec_word SO
- ec_word SOON
- ec_word EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_ENOUGH
+@ win speech
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_MUCH
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Mateo
@ 238
.4byte TRAINER_CLASS_BLACK_BELT
.string "BRET$", 8
@ pre-battle speech
- ec_word I
- ec_word LIKE
- ec_word ROCK_SOLID
- ec_word POKEMON
- ec_word THE
- ec_word BEST
-@ win speech
- ec_word TOUGHNESS
- ec_word IS
- ec_word THE
- ec_word WAY
- ec_word TO
- ec_word GO
-@ loss speech
- ec_word I
- ec_word ALSO
- ec_word HAVE
- ec_word A
- ec_word PLUSH_DOLL
- ec_word COLLECTION
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_ROCK_SOLID
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
+@ win speech
+ .2byte EC_WORD_TOUGHNESS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ALSO
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_PLUSH_DOLL
+ .2byte EC_WORD_COLLECTION
.4byte gBattleFrontierTrainerMons_Bret
@ 239
.4byte TRAINER_CLASS_BLACK_BELT
.string "RAUL$", 8
@ pre-battle speech
- ec_word I
- ec_word REJECT
- ec_word EVERY
- ec_word WEAK
- ec_word TRAINER
- .2byte -1
-@ win speech
- ec_word HUMPH
- ec_word EXCL
- ec_word ANOTHER
- ec_word WEAK
- ec_word TRAINER
- ec_word ELLIPSIS
-@ loss speech
- ec_word THERE
- ec_word IS
- ec_word NOTHING
- ec_word WEAK
- ec_word ABOUT
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REJECT
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_TRAINER
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_HUMPH
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_NOTHING
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Raul
@ 240
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "KAY$", 8
@ pre-battle speech
- ec_word AND
- ec_word YET
- ec_word ANOTHER
- ec_word BATTLE
- ec_word QUES
- .2byte -1
-@ win speech
- ec_word I
- ec_word WON
- ec_word BUT
- ec_word I_AM
- ec_word TIRED
- ec_word ELLIPSIS
-@ loss speech
- ec_word GOOD
- ec_word IT_S
- ec_word OVER
- ec_word AT
- ec_word LAST
- ec_word ELLIPSIS
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_YET
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_QUES
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TIRED
+ .2byte EC_WORD_ELLIPSIS
+@ loss speech
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_LAST
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Kay
@ 241
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "ELENA$", 8
@ pre-battle speech
- ec_word A
- ec_word BATTLE
- ec_word GIRL
- ec_word THAT_S
- ec_word ME
- ec_word EXCL
-@ win speech
- ec_word ISN_T
- ec_word A
- ec_word BATTLE
- ec_word GIRL
- ec_word AWESOME
- ec_word QUES
-@ loss speech
- ec_word YOU
- ec_word DISLIKE
- ec_word A
- ec_word BATTLE
- ec_word GIRL
- ec_word QUES
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_GIRL
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Elena
@ 242
.4byte TRAINER_CLASS_BATTLE_GIRL
.string "ALANA$", 8
@ pre-battle speech
- ec_word EAT
- ec_word MY
- ec_word INVINCIBLE
- ec_word ATTACK
- ec_word YOU
- ec_word EXCL
-@ win speech
- ec_word YOU
- ec_word HAVE
- ec_word MUCH
- ec_word TO
- ec_word LEARN
- .2byte -1
-@ loss speech
- ec_word SO
- ec_word MUCH
- ec_word FOR
- ec_word MY
- ec_word INVINCIBLE
- ec_word ATTACK
+ .2byte EC_WORD_EAT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_ATTACK
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_LEARN
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_ATTACK
.4byte gBattleFrontierTrainerMons_Alana
@ 243
.4byte TRAINER_CLASS_EXPERT_1
.string "ALEXAS$", 8
@ pre-battle speech
- ec_word GOOD
- ec_word TO
- ec_word MEET_YOU
- ec_word YOUNG
- ec_word TRAINER
- ec_word EXCL
-@ win speech
- ec_word WAHAHAHA
- ec_word EXCL
- .2byte -1
- ec_word GIVE
- ec_word IT
- ec_word UP
-@ loss speech
- ec_word YOU
- ec_word ARE
- ec_word A
- ec_word STRONG
- ec_word TRAINER
- ec_word KID
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_MEET_YOU
+ .2byte EC_WORD_YOUNG
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL
+ .2byte -1
+ .2byte EC_WORD_GIVE
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_UP
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_KID
.4byte gBattleFrontierTrainerMons_Alexas
@ 244
.4byte TRAINER_CLASS_EXPERT_1
.string "WESTON$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word PLAY
- ec_word DOWN
- ec_word ALL_RIGHT
- ec_word QUES
-@ win speech
- ec_word YOU_RE
- ec_word FAR
- ec_word TOO
- ec_word EASY
- ec_word TO
- ec_word ATTACK
-@ loss speech
- ec_word WELL
- ec_word WELL
- ec_word ELLIPSIS
- ec_word I
- ec_word SURRENDER
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_ALL_RIGHT
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_FAR
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ATTACK
+@ loss speech
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Weston
@ 245
.4byte TRAINER_CLASS_EXPERT_1
.string "JASPER$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NOT
- ec_word OLD
- ec_word I_AM
- ec_word SKILLED
- ec_word EXCL
-@ win speech
- ec_word SKILLED
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word I_AM
- ec_word SHOCKED
- ec_word EXCL
- ec_word DOWN
- ec_word I
- ec_word GO
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SKILLED
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_SKILLED
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SHOCKED
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GO
.4byte gBattleFrontierTrainerMons_Jasper
@ 246
.4byte TRAINER_CLASS_EXPERT_2
.string "NADIA$", 8
@ pre-battle speech
- ec_word YOU
- ec_word CAN_T
- ec_word BEAT
- ec_word ME
- ec_word DOWN
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word HAH
- ec_word EXCL
+ .2byte EC_WORD_HAH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word BEAT
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_YOU
@ loss speech
- ec_word I_AM
- ec_move2 BEAT_UP
- ec_word AND
- ec_word DOWNCAST
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_DOWNCAST
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Nadia
@@ -6426,103 +6426,103 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_EXPERT_2
.string "MIRANDA$", 8
@ pre-battle speech
- ec_word WELL
- ec_word WELL
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_WELL
.2byte -1
- ec_word LET_S
- ec_word START
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_START
.2byte -1
@ win speech
- ec_word WHAT
- ec_word QUES
- ec_word DONE
- ec_word SO
- ec_word SOON
- ec_word QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_DONE
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SOON
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word WELL
- ec_word I
- ec_word SEE
- ec_word THAT
- ec_word I_AM
- ec_word TOO_WEAK
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOO_WEAK
.4byte gBattleFrontierTrainerMons_Miranda
@ 248
.4byte TRAINER_CLASS_EXPERT_2
.string "EMMA$", 8
@ pre-battle speech
- ec_word I_VE
- ec_word BEEN
- ec_word HEARING
- ec_word ABOUT
- ec_word YOU
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_BEEN
+ .2byte EC_WORD_HEARING
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_YOU
.2byte -1
@ win speech
- ec_word I
- ec_word THINK
- ec_word I_VE
- ec_word MISHEARD
- ec_word THINGS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_MISHEARD
+ .2byte EC_WORD_THINGS
.2byte -1
@ loss speech
- ec_word WHAT
- ec_word I_VE
- ec_word BEEN
- ec_word HEARING
- ec_word IS
- ec_word RIGHT
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_BEEN
+ .2byte EC_WORD_HEARING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_RIGHT
.4byte gBattleFrontierTrainerMons_Emma
@ 249
.4byte TRAINER_CLASS_PSYCHIC_1
.string "ROLANDO$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word A
- ec_word SUPER
- ec_word POKEMON
- ec_word HERO
- ec_word EXCL
-@ win speech
- ec_word WAS
- ec_word THAT
- ec_word ENOUGH
- ec_word FOR
- ec_word YOU
- ec_word QUES
-@ loss speech
- ec_word YOU
- ec_word SHOULD
- ec_word NOT
- ec_word BEAT
- ec_word A
- ec_word HERO
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SUPER
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_HERO
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HERO
.4byte gBattleFrontierTrainerMons_Rolando
@ 250
.4byte TRAINER_CLASS_PSYCHIC_1
.string "STANLY$", 8
@ pre-battle speech
- ec_word THIS
- ec_word SHOULD
- ec_word BE
- ec_word AN
- ec_word EASY
- ec_word MATCH
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_MATCH
@ win speech
- ec_word IT
- ec_word REALLY
- ec_word WAS
- ec_word EASY
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_EASY
.2byte -1
.2byte -1
@ loss speech
- ec_word ARE
- ec_word YOU
- ec_word HAPPY
- ec_word NOW
- ec_word QUES
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gBattleFrontierTrainerMons_Stanly
@@ -6530,207 +6530,207 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_PSYCHIC_1
.string "DARIO$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 FORESIGHT
- ec_word SAYS
- ec_word I
- ec_word WILL
- ec_word WIN
-@ win speech
- ec_word MY
- ec_move2 FORESIGHT
- ec_word HAS
- ec_word BEEN
- ec_word PERFECT
- .2byte -1
-@ loss speech
- ec_word I
- ec_word DIDN_T
- ec_word SEE
- ec_word THIS
- ec_move1 REVERSAL
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_SAYS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_WIN
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_BEEN
+ .2byte EC_WORD_PERFECT
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_THIS
+ .2byte EC_MOVE(REVERSAL)
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Dario
@ 252
.4byte TRAINER_CLASS_PSYCHIC_2
.string "KARLEE$", 8
@ pre-battle speech
- ec_word SOMETHING
- ec_word GOOD
- ec_word WILL
- ec_word COME
- ec_word OF
- ec_word THIS
-@ win speech
- ec_word YOU
- ec_word SEE
- ec_word QUES
- ec_word FANTASTIC
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word THAT
- ec_word SOMETHING
- ec_word GOOD
- ec_word WENT
- ec_word TO
- ec_word YOU
+ .2byte EC_WORD_SOMETHING
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_THIS
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_FANTASTIC
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_SOMETHING
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_WENT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Karlee
@ 253
.4byte TRAINER_CLASS_PSYCHIC_2
.string "JAYLIN$", 8
@ pre-battle speech
- ec_word EVERY
- ec_word TRAINER
- ec_word HAS
- ec_word BEEN
- ec_word TOO_WEAK
- ec_word ELLIPSIS
-@ win speech
- ec_word IT_S
- ec_word MAKING
- ec_word ME
- ec_move1 YAWN
- ec_word THAT
- ec_word BATTLE
-@ loss speech
- ec_word I
- ec_word SLEPT
- ec_word AND
- ec_word SO
- ec_word I
- ec_word LOST
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_BEEN
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_ELLIPSIS
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_ME
+ .2byte EC_MOVE(YAWN)
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_BATTLE
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SLEPT
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
.4byte gBattleFrontierTrainerMons_Jaylin
@ 254
.4byte TRAINER_CLASS_PSYCHIC_2
.string "INGRID$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NOT
- ec_word A
- ec_word VERY
- ec_word MEAN
- ec_word TRAINER
-@ win speech
- ec_word WASN_T
- ec_word THAT
- ec_word A
- ec_word GOOD
- ec_word MATCH
- ec_word QUES
-@ loss speech
- ec_word I
- ec_word LOST
- ec_word CAUSE
- ec_word YOU_RE
- ec_word MEAN
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_TRAINER
+@ win speech
+ .2byte EC_WORD_WASN_T
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_MATCH
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_CAUSE
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Ingrid
@ 255
.4byte TRAINER_CLASS_HEX_MANIAC
.string "DELILAH$", 8
@ pre-battle speech
- ec_word DON_T
- ec_move1 GRUDGE
- ec_word ME
- ec_word IF_I_WIN
- ec_word OK_QUES
- .2byte -1
-@ win speech
- ec_word I_AM
- ec_word SORRY
- ec_word TO
- ec_word SEE
- ec_word YOU
- ec_word ANGRY
-@ loss speech
- ec_word I
- ec_word HAVE
- ec_word A
- ec_move1 GRUDGE
- ec_word WITH
- ec_word YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_MOVE(GRUDGE)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_IF_I_WIN
+ .2byte EC_WORD_OK_QUES
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ANGRY
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(GRUDGE)
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Delilah
@ 256
.4byte TRAINER_CLASS_HEX_MANIAC
.string "CARLY$", 8
@ pre-battle speech
- ec_word I
- ec_word WILL
- ec_word SCATTER
- ec_word SOME
- ec_move2 POISON_POWDER
- ec_word ABOUT
-@ win speech
- ec_word IT_S
- ec_word SCARY
- ec_word HOW
- ec_word MY
- ec_word STRATEGY
- ec_word WORKS
-@ loss speech
- ec_word I
- ec_word DISLIKE
- ec_word YOU
- ec_word AND
- ec_word YOUR
- ec_word POKEMON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_SCATTER
+ .2byte EC_WORD_SOME
+ .2byte EC_MOVE2(POISON_POWDER)
+ .2byte EC_WORD_ABOUT
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_STRATEGY
+ .2byte EC_WORD_WORKS
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
.4byte gBattleFrontierTrainerMons_Carly
@ 257
.4byte TRAINER_CLASS_HEX_MANIAC
.string "LEXIE$", 8
@ pre-battle speech
- ec_word WANT
- ec_word TO
- ec_word SEE
- ec_word SCARY
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
@ win speech
- ec_word WASN_T
- ec_word THAT
- ec_word SCARY
- ec_word EH_QUES
+ .2byte EC_WORD_WASN_T
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_EH_QUES
.2byte -1
.2byte -1
@ loss speech
- ec_word YOU_RE
- ec_word MORE
- ec_word SCARY
- ec_word THAN
- ec_word MY
- ec_word POKEMON
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
.4byte gBattleFrontierTrainerMons_Lexie
@ 258
.4byte TRAINER_CLASS_POKEMANIAC
.string "MILLER$", 8
@ pre-battle speech
- ec_word HELLO
- ec_word QUES
+ .2byte EC_WORD_HELLO
+ .2byte EC_WORD_QUES
.2byte -1
- ec_word HELLO
- ec_word QUES_EXCL
+ .2byte EC_WORD_HELLO
+ .2byte EC_WORD_QUES_EXCL
.2byte -1
@ win speech
- ec_word HELLO
- ec_word MOTHER
- ec_word EXCL
- ec_word I
- ec_word WON
- ec_word EXCL
+ .2byte EC_WORD_HELLO
+ .2byte EC_WORD_MOTHER
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word MY
- ec_word PHONE
- ec_word ISN_T
- ec_word WORKING
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PHONE
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_WORKING
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Miller
@@ -6738,153 +6738,153 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_POKEMANIAC
.string "MARV$", 8
@ pre-battle speech
- ec_word YOU
- ec_word CAN
- ec_word LOSE
- ec_word YOUR
- ec_move1 SWAGGER
- ec_word NOW
-@ win speech
- ec_word THERE
- ec_word IS
- ec_word NO
- ec_move1 SWAGGER
- ec_word LEFT
- ec_word EH_QUES
-@ loss speech
- ec_word GO
- ec_word ON
- ec_move1 SWAGGER
- ec_word ALL
- ec_word YOU
- ec_word WANT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE(SWAGGER)
+ .2byte EC_WORD_NOW
+@ win speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_NO
+ .2byte EC_MOVE(SWAGGER)
+ .2byte EC_WORD_LEFT
+ .2byte EC_WORD_EH_QUES
+@ loss speech
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ON
+ .2byte EC_MOVE(SWAGGER)
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WANT
.4byte gBattleFrontierTrainerMons_Marv
@ 260
.4byte TRAINER_CLASS_POKEMANIAC
.string "LAYTON$", 8
@ pre-battle speech
- ec_word I
- ec_word KNOW
- ec_word I_AM
- ec_word TOTALLY
- ec_word COOL
- ec_word EXCL
-@ win speech
- ec_word YOU
- ec_word CAN
- ec_word LOOK
- ec_word UP
- ec_word TO
- ec_word ME
-@ loss speech
- ec_word YOU_RE
- ec_word COOL
- ec_word EXCL
- ec_word NO
- ec_word REALLY
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Layton
@ 261
.4byte TRAINER_CLASS_GENTLEMAN
.string "BROOKS$", 8
@ pre-battle speech
- ec_word THIS
- ec_word IS
- ec_word A
- ec_word HIGH
- ec_word LEVEL
- ec_word BATTLE
-@ win speech
- ec_word THAT_WAS
- ec_word HIGH
- ec_word LEVEL
- ec_word AND
- ec_word EXCITING
- ec_word TOO
-@ loss speech
- ec_word YOU_RE
- ec_word TOO
- ec_word HIGH
- ec_word IN
- ec_word LEVEL
- ec_word ELLIPSIS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_HIGH
+ .2byte EC_WORD_LEVEL
+ .2byte EC_WORD_BATTLE
+@ win speech
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_HIGH
+ .2byte EC_WORD_LEVEL
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_TOO
+@ loss speech
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_HIGH
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_LEVEL
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Brooks
@ 262
.4byte TRAINER_CLASS_GENTLEMAN
.string "GREGORY$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NOT
- ec_word THAT
- ec_word OLD
- ec_word YET
- .2byte -1
-@ win speech
- ec_word WHO
- ec_word SAYS
- ec_word I_AM
- ec_word TOO
- ec_word OLD
- ec_word QUES
-@ loss speech
- ec_word PLEASE
- ec_word I_AM
- ec_word REALLY
- ec_word NOT
- ec_word THAT
- ec_word OLD
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_YET
+ .2byte -1
+@ win speech
+ .2byte EC_WORD_WHO
+ .2byte EC_WORD_SAYS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_OLD
.4byte gBattleFrontierTrainerMons_Gregory
@ 263
.4byte TRAINER_CLASS_GENTLEMAN
.string "REESE$", 8
@ pre-battle speech
- ec_word I_VE
- ec_word A
- ec_word COUPLE
- ec_word THINGS
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_COUPLE
+ .2byte EC_WORD_THINGS
.2byte -1
.2byte -1
@ win speech
- ec_word DON_T
- ec_word DIET
- ec_word PLAY
- ec_word SPORTS
- ec_word INSTEAD
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_DIET
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_SPORTS
+ .2byte EC_WORD_INSTEAD
.2byte -1
@ loss speech
- ec_word INSTEAD
- ec_word OF
- ec_word TELEVISION
- ec_word GET
- ec_word A
- ec_word BOOK
+ .2byte EC_WORD_INSTEAD
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_TELEVISION
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BOOK
.4byte gBattleFrontierTrainerMons_Reese
@ 264
.4byte TRAINER_CLASS_TRIATHLETE_3
.string "MASON$", 8
@ pre-battle speech
- ec_word PLEASE
- ec_word DON_T
- ec_word MAKE
- ec_word THIS
- ec_word SCARY
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SCARY
.2byte -1
@ win speech
- ec_word THANK_YOU
- ec_word ELLIPSIS
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
- ec_word I_AM
- ec_word HAPPY
- ec_word NOW
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_NOW
@ loss speech
- ec_word I_AM
- ec_word DISAPPOINTED
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_DISAPPOINTED
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.2byte -1
.2byte -1
@@ -6894,75 +6894,75 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_3
.string "TOBY$", 8
@ pre-battle speech
- ec_word LISTEN
- ec_word UP
- .2byte -1
- ec_word I
- ec_word ALWAYS
- ec_word WIN
-@ win speech
- ec_word I_AM
- ec_word A
- ec_word GENIUS
- ec_word OR
- ec_word WHAT
- ec_word QUES
-@ loss speech
- ec_word I
- ec_word CAN
- ec_word BEAT
- ec_word YOU
- ec_word AT
- ec_word SMARTNESS
+ .2byte EC_WORD_LISTEN
+ .2byte EC_WORD_UP
+ .2byte -1
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_WIN
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GENIUS
+ .2byte EC_WORD_OR
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_SMARTNESS
.4byte gBattleFrontierTrainerMons_Toby
@ 266
.4byte TRAINER_CLASS_TRIATHLETE_4
.string "DOROTHY$", 8
@ pre-battle speech
- ec_word THE
- ec_word SPORTS
- ec_word WORLD
- ec_word SHOULD
- ec_word ACCEPT
- ec_word POKEMON
-@ win speech
- ec_word THANK_YOU
- ec_word EXCL
- ec_word THAT
- ec_word WIN
- ec_word WAS
- ec_word REFRESHING
-@ loss speech
- ec_word THANK_YOU
- ec_word EXCL
- ec_word THAT
- ec_word LOSS
- ec_word WAS
- ec_word REFRESHING
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_SPORTS
+ .2byte EC_WORD_WORLD
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_REFRESHING
+@ loss speech
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_REFRESHING
.4byte gBattleFrontierTrainerMons_Dorothy
@ 267
.4byte TRAINER_CLASS_TRIATHLETE_4
.string "PIPER$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word YOU
- ec_word NEED
- ec_word A
- ec_word SPEED_BOOST
- ec_word QUES
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SPEED_BOOST
+ .2byte EC_WORD_QUES
@ win speech
- ec_word YOU
- ec_word NEED
- ec_word TO
- ec_word SHOW
- ec_word MORE
- ec_word GUTS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_GUTS
@ loss speech
- ec_word OH
- ec_word YOU
- ec_word EXCL
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
.2byte -1
.2byte -1
.2byte -1
@@ -6972,51 +6972,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_5
.string "FINN$", 8
@ pre-battle speech
- ec_word NOT
- ec_word ANOTHER
- ec_word TRAINER
- ec_word BATTLE
- ec_word ELLIPSIS
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
@ win speech
- ec_word WON_T
- ec_word THIS
- ec_word EVER
- ec_word END
- ec_word QUES
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_EVER
+ .2byte EC_WORD_END
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word I
- ec_word FINALLY
- ec_word GET
- ec_word TO
- ec_move2 REST
- ec_word A_LITTLE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_FINALLY
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(REST)
+ .2byte EC_WORD_A_LITTLE
.4byte gBattleFrontierTrainerMons_Finn
@ 269
.4byte TRAINER_CLASS_TRIATHLETE_5
.string "SAMIR$", 8
@ pre-battle speech
- ec_word I
- ec_move2 DIVE
- ec_word BELOW
- ec_word THE
- ec_move2 SURF
- ec_word EXCL
-@ win speech
- ec_word YAHOO
- ec_word TAKE
- ec_word A
- ec_move2 DIVE
- ec_word YOU
- ec_word EXCL
-@ loss speech
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word SINK
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_BELOW
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(SURF)
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(DIVE)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SINK
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gBattleFrontierTrainerMons_Samir
@@ -7024,700 +7024,700 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_TRIATHLETE_6
.string "FIONA$", 8
@ pre-battle speech
- ec_word DID
- ec_word YOU
- ec_word LIMBER
- ec_word UP
- ec_word BEFORE
- ec_word QUES
-@ win speech
- ec_word YOU
- ec_word NEED
- ec_word TO
- ec_word BE
- ec_word MORE
- ec_word READY
-@ loss speech
- ec_word BEING
- ec_word LIMBER
- ec_word DIDN_T
- ec_word WORK
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIMBER
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_BEFORE
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_READY
+@ loss speech
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_LIMBER
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.4byte gBattleFrontierTrainerMons_Fiona
@ 271
.4byte TRAINER_CLASS_TRIATHLETE_6
.string "GLORIA$", 8
@ pre-battle speech
- ec_word I
- ec_word LIKE
- ec_word TO
- ec_word ATTACK
- ec_word WITH
- ec_word SUCTION_CUPS
-@ win speech
- ec_word GIGGLE
- ec_word ELLIPSIS
- ec_word IT_S
- ec_word OVER
- ec_word FOR
- ec_word YOU
-@ loss speech
- ec_word I
- ec_word DON_T
- ec_word GET
- ec_word HOW
- ec_word SUCTION_CUPS
- ec_word WORK
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ATTACK
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_SUCTION_CUPS
+@ win speech
+ .2byte EC_WORD_GIGGLE
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_SUCTION_CUPS
+ .2byte EC_WORD_WORK
.4byte gBattleFrontierTrainerMons_Gloria
@ 272
.4byte TRAINER_CLASS_TRIATHLETE_1
.string "NICO$", 8
@ pre-battle speech
- ec_word LIKE
- ec_word A
- ec_move1 SONIC_BOOM
- ec_word I_VE_ARRIVED
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SONIC_BOOM)
+ .2byte EC_WORD_I_VE_ARRIVED
.2byte -1
.2byte -1
@ win speech
- ec_word SORRY
- ec_word TO
- ec_word MAKE
- ec_word YOU
- ec_word SO
- ec_word DOWNCAST
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_DOWNCAST
@ loss speech
- ec_word I_AM
- ec_word GOING
- ec_word WITH
- ec_word A
- ec_move2 SUPERSONIC
- ec_word SPEED_BOOST
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(SUPERSONIC)
+ .2byte EC_WORD_SPEED_BOOST
.4byte gBattleFrontierTrainerMons_Nico
@ 273
.4byte TRAINER_CLASS_TRIATHLETE_1
.string "JEREMY$", 8
@ pre-battle speech
- ec_word A
- ec_word POKEMON
- ec_word MASTER
- ec_word THAT_S
- ec_word MY
- ec_word DREAM
-@ win speech
- ec_word MY
- ec_word DREAM
- ec_word ISN_T
- ec_word FAR
- ec_word OFF
- ec_word EXCL
-@ loss speech
- ec_word WHAT
- ec_word I
- ec_word DREAM
- ec_word ISN_T
- ec_word HAPPENING
- ec_word ELLIPSIS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_MASTER
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_DREAM
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_DREAM
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_FAR
+ .2byte EC_WORD_OFF
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DREAM
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_HAPPENING
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Jeremy
@ 274
.4byte TRAINER_CLASS_TRIATHLETE_2
.string "CAITLIN$", 8
@ pre-battle speech
- ec_word DON_T
- ec_word YOU
- ec_word THINK
- ec_word I_AM
- ec_word CUTE
- ec_word QUES
-@ win speech
- ec_word THERE
- ec_word IS
- ec_word MORE
- ec_word TO_ME
- ec_word THAN
- ec_word CUTENESS
-@ loss speech
- ec_word MY
- ec_word CUTE_CHARM
- ec_word DOESN_T
- ec_move2 ATTRACT
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_THAN
+ .2byte EC_WORD_CUTENESS
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CUTE_CHARM
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_MOVE2(ATTRACT)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Caitlin
@ 275
.4byte TRAINER_CLASS_TRIATHLETE_2
.string "REENA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word ALWAYS
- ec_word HAPPY
- ec_word HAPPY
- ec_word HAPPY
- ec_word EXCL
-@ win speech
- ec_word OH
- ec_word YAY
- ec_word EXCL
- ec_word YAHOO
- ec_word FOR
- ec_word ME
-@ loss speech
- ec_word YAHOO
- ec_word EXCL
- ec_word I_AM
- ec_word HAPPY
- ec_word FOR
- ec_word YOU
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_EXCL
+@ win speech
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_YAY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
+@ loss speech
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
.4byte gBattleFrontierTrainerMons_Reena
@ 276
.4byte TRAINER_CLASS_BUG_MANIAC
.string "AVERY$", 8
@ pre-battle speech
- ec_word I_VE
- ec_word GOT
- ec_word A_LOT
- ec_word OF
- ec_word BUG
- ec_word POKEMON
-@ win speech
- ec_word MY
- ec_word BUG
- ec_word POKEMON
- ec_word ARE
- ec_word ALL
- ec_word UNBELIEVABLE
-@ loss speech
- ec_word MY
- ec_word BUG
- ec_word POKEMON
- ec_word ARE
- ec_word ALL
- ec_word UPSIDE_DOWN
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_A_LOT
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_UNBELIEVABLE
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_UPSIDE_DOWN
.4byte gBattleFrontierTrainerMons_Avery
@ 277
.4byte TRAINER_CLASS_BUG_MANIAC
.string "LIAM$", 8
@ pre-battle speech
- ec_word WE
- ec_word REALLY
- ec_word DISLIKE
- ec_word FIRE
- ec_word AND
- ec_word FLYING
-@ win speech
- ec_word BUG
- ec_word POKEMON
- ec_word AREN_T
- ec_word BAD
- ec_word HEY_QUES
- .2byte -1
-@ loss speech
- ec_word YOU
- ec_word KNOW
- ec_word WHAT
- ec_word WE
- ec_word DISLIKE
- ec_word HEY_QUES
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_FIRE
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_FLYING
+@ win speech
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_HEY_QUES
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_HEY_QUES
.4byte gBattleFrontierTrainerMons_Liam
@ 278
.4byte TRAINER_CLASS_FISHERMAN
.string "THEO$", 8
@ pre-battle speech
- ec_word FISHING
- ec_word IS
- ec_word MY
- ec_word CHOICE
- ec_word IN
- ec_word LIFE
-@ win speech
- ec_word WATER
- ec_word POKEMON
- ec_move2 ATTRACT
- ec_word ME
- ec_word WITHOUT
- ec_word END
-@ loss speech
- ec_word DON_T
- ec_word COUNT_ON
- ec_word THAT
- ec_word HAPPENING
- ec_word ANOTHER
- ec_word TIME
+ .2byte EC_WORD_FISHING
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CHOICE
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_LIFE
+@ win speech
+ .2byte EC_WORD_WATER
+ .2byte EC_WORD_POKEMON
+ .2byte EC_MOVE2(ATTRACT)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_END
+@ loss speech
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_COUNT_ON
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_HAPPENING
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_TIME
.4byte gBattleFrontierTrainerMons_Theo
@ 279
.4byte TRAINER_CLASS_FISHERMAN
.string "BAILEY$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word AN
- ec_word ADULT
- ec_word I
- ec_word BATTLE
- ec_word EASY
-@ win speech
- ec_word I_AM
- ec_word AN
- ec_word ADULT
- ec_word I
- ec_move2 SWALLOW
- ec_word JOY
-@ loss speech
- ec_word I_AM
- ec_word AN
- ec_word ADULT
- ec_word I
- ec_move2 SWALLOW
- ec_move2 FRUSTRATION
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_EASY
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(SWALLOW)
+ .2byte EC_WORD_JOY
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_ADULT
+ .2byte EC_WORD_I
+ .2byte EC_MOVE2(SWALLOW)
+ .2byte EC_MOVE2(FRUSTRATION)
.4byte gBattleFrontierTrainerMons_Bailey
@ 280
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "HUGO$", 8
@ pre-battle speech
- ec_word I
- ec_word TRY
- ec_word THE
- ec_word BEST
- ec_word I
- ec_word CAN
-@ win speech
- ec_word I
- ec_word CAN_WIN
- ec_word IF
- ec_word I
- ec_word TRY
- ec_word ENOUGH
-@ loss speech
- ec_word I
- ec_word DID
- ec_word TRY
- ec_word DIDN_T
- ec_word I
- ec_word QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_TRY
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_WIN
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_I
+ .2byte EC_WORD_TRY
+ .2byte EC_WORD_ENOUGH
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_TRY
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_I
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Hugo
@ 281
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "BRYCE$", 8
@ pre-battle speech
- ec_word I_WAS
- ec_word ON
- ec_word VACATION
- ec_word UNTIL
- ec_word ONLY
- ec_word YESTERDAY
-@ win speech
- ec_word I
- ec_word HAVEN_T
- ec_word LOST
- ec_word MY
- ec_word SKILL
- ec_word YET
-@ loss speech
- ec_word THAT_S
- ec_word IT
- ec_word ELLIPSIS
- ec_word I
- ec_word NEED
- ec_word SLEEP
+ .2byte EC_WORD_I_WAS
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_VACATION
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_YESTERDAY
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVEN_T
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SKILL
+ .2byte EC_WORD_YET
+@ loss speech
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_SLEEP
.4byte gBattleFrontierTrainerMons_Bryce
@ 282
.4byte TRAINER_CLASS_COLLECTOR
.string "GIDEON$", 8
@ pre-battle speech
- ec_word WHAT_S_UP_QUES
- ec_word YOU
- ec_word THINK
- ec_word I_AM
- ec_word SCARY
- ec_word QUES
-@ win speech
- ec_word I_AM
- ec_word COOL
- ec_word BUT
- ec_word NOT
- ec_word SCARY
- ec_word EXCL
-@ loss speech
- ec_word LOOK
- ec_word AT
- ec_word MY
- ec_word FABULOUS
- ec_word FASHION
- ec_word SENSE
+ .2byte EC_WORD_WHAT_S_UP_QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_SCARY
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FABULOUS
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
.4byte gBattleFrontierTrainerMons_Gideon
@ 283
.4byte TRAINER_CLASS_COLLECTOR
.string "TRISTON$", 8
@ pre-battle speech
- ec_word I
- ec_word WOULD
- ec_word RATHER
- ec_word LOOK
- ec_word AT
- ec_word POKEMON
-@ win speech
- ec_word HUH_QUES
- ec_word YOU
- ec_word MEAN
- ec_word I
- ec_word WON
- ec_word QUES_EXCL
-@ loss speech
- ec_word SEE
- ec_word QUES
- .2byte -1
- ec_word I
- ec_word ALWAYS
- ec_word LOSE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_RATHER
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_POKEMON
+@ win speech
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_QUES_EXCL
+@ loss speech
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte -1
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_LOSE
.4byte gBattleFrontierTrainerMons_Triston
@ 284
.4byte TRAINER_CLASS_GUITARIST
.string "CHARLES$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word HOPELESS
- ec_word TO
- ec_move2 STRUGGLE
- ec_word WITH
- ec_word ME
-@ win speech
- ec_move1 SUBMISSION
- ec_word WAS
- ec_word YOUR
- ec_word ONLY
- ec_word CHOICE
- .2byte -1
-@ loss speech
- ec_word I_AM
- ec_word GOING
- ec_word DOWN
- ec_word DOWN
- ec_word DOWN
- ec_word EXCL
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_HOPELESS
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(STRUGGLE)
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_ME
+@ win speech
+ .2byte EC_MOVE(SUBMISSION)
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_CHOICE
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Charles
@ 285
.4byte TRAINER_CLASS_GUITARIST
.string "RAYMOND$", 8
@ pre-battle speech
- ec_word WANT
- ec_word TO
- ec_word HEAR
- ec_word MY
- ec_word SONG
- ec_word QUES
-@ win speech
- ec_word SATISFIED
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word SATISFIED
- ec_word IS
- ec_word WHAT
- ec_word I
- ec_word CAN_T
- ec_word BE
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_HEAR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SONG
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_SATISFIED
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_SATISFIED
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BE
.4byte gBattleFrontierTrainerMons_Raymond
@ 286
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "DIRK$", 8
@ pre-battle speech
- ec_word FLYING
- ec_word POKEMON
- ec_word ARE
- ec_word ABOVE
- ec_word THE
- ec_move2 REST
-@ win speech
- ec_word YOU
- ec_word CAN_T_WIN
- ec_word EXCL
- ec_word FLYING
- ec_word POKEMON
- ec_word RULE
-@ loss speech
- ec_word AREN_T
- ec_word THERE
- ec_word MORE
- ec_word FLYING
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_FLYING
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_ABOVE
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(REST)
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T_WIN
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_FLYING
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_RULE
+@ loss speech
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_FLYING
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Dirk
@ 287
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "HAROLD$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word APPEAL
- ec_word TO
- ec_word YOU
- ec_word QUES
-@ win speech
- ec_word YOU
- ec_word DO
- ec_word LIKE
- ec_word MY
- ec_word POKEMON
- ec_word QUES
-@ loss speech
- ec_word SO
- ec_word YOU
- ec_word DISLIKE
- ec_word MY
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_APPEAL
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
+@ loss speech
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Harold
@ 288
.4byte TRAINER_CLASS_SAILOR
.string "OMAR$", 8
@ pre-battle speech
- ec_word LET_ME_WIN
- ec_word IN
- ec_move1 RETURN
- ec_word FOR
- ec_word A
- ec_move2 PRESENT
-@ win speech
- ec_word HERE
- ec_word YOU
- ec_word ARE
- ec_word SOME
- ec_move2 TOXIC
- ec_word SWEETS
-@ loss speech
- ec_word YOUR
- ec_move2 PRESENT
- ec_word QUES
- ec_word WHAT
- ec_word FOR
- ec_word QUES_EXCL
+ .2byte EC_WORD_LET_ME_WIN
+ .2byte EC_WORD_IN
+ .2byte EC_MOVE(RETURN)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(PRESENT)
+@ win speech
+ .2byte EC_WORD_HERE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SOME
+ .2byte EC_MOVE2(TOXIC)
+ .2byte EC_WORD_SWEETS
+@ loss speech
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(PRESENT)
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_QUES_EXCL
.4byte gBattleFrontierTrainerMons_Omar
@ 289
.4byte TRAINER_CLASS_SAILOR
.string "PETER$", 8
@ pre-battle speech
- ec_word I
- ec_word BRAG
- ec_word ABOUT
- ec_word MY
- ec_word HAPPINESS
- ec_word OK_QUES
-@ win speech
- ec_word YOU
- ec_word HAVE
- ec_word TO
- ec_word LISTEN
- ec_word TO_ME
- ec_word BRAG
-@ loss speech
- ec_word I_AM
- ec_word DISAPPOINTED
- ec_word YOU
- ec_word WON_T
- ec_word LISTEN
- ec_word TO_ME
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BRAG
+ .2byte EC_WORD_ABOUT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_HAPPINESS
+ .2byte EC_WORD_OK_QUES
+@ win speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_LISTEN
+ .2byte EC_WORD_TO_ME
+ .2byte EC_WORD_BRAG
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_DISAPPOINTED
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_LISTEN
+ .2byte EC_WORD_TO_ME
.4byte gBattleFrontierTrainerMons_Peter
@ 290
.4byte TRAINER_CLASS_HIKER
.string "DEV$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word LET_S
- ec_word GET
- ec_word A
- ec_word MOVE
- ec_word ON
-@ win speech
- ec_word I
- ec_word GET
- ec_word TO
- ec_word NAP
- ec_word AFTER
- ec_word THAT
-@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word NAP
- ec_word AFTER
- ec_word THAT
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MOVE
+ .2byte EC_WORD_ON
+@ win speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_NAP
+ .2byte EC_WORD_AFTER
+ .2byte EC_WORD_THAT
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_NAP
+ .2byte EC_WORD_AFTER
+ .2byte EC_WORD_THAT
.4byte gBattleFrontierTrainerMons_Dev
@ 291
.4byte TRAINER_CLASS_HIKER
.string "COREY$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word TEACH
- ec_word YOU
- ec_word HOW
- ec_word TOUGH
- ec_word I_AM
-@ win speech
- ec_word LOOK
- ec_word AT
- ec_word ME
- ec_word MAKE
- ec_word A
- ec_move1 BRICK_BREAK
-@ loss speech
- ec_word MY
- ec_move2 FRUSTRATION
- ec_word IS
- ec_word CLOSE
- ec_word TO
- ec_move2 ERUPTION
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_TEACH
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_I_AM
+@ win speech
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(BRICK_BREAK)
+@ loss speech
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(FRUSTRATION)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_CLOSE
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE2(ERUPTION)
.4byte gBattleFrontierTrainerMons_Corey
@ 292
.4byte TRAINER_CLASS_KINDLER
.string "ANDRE$", 8
@ pre-battle speech
- ec_word NOW
- ec_word THIS
- ec_word IS
- ec_word A
- ec_word PERFECT
- ec_word FLAME_BODY
-@ win speech
- ec_word LOOK
- ec_word AT
- ec_word MY
- ec_word FIERY
- ec_word DANCE
- ec_word EXCL
-@ loss speech
- ec_word YOU
- ec_word WANT
- ec_word AN
- ec_move2 EXPLOSION
- ec_word HERE
- ec_word QUES
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_PERFECT
+ .2byte EC_WORD_FLAME_BODY
+@ win speech
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FIERY
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE2(EXPLOSION)
+ .2byte EC_WORD_HERE
+ .2byte EC_WORD_QUES
.4byte gBattleFrontierTrainerMons_Andre
@ 293
.4byte TRAINER_CLASS_KINDLER
.string "FERRIS$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NO_1
- ec_word IN
- ec_word THE
- ec_word OLD
- ec_word CLASS
-@ win speech
- ec_word NO_1
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
- ec_word EXCL
- .2byte -1
-@ loss speech
- ec_word I_AM
- ec_word NOT
- ec_word NO_1
- ec_word ANY
- ec_word MORE
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_CLASS
+@ win speech
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_EXCL
+ .2byte -1
+@ loss speech
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_ELLIPSIS
.4byte gBattleFrontierTrainerMons_Ferris
@ 294
.4byte TRAINER_CLASS_PARASOL_LADY
.string "ALIVIA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word FEELING
- ec_word GIDDY
- ec_word SO
- ec_word SHOULD
- ec_word YOU
-@ win speech
- ec_word IT
- ec_word WAS
- ec_word ALL
- ec_word TOGETHER
- ec_word TOO
- ec_word EASY
-@ loss speech
- ec_word I
- ec_word WILL
- ec_word GIDDY
- ec_word UP
- ec_word AND
- ec_word AWAY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_GIDDY
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_YOU
+@ win speech
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_TOGETHER
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_EASY
+@ loss speech
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GIDDY
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_AWAY
.4byte gBattleFrontierTrainerMons_Alivia
@ 295
.4byte TRAINER_CLASS_PARASOL_LADY
.string "PAIGE$", 8
@ pre-battle speech
- ec_word LET_S
- ec_word ENJOY
- ec_word OUR
- ec_word BATTLE
- ec_word TOGETHER
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_OUR
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_TOGETHER
.2byte -1
@ win speech
- ec_word THAT_S_IT_EXCL
+ .2byte EC_WORD_THAT_S_IT_EXCL
.2byte -1
.2byte -1
- ec_word THANK_YOU
- ec_word VERY
- ec_word MUCH
+ .2byte EC_WORD_THANK_YOU
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_MUCH
@ loss speech
- ec_word THAT_S_IT_EXCL
+ .2byte EC_WORD_THAT_S_IT_EXCL
.2byte -1
.2byte -1
- ec_word DO
- ec_word GO
- ec_word ON
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ON
.4byte gBattleFrontierTrainerMons_Paige
@ 296
.4byte TRAINER_CLASS_BEAUTY
.string "ANYA$", 8
@ pre-battle speech
- ec_word I
- ec_word DISLIKE
- ec_word OH
- ec_word SO
- ec_word PRETTY
- ec_word FASHION
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_FASHION
@ win speech
- ec_word FASHION
- ec_word SHOULD
- ec_word MATCH
- ec_word THE
- ec_word PERSON
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_MATCH
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_PERSON
.2byte -1
@ loss speech
- ec_word PRETTY
- ec_word COULD
- ec_word BE
- ec_word GOOD
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_GOOD
.2byte -1
.2byte -1
.4byte gBattleFrontierTrainerMons_Anya
@@ -7726,51 +7726,51 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_BEAUTY
.string "DAWN$", 8
@ pre-battle speech
- ec_word I
- ec_word GO
- ec_word ALL
- ec_word OUT
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word DON_T
- ec_word BE
- ec_word A
- ec_word BABY
- ec_word EXCL
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BABY
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word YOU
- ec_word WON
- ec_word EXCL
- ec_word MOVE
- ec_word ON
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_MOVE
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_EXCL
.4byte gBattleFrontierTrainerMons_Dawn
@ 298
.4byte TRAINER_CLASS_AROMA_LADY
.string "ABBY$", 8
@ pre-battle speech
- ec_word I
- ec_word LIKE
- ec_word A
- ec_word TRAINER
- ec_word THAT_S
- ec_word REFRESHING
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_REFRESHING
@ win speech
- ec_word VICTORY
- ec_word HAS
- ec_word A
- ec_move1 SWEET_SCENT
- ec_word EXCL
+ .2byte EC_WORD_VICTORY
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SWEET_SCENT)
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word WHAT
- ec_word AN
- ec_word AWFUL
- ec_word STENCH
- ec_word EXCL
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_STENCH
+ .2byte EC_WORD_EXCL
.2byte -1
.4byte gBattleFrontierTrainerMons_Abby
@@ -7778,24 +7778,24 @@ gBattleFrontierTrainers:: @ 85D5ACC
.4byte TRAINER_CLASS_AROMA_LADY
.string "GRETEL$", 8
@ pre-battle speech
- ec_word I
- ec_word CAUSE
- ec_move1 OUTRAGE
- ec_word AS
- ec_word A
- ec_word TRAINER
-@ win speech
- ec_word IT_S
- ec_word ONLY
- ec_word NATURAL
- ec_word SEE_YA
- ec_word BYE_BYE
- ec_word EXCL
-@ loss speech
- ec_word IT_S
- ec_word HARD
- ec_word TO
- ec_word BELIEVE
- ec_word BUT
- ec_word CONGRATS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAUSE
+ .2byte EC_MOVE(OUTRAGE)
+ .2byte EC_WORD_AS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRAINER
+@ win speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_NATURAL
+ .2byte EC_WORD_SEE_YA
+ .2byte EC_WORD_BYE_BYE
+ .2byte EC_WORD_EXCL
+@ loss speech
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_HARD
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_CONGRATS
.4byte gBattleFrontierTrainerMons_Gretel
diff --git a/data/battle_frontier/fallarbor_battle_tent_trainers.inc b/data/battle_frontier/fallarbor_battle_tent_trainers.inc
index 049cca1ad..2574b7d86 100644
--- a/data/battle_frontier/fallarbor_battle_tent_trainers.inc
+++ b/data/battle_frontier/fallarbor_battle_tent_trainers.inc
@@ -4,103 +4,103 @@ gFallarborBattleTentTrainers:: @ 85DF084
.4byte TRAINER_CLASS_AROMA_LADY
.string "AMBER$", 8
@ pre-battle speech
- ec_word I
- ec_word HAVE
- ec_word TO
- ec_word DIET
- ec_word EVERY
- ec_word DAY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_DIET
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_DAY
@ win speech
- ec_word A
- ec_move1 NIGHTMARE
- ec_word OF
- ec_word SWEETS
- ec_word SHOCKED
- ec_word ME
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(NIGHTMARE)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_SWEETS
+ .2byte EC_WORD_SHOCKED
+ .2byte EC_WORD_ME
@ loss speech
- ec_word IF
- ec_word YOU
- ec_word GIVE_UP
- ec_word YOU
- ec_word WILL
- ec_word LOSE
+ .2byte EC_WORD_IF
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_LOSE
.4byte gFallarborBattleTentTrainerMons_Amber
@ 1
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "JAVIER$", 8
@ pre-battle speech
- ec_word I
- ec_word NEVER
- ec_word EVER
- ec_word HAVE
- ec_word ENOUGH
- ec_word MONEY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEVER
+ .2byte EC_WORD_EVER
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_MONEY
@ win speech
- ec_word I
- ec_word WON
- ec_word BUT
- ec_word I
- ec_word NEED
- ec_word MONEY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_MONEY
@ loss speech
- ec_word I
- ec_word NEED
- ec_word MONEY
- ec_word FOR
- ec_word A
- ec_word BIKE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_MONEY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BIKE
.4byte gFallarborBattleTentTrainerMons_Javier
@ 2
.4byte TRAINER_CLASS_TUBER_1
.string "NATALIE$", 8
@ pre-battle speech
- ec_word THE
- ec_word WAY
- ec_word I
- ec_word BATTLE
- ec_word IS
- ec_word WEIRD
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WAY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_WEIRD
@ win speech
- ec_word YOU_RE
- ec_word MUCH
- ec_word TOO_WEAK
- ec_word FOR
- ec_word THIS
- ec_word PLACE
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_PLACE
@ loss speech
- ec_word GIVE_ME
- ec_word AN
- ec_word EASY
- ec_word MATCH
- ec_word NEXT
- ec_word TIME
+ .2byte EC_WORD_GIVE_ME
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_MATCH
+ .2byte EC_WORD_NEXT
+ .2byte EC_WORD_TIME
.4byte gFallarborBattleTentTrainerMons_Natalie
@ 3
.4byte TRAINER_CLASS_TUBER_2
.string "TREVE$", 8
@ pre-battle speech
- ec_word LOOK
- ec_word AT
- ec_word MY
- ec_move2 METRONOME
- ec_word AND
- ec_word SLEEP
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(METRONOME)
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_SLEEP
@ win speech
- ec_word YEAH
- ec_word EXCL
- ec_move1 HYPNOSIS
- ec_word IS
- ec_word TOTALLY
- ec_word GREAT
+ .2byte EC_WORD_YEAH
+ .2byte EC_WORD_EXCL
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_WORD_GREAT
@ loss speech
- ec_word MY
- ec_move1 HYPNOSIS
- ec_word DIDN_T
- ec_word WORK
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(HYPNOSIS)
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gFallarborBattleTentTrainerMons_Treve
@@ -108,77 +108,77 @@ gFallarborBattleTentTrainers:: @ 85DF084
.4byte TRAINER_CLASS_LADY
.string "ARIANNA$", 8
@ pre-battle speech
- ec_word IF_I_WIN
- ec_word GIVE_ME
- ec_word POKEMON
- ec_word FOR
- ec_word MY
- ec_word COLLECTION
+ .2byte EC_WORD_IF_I_WIN
+ .2byte EC_WORD_GIVE_ME
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_COLLECTION
@ win speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word TOO_WEAK
- ec_word TO
- ec_word COLLECT
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_COLLECT
@ loss speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word SOMETHING
- ec_word ELSE
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SOMETHING
+ .2byte EC_WORD_ELSE
+ .2byte EC_WORD_ELLIPSIS
.4byte gFallarborBattleTentTrainerMons_Arianna
@ 5
.4byte TRAINER_CLASS_BEAUTY
.string "JADYN$", 8
@ pre-battle speech
- ec_word MY
- ec_word NAME
- ec_word IS
- ec_word REALLY
- ec_word A
- ec_word MYSTERY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NAME
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MYSTERY
@ win speech
- ec_word MY
- ec_word NAME
- ec_word GOES
- ec_word ON
- ec_word A
- ec_word MYSTERY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NAME
+ .2byte EC_WORD_GOES
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MYSTERY
@ loss speech
- ec_word MY
- ec_word NAME
- ec_word QUES
- ec_word I_AM
- ec_word YOUR
- ec_word MOTHER
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_NAME
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_MOTHER
.4byte gFallarborBattleTentTrainerMons_Jadyn
@ 6
.4byte TRAINER_CLASS_RICH_BOY
.string "GERARDO$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word THE
- ec_word BEST
- ec_word HERO
- ec_word EVER
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_HERO
+ .2byte EC_WORD_EVER
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word SEE
- ec_word WHAT
- ec_word I
- ec_word MEAN
- ec_word QUES
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word HUH_QUES
- ec_word YOU
- ec_word WERE
- ec_word RIGHT
- ec_word QUES
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WERE
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gFallarborBattleTentTrainerMons_Gerardo
@@ -186,285 +186,285 @@ gFallarborBattleTentTrainers:: @ 85DF084
.4byte TRAINER_CLASS_POKEMANIAC
.string "JONN$", 8
@ pre-battle speech
- ec_word THE
- ec_word WORLD
- ec_move2 SUPERPOWER
- ec_move2 STOMP
- ec_word CONTEST
- ec_word EXCL_EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WORLD
+ .2byte EC_MOVE2(SUPERPOWER)
+ .2byte EC_MOVE2(STOMP)
+ .2byte EC_WORD_CONTEST
+ .2byte EC_WORD_EXCL_EXCL
@ win speech
- ec_word I_AM
- ec_word NO_1
- ec_word EXCL_EXCL
- ec_word HEAR
- ec_word ME
- ec_move2 ROAR
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_HEAR
+ .2byte EC_WORD_ME
+ .2byte EC_MOVE2(ROAR)
@ loss speech
- ec_word I
- ec_word GIVE_UP
- ec_word EXCL
- ec_word YOU_RE
- ec_word NO_1
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_EXCL
.4byte gFallarborBattleTentTrainerMons_Jonn
@ 8
.4byte TRAINER_CLASS_SWIMMER_M
.string "ESTEBAN$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word A
- ec_word GOOD
- ec_word TRAINER
- ec_word QUES
- ec_word UNBELIEVABLE
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_UNBELIEVABLE
@ win speech
- ec_word YOU_RE
- ec_word SOME
- ec_word PUSHOVER
- ec_word OF
- ec_word A
- ec_word TRAINER
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_PUSHOVER
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRAINER
@ loss speech
- ec_word YOU_RE
- ec_word MUCH
- ec_word TOO
- ec_word MUCH
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
.4byte gFallarborBattleTentTrainerMons_Esteban
@ 9
.4byte TRAINER_CLASS_CAMPER
.string "JAMESON$", 8
@ pre-battle speech
- ec_word MY
- ec_word POKEMON
- ec_word ARE
- ec_word SILKY
- ec_word SMOOTH
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_SILKY
+ .2byte EC_WORD_SMOOTH
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word MY
- ec_word SILKY
- ec_word SMOOTH
- ec_word POKEMON
- ec_word RULE
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SILKY
+ .2byte EC_WORD_SMOOTH
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_RULE
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word MY
- ec_word POKEMON
- ec_move2 STRUGGLE
- ec_word IN
- ec_word YOUR
- ec_word STICKY_HOLD
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_MOVE2(STRUGGLE)
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_STICKY_HOLD
.4byte gFallarborBattleTentTrainerMons_Jameson
@ 10
.4byte TRAINER_CLASS_BUG_MANIAC
.string "ALANZO$", 8
@ pre-battle speech
- ec_move2 FORESIGHT
- ec_word IS
- ec_word A
- ec_word POWER
- ec_word I
- ec_word HAVE
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
@ win speech
- ec_word YOU_RE
- ec_word OBLIVIOUS
- ec_word ABOUT
- ec_move2 FORESIGHT
- ec_word EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_OBLIVIOUS
+ .2byte EC_WORD_ABOUT
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word MY
- ec_move2 FORESIGHT
- ec_word IS
- ec_word ALWAYS
- ec_word RIGHT
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_ALWAYS
+ .2byte EC_WORD_RIGHT
+ .2byte EC_WORD_EXCL
.4byte gFallarborBattleTentTrainerMons_Alanzo
@ 11
.4byte TRAINER_CLASS_GENTLEMAN
.string "HOWARD$", 8
@ pre-battle speech
- ec_word YOUR
- ec_word POKEMON
- ec_word CAN_T
- ec_word BEAT
- ec_word ME
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_ME
.2byte -1
@ win speech
- ec_word YOU
- ec_word COULDN_T
- ec_word WIN
- ec_word COULD
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_COULDN_T
+ .2byte EC_WORD_WIN
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word YOU
- ec_word WOULD
- ec_word GO
- ec_word ALL
- ec_word OUT
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_ELLIPSIS
.4byte gFallarborBattleTentTrainerMons_Howard
@ 12
.4byte TRAINER_CLASS_GUITARIST
.string "CONRAD$", 8
@ pre-battle speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word PRETTY
- ec_word WILD
- ec_word EXCL
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_WILD
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word WHOAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_WHOAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word LET_S
- ec_word DANCE
- ec_word EXCL
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_DANCE
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word MY
- ec_word MUSIC
- ec_word WILL
- ec_word PLAY
- ec_word ON
- ec_word ELLIPSIS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_PLAY
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_ELLIPSIS
.4byte gFallarborBattleTentTrainerMons_Conrad
@ 13
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "MAKENNA$", 8
@ pre-battle speech
- ec_word SHOW
- ec_word ME
- ec_word THAT
- ec_word YOU
- ec_word MEAN
- ec_word IT
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_IT
@ win speech
- ec_word THAT_S
- ec_word WHY
- ec_word I
- ec_word STUDY
- ec_word EVERY
- ec_word DAY
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_DAY
@ loss speech
- ec_word AWW
- ec_word I
- ec_word STUDY
- ec_word EVERY
- ec_word DAY
- ec_word TOO
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_I
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_EVERY
+ .2byte EC_WORD_DAY
+ .2byte EC_WORD_TOO
.4byte gFallarborBattleTentTrainerMons_Makenna
@ 14
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "BRAYAN$", 8
@ pre-battle speech
- ec_word CAN
- ec_word YOU
- ec_word SEE
- ec_word MY
- ec_word POWER
- ec_word QUES
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POWER
+ .2byte EC_WORD_QUES
@ win speech
- ec_word HOW
- ec_word BORING
- ec_word ELLIPSIS
- ec_word THIS
- ec_word IS
- ec_word GOOD_BYE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_BORING
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_GOOD_BYE
@ loss speech
- ec_word AM
- ec_word I
- ec_word THE
- ec_word WEAK
- ec_word TRAINER
- ec_word QUES
+ .2byte EC_WORD_AM
+ .2byte EC_WORD_I
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_TRAINER
+ .2byte EC_WORD_QUES
.4byte gFallarborBattleTentTrainerMons_Brayan
@ 15
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "MARIANA$", 8
@ pre-battle speech
- ec_word A
- ec_word LIE
- ec_word CAN
- ec_word BE
- ec_word KIND
- ec_word ELLIPSIS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LIE
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_ELLIPSIS
@ win speech
- ec_word THIS
- ec_word IS
- ec_word LIKE
- ec_word THE
- ec_word SUNDAY
- ec_word COMICS
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_SUNDAY
+ .2byte EC_WORD_COMICS
@ loss speech
- ec_word THIS
- ec_word IS
- ec_word LIKE
- ec_word FROM
- ec_word A
- ec_word MOVIE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MOVIE
.4byte gFallarborBattleTentTrainerMons_Mariana
@ 16
.4byte TRAINER_CLASS_POKEFAN_1
.string "SHELDON$", 8
@ pre-battle speech
- ec_word A
- ec_word POKEMON
- ec_word TEACHER
- ec_word GETS
- ec_word NO
- ec_move2 REST
+ .2byte EC_WORD_A
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_TEACHER
+ .2byte EC_WORD_GETS
+ .2byte EC_WORD_NO
+ .2byte EC_MOVE2(REST)
@ win speech
- ec_word MY
- ec_word SMARTNESS
- ec_word GETS
- ec_word ME
- ec_word EASY
- ec_word WINS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SMARTNESS
+ .2byte EC_WORD_GETS
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_WINS
@ loss speech
- ec_word I
- ec_word HAVE
- ec_word TO
- ec_word GO
- ec_word WORK
- ec_word BYE_BYE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_BYE_BYE
.4byte gFallarborBattleTentTrainerMons_Sheldon
@ 17
.4byte TRAINER_CLASS_POKEFAN_2
.string "GIANNA$", 8
@ pre-battle speech
- ec_word AHAHA
- ec_word YES
- ec_word EXCL
- ec_word LOVEY_DOVEY
- ec_word POKEMON
- ec_word WORLD
+ .2byte EC_WORD_AHAHA
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_LOVEY_DOVEY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_WORLD
@ win speech
- ec_word MY
- ec_word SHINE
- ec_word IS
- ec_word MAKING
- ec_word THINGS
- ec_word BETTER
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SHINE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_THINGS
+ .2byte EC_WORD_BETTER
@ loss speech
- ec_word DO
- ec_word YOU
- ec_word DISLIKE
- ec_word POKEMON
- ec_word QUES
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gFallarborBattleTentTrainerMons_Gianna
@@ -472,257 +472,257 @@ gFallarborBattleTentTrainers:: @ 85DF084
.4byte TRAINER_CLASS_EXPERT_1
.string "YAHIR$", 8
@ pre-battle speech
- ec_word YOU
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word COME_ON
- ec_word EXCL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word YOU
- ec_word NEED
- ec_word TO
- ec_word TRAIN
- ec_word A_LOT
- ec_word MORE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_TRAIN
+ .2byte EC_WORD_A_LOT
+ .2byte EC_WORD_MORE
@ loss speech
- ec_word NOT
- ec_word ENOUGH
- ec_word ELLIPSIS
- ec_word JUST
- ec_word NOT
- ec_word ENOUGH
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_ENOUGH
.4byte gFallarborBattleTentTrainerMons_Yahir
@ 19
.4byte TRAINER_CLASS_EXPERT_2
.string "BRITNEY$", 8
@ pre-battle speech
- ec_word IT
- ec_word SEEMS
- ec_word THAT
- ec_word YOU_RE
- ec_word QUITE
- ec_word GOOD
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_SEEMS
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_QUITE
+ .2byte EC_WORD_GOOD
@ win speech
- ec_word YOU_RE
- ec_word A
- ec_word LUKEWARM
- ec_word TALENT
- ec_word AT
- ec_word BEST
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LUKEWARM
+ .2byte EC_WORD_TALENT
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_BEST
@ loss speech
- ec_word YOU_RE
- ec_word A
- ec_word COOL
- ec_word HERO
- ec_word AT
- ec_word THIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_HERO
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_THIS
.4byte gFallarborBattleTentTrainerMons_Britney
@ 20
.4byte TRAINER_CLASS_YOUNGSTER
.string "HECTER$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 HIDDEN_POWER
- ec_word IS
- ec_word EXCITING
- ec_word ME
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(HIDDEN_POWER)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word YEEHAW_EXCL
- ec_word LET_S
- ec_word HAVE
- ec_word A
- ec_move2 HIDDEN_POWER
- ec_word PARTY
+ .2byte EC_WORD_YEEHAW_EXCL
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(HIDDEN_POWER)
+ .2byte EC_WORD_PARTY
@ loss speech
- ec_word WAAAH
- ec_word EXCL
- ec_word DON_T
- ec_word YOU
- ec_move2 MIMIC
- ec_word ME
+ .2byte EC_WORD_WAAAH
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(MIMIC)
+ .2byte EC_WORD_ME
.4byte gFallarborBattleTentTrainerMons_Hecter
@ 21
.4byte TRAINER_CLASS_FISHERMAN
.string "TANNOR$", 8
@ pre-battle speech
- ec_word YOU
- ec_word HAVE
- ec_word GOT
- ec_word TO
- ec_word BE
- ec_word JOKING
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_GOT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_JOKING
@ win speech
- ec_word YOU_RE
- ec_word THE
- ec_word BEST
- ec_word AT
- ec_word BEING
- ec_word FUNNY
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_FUNNY
@ loss speech
- ec_word YOU
- ec_word WEREN_T
- ec_word BEING
- ec_word FUNNY
- ec_word AT
- ec_word ALL
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WEREN_T
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_FUNNY
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
.4byte gFallarborBattleTentTrainerMons_Tannor
@ 22
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "BENJI$", 8
@ pre-battle speech
- ec_word YOU
- ec_word DON_T
- ec_word THINK
- ec_word VERY
- ec_word FAST
- ec_word HUH_QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_FAST
+ .2byte EC_WORD_HUH_QUES
@ win speech
- ec_word SORRY
- ec_word EXCL
- ec_word I
- ec_word DIDN_T
- ec_word MEAN
- ec_word YOU
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_YOU
@ loss speech
- ec_word YOU
- ec_word LEFT
- ec_word ME
- ec_word FEELING
- ec_word SAD
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LEFT
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_SAD
+ .2byte EC_WORD_ELLIPSIS
.4byte gFallarborBattleTentTrainerMons_Benji
@ 23
.4byte TRAINER_CLASS_NINJA_BOY
.string "RORY$", 8
@ pre-battle speech
- ec_word DON_T
- ec_word CAUSE
- ec_word AN
- ec_move1 UPROAR
- ec_word YOU
- ec_word EXCL
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_CAUSE
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(UPROAR)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word I
- ec_word DON_T
- ec_word NEED
- ec_word AN
- ec_move1 UPROAR
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(UPROAR)
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word CAUSE
- ec_word AN
- ec_move1 UPROAR
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_CAUSE
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(UPROAR)
.4byte gFallarborBattleTentTrainerMons_Rory
@ 24
.4byte TRAINER_CLASS_PARASOL_LADY
.string "ELEANOR$", 8
@ pre-battle speech
- ec_word I
- ec_word REALLY
- ec_word WANT
- ec_word TO
- ec_word PARTY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PARTY
.2byte -1
@ win speech
- ec_word A
- ec_word TRENDY
- ec_word PARTY
- ec_word WOULD
- ec_word BE
- ec_word REFRESHING
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TRENDY
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_REFRESHING
@ loss speech
- ec_word DON_T
- ec_word YOU
- ec_word LIKE
- ec_word TO
- ec_word PARTY
- ec_word QUES
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_QUES
.4byte gFallarborBattleTentTrainerMons_Eleanor
@ 25
.4byte TRAINER_CLASS_SWIMMER_F
.string "EVELYN$", 8
@ pre-battle speech
- ec_word MY
- ec_word PC
- ec_word IS
- ec_word MY
- ec_word SECRET_BASE
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PC
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SECRET_BASE
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word IT_S
- ec_word ALL
- ec_word SECRET
- ec_word ON
- ec_word MY
- ec_word PC
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PC
@ loss speech
- ec_word NO
- ec_word EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word REJECT
- ec_word THIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REJECT
+ .2byte EC_WORD_THIS
.4byte gFallarborBattleTentTrainerMons_Evelyn
@ 26
.4byte TRAINER_CLASS_PICNICKER
.string "ARIELLE$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word NOT_VERY
- ec_word PRETTY
- ec_word BUT
- ec_word I
- ec_word TRY
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_TRY
@ win speech
- ec_word WE_RE
- ec_word NOT_VERY
- ec_word PRETTY
- ec_word BUT
- ec_word WE_RE
- ec_word GREAT
+ .2byte EC_WORD_WE_RE
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_WE_RE
+ .2byte EC_WORD_GREAT
@ loss speech
- ec_word THAT_WAS
- ec_word PRETTY
- ec_word MEAN
- ec_word OF
- ec_word YOU
- ec_word EXCL
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_PRETTY
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
.4byte gFallarborBattleTentTrainerMons_Arielle
@ 27
.4byte TRAINER_CLASS_SAILOR
.string "CONNAR$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word NOT
- ec_word STRONG
- ec_word ENOUGH
- ec_word FOR
- ec_word THIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_THIS
@ win speech
- ec_word DO
- ec_word YOU
- ec_word THINK
- ec_word YOU_RE
- ec_word OK_QUES
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_THINK
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_OK_QUES
.2byte -1
@ loss speech
- ec_word GOOD_BYE
- ec_word AND
- ec_word THANK_YOU
+ .2byte EC_WORD_GOOD_BYE
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_THANK_YOU
.2byte -1
.2byte -1
.2byte -1
@@ -732,50 +732,50 @@ gFallarborBattleTentTrainers:: @ 85DF084
.4byte TRAINER_CLASS_COLLECTOR
.string "MAURICE$", 8
@ pre-battle speech
- ec_word THERE
- ec_word IS
- ec_word NO
- ec_word RADIO
- ec_word OR
- ec_word TELEVISION
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_RADIO
+ .2byte EC_WORD_OR
+ .2byte EC_WORD_TELEVISION
@ win speech
- ec_word BUT
- ec_word THERE
- ec_word IS
- ec_word A_LOT
- ec_word OF
- ec_word POKEMON
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_THERE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A_LOT
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_POKEMON
@ loss speech
- ec_word I
- ec_word CAN_T
- ec_word ENJOY
- ec_word MYSELF
- ec_word WITHOUT
- ec_word MONEY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_MYSELF
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_MONEY
.4byte gFallarborBattleTentTrainerMons_Maurice
@ 29
.4byte TRAINER_CLASS_LASS
.string "KIANNA$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word GO
- ec_word DEPT_STORE
- ec_word SHOPPING
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_DEPT_STORE
+ .2byte EC_WORD_SHOPPING
@ win speech
- ec_word I
- ec_word DISLIKE
- ec_word SHOPPING
- ec_word ALONE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_SHOPPING
+ .2byte EC_WORD_ALONE
.2byte -1
.2byte -1
@ loss speech
- ec_word WANT
- ec_word TO
- ec_word GO
- ec_word SHOPPING
- ec_word TOGETHER
- ec_word QUES
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_SHOPPING
+ .2byte EC_WORD_TOGETHER
+ .2byte EC_WORD_QUES
.4byte gFallarborBattleTentTrainerMons_Kianna
diff --git a/data/battle_frontier/slateport_battle_tent_trainers.inc b/data/battle_frontier/slateport_battle_tent_trainers.inc
index 00b874c07..9d6900149 100644
--- a/data/battle_frontier/slateport_battle_tent_trainers.inc
+++ b/data/battle_frontier/slateport_battle_tent_trainers.inc
@@ -4,205 +4,205 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_AROMA_LADY
.string "JOLIE$", 8
@ pre-battle speech
- ec_word WHAT
- ec_word WILL
- ec_word I
- ec_word BE
- ec_word TOMORROW
- ec_word QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_TOMORROW
+ .2byte EC_WORD_QUES
@ win speech
- ec_word I_AM
- ec_word FEELING
- ec_word LIKE
- ec_word IT_S
- ec_word FRIDAY
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_FRIDAY
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word I_AM
- ec_word FEELING
- ec_word LIKE
- ec_word IT_S
- ec_word MONDAY
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_MONDAY
+ .2byte EC_WORD_ELLIPSIS
.4byte gSlateportBattleTentTrainerMons_Jolie
@ 1
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "MALACHI$", 8
@ pre-battle speech
- ec_word BAD
- ec_word NEWS
- ec_word EXCL
- ec_word IT_S
- ec_word A
- ec_move1 SAND_TOMB
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_NEWS
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(SAND_TOMB)
@ win speech
- ec_word YEEHAW_EXCL
+ .2byte EC_WORD_YEEHAW_EXCL
.2byte -1
.2byte -1
- ec_word I_VE
- ec_word DONE
- ec_word IT
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_DONE
+ .2byte EC_WORD_IT
@ loss speech
- ec_word I_VE
- ec_word LOST
- ec_word IN
- ec_word THIS
- ec_move1 SAND_TOMB
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THIS
+ .2byte EC_MOVE(SAND_TOMB)
+ .2byte EC_WORD_ELLIPSIS
.4byte gSlateportBattleTentTrainerMons_Malachi
@ 2
.4byte TRAINER_CLASS_TUBER_1
.string "KELSIE$", 8
@ pre-battle speech
- ec_word GO
- ec_word EXCL_EXCL
- ec_word MY
- ec_word BATH
- ec_word POKEMON
- ec_word EXCL_EXCL
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BATH
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_EXCL_EXCL
@ win speech
- ec_word YAHOO
- ec_word EXCL_EXCL
- ec_word MY
- ec_word BATH
- ec_word POKEMON
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BATH
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_EXCL_EXCL
@ loss speech
- ec_word GWAH
- ec_word EXCL_EXCL
- ec_word MY
- ec_word BATH
- ec_word POKEMON
- ec_word EXCL_EXCL
+ .2byte EC_WORD_GWAH
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BATH
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_EXCL_EXCL
.4byte gSlateportBattleTentTrainerMons_Kelsie
@ 3
.4byte TRAINER_CLASS_TUBER_2
.string "DAVON$", 8
@ pre-battle speech
- ec_word YEAH_YEAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YEAH_YEAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word GREAT
- ec_move1 WHIRLPOOL
- ec_word ISN_T_IT_QUES
+ .2byte EC_WORD_GREAT
+ .2byte EC_MOVE(WHIRLPOOL)
+ .2byte EC_WORD_ISN_T_IT_QUES
@ win speech
- ec_word THAT_WAS
- ec_word LIKE
- ec_word A
- ec_move1 WHIRLPOOL
- ec_word YEAH_YEAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(WHIRLPOOL)
+ .2byte EC_WORD_YEAH_YEAH
+ .2byte EC_WORD_EXCL_EXCL
@ loss speech
- ec_word DON_T
- ec_word GET
- ec_move2 BEAT_UP
- ec_word IN
- ec_word THAT
- ec_move1 WHIRLPOOL
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_GET
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THAT
+ .2byte EC_MOVE(WHIRLPOOL)
.4byte gSlateportBattleTentTrainerMons_Davon
@ 4
.4byte TRAINER_CLASS_LADY
.string "GLENDA$", 8
@ pre-battle speech
- ec_word CONVERSATION
- ec_word CAN
- ec_word WAIT
- ec_word UNTIL
- ec_word I
- ec_word WIN
+ .2byte EC_WORD_CONVERSATION
+ .2byte EC_WORD_CAN
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WIN
@ win speech
- ec_word FABULOUS
- ec_word EXCL
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word ROCK
+ .2byte EC_WORD_FABULOUS
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ROCK
@ loss speech
- ec_word NO
- ec_word EXCL
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word WASN_T
- ec_word SERIOUS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WASN_T
+ .2byte EC_WORD_SERIOUS
.4byte gSlateportBattleTentTrainerMons_Glenda
@ 5
.4byte TRAINER_CLASS_BEAUTY
.string "HELENA$", 8
@ pre-battle speech
- ec_word DOES
- ec_word MY
- ec_word BEAUTY
- ec_word INTIMIDATE
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DOES
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BEAUTY
+ .2byte EC_WORD_INTIMIDATE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
@ win speech
- ec_word I_AM
- ec_word SO
- ec_word SORRY
- ec_word BUT
- ec_word YOU_RE
- ec_word BORING
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_BORING
@ loss speech
- ec_word I
- ec_word DO
- ec_word SO
- ec_word ENJOY
- ec_word THIS
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_EXCL
.4byte gSlateportBattleTentTrainerMons_Helena
@ 6
.4byte TRAINER_CLASS_RICH_BOY
.string "RODOLFO$", 8
@ pre-battle speech
- ec_word GO
- ec_word GET
- ec_word A
- ec_pokemon1 WHISCASH
- ec_word FOR
- ec_word ME
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON(WHISCASH)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_ME
@ win speech
- ec_word AWW
- ec_word YOU
- ec_word DON_T
- ec_word HAVE
- ec_word A
- ec_pokemon1 WHISCASH
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON(WHISCASH)
@ loss speech
- ec_word PLEASE
- ec_word I
- ec_word NEED
- ec_word A
- ec_pokemon1 WHISCASH
- ec_word BADLY
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A
+ .2byte EC_POKEMON(WHISCASH)
+ .2byte EC_WORD_BADLY
.4byte gSlateportBattleTentTrainerMons_Rodolfo
@ 7
.4byte TRAINER_CLASS_POKEMANIAC
.string "DAVION$", 8
@ pre-battle speech
- ec_word GRAAAH
- ec_word GRAAAH
- ec_word EXCL_EXCL
- ec_word GRAAAH
- ec_word GRAAAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_GRAAAH
+ .2byte EC_WORD_GRAAAH
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_GRAAAH
+ .2byte EC_WORD_GRAAAH
+ .2byte EC_WORD_EXCL_EXCL
@ win speech
- ec_move2 ROAR
- ec_word EXCL
+ .2byte EC_MOVE2(ROAR)
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_move2 ROAR
- ec_word EXCL_EXCL
+ .2byte EC_MOVE2(ROAR)
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ loss speech
- ec_word URGH
- ec_word WAAAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_URGH
+ .2byte EC_WORD_WAAAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.2byte -1
.2byte -1
@@ -212,285 +212,285 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_SWIMMER_M
.string "KENDALL$", 8
@ pre-battle speech
- ec_word A_LITTLE
- ec_move2 PETAL_DANCE
- ec_word TO
- ec_word PLEASE
- ec_word YOU
- ec_word EXCL
+ .2byte EC_WORD_A_LITTLE
+ .2byte EC_MOVE2(PETAL_DANCE)
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PLEASE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word I
- ec_word DO
- ec_word THIS
- ec_word ONLY
- ec_word FOR
- ec_word WORK
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_WORK
@ loss speech
- ec_word HOW
- ec_word COULD
- ec_word YOU
- ec_move2 POUND
- ec_word ME
- ec_word QUES
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_COULD
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(POUND)
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_QUES
.4byte gSlateportBattleTentTrainerMons_Kendall
@ 9
.4byte TRAINER_CLASS_CAMPER
.string "COLTEN$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word GO
- ec_word RUN
- ec_word AROUND
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_RUN
+ .2byte EC_WORD_AROUND
@ win speech
- ec_word YAY
- ec_word EXCL
- ec_word WANT
- ec_word TO
- ec_word RUN
- ec_word QUES
+ .2byte EC_WORD_YAY
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_RUN
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word A
- ec_word SWIFT_SWIM
- ec_word WOULD
- ec_word BE
- ec_word GOOD
- ec_word TOO
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SWIFT_SWIM
+ .2byte EC_WORD_WOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_TOO
.4byte gSlateportBattleTentTrainerMons_Colten
@ 10
.4byte TRAINER_CLASS_BUG_MANIAC
.string "IRVIN$", 8
@ pre-battle speech
- ec_word HAVE
- ec_word A
- ec_word LOOK
- ec_word AT
- ec_word MY
- ec_move1 CONFUSE_RAY
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(CONFUSE_RAY)
@ win speech
- ec_word YAHOO
- ec_word MY
- ec_move1 CONFUSE_RAY
- ec_word IS
- ec_word THE
- ec_word BEST
+ .2byte EC_WORD_YAHOO
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(CONFUSE_RAY)
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_BEST
@ loss speech
- ec_word GWAH
- ec_word EXCL_EXCL
+ .2byte EC_WORD_GWAH
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word I_AM
- ec_word SORRY
- ec_word EXCL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_EXCL
.4byte gSlateportBattleTentTrainerMons_Irvin
@ 11
.4byte TRAINER_CLASS_GENTLEMAN
.string "SHAUN$", 8
@ pre-battle speech
- ec_word LISTEN
- ec_word ELLIPSIS
- ec_word YOU
- ec_word AREN_T
- ec_word VERY
- ec_word GOOD
+ .2byte EC_WORD_LISTEN
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_AREN_T
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_GOOD
@ win speech
- ec_word YOU
- ec_word SEE
- ec_word QUES
- ec_word I
- ec_word WAS
- ec_word RIGHT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_RIGHT
@ loss speech
- ec_word YES
- ec_word YES
- ec_word ELLIPSIS
- ec_word YOU_RE
- ec_word QUITE
- ec_word SOMETHING
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_QUITE
+ .2byte EC_WORD_SOMETHING
.4byte gSlateportBattleTentTrainerMons_Shaun
@ 12
.4byte TRAINER_CLASS_GUITARIST
.string "KYLER$", 8
@ pre-battle speech
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word QUES
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_QUES
@ win speech
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word YAY
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_YAY
@ loss speech
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word ELLIPSIS_ELLIPSIS_ELLIPSIS
- ec_word WOW
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_ELLIPSIS_ELLIPSIS_ELLIPSIS
+ .2byte EC_WORD_WOW
.4byte gSlateportBattleTentTrainerMons_Kyler
@ 13
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "MAGGIE$", 8
@ pre-battle speech
- ec_pokemon1 VULPIX
- ec_pokemon1 XATU
- ec_pokemon2 UMBREON
- ec_word ELLIPSIS
- ec_word UM
- ec_word ELLIPSIS
+ .2byte EC_POKEMON(VULPIX)
+ .2byte EC_POKEMON(XATU)
+ .2byte EC_POKEMON2(UMBREON)
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_UM
+ .2byte EC_WORD_ELLIPSIS
@ win speech
- ec_pokemon1 NOSEPASS
- ec_word ELLIPSIS
- ec_word UM
- ec_pokemon1 SEVIPER
- ec_word EXCL
+ .2byte EC_POKEMON(NOSEPASS)
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_UM
+ .2byte EC_POKEMON(SEVIPER)
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_pokemon1 NOSEPASS
- ec_word ELLIPSIS
- ec_word UM
- ec_pokemon2 SNORLAX
- ec_word ELLIPSIS
- ec_word UH_OH
+ .2byte EC_POKEMON(NOSEPASS)
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_UM
+ .2byte EC_POKEMON2(SNORLAX)
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_UH_OH
.4byte gSlateportBattleTentTrainerMons_Maggie
@ 14
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "STEPHON$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word GOING
- ec_word TO
- ec_word ENJOY
- ec_word AN
- ec_word EGG
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EGG
@ win speech
- ec_word I
- ec_word WILL
- ec_word ENJOY
- ec_word THIS
- ec_word TASTY
- ec_word VICTORY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_ENJOY
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_VICTORY
@ loss speech
- ec_word AWFUL
- ec_word EXCL_EXCL
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word JUST
- ec_word AWFUL
- ec_word EXCL_EXCL
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_EXCL_EXCL
.4byte gSlateportBattleTentTrainerMons_Stephon
@ 15
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "REBECCA$", 8
@ pre-battle speech
- ec_word THAT
- ec_word EGG
- ec_word HAS
- ec_word A
- ec_word TASTY
- ec_word SHINE
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_EGG
+ .2byte EC_WORD_HAS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_SHINE
@ win speech
- ec_word I
- ec_word CAN_T
- ec_word EXCL
- ec_word SMELL
- ec_word THAT
- ec_word STENCH
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_SMELL
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_STENCH
@ loss speech
- ec_word YOU
- ec_word CAN_T
- ec_word MAKE
- ec_word ME
- ec_word STOP
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_STOP
+ .2byte EC_WORD_ELLIPSIS
.4byte gSlateportBattleTentTrainerMons_Rebecca
@ 16
.4byte TRAINER_CLASS_POKEFAN_1
.string "REGGIE$", 8
@ pre-battle speech
- ec_word POKEMON
- ec_word COME
- ec_word BEFORE
- ec_word MONEY
- ec_word OR
- ec_word FAMILY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_COME
+ .2byte EC_WORD_BEFORE
+ .2byte EC_WORD_MONEY
+ .2byte EC_WORD_OR
+ .2byte EC_WORD_FAMILY
@ win speech
- ec_word THAT_S
- ec_word WHAT
- ec_word IS
- ec_word MAKING
- ec_word ME
- ec_word STRONG
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_STRONG
@ loss speech
- ec_word THAT_S
- ec_word WHY
- ec_word I_AM
- ec_word SO
- ec_word THICK
- ec_word ELLIPSIS
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_THICK
+ .2byte EC_WORD_ELLIPSIS
.4byte gSlateportBattleTentTrainerMons_Reggie
@ 17
.4byte TRAINER_CLASS_POKEFAN_2
.string "JANAE$", 8
@ pre-battle speech
- ec_word I
- ec_word JUST
- ec_word ADORE
- ec_word YOUR
- ec_word TOUGH
- ec_word LOOK
+ .2byte EC_WORD_I
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_LOOK
@ win speech
- ec_word I
- ec_word LIKE
- ec_word HOW
- ec_word YOU
- ec_move2 STRUGGLE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE2(STRUGGLE)
.2byte -1
@ loss speech
- ec_word YOU_RE
- ec_word A
- ec_word MEAN
- ec_word AND
- ec_word AWFUL
- ec_word TRAINER
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_AWFUL
+ .2byte EC_WORD_TRAINER
.4byte gSlateportBattleTentTrainerMons_Janae
@ 18
.4byte TRAINER_CLASS_EXPERT_1
.string "CAIDEN$", 8
@ pre-battle speech
- ec_word MY
- ec_move2 CURSE
- ec_word WILL
- ec_word BREAK
- ec_word YOUR
- ec_word SPIRIT
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(CURSE)
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BREAK
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_SPIRIT
@ win speech
- ec_move2 CURSE
- ec_word QUES
- ec_word IT_S
- ec_word A
- ec_word LIE
- ec_word ELLIPSIS
+ .2byte EC_MOVE2(CURSE)
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_LIE
+ .2byte EC_WORD_ELLIPSIS
@ loss speech
- ec_word MY
- ec_move2 CURSE
- ec_word WILL
- ec_word LAST
- ec_word FOREVER
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE2(CURSE)
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_LAST
+ .2byte EC_WORD_FOREVER
.2byte -1
.4byte gSlateportBattleTentTrainerMons_Caiden
@@ -498,77 +498,77 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_EXPERT_2
.string "KIRSTEN$", 8
@ pre-battle speech
- ec_word HUH_QUES
- ec_word A
- ec_word BATTLE
- ec_word YOU
- ec_word SAID
- ec_word QUES
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SAID
+ .2byte EC_WORD_QUES
@ win speech
- ec_word HUH_QUES
- ec_word STRONG
- ec_word BUT
- ec_word NOT
- ec_word STRONG
- ec_word ENOUGH
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_ENOUGH
@ loss speech
- ec_word HUH_QUES
- ec_word I
- ec_word SURRENDER
- ec_word TO
- ec_word YOUR
- ec_move1 STRENGTH
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SURRENDER
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE(STRENGTH)
.4byte gSlateportBattleTentTrainerMons_Kirsten
@ 20
.4byte TRAINER_CLASS_YOUNGSTER
.string "KURTIS$", 8
@ pre-battle speech
- ec_word SORRY
- ec_word YOU_RE
- ec_word GOING
- ec_word TO
- ec_word GET
- ec_move2 BEAT_UP
+ .2byte EC_WORD_SORRY
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GET
+ .2byte EC_MOVE2(BEAT_UP)
@ win speech
- ec_word I
- ec_word SAID
- ec_word WE
- ec_word WOULD
- ec_move2 POUND
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SAID
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_WOULD
+ .2byte EC_MOVE2(POUND)
+ .2byte EC_WORD_YOU
@ loss speech
- ec_word HOW
- ec_word DID
- ec_word I
- ec_word GET
- ec_move2 BEAT_UP
- ec_word QUES
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GET
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_QUES
.4byte gSlateportBattleTentTrainerMons_Kurtis
@ 21
.4byte TRAINER_CLASS_FISHERMAN
.string "STEFAN$", 8
@ pre-battle speech
- ec_word I
- ec_word ONLY
- ec_word WANT
- ec_word CUTE
- ec_word POKEMON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ONLY
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_POKEMON
.2byte -1
@ win speech
- ec_word WHAT
- ec_word IS
- ec_word IT
- ec_word TO
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word YOU_RE
- ec_word KIND
- ec_word OF
- ec_word AWESOME
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_KIND
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_AWESOME
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
.4byte gSlateportBattleTentTrainerMons_Stefan
@@ -576,51 +576,51 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "AVERY$", 8
@ pre-battle speech
- ec_word TOYS
- ec_word EXCL
- ec_word I
- ec_word NEED
- ec_word MORE
- ec_word TOYS
+ .2byte EC_WORD_TOYS
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_TOYS
@ win speech
- ec_word I
- ec_word NEED
- ec_word SOME
- ec_word EASY
- ec_word MONEY
- ec_word FAST
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_MONEY
+ .2byte EC_WORD_FAST
@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word WORK
- ec_word FOR
- ec_word MONEY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WORK
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MONEY
.4byte gSlateportBattleTentTrainerMons_Avery
@ 23
.4byte TRAINER_CLASS_NINJA_BOY
.string "DWANE$", 8
@ pre-battle speech
- ec_word MMM
- ec_word TASTY
- ec_word ELLIPSIS
- ec_word WONDER
- ec_word WHAT
- ec_word QUES
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_TASTY
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_WONDER
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
@ win speech
- ec_word MMM
- ec_word MMM
- ec_word ELLIPSIS
- ec_word YOU
- ec_word DON_T
- ec_word KNOW
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_KNOW
@ loss speech
- ec_word MMM
- ec_word MMM
- ec_word ELLIPSIS
- ec_word OH_YEAH
- ec_word THIS_IS_IT_EXCL
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_MMM
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_OH_YEAH
+ .2byte EC_WORD_THIS_IS_IT_EXCL
.2byte -1
.4byte gSlateportBattleTentTrainerMons_Dwane
@@ -628,21 +628,21 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_PARASOL_LADY
.string "MCKENNA$", 8
@ pre-battle speech
- ec_word I
- ec_word DISLIKE
- ec_word SMALL
- ec_word TALK
- ec_word LET_S
- ec_word GO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_SMALL
+ .2byte EC_WORD_TALK
+ .2byte EC_WORD_LET_S
+ .2byte EC_WORD_GO
@ win speech
- ec_word YUP
- ec_word THAT_S
- ec_word THAT
+ .2byte EC_WORD_YUP
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_THAT
.2byte -1
.2byte -1
.2byte -1
@ loss speech
- ec_word KTHX_BYE
+ .2byte EC_WORD_KTHX_BYE
.2byte -1
.2byte -1
.2byte -1
@@ -654,51 +654,51 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_SWIMMER_F
.string "CAMRYN$", 8
@ pre-battle speech
- ec_word MR
- ec_word JUDGE
- ec_word YOU
- ec_word HAVE
- ec_word OUR
- ec_word TRUST
+ .2byte EC_WORD_MR
+ .2byte EC_WORD_JUDGE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_OUR
+ .2byte EC_WORD_TRUST
@ win speech
- ec_word YES_SIR_EXCL
- ec_word WE_RE
- ec_word NO_1
- ec_word IN
- ec_word THIS
- ec_word CONTEST
+ .2byte EC_WORD_YES_SIR_EXCL
+ .2byte EC_WORD_WE_RE
+ .2byte EC_WORD_NO_1
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_CONTEST
@ loss speech
- ec_word I
- ec_word WON_T
- ec_word GIVE_UP
- ec_word MY
- ec_word IDOL
- ec_word DREAM
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_IDOL
+ .2byte EC_WORD_DREAM
.4byte gSlateportBattleTentTrainerMons_Camryn
@ 26
.4byte TRAINER_CLASS_PICNICKER
.string "NATASHA$", 8
@ pre-battle speech
- ec_word COME_OVER
- ec_word TO
- ec_word MY
- ec_word PLACE
- ec_word OK_QUES
+ .2byte EC_WORD_COME_OVER
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_PLACE
+ .2byte EC_WORD_OK_QUES
.2byte -1
@ win speech
- ec_word COME_ON
- ec_word OVER
- ec_word IT
- ec_word WILL
- ec_word BE
- ec_word GREAT
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_GREAT
@ loss speech
- ec_word AWW
- ec_word WON_T
- ec_word YOU
- ec_word COME_OVER
- ec_word QUES
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_COME_OVER
+ .2byte EC_WORD_QUES
.2byte -1
.4byte gSlateportBattleTentTrainerMons_Natasha
@@ -706,76 +706,76 @@ gSlateportBattleTentTrainers:: @ 85DDA14
.4byte TRAINER_CLASS_SAILOR
.string "AUSTYN$", 8
@ pre-battle speech
- ec_word I
- ec_word DON_T
- ec_word CARE
- ec_word HOW
- ec_word WE
- ec_word MATCH_UP
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_CARE
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_MATCH_UP
@ win speech
- ec_word HAH
- ec_word BACK
- ec_word TO
- ec_word SCHOOL
- ec_word FOR
- ec_word YOU
+ .2byte EC_WORD_HAH
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_SCHOOL
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word STUDY
- ec_word MY
- ec_word LESSONS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_LESSONS
.4byte gSlateportBattleTentTrainerMons_Austyn
@ 28
.4byte TRAINER_CLASS_COLLECTOR
.string "DONOVAN$", 8
@ pre-battle speech
- ec_word OH
- ec_word I_AM
- ec_word FEELING
- ec_word SLIMY
- ec_word ALL
- ec_word OVER
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_FEELING
+ .2byte EC_WORD_SLIMY
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_OVER
@ win speech
- ec_word YOU_RE
- ec_word GOING
- ec_word DOWN
- ec_word THE
- ec_move2 MEGA_DRAIN
- ec_word HAHAHA
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_DOWN
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE2(MEGA_DRAIN)
+ .2byte EC_WORD_HAHAHA
@ loss speech
- ec_word I_AM
- ec_word NATURALLY
- ec_word SLIMY
- ec_word THAT_S
- ec_word WHAT
- ec_word I_AM
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NATURALLY
+ .2byte EC_WORD_SLIMY
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_I_AM
.4byte gSlateportBattleTentTrainerMons_Donovan
@ 29
.4byte TRAINER_CLASS_LASS
.string "TAMIA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word ANGRY
- ec_word WITH
- ec_word MY
- ec_word FATHER
- ec_word ELLIPSIS
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_ANGRY
+ .2byte EC_WORD_WITH
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FATHER
+ .2byte EC_WORD_ELLIPSIS
@ win speech
- ec_word I
- ec_word REALLY
- ec_word DISLIKE
- ec_word MY
- ec_word FATHER
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_DISLIKE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FATHER
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word I
- ec_word JUST
- ec_word SO
- ec_word ADORE
- ec_word MY
- ec_word FATHER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FATHER
.4byte gSlateportBattleTentTrainerMons_Tamia
diff --git a/data/battle_frontier/verdanturf_battle_tent_trainers.inc b/data/battle_frontier/verdanturf_battle_tent_trainers.inc
index af9a03910..aa028c600 100644
--- a/data/battle_frontier/verdanturf_battle_tent_trainers.inc
+++ b/data/battle_frontier/verdanturf_battle_tent_trainers.inc
@@ -4,413 +4,413 @@ gVerdanturfBattleTentTrainers:: @ 85DE610
.4byte TRAINER_CLASS_AROMA_LADY
.string "BRENNA$", 8
@ pre-battle speech
- ec_word NO
- ec_word DAYS
- ec_word GO
- ec_word WITHOUT
- ec_word MY
- ec_move1 FAKE_TEARS
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_DAYS
+ .2byte EC_WORD_GO
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_MY
+ .2byte EC_MOVE(FAKE_TEARS)
@ win speech
- ec_word OH
- ec_word THAT_WAS
- ec_word SO
- ec_word REFRESHING
- ec_word EXCL
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_REFRESHING
+ .2byte EC_WORD_EXCL
.2byte -1
@ loss speech
- ec_word ALL
- ec_word I
- ec_word EVER
- ec_word GET
- ec_word IS
- ec_move1 TORMENT
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_EVER
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_IS
+ .2byte EC_MOVE(TORMENT)
.4byte gVerdanturfBattleTentTrainerMons_Brenna
@ 1
.4byte TRAINER_CLASS_RUIN_MANIAC
.string "DILAN$", 8
@ pre-battle speech
- ec_word YOU
- ec_word DON_T
- ec_word KNOW
- ec_word HOW
- ec_word BORED
- ec_word I_AM
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_HOW
+ .2byte EC_WORD_BORED
+ .2byte EC_WORD_I_AM
@ win speech
- ec_word LOSING
- ec_word ISN_T
- ec_word EXCITING
- ec_word AT
- ec_word ALL
- ec_word ELLIPSIS
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_ELLIPSIS
@ loss speech
- ec_word EXCITING
- ec_word EXCL_EXCL
- ec_word BYE_BYE
- ec_word TO
- ec_word BEING
- ec_word BORED
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_EXCL_EXCL
+ .2byte EC_WORD_BYE_BYE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_BORED
.4byte gVerdanturfBattleTentTrainerMons_Dilan
@ 2
.4byte TRAINER_CLASS_TUBER_1
.string "ELIANA$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word GOING
- ec_word ON
- ec_word A
- ec_word VACATION
- ec_word SOON
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_A
+ .2byte EC_WORD_VACATION
+ .2byte EC_WORD_SOON
@ win speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word GET
- ec_word SOME
- ec_word MONEY
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_SOME
+ .2byte EC_WORD_MONEY
@ loss speech
- ec_word NO
- ec_word SLEEP
- ec_word UNTIL
- ec_word I
- ec_word GET
- ec_word HOME
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_SLEEP
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_HOME
.4byte gVerdanturfBattleTentTrainerMons_Eliana
@ 3
.4byte TRAINER_CLASS_TUBER_2
.string "MARKUS$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word SMART
- ec_word EXCL
- ec_word IF_I_LOSE
- ec_word I
- ec_move1 SELF_DESTRUCT
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_SMART
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_I
+ .2byte EC_MOVE(SELF_DESTRUCT)
@ win speech
- ec_word IT_S
- ec_word A
- ec_word NON_STOP
- ec_move2 EXPLOSION
- ec_word OF
- ec_word JOY
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_NON_STOP
+ .2byte EC_MOVE2(EXPLOSION)
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_JOY
@ loss speech
- ec_word I_VE
- ec_word LOST
- ec_word ELLIPSIS
- ec_word TIME
- ec_word TO
- ec_move1 SELF_DESTRUCT
+ .2byte EC_WORD_I_VE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_TIME
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(SELF_DESTRUCT)
.4byte gVerdanturfBattleTentTrainerMons_Markus
@ 4
.4byte TRAINER_CLASS_LADY
.string "CAITLYN$", 8
@ pre-battle speech
- ec_word I_AM
- ec_word BORED
- ec_word OF
- ec_word BEING
- ec_word AN
- ec_word IDOL
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_BORED
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_BEING
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_IDOL
@ win speech
- ec_word A
- ec_word BATTLE
- ec_word IS
- ec_word BEST
- ec_word FOR
- ec_word HAPPINESS
+ .2byte EC_WORD_A
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_HAPPINESS
@ loss speech
- ec_word LOSING
- ec_word DOESN_T
- ec_word BUG
- ec_word ME
- ec_word AT
- ec_word ALL
+ .2byte EC_WORD_LOSING
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
.4byte gVerdanturfBattleTentTrainerMons_Caitlyn
@ 5
.4byte TRAINER_CLASS_BEAUTY
.string "DESIREE$", 8
@ pre-battle speech
- ec_word DOESN_T
- ec_word MY
- ec_word BEAUTY
- ec_move1 ASTONISH
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BEAUTY
+ .2byte EC_MOVE(ASTONISH)
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
@ win speech
- ec_word DID
- ec_word I
- ec_word INTIMIDATE
- ec_word YOU
- ec_word QUES
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_I
+ .2byte EC_WORD_INTIMIDATE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word MY
- ec_word BEAUTY
- ec_word DID
- ec_word NOTHING
- ec_word FOR
- ec_word YOU
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_BEAUTY
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_NOTHING
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
.4byte gVerdanturfBattleTentTrainerMons_Desiree
@ 6
.4byte TRAINER_CLASS_RICH_BOY
.string "RONALD$", 8
@ pre-battle speech
- ec_word COME_ON
- ec_word I
- ec_word WILL
- ec_word BATTLE
- ec_word SERIOUSLY
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SERIOUSLY
.2byte -1
@ win speech
- ec_word GIVE_UP
- ec_word QUES
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_QUES
.2byte -1
- ec_word THAT_S
- ec_word REALLY
- ec_word WEAK
+ .2byte EC_WORD_THAT_S
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_WEAK
@ loss speech
- ec_word I
- ec_word NEED
- ec_word TO
- ec_word DO
- ec_word A
- ec_move2 BATON_PASS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(BATON_PASS)
.4byte gVerdanturfBattleTentTrainerMons_Ronald
@ 7
.4byte TRAINER_CLASS_POKEMANIAC
.string "ASHTEN$", 8
@ pre-battle speech
- ec_word OH_YEAH
- ec_word ANOTHER
- ec_word EXCITING
- ec_word BATTLE
- ec_word EXCL
+ .2byte EC_WORD_OH_YEAH
+ .2byte EC_WORD_ANOTHER
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_EXCL
.2byte -1
@ win speech
- ec_word YOUR
- ec_word POKEMON
- ec_word ARE
- ec_word WIMPY
- ec_word AND
- ec_word BORING
+ .2byte EC_WORD_YOUR
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_WIMPY
+ .2byte EC_WORD_AND
+ .2byte EC_WORD_BORING
@ loss speech
- ec_word THAT_WAS
- ec_word AN
- ec_word EXCITING
- ec_word LOSS
- ec_word WOW
- ec_word EXCL
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_AN
+ .2byte EC_WORD_EXCITING
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_WOW
+ .2byte EC_WORD_EXCL
.4byte gVerdanturfBattleTentTrainerMons_Ashten
@ 8
.4byte TRAINER_CLASS_SWIMMER_M
.string "GERARD$", 8
@ pre-battle speech
- ec_word LOOK
- ec_word AT
- ec_word MY
- ec_word SUPER
- ec_move2 TEETER_DANCE
- ec_word EXCL
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SUPER
+ .2byte EC_MOVE2(TEETER_DANCE)
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word THAT_WAS
- ec_word HARD
- ec_word ELLIPSIS
- ec_word AM
- ec_word I
- ec_word OK_QUES
+ .2byte EC_WORD_THAT_WAS
+ .2byte EC_WORD_HARD
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_AM
+ .2byte EC_WORD_I
+ .2byte EC_WORD_OK_QUES
@ loss speech
- ec_word I
- ec_word WON_T
- ec_word FORGIVE
- ec_word YOU
- ec_word FOR
- ec_word THAT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON_T
+ .2byte EC_WORD_FORGIVE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_THAT
.4byte gVerdanturfBattleTentTrainerMons_Gerard
@ 9
.4byte TRAINER_CLASS_CAMPER
.string "BRADLY$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word LONESOME
- ec_word BUT
- ec_word I
- ec_word VACATION
- ec_word ALONE
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_LONESOME
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_VACATION
+ .2byte EC_WORD_ALONE
@ win speech
- ec_word I
- ec_word WILL
- ec_move1 WITHDRAW
- ec_word INSIDE
- ec_word MY
- ec_word SHELL_ARMOR
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_MOVE(WITHDRAW)
+ .2byte EC_WORD_INSIDE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_SHELL_ARMOR
@ loss speech
- ec_word OH
- ec_word ELLIPSIS
+ .2byte EC_WORD_OH
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
- ec_word ALONE
- ec_word AS
- ec_word ALWAYS
+ .2byte EC_WORD_ALONE
+ .2byte EC_WORD_AS
+ .2byte EC_WORD_ALWAYS
.4byte gVerdanturfBattleTentTrainerMons_Bradly
@ 10
.4byte TRAINER_CLASS_BUG_MANIAC
.string "DENNIS$", 8
@ pre-battle speech
- ec_word ARE
- ec_word YOU
- ec_word REALLY
- ec_word STRONG
- ec_word QUES
+ .2byte EC_WORD_ARE
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_STRONG
+ .2byte EC_WORD_QUES
.2byte -1
@ win speech
- ec_word WAHAHAHA
- ec_word EXCL
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word WAHAHAHA
- ec_word EXCL_EXCL
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
@ loss speech
- ec_word NICE
- ec_word GOING
- ec_word EXCL
- ec_word I
- ec_word WAS
- ec_word CHILD_S_PLAY
+ .2byte EC_WORD_NICE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_CHILD_S_PLAY
.4byte gVerdanturfBattleTentTrainerMons_Dennis
@ 11
.4byte TRAINER_CLASS_GENTLEMAN
.string "PRESTIN$", 8
@ pre-battle speech
- ec_word THIS
- ec_word IS
- ec_word A
- ec_move1 NIGHTMARE
- ec_word FOR
- ec_word YOU
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_A
+ .2byte EC_MOVE(NIGHTMARE)
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_YOU
@ win speech
- ec_word FORGIVE
- ec_word ME
- ec_word ELLIPSIS
- ec_word IT_S
- ec_word A
- ec_word DREAM
+ .2byte EC_WORD_FORGIVE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_A
+ .2byte EC_WORD_DREAM
@ loss speech
- ec_word I
- ec_word WANT
- ec_word TO
- ec_word WAKE_UP
- ec_word FROM
- ec_word THIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_WAKE_UP
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_THIS
.4byte gVerdanturfBattleTentTrainerMons_Prestin
@ 12
.4byte TRAINER_CLASS_GUITARIST
.string "ERNESTO$", 8
@ pre-battle speech
- ec_word THIS
- ec_word PARTY
- ec_word GOES
- ec_word ON
- ec_word FOREVER
- ec_word EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_PARTY
+ .2byte EC_WORD_GOES
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_FOREVER
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word THE
- ec_word MUSIC
- ec_word PLAYS
- ec_word ON
- ec_word WITHOUT
- ec_word END
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_PLAYS
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_END
@ loss speech
- ec_word NO
- ec_word EXCL
- ec_word THE
- ec_word MUSIC
- ec_word CAN_T
- ec_word STOP
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_EXCL
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_MUSIC
+ .2byte EC_WORD_CAN_T
+ .2byte EC_WORD_STOP
.4byte gVerdanturfBattleTentTrainerMons_Ernesto
@ 13
.4byte TRAINER_CLASS_SCHOOL_KID_2
.string "NALA$", 8
@ pre-battle speech
- ec_word I
- ec_word WANT
- ec_word THE
- ec_word WORLD
- ec_word MOVIE
- ec_word COLLECTION
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WANT
+ .2byte EC_WORD_THE
+ .2byte EC_WORD_WORLD
+ .2byte EC_WORD_MOVIE
+ .2byte EC_WORD_COLLECTION
@ win speech
- ec_word I
- ec_word DON_T
- ec_word LIKE
- ec_word RADIO
- ec_word VERY
- ec_word MUCH
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_RADIO
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_MUCH
@ loss speech
- ec_word I
- ec_word REFUSE
- ec_word TO
- ec_word BELIEVE
- ec_word THIS
- ec_word EXCL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REFUSE
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_EXCL
.4byte gVerdanturfBattleTentTrainerMons_Nala
@ 14
.4byte TRAINER_CLASS_COOLTRAINER_1
.string "DARNELL$", 8
@ pre-battle speech
- ec_word I
- ec_word WILL
- ec_word GO_EASY
- ec_word ON
- ec_word YOU
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WILL
+ .2byte EC_WORD_GO_EASY
+ .2byte EC_WORD_ON
+ .2byte EC_WORD_YOU
.2byte -1
@ win speech
- ec_word YOUR
- ec_move2 FRUSTRATION
- ec_word SHOULD
- ec_word BE
- ec_word HIDDEN
- ec_word AWAY
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(FRUSTRATION)
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HIDDEN
+ .2byte EC_WORD_AWAY
@ loss speech
- ec_word YOU_RE
- ec_word TOO
- ec_word MUCH
- ec_word TO
- ec_word TAKE
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_ELLIPSIS
.4byte gVerdanturfBattleTentTrainerMons_Darnell
@ 15
.4byte TRAINER_CLASS_COOLTRAINER_2
.string "ASHLYN$", 8
@ pre-battle speech
- ec_word I
- ec_word LOOK
- ec_word TOUGH
- ec_word DO
- ec_word I
- ec_word QUES
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LOOK
+ .2byte EC_WORD_TOUGH
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_QUES
@ win speech
- ec_word I_AM
- ec_word NOT
- ec_word OVER
- ec_word YOUR
- ec_move2 TAUNT
- ec_word YET
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_OVER
+ .2byte EC_WORD_YOUR
+ .2byte EC_MOVE2(TAUNT)
+ .2byte EC_WORD_YET
@ loss speech
- ec_word YOU_RE
- ec_word MEAN
- ec_word EXCL_EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.2byte -1
.2byte -1
@@ -420,48 +420,48 @@ gVerdanturfBattleTentTrainers:: @ 85DE610
.4byte TRAINER_CLASS_POKEFAN_1
.string "ADDISON$", 8
@ pre-battle speech
- ec_word YES
- ec_word EXCL
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word MY
- ec_word POKEMON
- ec_word EXCL
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word WELL
- ec_word WASN_T
- ec_word THAT
- ec_word EASY
- ec_word QUES
+ .2byte EC_WORD_WELL
+ .2byte EC_WORD_WASN_T
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_QUES
.2byte -1
@ loss speech
- ec_word WAAAH
- ec_word EXCL
+ .2byte EC_WORD_WAAAH
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word BUT
- ec_word WHY
- ec_word QUES
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_WHY
+ .2byte EC_WORD_QUES
.4byte gVerdanturfBattleTentTrainerMons_Addison
@ 17
.4byte TRAINER_CLASS_POKEFAN_2
.string "JUSTINE$", 8
@ pre-battle speech
- ec_word YES
- ec_word EXCL
+ .2byte EC_WORD_YES
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word COME_ON
- ec_word I_AM
- ec_word READY
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_I_AM
+ .2byte EC_WORD_READY
@ win speech
- ec_word YOU_RE
- ec_word JUST
- ec_word NOT
- ec_word GOOD
- ec_word ENOUGH
- ec_word EXCL
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_GOOD
+ .2byte EC_WORD_ENOUGH
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word WOWEE
- ec_word EXCL_EXCL
+ .2byte EC_WORD_WOWEE
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
.2byte -1
.2byte -1
@@ -472,310 +472,310 @@ gVerdanturfBattleTentTrainers:: @ 85DE610
.4byte TRAINER_CLASS_EXPERT_1
.string "TYSON$", 8
@ pre-battle speech
- ec_word YOU_RE
- ec_word GOING
- ec_word TO
- ec_word PRESSURE
- ec_word ME
- ec_word QUES
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_GOING
+ .2byte EC_WORD_TO
+ .2byte EC_WORD_PRESSURE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_QUES
@ win speech
- ec_word WHAT
- ec_word QUES
- ec_word YOU_RE
- ec_word MUCH
- ec_word TOO_WEAK
- ec_word EXCL
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_MUCH
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word THIS
- ec_word DOESN_T
- ec_word MAKE
- ec_word ME
- ec_word HAPPY
- ec_word EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_WORD_MAKE
+ .2byte EC_WORD_ME
+ .2byte EC_WORD_HAPPY
+ .2byte EC_WORD_EXCL
.4byte gVerdanturfBattleTentTrainerMons_Tyson
@ 19
.4byte TRAINER_CLASS_EXPERT_2
.string "LAILA$", 8
@ pre-battle speech
- ec_word A
- ec_move2 STRUGGLE
- ec_word ISN_T
- ec_word VERY
- ec_word COOL
+ .2byte EC_WORD_A
+ .2byte EC_MOVE2(STRUGGLE)
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_VERY
+ .2byte EC_WORD_COOL
.2byte -1
@ win speech
- ec_word NOPE
- ec_word NOT_VERY
- ec_word COOL
- ec_word AT
- ec_word ALL
- ec_word EXCL
+ .2byte EC_WORD_NOPE
+ .2byte EC_WORD_NOT_VERY
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_ALL
+ .2byte EC_WORD_EXCL
@ loss speech
- ec_word YOU_RE
- ec_word NOT
- ec_word COOL
- ec_word BUT
- ec_word YOU
- ec_word WON
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_COOL
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_WON
.4byte gVerdanturfBattleTentTrainerMons_Laila
@ 20
.4byte TRAINER_CLASS_YOUNGSTER
.string "WAREN$", 8
@ pre-battle speech
- ec_word DANGER
- ec_word EXCL
+ .2byte EC_WORD_DANGER
+ .2byte EC_WORD_EXCL
.2byte -1
- ec_word I
- ec_word SENSE
- ec_word DANGER
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_DANGER
@ win speech
- ec_word DID
- ec_word YOU
- ec_word BELIEVE
- ec_word MY
- ec_word LIE
- ec_word QUES_EXCL
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_BELIEVE
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_LIE
+ .2byte EC_WORD_QUES_EXCL
@ loss speech
- ec_word I
- ec_word REALLY
- ec_word DID
- ec_word SENSE
- ec_word DANGER
- ec_word ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_REALLY
+ .2byte EC_WORD_DID
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_DANGER
+ .2byte EC_WORD_ELLIPSIS
.4byte gVerdanturfBattleTentTrainerMons_Waren
@ 21
.4byte TRAINER_CLASS_FISHERMAN
.string "TOBIAS$", 8
@ pre-battle speech
- ec_move2 BARRIER
- ec_word EXCL_EXCL
+ .2byte EC_MOVE2(BARRIER)
+ .2byte EC_WORD_EXCL_EXCL
.2byte -1
- ec_word NOW
- ec_word COME_ON
- ec_word EXCL
+ .2byte EC_WORD_NOW
+ .2byte EC_WORD_COME_ON
+ .2byte EC_WORD_EXCL
@ win speech
- ec_word HUH_QUES
- ec_word YOU
- ec_word MEAN
- ec_word I
- ec_word WON
- ec_word QUES
+ .2byte EC_WORD_HUH_QUES
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_MEAN
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word I
- ec_word SHOULD
- ec_word KNOW
- ec_word THAT
- ec_word IT_S
- ec_word HOPELESS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_KNOW
+ .2byte EC_WORD_THAT
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_HOPELESS
.4byte gVerdanturfBattleTentTrainerMons_Tobias
@ 22
.4byte TRAINER_CLASS_BIRD_KEEPER
.string "JOSIAH$", 8
@ pre-battle speech
- ec_word I
- ec_word PROMISE
- ec_word TO
- ec_move1 FLY
- ec_word IF_I_LOSE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(FLY)
+ .2byte EC_WORD_IF_I_LOSE
.2byte -1
@ win speech
- ec_word TOO_WEAK
- ec_word ELLIPSIS
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_ELLIPSIS
.2byte -1
- ec_word YOU
- ec_move1 FLY
- ec_word INSTEAD
+ .2byte EC_WORD_YOU
+ .2byte EC_MOVE(FLY)
+ .2byte EC_WORD_INSTEAD
@ loss speech
- ec_word I
- ec_word PROMISE
- ec_word TO
- ec_move1 FLY
- ec_word SOMETIME
- ec_word SOON
+ .2byte EC_WORD_I
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_TO
+ .2byte EC_MOVE(FLY)
+ .2byte EC_WORD_SOMETIME
+ .2byte EC_WORD_SOON
.4byte gVerdanturfBattleTentTrainerMons_Josiah
@ 23
.4byte TRAINER_CLASS_NINJA_BOY
.string "DION$", 8
@ pre-battle speech
- ec_word IT_S
- ec_word TRENDY
- ec_word UM
- ec_word BATTLE
- ec_word SOMETHING
+ .2byte EC_WORD_IT_S
+ .2byte EC_WORD_TRENDY
+ .2byte EC_WORD_UM
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_SOMETHING
.2byte -1
@ win speech
- ec_word WAS
- ec_word IT
- ec_word ELLIPSIS
- ec_word BATTLE
- ec_word DATE
- ec_word QUES
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_DATE
+ .2byte EC_WORD_QUES
@ loss speech
- ec_word WAS
- ec_word IT
- ec_word ELLIPSIS
- ec_word BATTLE
- ec_word GOURMET
- ec_word QUES
+ .2byte EC_WORD_WAS
+ .2byte EC_WORD_IT
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_BATTLE
+ .2byte EC_WORD_GOURMET
+ .2byte EC_WORD_QUES
.4byte gVerdanturfBattleTentTrainerMons_Dion
@ 24
.4byte TRAINER_CLASS_PARASOL_LADY
.string "KENZIE$", 8
@ pre-battle speech
- ec_word THE
- ec_move1 MORNING_SUN
- ec_word GIVES
- ec_word ME
- ec_move1 STRENGTH
+ .2byte EC_WORD_THE
+ .2byte EC_MOVE(MORNING_SUN)
+ .2byte EC_WORD_GIVES
+ .2byte EC_WORD_ME
+ .2byte EC_MOVE(STRENGTH)
.2byte -1
@ win speech
- ec_word BUT
- ec_word I
- ec_word LIKE
- ec_move2 MOONLIGHT
- ec_word TOO
+ .2byte EC_WORD_BUT
+ .2byte EC_WORD_I
+ .2byte EC_WORD_LIKE
+ .2byte EC_MOVE2(MOONLIGHT)
+ .2byte EC_WORD_TOO
.2byte -1
@ loss speech
- ec_word YOU_RE
- ec_word LIKE
- ec_word A
- ec_word TERRIBLE
- ec_move1 SANDSTORM
- ec_word ELLIPSIS
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_LIKE
+ .2byte EC_WORD_A
+ .2byte EC_WORD_TERRIBLE
+ .2byte EC_MOVE(SANDSTORM)
+ .2byte EC_WORD_ELLIPSIS
.4byte gVerdanturfBattleTentTrainerMons_Kenzie
@ 25
.4byte TRAINER_CLASS_SWIMMER_F
.string "LILLIAN$", 8
@ pre-battle speech
- ec_word I
- ec_word DO
- ec_word THINGS
- ec_word AT
- ec_word MY
- ec_word OWN_TEMPO
+ .2byte EC_WORD_I
+ .2byte EC_WORD_DO
+ .2byte EC_WORD_THINGS
+ .2byte EC_WORD_AT
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_OWN_TEMPO
@ win speech
- ec_word I
- ec_word WON
- ec_word QUES
- ec_word WHAT
- ec_word A
- ec_word SURPRISE
+ .2byte EC_WORD_I
+ .2byte EC_WORD_WON
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_WHAT
+ .2byte EC_WORD_A
+ .2byte EC_WORD_SURPRISE
@ loss speech
- ec_word AWW
- ec_word ELLIPSIS
- ec_word I
- ec_word NEED
- ec_word A
- ec_word NAP
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_ELLIPSIS
+ .2byte EC_WORD_I
+ .2byte EC_WORD_NEED
+ .2byte EC_WORD_A
+ .2byte EC_WORD_NAP
.4byte gVerdanturfBattleTentTrainerMons_Lillian
@ 26
.4byte TRAINER_CLASS_PICNICKER
.string "LESLEY$", 8
@ pre-battle speech
- ec_word YOU
- ec_word SHOULD
- ec_word NOT
- ec_word BE
- ec_word LOLLING
- ec_word ABOUT
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_LOLLING
+ .2byte EC_WORD_ABOUT
@ win speech
- ec_word YOU
- ec_word SHOULD
- ec_word GET
- ec_word UP
- ec_word EARLIER
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_UP
+ .2byte EC_WORD_EARLIER
.2byte -1
@ loss speech
- ec_word THIS
- ec_word SHOULD
- ec_word NOT
- ec_word BE
- ec_word HAPPENING
- ec_word EXCL
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_NOT
+ .2byte EC_WORD_BE
+ .2byte EC_WORD_HAPPENING
+ .2byte EC_WORD_EXCL
.4byte gVerdanturfBattleTentTrainerMons_Lesley
@ 27
.4byte TRAINER_CLASS_SAILOR
.string "MARQUIS$", 8
@ pre-battle speech
- ec_word NONE
- ec_word OF
- ec_word THIS
- ec_word IS
- ec_word MAKING
- ec_word SENSE
+ .2byte EC_WORD_NONE
+ .2byte EC_WORD_OF
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MAKING
+ .2byte EC_WORD_SENSE
@ win speech
- ec_word SEE
- ec_word QUES
- ec_word THIS
- ec_word JUST
- ec_word ISN_T
- ec_word NORMAL
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_QUES
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_JUST
+ .2byte EC_WORD_ISN_T
+ .2byte EC_WORD_NORMAL
@ loss speech
- ec_word SHOULD
- ec_word I
- ec_word CAUSE
- ec_word AN
- ec_move1 UPROAR
- ec_word QUES
+ .2byte EC_WORD_SHOULD
+ .2byte EC_WORD_I
+ .2byte EC_WORD_CAUSE
+ .2byte EC_WORD_AN
+ .2byte EC_MOVE(UPROAR)
+ .2byte EC_WORD_QUES
.4byte gVerdanturfBattleTentTrainerMons_Marquis
@ 28
.4byte TRAINER_CLASS_COLLECTOR
.string "FREDDY$", 8
@ pre-battle speech
- ec_word I
- ec_word ADORE
- ec_word THIS
- ec_word CUTE
- ec_word TELEVISION
- ec_word IDOL
+ .2byte EC_WORD_I
+ .2byte EC_WORD_ADORE
+ .2byte EC_WORD_THIS
+ .2byte EC_WORD_CUTE
+ .2byte EC_WORD_TELEVISION
+ .2byte EC_WORD_IDOL
@ win speech
- ec_word YOU_RE
- ec_word SO
- ec_word FUNNY
- ec_word WHEN
- ec_word YOU_RE
- ec_word ANGRY
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_SO
+ .2byte EC_WORD_FUNNY
+ .2byte EC_WORD_WHEN
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_ANGRY
@ loss speech
- ec_word LATE
- ec_word NIGHT
- ec_word TELEVISION
- ec_word IS
- ec_word MY
- ec_word LIFE
+ .2byte EC_WORD_LATE
+ .2byte EC_WORD_NIGHT
+ .2byte EC_WORD_TELEVISION
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_LIFE
.4byte gVerdanturfBattleTentTrainerMons_Freddy
@ 29
.4byte TRAINER_CLASS_LASS
.string "CECILIA$", 8
@ pre-battle speech
- ec_word MY
- ec_word FABULOUS
- ec_word CUTENESS
- ec_word IS
- ec_word IN
- ec_word FASHION
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_FABULOUS
+ .2byte EC_WORD_CUTENESS
+ .2byte EC_WORD_IS
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_FASHION
@ win speech
- ec_word YOU_RE
- ec_word NO
- ec_word MATCH
- ec_word FOR
- ec_word MY
- ec_word CUTE_CHARM
+ .2byte EC_WORD_YOU_RE
+ .2byte EC_WORD_NO
+ .2byte EC_WORD_MATCH
+ .2byte EC_WORD_FOR
+ .2byte EC_WORD_MY
+ .2byte EC_WORD_CUTE_CHARM
@ loss speech
- ec_word DON_T
- ec_word YOU
- ec_word HAVE
- ec_word FASHION
- ec_word SENSE
- ec_word QUES
+ .2byte EC_WORD_DON_T
+ .2byte EC_WORD_YOU
+ .2byte EC_WORD_HAVE
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_SENSE
+ .2byte EC_WORD_QUES
.4byte gVerdanturfBattleTentTrainerMons_Cecilia
diff --git a/data/battle_frontier_2.s b/data/battle_frontier_2.s
index 44c14f520..74abbe788 100644
--- a/data/battle_frontier_2.s
+++ b/data/battle_frontier_2.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/battle_scripts_1.s b/data/battle_scripts_1.s
index 3609af8fc..ef6df1584 100644
--- a/data/battle_scripts_1.s
+++ b/data/battle_scripts_1.s
@@ -1,3 +1,6 @@
+#include "constants/abilities.h"
+#include "constants/moves.h"
+#include "constants/songs.h"
.include "asm/macros.inc"
.include "asm/macros/battle_script.inc"
.include "constants/constants.inc"
diff --git a/data/battle_scripts_2.s b/data/battle_scripts_2.s
index 8341b15fd..73690665e 100644
--- a/data/battle_scripts_2.s
+++ b/data/battle_scripts_2.s
@@ -1,3 +1,4 @@
+#include "constants/songs.h"
.include "asm/macros.inc"
.include "asm/macros/battle_script.inc"
.include "constants/constants.inc"
diff --git a/data/battle_tower.s b/data/battle_tower.s
index a952e0773..349eb3e9c 100644
--- a/data/battle_tower.s
+++ b/data/battle_tower.s
@@ -1,3 +1,6 @@
+#include "constants/easy_chat.h"
+#include "constants/species.h"
+#include "constants/moves.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/cable_car.s b/data/cable_car.s
index 0f3bf3e2e..32a265c97 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/data2b.s b/data/data2b.s
index e723b4c97..f99c6012d 100644
--- a/data/data2b.s
+++ b/data/data2b.s
@@ -1,5 +1,7 @@
@ the second big chunk of data
+#include "constants/moves.h"
+#include "constants/species.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/data2c.s b/data/data2c.s
index be715493c..60d0f8c8b 100644
--- a/data/data2c.s
+++ b/data/data2c.s
@@ -1,5 +1,8 @@
@ the second big chunk of data
+#include "constants/abilities.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 d6efc1c7f..a1a5e0c4a 100644
--- a/data/easy_chat.s
+++ b/data/easy_chat.s
@@ -1,3 +1,6 @@
+#include "constants/easy_chat.h"
+#include "constants/moves.h"
+#include "constants/species.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/event_scripts.s b/data/event_scripts.s
index 763b39585..f795fde93 100644
--- a/data/event_scripts.s
+++ b/data/event_scripts.s
@@ -1,8 +1,11 @@
+#include "constants/flags.h"
+#include "constants/vars.h"
+#include "constants/moves.h"
+#include "constants/songs.h"
+#include "constants/species.h"
.include "asm/macros.inc"
.include "asm/macros/event.inc"
.include "constants/constants.inc"
- .include "constants/variables.inc"
- .include "constants/flags.inc"
.section script_data, "aw", %progbits
diff --git a/data/field_map_obj.s b/data/field_map_obj.s
index 52b39f932..50bdfe6f3 100644
--- a/data/field_map_obj.s
+++ b/data/field_map_obj.s
@@ -1,3 +1,4 @@
+#include "constants/map_objects.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/graphics/pokemon/animation_delay_table.inc b/data/graphics/pokemon/animation_delay_table.inc
index 55d602bab..be517649b 100644
--- a/data/graphics/pokemon/animation_delay_table.inc
+++ b/data/graphics/pokemon/animation_delay_table.inc
@@ -81,7 +81,7 @@ gMonAnimationDelayTable:: @ 8329B87
.byte 0x00 @ SPECIES_SLOWBRO
.byte 0x00 @ SPECIES_MAGNEMITE
.byte 0x00 @ SPECIES_MAGNETON
- .byte 0x00 @ SPECIES_FARFETCH_D
+ .byte 0x00 @ SPECIES_FARFETCHD
.byte 0x00 @ SPECIES_DODUO
.byte 0x00 @ SPECIES_DODRIO
.byte 0x00 @ SPECIES_SEEL
diff --git a/data/graphics/pokemon/front_anim_ids_table.inc b/data/graphics/pokemon/front_anim_ids_table.inc
index 6e2d7fe0e..4f225348a 100644
--- a/data/graphics/pokemon/front_anim_ids_table.inc
+++ b/data/graphics/pokemon/front_anim_ids_table.inc
@@ -81,7 +81,7 @@ gMonFrontAnimIdsTable:: @ 83299EC
.byte 0x0b @ SPECIES_SLOWBRO
.byte 0x54 @ SPECIES_MAGNEMITE
.byte 0x2c @ SPECIES_MAGNETON
- .byte 0x48 @ SPECIES_FARFETCH_D
+ .byte 0x48 @ SPECIES_FARFETCHD
.byte 0x4c @ SPECIES_DODUO
.byte 0x41 @ SPECIES_DODRIO
.byte 0x0b @ SPECIES_SEEL
diff --git a/data/link.s b/data/link.s
index 336383678..8cd19ba5c 100644
--- a/data/link.s
+++ b/data/link.s
@@ -1,5 +1,6 @@
@ the second big chunk of data
+#include "constants/species.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/map_events.s b/data/map_events.s
index 805c4d255..22769bac5 100644
--- a/data/map_events.s
+++ b/data/map_events.s
@@ -1,3 +1,4 @@
+#include "constants/map_objects.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
.include "constants/flags.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/text/easy_chat/easy_chat_group_pokemon2.s b/data/text/easy_chat/easy_chat_group_pokemon2.s
index 6a1bc0fcd..e2f58e496 100644
--- a/data/text/easy_chat/easy_chat_group_pokemon2.s
+++ b/data/text/easy_chat/easy_chat_group_pokemon2.s
@@ -57,7 +57,7 @@ gEasyChatGroup_Pokemon2:: @ 859CE0C
.2byte SPECIES_ESPEON
.2byte SPECIES_EXEGGCUTE
.2byte SPECIES_EXEGGUTOR
- .2byte SPECIES_FARFETCH_D
+ .2byte SPECIES_FARFETCHD
.2byte SPECIES_FEAROW
.2byte SPECIES_FERALIGATR
.2byte SPECIES_FLAAFFY
diff --git a/data/text/easy_chat/easy_chat_words_by_letter.inc b/data/text/easy_chat/easy_chat_words_by_letter.inc
index a271a5586..bce4be347 100644
--- a/data/text/easy_chat/easy_chat_words_by_letter.inc
+++ b/data/text/easy_chat/easy_chat_words_by_letter.inc
@@ -1,2522 +1,2522 @@
gEasyChatWordsByLetter_Others:: @ 859D0B4
- 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:: @ 859D0C8
- ec_word A
- ec_word A_LITTLE
- ec_word A_LOT
- ec_word A_TINY_BIT
- ec_word ABOUT
- ec_word ABOVE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 ABRA
- ec_pokemon2 ABRA
- ec_word ABSENT
- ec_pokemon1 ABSOL
- ec_word ABSOLUTELY
- ec_move1 ABSORB
- ec_word ACCEPT
- ec_move2 ACID
- ec_move2 ACID_ARMOR
- ec_word ADORE
- ec_word ADULT
- ec_word ADVENTURE
- ec_move2 AERIAL_ACE
- ec_move1 AEROBLAST
- ec_pokemon2 AERODACTYL
- ec_word AFTER
- ec_word AGE
- ec_pokemon1 AGGRON
- ec_move1 AGILITY
- ec_word AGREE
- ec_word AHAHA
- ec_word AIM
- ec_pokemon2 AIPOM
- ec_move1 AIR_CUTTER
- ec_word AIR_LOCK
- ec_word AIYEEH
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 ALAKAZAM
- ec_pokemon2 ALAKAZAM
- ec_word ALL
- ec_word ALL_RIGHT
- ec_word ALLOW
- ec_word ALLOWANCE
- ec_word ALLY
- ec_word ALMOST
- ec_word ALONE
- ec_word ALSO
- ec_word ALT_COLOR
- ec_pokemon1 ALTARIA
- ec_word ALTHOUGH
- ec_word ALWAYS
- ec_word AM
- ec_move2 AMNESIA
- ec_pokemon2 AMPHAROS
- ec_word AMUSING
- ec_word AN
- ec_move1 ANCIENT_POWER
- ec_word AND
- ec_word ANGER
- ec_word ANGERS
- ec_word ANGRY
- ec_word ANIME
- ec_pokemon1 ANORITH
- ec_word ANOTHER
- ec_word ANTICIPATION
- ec_word ANY
- ec_word ANYWHERE
- ec_word APOLOGIZE
- ec_word APPEAL
- ec_word APPEAR
- ec_word APPEARS
- ec_word APPRECIATE
- ec_word APPROVED
- ec_pokemon2 ARBOK
- ec_pokemon2 ARCANINE
- ec_word ARE
- ec_word AREN_T
- ec_word ARENA_TRAP
- ec_pokemon2 ARIADOS
- ec_move2 ARM_THRUST
- ec_pokemon1 ARMALDO
- ec_move1 AROMATHERAPY
- ec_pokemon1 ARON
- ec_word AROUND
- ec_word ARRGH
- ec_pokemon2 ARTICUNO
- ec_word AS
- ec_word AS_IF
- ec_word AS_MUCH_AS
- ec_move2 ASSIST
- ec_move1 ASTONISH
- ec_word AT
- ec_word ATTACK
- ec_move2 ATTRACT
- ec_word AUNT
- ec_move1 AURORA_BEAM
- ec_word AVANT_GARDE
- ec_word AWAY
- ec_word AWESOME
- ec_word AWFUL
- ec_word AWFULLY
- ec_word AWW
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 AZUMARILL
- ec_pokemon2 AZUMARILL
- ec_pokemon1 AZURILL
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(AZUMARILL)
+ .2byte EC_POKEMON2(AZUMARILL)
+ .2byte EC_POKEMON(AZURILL)
gEasyChatWordsByLetter_B:: @ 859D19C
- ec_word BABE
- ec_word BABY
- ec_word BACK
- ec_word BAD
- ec_word BADLY
- ec_word BAG
- ec_pokemon1 BAGON
- ec_word BALL
- ec_pokemon1 BALTOY
- ec_pokemon1 BANETTE
- ec_word BANG
- ec_pokemon1 BARBOACH
- ec_move2 BARRAGE
- ec_move2 BARRIER
- ec_word BATH
- ec_move2 BATON_PASS
- ec_word BATTLE
- ec_word BATTLE_ARMOR
- ec_word BATTLE_ROOM
- ec_word BATTLE_TOWER
- ec_pokemon2 BAYLEEF
- ec_word BE
- ec_word BEAT
- ec_move2 BEAT_UP
- ec_pokemon1 BEAUTIFLY
- ec_word BEAUTIFUL
- ec_word BEAUTY
- ec_word BECOMES
- ec_pokemon2 BEEDRILL
- ec_word BEEN
- ec_word BEFORE
- ec_word BEGINNING
- ec_word BEING
- ec_pokemon1 BELDUM
- ec_word BELIEVE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 BELLOSSOM
- ec_pokemon2 BELLOSSOM
- ec_pokemon2 BELLSPROUT
- ec_move2 BELLY_DRUM
- ec_word BELONGS_TO
- ec_word BELOW
- ec_word BERRY
- ec_word BESIDE
- ec_word BEST
- ec_word BETTER
- ec_move1 BIDE
- ec_word BIG
- ec_word BIKE
- ec_move1 BIND
- ec_move1 BITE
- ec_move2 BLAST_BURN
- ec_pokemon2 BLASTOISE
- ec_word BLAZE
- ec_move2 BLAZE_KICK
- ec_pokemon1 BLAZIKEN
- ec_word BLEND
- ec_pokemon2 BLISSEY
- ec_move2 BLIZZARD
- ec_move2 BLOCK
- ec_word BOARD
- ec_move2 BODY_SLAM
- ec_move2 BONE_CLUB
- ec_move2 BONE_RUSH
- ec_move2 BONEMERANG
- ec_word BOOK
- ec_word BORED
- ec_word BORING
- ec_move2 BOUNCE
- ec_word BOY
- ec_word BRAG
- ec_word BREAK
- ec_pokemon1 BRELOOM
- ec_move1 BRICK_BREAK
- ec_word BROTHER
- ec_move1 BUBBLE
- ec_move2 BUBBLE_BEAM
- ec_word BUG
- ec_pokemon2 BULBASAUR
- ec_move2 BULK_UP
- ec_move2 BULLET_SEED
- ec_word BUSY
- ec_word BUT
- ec_pokemon2 BUTTERFREE
- ec_word BYE_BYE
+ .2byte EC_WORD_BABE
+ .2byte EC_WORD_BABY
+ .2byte EC_WORD_BACK
+ .2byte EC_WORD_BAD
+ .2byte EC_WORD_BADLY
+ .2byte EC_WORD_BAG
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_MOVE2(BLAST_BURN)
+ .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:: @ 859D248
- ec_pokemon1 CACNEA
- ec_pokemon1 CACTURNE
- ec_move2 CALM_MIND
- ec_word CAME
- ec_word CAMERA
- ec_pokemon1 CAMERUPT
- ec_move2 CAMOUFLAGE
- ec_word CAN
- ec_word CAN_WIN
- ec_word CAN_T
- ec_word CAN_T_WIN
- ec_word CANCEL
- ec_word CAPABLE
- ec_word CARDS
- ec_word CARE
- ec_word CARES
- ec_pokemon1 CARVANHA
- ec_pokemon1 CASCOON
- ec_word CASE
- ec_pokemon1 CASTFORM
- ec_pokemon2 CATERPIE
- ec_word CAUSE
- ec_pokemon2 CELEBI
- ec_word CENTER
- ec_word CHALLENGE
- ec_word CHANGE
- ec_word CHANNEL
- ec_pokemon2 CHANSEY
- ec_move1 CHARGE
- ec_pokemon2 CHARIZARD
- ec_move1 CHARM
- ec_pokemon2 CHARMANDER
- ec_pokemon2 CHARMELEON
- ec_word CHAT
- ec_pokemon2 CHIKORITA
- ec_word CHILD_S_PLAY
- ec_word CHILDREN
- ec_pokemon1 CHIMECHO
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 CHINCHOU
- ec_pokemon2 CHINCHOU
- ec_word CHLOROPHYLL
- ec_word CHOICE
- ec_word CHOOSE
- ec_word CHORES
- ec_move1 CLAMP
- ec_pokemon1 CLAMPERL
- ec_word CLASS
- ec_pokemon1 CLAYDOL
- ec_word CLEAR_BODY
- ec_pokemon2 CLEFABLE
- ec_pokemon2 CLEFAIRY
- ec_pokemon2 CLEFFA
- ec_word CLOSE
- ec_word CLOUD_NINE
- ec_pokemon2 CLOYSTER
- ec_word COLD
- ec_word COLLECT
- ec_word COLLECTION
- ec_word COLOR
- ec_word COLOR_CHANGE
- ec_pokemon1 COMBUSKEN
- ec_word COME
- ec_word COME_ON
- ec_word COME_OVER
- ec_move2 COMET_PUNCH
- ec_word COMICS
- ec_word COMMEMORATE
- ec_word COMPLETE
- ec_word COMPOUNDEYES
- ec_word CONCEDE
- ec_move1 CONFUSE_RAY
- ec_word CONFUSED
- ec_move2 CONFUSION
- ec_word CONGRATS
- ec_move1 CONSTRICT
- ec_word CONTEST
- ec_word CONVERSATION
- ec_move2 CONVERSION
- ec_move2 CONVERSION_2
- ec_word COOL
- ec_word COOLNESS
- ec_pokemon1 CORPHISH
- ec_word CORRECT
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 CORSOLA
- ec_pokemon2 CORSOLA
- ec_move1 COSMIC_POWER
- ec_move2 COTTON_SPORE
- ec_word COULD
- ec_word COULDN_T
- ec_word COUNT_ON
- ec_move1 COUNTER
- ec_word COUPLE
- ec_move2 COVET
- ec_move1 CRABHAMMER
- ec_pokemon1 CRADILY
- ec_pokemon1 CRAWDAUNT
- ec_word CRIES
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 CROBAT
- ec_pokemon2 CROBAT
- ec_pokemon2 CROCONAW
- ec_move1 CROSS_CHOP
- ec_move1 CRUNCH
- ec_word CRUSH
- ec_move2 CRUSH_CLAW
- ec_word CRY
- ec_pokemon2 CUBONE
- ec_word CURRENT
- ec_move2 CURSE
- ec_move1 CUT
- ec_word CUTE
- ec_word CUTE_CHARM
- ec_word CUTENESS
- ec_pokemon2 CYNDAQUIL
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(CROBAT)
+ .2byte EC_POKEMON2(CROBAT)
+ .2byte EC_POKEMON2(CROCONAW)
+ .2byte EC_MOVE(CROSS_CHOP)
+ .2byte EC_MOVE(CRUNCH)
+ .2byte EC_WORD_CRUSH
+ .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:: @ 859D336
- ec_word DAILY
- ec_word DAMP
- ec_word DANCE
- ec_word DANGER
- ec_word DARK
- ec_word DARN
- ec_word DATE
- ec_word DAUGHTER
- ec_word DAY
- ec_word DAYS
- ec_word DAYTIME
- ec_word DECIDE
- ec_word DECIDED
- ec_word DEEP
- ec_word DEFEATED
- ec_move2 DEFENSE_CURL
- ec_pokemon1 DELCATTY
- ec_pokemon2 DELIBIRD
- ec_pokemon1 DEOXYS
- ec_word DEPT_STORE
- ec_word DESIGN
- ec_word DESTINY
- ec_move2 DESTINY_BOND
- ec_word DESTROYED
- ec_move2 DETECT
- ec_pokemon2 DEWGONG
- ec_word DID
- ec_word DIDN_T
- ec_word DIET
- ec_word DIFFERENT
- ec_move1 DIG
- ec_word DIGITAL
- ec_pokemon2 DIGLETT
- ec_word DIRECT
- ec_move1 DISABLE
- ec_word DISAPPEAR
- ec_word DISAPPOINT
- ec_word DISAPPOINTED
- ec_word DISAPPOINTS
- ec_word DISASTER
- ec_word DISLIKE
- ec_word DISLIKES
- ec_pokemon2 DITTO
- ec_move2 DIVE
- ec_move2 DIZZY_PUNCH
- ec_word DO
- ec_word DOCILE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 DODRIO
- ec_pokemon2 DODRIO
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 DODUO
- ec_pokemon2 DODUO
- ec_word DOES
- ec_word DOESN_T
- ec_word DON_T
- ec_word DONE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 DONPHAN
- ec_pokemon2 DONPHAN
- ec_move2 DOOM_DESIRE
- ec_move2 DOUBLE_KICK
- ec_move1 DOUBLE_TEAM
- ec_move1 DOUBLE_EDGE
- ec_move1 DOUBLE_SLAP
- ec_word DOWN
- ec_word DOWNCAST
- ec_word DRAGON
- ec_move2 DRAGON_CLAW
- ec_move2 DRAGON_DANCE
- ec_move2 DRAGON_RAGE
- ec_pokemon2 DRAGONAIR
- ec_move2 DRAGON_BREATH
- ec_pokemon2 DRAGONITE
- ec_pokemon2 DRATINI
- ec_word DREAM
- ec_move2 DREAM_EATER
- ec_move2 DRILL_PECK
- ec_word DRINK
- ec_word DRINKS
- ec_word DRIZZLE
- ec_word DROOLING
- ec_word DROUGHT
- ec_pokemon2 DROWZEE
- ec_word DUDE
- ec_pokemon2 DUGTRIO
- ec_pokemon2 DUNSPARCE
- ec_pokemon1 DUSCLOPS
- ec_pokemon1 DUSKULL
- ec_pokemon1 DUSTOX
- ec_move2 DYNAMIC_PUNCH
+ .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_WORD_DIRECT
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(DODRIO)
+ .2byte EC_POKEMON2(DODRIO)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(DONPHAN)
+ .2byte EC_POKEMON2(DONPHAN)
+ .2byte EC_MOVE2(DOOM_DESIRE)
+ .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:: @ 859D3F2
- ec_word EARLIER
- ec_word EARLY_BIRD
- ec_move1 EARTHQUAKE
- ec_word EASY
- ec_word EAT
- ec_word EATS
- ec_word EEK
- ec_pokemon2 EEVEE
- ec_word EFFECT_SPORE
- ec_word EGG
- ec_move2 EGG_BOMB
- ec_word EH_QUES
- ec_word EHEHE
- ec_pokemon2 EKANS
- ec_pokemon2 ELECTABUZZ
- ec_word ELECTRIC
- ec_pokemon1 ELECTRIKE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 ELECTRODE
- ec_pokemon2 ELECTRODE
- ec_pokemon2 ELEKID
- ec_word ELSE
- ec_move2 EMBER
- ec_word EMERALD
- ec_move1 ENCORE
- ec_word ENCYCLOPEDIA
- ec_word END
- ec_move1 ENDEAVOR
- ec_move1 ENDURE
- ec_word ENJOY
- ec_word ENJOYS
- ec_word ENOUGH
- ec_pokemon2 ENTEI
- ec_word ENTERTAINING
- ec_move2 ERUPTION
- ec_word ESCAPE
- ec_pokemon2 ESPEON
- ec_word EVEN_SO
- ec_word EVENT
- ec_word EVENTS
- ec_word EVER
- ec_word EVERY
- ec_word EVOLUTION
- ec_word EVOLVE
- ec_word EXCELLENT
- ec_word EXCESS
- ec_word EXCITE
- ec_word EXCITING
- ec_word EXCUSE
- ec_word EXCUSE_ME
- ec_pokemon2 EXEGGCUTE
- ec_pokemon2 EXEGGUTOR
- ec_word EXISTS
- ec_word EXPENSIVE
- ec_move2 EXPLOSION
- ec_pokemon1 EXPLOUD
- ec_move1 EXTRASENSORY
- ec_move1 EXTREME_SPEED
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(ELECTRODE)
+ .2byte EC_POKEMON2(ELECTRODE)
+ .2byte EC_POKEMON2(ELEKID)
+ .2byte EC_WORD_ELSE
+ .2byte EC_MOVE2(EMBER)
+ .2byte EC_WORD_EMERALD
+ .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:: @ 859D468
- ec_word FABULOUS
- ec_move1 FACADE
- ec_word FAINT
- ec_move2 FAINT_ATTACK
- ec_word FAINTED
- ec_move2 FAKE_OUT
- ec_move1 FAKE_TEARS
- ec_word FALL
- ec_move2 FALSE_SWIPE
- ec_word FAMILY
- ec_word FANTASTIC
- ec_word FAR
- ec_pokemon2 FARFETCH_D
- ec_word FASHION
- ec_word FAST
- ec_word FATHER
- ec_word FEAR
- ec_pokemon2 FEAROW
- ec_move2 FEATHER_DANCE
- ec_pokemon1 FEEBAS
- ec_word FEELING
- ec_pokemon2 FERALIGATR
- ec_word FESTIVAL
- ec_word FEVER
- ec_word FIERY
- ec_word FIGHT
- ec_word FIGHTING
- ec_word FIGHTS
- ec_word FINAL
- ec_word FINALLY
- ec_word FINISH
- ec_word FIRE
- ec_move2 FIRE_BLAST
- ec_move2 FIRE_PUNCH
- ec_move2 FIRE_SPIN
- ec_word FISHING
- ec_move1 FISSURE
- ec_pokemon2 FLAAFFY
- ec_move1 FLAIL
- ec_word FLAME
- ec_word FLAME_BODY
- ec_move1 FLAME_WHEEL
- ec_move1 FLAMETHROWER
- ec_pokemon2 FLAREON
- ec_move2 FLASH
- ec_word FLASH_FIRE
- ec_word FLATTEN
- ec_move1 FLATTER
- ec_word FLOWERS
- ec_move1 FLY
- ec_pokemon1 FLYGON
- ec_word FLYING
- ec_move1 FOCUS_ENERGY
- ec_move1 FOCUS_PUNCH
- ec_word FOE
- ec_move1 FOLLOW_ME
- ec_word FOR
- ec_word FOR_NOW
- ec_word FORECAST
- ec_move2 FORESIGHT
- ec_word FOREVER
- ec_word FORGET
- ec_word FORGETS
- ec_word FORGIVE
- ec_pokemon2 FORRETRESS
- ec_move2 FRENZY_PLANT
- ec_word FRIDAY
- ec_word FRIEND
- ec_word FROM
- ec_word FRONT
- ec_word FRONTIER
- ec_move2 FRUSTRATION
- ec_word FUFUFU
- ec_word FULL
- ec_word FUNNY
- ec_pokemon2 FURRET
- ec_move2 FURY_ATTACK
- ec_move2 FURY_CUTTER
- ec_move2 FURY_SWIPES
- ec_move2 FUTURE_SIGHT
+ .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
+ .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_MOVE2(FRENZY_PLANT)
+ .2byte EC_WORD_FRIDAY
+ .2byte EC_WORD_FRIEND
+ .2byte EC_WORD_FROM
+ .2byte EC_WORD_FRONT
+ .2byte EC_WORD_FRONTIER
+ .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:: @ 859D508
- ec_word GAME
- ec_pokemon1 GARDEVOIR
- ec_pokemon2 GASTLY
- ec_pokemon2 GENGAR
- ec_word GENIUS
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GEODUDE
- ec_pokemon2 GEODUDE
- ec_word GET
- ec_word GETS
- ec_word GHOST
- ec_word GIDDY
- ec_move1 GIGA_DRAIN
- ec_word GIGGLE
- ec_word GIMME
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GIRAFARIG
- ec_pokemon2 GIRAFARIG
- ec_word GIRL
- ec_word GIVE
- ec_word GIVE_ME
- ec_word GIVE_UP
- ec_word GIVES
- ec_pokemon1 GLALIE
- ec_move2 GLARE
- ec_pokemon2 GLIGAR
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GLOOM
- ec_pokemon2 GLOOM
- ec_word GO
- ec_word GO_AHEAD
- ec_word GO_EASY
- ec_word GO_HOME
- ec_word GOES
- ec_word GOING
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GOLBAT
- ec_pokemon2 GOLBAT
- ec_word GOLD
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GOLDEEN
- ec_pokemon2 GOLDEEN
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GOLDUCK
- ec_pokemon2 GOLDUCK
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GOLEM
- ec_pokemon2 GOLEM
- ec_word GOOD
- ec_word GOOD_BYE
- ec_pokemon1 GOREBYSS
- ec_word GOT
- ec_word GOTCHA
- ec_word GOURMET
- ec_word GRAAAH
- ec_pokemon2 GRANBULL
- ec_word GRANDFATHER
- ec_word GRANDMOTHER
- ec_word GRASS
- ec_move1 GRASS_WHISTLE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GRAVELER
- ec_pokemon2 GRAVELER
- ec_word GREAT
- ec_word GREEN
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GRIMER
- ec_pokemon2 GRIMER
- ec_pokemon1 GROUDON
- ec_word GROUND
- ec_word GROUP
- ec_pokemon1 GROVYLE
- ec_move2 GROWL
- ec_pokemon2 GROWLITHE
- ec_move1 GROWTH
- ec_move1 GRUDGE
- ec_pokemon1 GRUMPIG
- ec_word GUARD
- ec_move2 GUILLOTINE
- ec_pokemon1 GULPIN
- ec_move1 GUST
- ec_word GUTS
- ec_word GUTSY
- ec_word GWAH
- ec_word GWAHAHAHA
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 GYARADOS
- ec_pokemon2 GYARADOS
+ .2byte EC_WORD_GAME
+ .2byte EC_POKEMON(GARDEVOIR)
+ .2byte EC_POKEMON2(GASTLY)
+ .2byte EC_POKEMON2(GENGAR)
+ .2byte EC_WORD_GENIUS
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(GOLBAT)
+ .2byte EC_POKEMON2(GOLBAT)
+ .2byte EC_WORD_GOLD
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(GOLDEEN)
+ .2byte EC_POKEMON2(GOLDEEN)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(GOLDUCK)
+ .2byte EC_POKEMON2(GOLDUCK)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(GRAVELER)
+ .2byte EC_POKEMON2(GRAVELER)
+ .2byte EC_WORD_GREAT
+ .2byte EC_WORD_GREEN
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(GYARADOS)
+ .2byte EC_POKEMON2(GYARADOS)
gEasyChatWordsByLetter_H:: @ 859D5CC
- ec_word HABIT
- ec_word HAH
- ec_word HAHAHA
- ec_move1 HAIL
- ec_word HALL_OF_FAME
- ec_word HAPPENING
- ec_word HAPPILY
- ec_word HAPPINESS
- ec_word HAPPY
- ec_word HARD
- ec_move1 HARDEN
- ec_pokemon1 HARIYAMA
- ec_word HAS
- ec_word HASSLE
- ec_pokemon2 HAUNTER
- ec_word HAVE
- ec_word HAVEN_T
- ec_move1 HAZE
- ec_word HE
- ec_word HE_S
- ec_move1 HEADBUTT
- ec_move1 HEAL_BELL
- ec_word HEALTHY
- ec_word HEAR
- ec_word HEARING
- ec_word HEARS
- ec_word HEART
- ec_move2 HEAT_WAVE
- ec_word HEH
- ec_word HEHE
- ec_word HEHEHE
- ec_word HELLO
- ec_move2 HELPING_HAND
- ec_word HER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 HERACROSS
- ec_pokemon2 HERACROSS
- ec_word HERE
- ec_word HERE_GOES
- ec_word HERE_I_COME
- ec_word HERE_IT_IS
- ec_word HERO
- ec_word HEROINE
- ec_word HERS
- ec_word HEY
- ec_word HEY_THERE
- ec_word HEY_QUES
- ec_word HI
- ec_move2 HI_JUMP_KICK
- ec_word HIDDEN
- ec_move2 HIDDEN_POWER
- ec_word HIGH
- ec_word HIGHS
- ec_word HIM
- ec_word HIP_AND
- ec_word HIS
- ec_word HIT
- ec_pokemon2 HITMONCHAN
- ec_pokemon2 HITMONLEE
- ec_pokemon2 HITMONTOP
- ec_word HIYAH
- ec_word HMM
- ec_pokemon2 HO_OH
- ec_word HOBBY
- ec_word HOHOHO
- ec_word HOLIDAY
- ec_word HOME
- ec_word HOO_HAH
- ec_pokemon2 HOOTHOOT
- ec_word HOPELESS
- ec_pokemon2 HOPPIP
- ec_move2 HORN_ATTACK
- ec_move2 HORN_DRILL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 HORSEA
- ec_pokemon2 HORSEA
- ec_word HOT
- ec_pokemon2 HOUNDOOM
- ec_pokemon2 HOUNDOUR
- ec_word HOW
- ec_word HOW_DO
- ec_word HOWEVER
- ec_move2 HOWL
- ec_word HUGE_POWER
- ec_word HUH_QUES
- ec_word HUMPH
- ec_word HUNGRY
- ec_pokemon1 HUNTAIL
- ec_word HURRIED
- ec_word HUSTLE
- ec_move2 HYDRO_CANNON
- ec_move2 HYDRO_PUMP
- ec_word HYPER
- ec_move2 HYPER_BEAM
- ec_word HYPER_CUTTER
- ec_move2 HYPER_FANG
- ec_move2 HYPER_VOICE
- ec_pokemon2 HYPNO
- ec_move1 HYPNOSIS
+ .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 -1, 2 @ doubled Pokémon species names
+ .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_HERS
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_CANNON)
+ .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:: @ 859D696
- ec_word I
- ec_word I_AM
- ec_word I_CHOOSE_YOU
- ec_word I_WAS
- ec_word I_VE
- ec_word I_VE_ARRIVED
- ec_word ICE
- ec_move1 ICE_BALL
- ec_move2 ICE_BEAM
- ec_move2 ICE_PUNCH
- ec_move2 ICICLE_SPEAR
- ec_move1 ICY_WIND
- ec_word IDOL
- ec_word IF
- ec_word IF_I_LOSE
- ec_word IF_I_WIN
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 IGGLYBUFF
- ec_pokemon2 IGGLYBUFF
- ec_word IGNORANT
- ec_word ILLUMINATE
- ec_pokemon1 ILLUMISE
- ec_word IMMUNITY
- ec_word IMPORTANT
- ec_word IMPOSSIBLE
- ec_move2 IMPRISON
- ec_word IN
- ec_word INCREASING
- ec_word INCREDIBLE
- ec_word INFORMATION
- ec_move2 INGRAIN
- ec_word INNER_FOCUS
- ec_word INSIDE
- ec_word INSOMNIA
- ec_word INSTEAD
- ec_word INTIMIDATE
- ec_word INVINCIBLE
- ec_move2 IRON_DEFENSE
- ec_move1 IRON_TAIL
- ec_word IS
- ec_word IS_IT_QUES
- ec_word ISN_T
- ec_word ISN_T_IT_QUES
- ec_word IT
- ec_word IT_S
- ec_word ITEM
- ec_pokemon2 IVYSAUR
+ .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_MOVE2(ICICLE_SPEAR)
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859D6F6
.2byte -1, 2 @ doubled Pokémon species names
- 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:: @ 859D710
- ec_pokemon2 KABUTO
- ec_pokemon2 KABUTOPS
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 KADABRA
- ec_pokemon2 KADABRA
- ec_pokemon2 KAKUNA
- ec_pokemon2 KANGASKHAN
- ec_move1 KARATE_CHOP
- ec_pokemon1 KECLEON
- ec_word KEEN_EYE
- ec_word KID
- ec_word KIDDING
- ec_word KIND
- ec_word KINDERGARTEN
- ec_move1 KINESIS
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 KINGDRA
- ec_pokemon2 KINGDRA
- ec_pokemon2 KINGLER
- ec_pokemon1 KIRLIA
- ec_move2 KNOCK_OFF
- ec_word KNOCKOUT
- ec_word KNOW
- ec_word KNOWS
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 KOFFING
- ec_pokemon2 KOFFING
- ec_pokemon2 KRABBY
- ec_word KTHX_BYE
- ec_pokemon1 KYOGRE
+ .2byte EC_POKEMON2(KABUTO)
+ .2byte EC_POKEMON2(KABUTOPS)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(KOFFING)
+ .2byte EC_POKEMON2(KOFFING)
+ .2byte EC_POKEMON2(KRABBY)
+ .2byte EC_WORD_KTHX_BYE
+ .2byte EC_POKEMON(KYOGRE)
gEasyChatWordsByLetter_L:: @ 859D752
- ec_word LACKING
- ec_word LACKS
- ec_word LADY
- ec_pokemon1 LAIRON
- ec_word LALALA
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 LANTURN
- ec_pokemon2 LANTURN
- ec_pokemon2 LAPRAS
- ec_pokemon2 LARVITAR
- ec_word LAST
- ec_word LATE
- ec_word LATER
- ec_pokemon1 LATIAS
- ec_pokemon1 LATIOS
- ec_word LAVISH
- ec_word LAY
- ec_word LEADER
- ec_word LEADERS
- ec_word LEAF
- ec_move2 LEAF_BLADE
- ec_word LEARN
- ec_pokemon2 LEDIAN
- ec_pokemon2 LEDYBA
- ec_move1 LEECH_LIFE
- ec_move2 LEECH_SEED
- ec_move2 LEER
- ec_word LEFT
- ec_word LEGEND
- ec_word LESS
- ec_word LESSONS
- ec_word LET_ME_WIN
- ec_word LET_S
- ec_word LETTER
- ec_word LEVEL
- ec_word LEVITATE
- ec_move1 LICK
- ec_pokemon2 LICKITUNG
- ec_word LIE
- ec_word LIFE
- ec_move2 LIGHT_SCREEN
- ec_word LIGHTNINGROD
- ec_word LIKE
- ec_word LIKELY_TO
- ec_word LIKES
- ec_pokemon1 LILEEP
- ec_word LIMBER
- ec_word LINK
- ec_pokemon1 LINOONE
- ec_word LIQUID_OOZE
- ec_word LISTEN
- ec_word LISTENING
- ec_word LISTENS
- ec_word LIVING
- ec_move2 LOCK_ON
- ec_word LOCOMOTIVE
- ec_word LOL
- ec_word LOLLING
- ec_pokemon1 LOMBRE
- ec_word LONESOME
- ec_word LOOK
- ec_word LOOKS
- ec_word LOSE
- ec_word LOSER
- ec_word LOSING
- ec_word LOSS
- ec_word LOST
- ec_pokemon1 LOTAD
- ec_pokemon1 LOUDRED
- ec_word LOUSY
- ec_move1 LOVELY_KISS
- ec_word LOVEY_DOVEY
- ec_word LOW
- ec_move1 LOW_KICK
- ec_word LOWS
- ec_pokemon1 LUDICOLO
- ec_pokemon2 LUGIA
- ec_word LUKEWARM
- ec_pokemon1 LUNATONE
- ec_move2 LUSTER_PURGE
- ec_pokemon1 LUVDISC
+ .2byte EC_WORD_LACKING
+ .2byte EC_WORD_LACKS
+ .2byte EC_WORD_LADY
+ .2byte EC_POKEMON(LAIRON)
+ .2byte EC_WORD_LALALA
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_LEAF
+ .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:: @ 859D7F6
- ec_move2 MACH_PUNCH
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MACHAMP
- ec_pokemon2 MACHAMP
- ec_word MACHINE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MACHOKE
- ec_pokemon2 MACHOKE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MACHOP
- ec_pokemon2 MACHOP
- ec_word MAGAZINE
- ec_pokemon2 MAGBY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MAGCARGO
- ec_pokemon2 MAGCARGO
- ec_move2 MAGIC_COAT
- ec_move2 MAGICAL_LEAF
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MAGIKARP
- ec_pokemon2 MAGIKARP
- ec_word MAGMA_ARMOR
- ec_pokemon2 MAGMAR
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MAGNEMITE
- ec_pokemon2 MAGNEMITE
- ec_word MAGNET_PULL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MAGNETON
- ec_pokemon2 MAGNETON
- ec_move2 MAGNITUDE
- ec_word MAIL
- ec_word MAKE
- ec_word MAKING
- ec_pokemon1 MAKUHITA
- ec_word MAN
- ec_pokemon1 MANECTRIC
- ec_pokemon2 MANKEY
- ec_pokemon2 MANTINE
- ec_pokemon2 MAREEP
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MARILL
- ec_pokemon2 MARILL
- ec_pokemon2 MAROWAK
- ec_pokemon1 MARSHTOMP
- ec_word MARVEL_SCALE
- ec_pokemon1 MASQUERAIN
- ec_word MASTER
- ec_word MATCH
- ec_word MATCH_UP
- ec_pokemon1 MAWILE
- ec_word MAYBE
- ec_word MC
- ec_word ME
- ec_word MEAN
- ec_move1 MEAN_LOOK
- ec_pokemon1 MEDICHAM
- ec_move2 MEDITATE
- ec_pokemon1 MEDITITE
- ec_word MEET
- ec_word MEET_YOU
- ec_word MEETS
- ec_word MEGA
- ec_move2 MEGA_DRAIN
- ec_move2 MEGA_KICK
- ec_move2 MEGA_PUNCH
- ec_move2 MEGAHORN
- ec_pokemon2 MEGANIUM
- ec_move1 MEMENTO
- ec_pokemon2 MEOWTH
- ec_word MESSAGE
- ec_pokemon1 METAGROSS
- ec_move2 METAL_CLAW
- ec_move1 METAL_SOUND
- ec_pokemon1 METANG
- ec_pokemon2 METAPOD
- ec_move1 METEOR_MASH
- ec_move2 METRONOME
- ec_pokemon2 MEW
- ec_pokemon2 MEWTWO
- ec_pokemon1 MIGHTYENA
- ec_move2 MILK_DRINK
- ec_pokemon1 MILOTIC
- ec_pokemon2 MILTANK
- ec_move2 MIMIC
- ec_move1 MIND_READER
- ec_move2 MINIMIZE
- ec_pokemon1 MINUN
- ec_word MINUS
- ec_move2 MIRROR_COAT
- ec_move1 MIRROR_MOVE
- ec_pokemon2 MISDREAVUS
- ec_word MISHEARD
- ec_word MISS
- ec_move1 MIST
- ec_move2 MIST_BALL
- ec_word MISTAKE
- ec_word MMM
- ec_word MODE
- ec_word MODERN
- ec_pokemon2 MOLTRES
- ec_word MOMENTUM
- ec_word MONDAY
- ec_word MONEY
- ec_word MONTH
- ec_word MOOD
- ec_move2 MOONLIGHT
- ec_word MORE
- ec_word MORNING
- ec_move1 MORNING_SUN
- ec_word MOTHER
- ec_word MOVE
- ec_word MOVIE
- ec_word MR
- ec_pokemon2 MR_MIME
- ec_word MRS
- ec_word MUCH
- ec_word MUCH_OBLIGED
- ec_move2 MUD_SHOT
- ec_move2 MUD_SPORT
- ec_move2 MUD_SLAP
- ec_move2 MUDDY_WATER
- ec_pokemon1 MUDKIP
- ec_word MUFUFU
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 MUK
- ec_pokemon2 MUK
- ec_pokemon2 MURKROW
- ec_word MUSIC
- ec_word MUST_BE
- ec_word MY
- ec_word MYSELF
- ec_word MYSTERY
+ .2byte EC_MOVE2(MACH_PUNCH)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MACHAMP)
+ .2byte EC_POKEMON2(MACHAMP)
+ .2byte EC_WORD_MACHINE
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MACHOKE)
+ .2byte EC_POKEMON2(MACHOKE)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MACHOP)
+ .2byte EC_POKEMON2(MACHOP)
+ .2byte EC_WORD_MAGAZINE
+ .2byte EC_POKEMON2(MAGBY)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MAGCARGO)
+ .2byte EC_POKEMON2(MAGCARGO)
+ .2byte EC_MOVE2(MAGIC_COAT)
+ .2byte EC_MOVE2(MAGICAL_LEAF)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MAGIKARP)
+ .2byte EC_POKEMON2(MAGIKARP)
+ .2byte EC_WORD_MAGMA_ARMOR
+ .2byte EC_POKEMON2(MAGMAR)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(MAGNEMITE)
+ .2byte EC_POKEMON2(MAGNEMITE)
+ .2byte EC_WORD_MAGNET_PULL
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859D912
- ec_word NAME
- ec_word NAP
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 NATU
- ec_pokemon2 NATU
- ec_word NATURAL
- ec_word NATURAL_CURE
- ec_word NATURALLY
- ec_word NATURE
- ec_move1 NATURE_POWER
- ec_word NEAR
- ec_word NEARLY
- ec_word NEED
- ec_move2 NEEDLE_ARM
- ec_word NEGATIVE
- ec_word NEVER
- ec_word NEW
- ec_word NEWS
- ec_word NEXT
- ec_word NICE
- ec_pokemon2 NIDOKING
- ec_pokemon2 NIDOQUEEN
- ec_pokemon2 NIDORAN_F
- ec_pokemon2 NIDORAN_M
- ec_pokemon2 NIDORINA
- ec_pokemon2 NIDORINO
- ec_word NIGHT
- ec_move2 NIGHT_SHADE
- ec_move1 NIGHTMARE
- ec_word NIGHTTIME
- ec_pokemon1 NINCADA
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 NINETALES
- ec_pokemon2 NINETALES
- ec_pokemon1 NINJASK
- ec_word NITWIT
- ec_word NO
- ec_word NO_MATCH
- ec_word NO_1
- ec_pokemon2 NOCTOWL
- ec_word NOISY
- ec_word NON_STOP
- ec_word NONE
- ec_word NOPE
- ec_word NORMAL
- ec_pokemon1 NOSEPASS
- ec_word NOT
- ec_word NOT_VERY
- ec_word NOTHING
- ec_word NOW
- ec_pokemon1 NUMEL
- ec_pokemon1 NUZLEAF
+ .2byte EC_WORD_NAME
+ .2byte EC_WORD_NAP
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859D97E
- ec_word OBLIVIOUS
- ec_move1 OCTAZOOKA
- ec_pokemon2 OCTILLERY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 ODDISH
- ec_pokemon2 ODDISH
- ec_move1 ODOR_SLEUTH
- ec_word OF
- ec_word OFF
- ec_word OFFENSIVE
- ec_word OH
- ec_word OH_DEAR
- ec_word OH_YEAH
- ec_word OH_KAY
- ec_word OH_QUES
- ec_word OI
- ec_word OI_OI_OI
- ec_word OK_QUES
- ec_word OKAY
- ec_word OLD
- ec_word OLDEN
- ec_pokemon2 OMANYTE
- ec_pokemon2 OMASTAR
- ec_word ON
- ec_word ONCE
- ec_pokemon2 ONIX
- ec_word ONLY
- ec_word OOPS
- ec_word OPPONENT
- ec_word OPPOSITE
- ec_word OR
- ec_word OTHER
- ec_word OUR
- ec_word OUT
- ec_move1 OUTRAGE
- ec_word OUTSIDE
- ec_word OVER
- ec_word OVERDO
- ec_word OVERGROW
- ec_move1 OVERHEAT
- ec_word OVERWHELMING
- ec_word OWN
- ec_word OWN_TEMPO
+ .2byte EC_WORD_OBLIVIOUS
+ .2byte EC_MOVE(OCTAZOOKA)
+ .2byte EC_POKEMON2(OCTILLERY)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859D9D6
- ec_move1 PAIN_SPLIT
- ec_pokemon2 PARAS
- ec_pokemon2 PARASECT
- ec_word PARDON
- ec_word PARENT
- ec_word PARTNER
- ec_word PARTY
- ec_word PATTERN
- ec_move2 PAY_DAY
- ec_word PC
- ec_move2 PECK
- ec_pokemon1 PELIPPER
- ec_word PERFECT
- ec_word PERFECTION
- ec_move2 PERISH_SONG
- ec_pokemon2 PERSIAN
- ec_word PERSON
- ec_move2 PETAL_DANCE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 PHANPY
- ec_pokemon2 PHANPY
- ec_word PHONE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 PICHU
- ec_pokemon2 PICHU
- ec_word PICKUP
- ec_pokemon2 PIDGEOT
- ec_pokemon2 PIDGEOTTO
- ec_pokemon2 PIDGEY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 PIKACHU
- ec_pokemon2 PIKACHU
- ec_pokemon2 PILOSWINE
- ec_move2 PIN_MISSILE
- ec_pokemon2 PINECO
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 PINSIR
- ec_pokemon2 PINSIR
- ec_word PKRS
- ec_word PLACE
- ec_word PLANS
- ec_word PLAY
- ec_word PLAYED
- ec_word PLAYS
- ec_word PLEASE
- ec_word PLUS
- ec_word PLUSH_DOLL
- ec_pokemon1 PLUSLE
- ec_word POINTS
- ec_word POISON
- ec_move2 POISON_FANG
- ec_move2 POISON_GAS
- ec_word POISON_POINT
- ec_move2 POISON_STING
- ec_move2 POISON_TAIL
- ec_move2 POISON_POWDER
- ec_word POKEBLOCK
- ec_word POKEDEX
- ec_word POKEMON
- ec_word POKENAV
- ec_pokemon2 POLITOED
- ec_pokemon2 POLIWAG
- ec_pokemon2 POLIWHIRL
- ec_pokemon2 POLIWRATH
- ec_pokemon2 PONYTA
- ec_pokemon1 POOCHYENA
- ec_word POPULAR
- ec_pokemon2 PORYGON
- ec_pokemon2 PORYGON2
- ec_move2 POUND
- ec_move1 POWDER_SNOW
- ec_word POWER
- ec_word PRAISE
- ec_word PREPOSTEROUS
- ec_move2 PRESENT
- ec_word PRESSURE
- ec_word PRETEND
- ec_word PRETTY
- ec_pokemon2 PRIMEAPE
- ec_word PROBABLY
- ec_word PROMISE
- ec_move2 PROTECT
- ec_move1 PSYBEAM
- ec_move1 PSYCH_UP
- .2byte -1, 2 @ doubled Pokémon species names
- ec_word PSYCHIC
- ec_move1 PSYCHIC
- ec_move1 PSYCHO_BOOST
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 PSYDUCK
- ec_pokemon2 PSYDUCK
- ec_move1 PSYWAVE
- ec_pokemon2 PUPITAR
- ec_word PURE_POWER
- ec_move1 PURSUIT
- ec_word PUSHOVER
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(PHANPY)
+ .2byte EC_POKEMON2(PHANPY)
+ .2byte EC_WORD_PHONE
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(PICHU)
+ .2byte EC_POKEMON2(PICHU)
+ .2byte EC_WORD_PICKUP
+ .2byte EC_POKEMON2(PIDGEOT)
+ .2byte EC_POKEMON2(PIDGEOTTO)
+ .2byte EC_POKEMON2(PIDGEY)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(PIKACHU)
+ .2byte EC_POKEMON2(PIKACHU)
+ .2byte EC_POKEMON2(PILOSWINE)
+ .2byte EC_MOVE2(PIN_MISSILE)
+ .2byte EC_POKEMON2(PINECO)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_WORD_PSYCHIC
+ .2byte EC_MOVE(PSYCHIC)
+ .2byte EC_MOVE(PSYCHO_BOOST)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859DAA2
- 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:: @ 859DAAE
- ec_word RADIO
- ec_move1 RAGE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 RAICHU
- ec_pokemon2 RAICHU
- ec_pokemon2 RAIKOU
- ec_move1 RAIN_DANCE
- ec_word RAIN_DISH
- ec_pokemon1 RALTS
- ec_word RANK
- ec_move1 RAPID_SPIN
- ec_pokemon2 RAPIDASH
- ec_word RARE
- ec_word RATHER
- ec_pokemon2 RATICATE
- ec_pokemon2 RATTATA
- ec_pokemon1 RAYQUAZA
- ec_move2 RAZOR_LEAF
- ec_move1 RAZOR_WIND
- ec_word READY
- ec_word REALLY
- ec_word REAR
- ec_word RECEIVED
- ec_word RECOMMEND
- ec_move1 RECOVER
- ec_move2 RECYCLE
- ec_word RED
- ec_move2 REFLECT
- ec_move2 REFRESH
- ec_word REFRESHING
- ec_word REFUSE
- ec_pokemon1 REGICE
- ec_pokemon1 REGIROCK
- ec_pokemon1 REGISTEEL
- ec_word REJECT
- ec_word RELEASE
- ec_pokemon1 RELICANTH
- ec_pokemon2 REMORAID
- ec_word RENTAL
- ec_move2 REST
- ec_word RESUSCITATE
- ec_move1 RETURN
- ec_move2 REVENGE
- ec_move1 REVERSAL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 RHYDON
- ec_pokemon2 RHYDON
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 RHYHORN
- ec_pokemon2 RHYHORN
- ec_word RIBBON
- ec_word RICKETY
- ec_word RIGHT
- ec_word RIPPED
- ec_word RIVAL
- ec_move2 ROAR
- ec_word ROCK
- ec_move2 ROCK_BLAST
- ec_word ROCK_HEAD
- ec_move1 ROCK_SLIDE
- ec_move1 ROCK_SMASH
- ec_move1 ROCK_THROW
- ec_move1 ROCK_TOMB
- ec_word ROCK_SOLID
- ec_move2 ROLE_PLAY
- ec_move2 ROLLING_KICK
- ec_move1 ROLLOUT
- ec_word ROMANTIC
- ec_word ROOM
- ec_pokemon1 ROSELIA
- ec_word ROUGH_SKIN
- ec_word RPG
- ec_word RUBY
- ec_word RULE
- ec_word RUN
- ec_word RUN_AWAY
- ec_word RUNS
+ .2byte EC_WORD_RADIO
+ .2byte EC_MOVE(RAGE)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_RED
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(RHYDON)
+ .2byte EC_POKEMON2(RHYDON)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_ROOM
+ .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:: @ 859DB4E
- ec_pokemon1 SABLEYE
- ec_move1 SACRED_FIRE
- ec_word SAD
- ec_word SADLY
- ec_move1 SAFEGUARD
- ec_word SAID
- ec_pokemon1 SALAMENCE
- ec_word SAND_STREAM
- ec_move1 SAND_TOMB
- ec_word SAND_VEIL
- ec_move1 SAND_ATTACK
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SANDSHREW
- ec_pokemon2 SANDSHREW
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SANDSLASH
- ec_pokemon2 SANDSLASH
- ec_move1 SANDSTORM
- ec_word SAPPHIRE
- ec_word SATISFIED
- ec_word SATURDAY
- ec_word SAYS
- ec_word SCARY
- ec_move1 SCARY_FACE
- ec_word SCATTER
- ec_pokemon1 SCEPTILE
- ec_word SCHOOL
- ec_pokemon2 SCIZOR
- ec_move2 SCRATCH
- ec_move1 SCREECH
- ec_pokemon2 SCYTHER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SEADRA
- ec_pokemon2 SEADRA
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SEAKING
- ec_pokemon2 SEAKING
- ec_pokemon1 SEALEO
- ec_word SEARCH
- ec_word SECRET
- ec_word SECRET_BASE
- ec_move2 SECRET_POWER
- ec_word SEE
- ec_word SEE_YA
- ec_pokemon1 SEEDOT
- ec_word SEEK
- ec_pokemon2 SEEL
- ec_word SEEMS
- ec_word SEES
- ec_move2 SEISMIC_TOSS
- ec_move1 SELF_DESTRUCT
- ec_word SENSE
- ec_pokemon2 SENTRET
- ec_word SERENE_GRACE
- ec_word SERIOUS
- ec_word SERIOUSLY
- ec_word SERVICE
- ec_pokemon1 SEVIPER
- ec_move1 SHADOW_BALL
- ec_move1 SHADOW_PUNCH
- ec_word SHADOW_TAG
- ec_word SHADY
- ec_word SHAKE
- ec_word SHAKY
- ec_word SHALLOW
- ec_pokemon1 SHARPEDO
- ec_move1 SHARPEN
- ec_word SHE
- ec_word SHE_IS
- ec_word SHE_WAS
- ec_word SHED_SKIN
- ec_pokemon1 SHEDINJA
- ec_move1 SHEER_COLD
- ec_pokemon1 SHELGON
- ec_word SHELL_ARMOR
- ec_pokemon2 SHELLDER
- ec_word SHIELD_DUST
- ec_pokemon1 SHIFTRY
- ec_word SHINE
- ec_move2 SHOCK_WAVE
- ec_word SHOCKED
- ec_word SHOPPING
- ec_word SHOULD
- ec_word SHOW
- ec_word SHREDDED
- ec_pokemon1 SHROOMISH
- ec_pokemon2 SHUCKLE
- ec_pokemon1 SHUPPET
- ec_word SIBLINGS
- ec_word SIGH
- ec_move1 SIGNAL_BEAM
- ec_pokemon1 SILCOON
- ec_word SILKY
- ec_word SILVER
- ec_move1 SILVER_WIND
- ec_word SIMPLE
- ec_word SINCE
- ec_move1 SING
- ec_word SINK
- ec_word SISTER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SKARMORY
- ec_pokemon2 SKARMORY
- ec_move1 SKETCH
- ec_word SKILL
- ec_move1 SKILL_SWAP
- ec_word SKILLED
- ec_pokemon2 SKIPLOOM
- ec_pokemon1 SKITTY
- ec_move2 SKULL_BASH
- ec_move1 SKY_ATTACK
- ec_move1 SKY_UPPERCUT
- ec_move2 SLACK_OFF
- ec_pokemon1 SLAKING
- ec_pokemon1 SLAKOTH
- ec_move2 SLAM
- ec_move1 SLASH
- ec_word SLEEP
- ec_move2 SLEEP_POWDER
- ec_move2 SLEEP_TALK
- ec_word SLEPT
- ec_word SLIDE
- ec_word SLIMY
- ec_pokemon2 SLOWBRO
- ec_pokemon2 SLOWKING
- ec_pokemon2 SLOWPOKE
- ec_move2 SLUDGE
- ec_move2 SLUDGE_BOMB
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 SLUGMA
- ec_pokemon2 SLUGMA
- ec_word SMACK
- ec_word SMALL
- ec_word SMART
- ec_word SMARTNESS
- ec_pokemon2 SMEARGLE
- ec_word SMELL
- ec_word SMELL_YA
- ec_move1 SMELLING_SALT
- ec_word SMITE
- ec_move1 SMOG
- ec_move1 SMOKESCREEN
- ec_pokemon2 SMOOCHUM
- ec_word SMOOTH
- ec_move2 SNATCH
- ec_pokemon2 SNEASEL
- ec_move1 SNORE
- ec_pokemon2 SNORLAX
- ec_word SNORT
- ec_pokemon1 SNORUNT
- ec_pokemon2 SNUBBULL
- ec_word SO
- ec_move2 SOFT_BOILED
- ec_word SOFTWARE
- ec_move1 SOLAR_BEAM
- ec_pokemon1 SOLROCK
- ec_word SOME
- ec_word SOMEHOW
- ec_word SOMEONE
- ec_word SOMETHING
- ec_word SOMETIME
- ec_word SON
- ec_word SONG
- ec_word SONGS
- ec_move1 SONIC_BOOM
- ec_word SOON
- ec_word SORRY
- ec_word SOUNDPROOF
- ec_word SP_ABILITY
- ec_move1 SPARK
- ec_pokemon2 SPEAROW
- ec_word SPECTATOR
- ec_word SPEED_BOOST
- ec_pokemon1 SPHEAL
- ec_move1 SPIDER_WEB
- ec_move2 SPIKE_CANNON
- ec_move2 SPIKES
- ec_pokemon2 SPINARAK
- ec_pokemon1 SPINDA
- ec_word SPIRALING
- ec_word SPIRIT
- ec_move2 SPIT_UP
- ec_move1 SPITE
- ec_move2 SPLASH
- ec_pokemon1 SPOINK
- ec_move1 SPORE
- ec_word SPORTS
- ec_word SPRING
- ec_pokemon2 SQUIRTLE
- ec_word STAGE
- ec_pokemon2 STANTLER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 STARMIE
- ec_pokemon2 STARMIE
- ec_word START
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 STARYU
- ec_pokemon2 STARYU
- ec_word STATIC
- ec_word STAY_AT_HOME
- ec_word STEEL
- ec_move2 STEEL_WING
- ec_pokemon2 STEELIX
- ec_word STENCH
- ec_word STICKY_HOLD
- ec_move2 STOCKPILE
- ec_move2 STOMP
- ec_word STOP
- ec_word STORE
- ec_word STORES
- ec_word STORY
- ec_word STRATEGY
- ec_move1 STRENGTH
- ec_move1 STRING_SHOT
- ec_word STRONG
- ec_move2 STRUGGLE
- ec_word STUDY
- ec_move1 STUN_SPORE
- ec_word STURDY
- ec_move1 SUBMISSION
- ec_move2 SUBSTITUTE
- ec_word SUCTION_CUPS
- ec_pokemon2 SUDOWOODO
- ec_pokemon2 SUICUNE
- ec_word SUMMER
- ec_word SUNDAY
- ec_pokemon2 SUNFLORA
- ec_pokemon2 SUNKERN
- ec_move2 SUNNY_DAY
- ec_word SUPER
- ec_move1 SUPER_FANG
- ec_move2 SUPERPOWER
- ec_move2 SUPERSONIC
- ec_move2 SURF
- ec_word SURPRISE
- ec_word SURRENDER
- ec_pokemon1 SURSKIT
- ec_pokemon1 SWABLU
- ec_move1 SWAGGER
- ec_move2 SWALLOW
- ec_pokemon1 SWALOT
- ec_pokemon1 SWAMPERT
- ec_word SWARM
- ec_move2 SWEET_KISS
- ec_move1 SWEET_SCENT
- ec_word SWEETS
- ec_pokemon1 SWELLOW
- ec_move1 SWIFT
- ec_word SWIFT_SWIM
- ec_pokemon2 SWINUB
- ec_move2 SWORDS_DANCE
- ec_word SYNCHRONIZE
- ec_move1 SYNTHESIS
- ec_word SYSTEM
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(SANDSHREW)
+ .2byte EC_POKEMON2(SANDSHREW)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(SEADRA)
+ .2byte EC_POKEMON2(SEADRA)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_SILVER
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(STARMIE)
+ .2byte EC_POKEMON2(STARMIE)
+ .2byte EC_WORD_START
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859DD5A
- ec_move2 TACKLE
- ec_move2 TAIL_GLOW
- ec_move1 TAIL_WHIP
- ec_pokemon1 TAILLOW
- ec_word TAKE
- ec_move2 TAKE_DOWN
- ec_word TAKE_THAT
- ec_word TALENT
- ec_word TALK
- ec_word TALKING
- ec_pokemon2 TANGELA
- ec_word TASTY
- ec_move2 TAUNT
- ec_pokemon2 TAUROS
- ec_word TCH
- ec_word TEACH
- ec_word TEACHER
- ec_word TEACHES
- ec_pokemon2 TEDDIURSA
- ec_move2 TEETER_DANCE
- ec_move2 TELEPORT
- ec_word TELEVISION
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 TENTACOOL
- ec_pokemon2 TENTACOOL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 TENTACRUEL
- ec_pokemon2 TENTACRUEL
- ec_word TERRIBLE
- ec_word TEST
- ec_word THAN
- ec_word THANK_YOU
- ec_word THANKS
- ec_word THAT
- ec_word THAT_WAS
- ec_word THAT_S
- ec_word THAT_S_IT_EXCL
- ec_word THE
- ec_word THEIR
- ec_word THERE
- ec_word THESE
- ec_word THESE_WERE
- ec_word THEY
- ec_word THEY_WERE
- ec_word THEY_RE
- ec_word THEY_VE
- ec_word THICK
- ec_word THICK_FAT
- ec_move2 THIEF
- ec_word THIN
- ec_word THING
- ec_word THINGS
- ec_word THINK
- ec_word THINKS
- ec_word THIRSTY
- ec_word THIS
- ec_word THIS_IS_IT_EXCL
- ec_word THOSE
- ec_word THOSE_ARE
- ec_word THOSE_WERE
- ec_move1 THRASH
- ec_word THROW
- ec_move1 THUNDER
- ec_move2 THUNDER_WAVE
- ec_move1 THUNDERBOLT
- ec_move1 THUNDER_PUNCH
- ec_move2 THUNDER_SHOCK
- ec_word THURSDAY
- ec_move1 TICKLE
- ec_word TICKLISH
- ec_word TIGHT
- ec_word TIME
- ec_word TIMES
- ec_word TIRED
- ec_word TO
- ec_word TO_HER
- ec_word TO_ME
- ec_word TO_THEM
- ec_word TO_US
- ec_word TO_WHOM
- ec_word TODAY
- ec_pokemon2 TOGEPI
- ec_word TOGETHER
- ec_pokemon2 TOGETIC
- ec_word TOMORROW
- ec_word TOO
- ec_word TOO_LATE
- ec_word TOO_STRONG
- ec_word TOO_WEAK
- ec_word TOP
- ec_pokemon1 TORCHIC
- ec_pokemon1 TORKOAL
- ec_move1 TORMENT
- ec_word TORRENT
- ec_word TOTALLY
- ec_pokemon2 TOTODILE
- ec_word TOUGH
- ec_word TOUGHNESS
- ec_word TOURNAMENT
- ec_word TOWER
- ec_move2 TOXIC
- ec_word TOYS
- ec_word TRACE
- ec_word TRADE
- ec_word TRAIN
- ec_word TRAINER
- ec_word TRAINS
- ec_move2 TRANSFORM
- ec_pokemon1 TRAPINCH
- ec_word TRAVEL
- ec_word TREASURE
- ec_pokemon1 TREECKO
- ec_word TRENDY
- ec_move2 TRI_ATTACK
- ec_move2 TRICK
- ec_word TRIES
- ec_move2 TRIPLE_KICK
- ec_pokemon1 TROPIUS
- ec_word TRUANT
- ec_word TRULY
- ec_word TRUMP_CARD
- ec_word TRUST
- ec_word TRY
- ec_word TUESDAY
- ec_move2 TWINEEDLE
- ec_word TWIRLING
- ec_move2 TWISTER
- ec_word TYPE
- ec_pokemon2 TYPHLOSION
- ec_pokemon2 TYRANITAR
- ec_pokemon2 TYROGUE
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(TENTACOOL)
+ .2byte EC_POKEMON2(TENTACOOL)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_TOWER
+ .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:: @ 859DE64
- ec_word UGLY
- ec_word UH_HUH
- ec_word UH_OH
- ec_word UM
- ec_pokemon2 UMBREON
- ec_word UNAVOIDABLE
- ec_word UNBELIEVABLE
- ec_word UNCLE
- ec_word UNDERSTAND
- ec_word UNDERSTANDS
- ec_word UNDERSTOOD
- ec_word UNION
- ec_pokemon2 UNOWN
- ec_word UNTIL
- ec_word UP
- ec_word UPBEAT
- ec_move1 UPROAR
- ec_word UPSIDE_DOWN
- ec_word URGH
- ec_pokemon2 URSARING
- ec_word USE
- ec_word USELESS
- ec_word USES
- ec_word USING
+ .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_WORD_UNION
+ .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:: @ 859DE94
- ec_word VACATION
- ec_pokemon2 VAPOREON
- ec_pokemon2 VENOMOTH
- ec_pokemon2 VENONAT
- ec_pokemon2 VENUSAUR
- ec_word VERSION
- ec_word VERSUS
- ec_word VERY
- ec_pokemon1 VIBRAVA
- ec_move2 VICE_GRIP
- ec_word VICTORY
- ec_pokemon2 VICTREEBEL
- ec_word VIEWING
- ec_pokemon1 VIGOROTH
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 VILEPLUME
- ec_pokemon2 VILEPLUME
- ec_move2 VINE_WHIP
- ec_word VITAL_SPIRIT
- ec_move1 VITAL_THROW
- ec_pokemon1 VOLBEAT
- ec_word VOLT_ABSORB
- ec_move2 VOLT_TACKLE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 VOLTORB
- ec_pokemon2 VOLTORB
- ec_word VORACIOUS
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 VULPIX
- ec_pokemon2 VULPIX
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte EC_MOVE2(VOLT_TACKLE)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(VOLTORB)
+ .2byte EC_POKEMON2(VOLTORB)
+ .2byte EC_WORD_VORACIOUS
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON(VULPIX)
+ .2byte EC_POKEMON2(VULPIX)
gEasyChatWordsByLetter_W:: @ 859DED6
- ec_word WAAAH
- ec_word WAHAHAHA
- ec_pokemon1 WAILMER
- ec_pokemon1 WAILORD
- ec_word WAIT
- ec_word WAKE_UP
- ec_word WAKES_UP
- ec_word WALK
- ec_word WALKING
- ec_word WALKS
- ec_pokemon1 WALREIN
- ec_word WANDERING
- ec_word WANNABE
- ec_word WANT
- ec_word WANTS
- ec_pokemon2 WARTORTLE
- ec_word WAS
- ec_word WASN_T
- ec_word WATER
- ec_word WATER_ABSORB
- ec_move2 WATER_GUN
- ec_move2 WATER_PULSE
- ec_move2 WATER_SPORT
- ec_move1 WATER_SPOUT
- ec_word WATER_VEIL
- ec_move2 WATERFALL
- ec_word WAY
- ec_word WE
- ec_word WE_RE
- ec_word WE_VE
- ec_word WEAK
- ec_word WEAKENED
- ec_move1 WEATHER_BALL
- ec_word WEDNESDAY
- ec_pokemon2 WEEDLE
- ec_word WEEK
- ec_pokemon2 WEEPINBELL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 WEEZING
- ec_pokemon2 WEEZING
- ec_word WEIRD
- ec_word WELCOME
- ec_word WELL
- ec_word WELL_THEN
- ec_word WENT
- ec_word WERE
- ec_word WEREN_T
- ec_word WHAT
- ec_word WHAT_S_UP_QUES
- ec_word WHEN
- ec_word WHEN_I_WIN
- ec_word WHERE
- ec_word WHICH
- ec_word WHILE
- ec_move1 WHIRLPOOL
- ec_move2 WHIRLWIND
- ec_pokemon1 WHISCASH
- ec_pokemon1 WHISMUR
- ec_word WHITE_SMOKE
- ec_word WHO
- ec_word WHO_IS
- ec_word WHO_WAS
- ec_word WHOAH
- ec_word WHOM
- ec_word WHOSE
- ec_word WHY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 WIGGLYTUFF
- ec_pokemon2 WIGGLYTUFF
- ec_word WILD
- ec_word WILL
- ec_word WILL_BE_HERE
- ec_move1 WILL_O_WISP
- ec_word WIMPY
- ec_word WIN
- ec_move2 WING_ATTACK
- ec_pokemon1 WINGULL
- ec_word WINNER
- ec_word WINS
- ec_word WINTER
- ec_word WIRELESS
- ec_move2 WISH
- ec_word WITH
- ec_move1 WITHDRAW
- ec_word WITHOUT
- ec_word WOBBLY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 WOBBUFFET
- ec_pokemon2 WOBBUFFET
- ec_word WOMAN
- ec_word WON
- ec_word WON_T
- ec_word WONDER
- ec_word WONDER_GUARD
- ec_pokemon2 WOOPER
- ec_word WORD
- ec_word WORK
- ec_word WORKING
- ec_word WORKS
- ec_word WORLD
- ec_word WORRY
- ec_word WOULD
- ec_word WOW
- ec_word WOWEE
- ec_move2 WRAP
- ec_word WROOOAAR_EXCL
- ec_pokemon1 WURMPLE
- ec_pokemon1 WYNAUT
+ .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)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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_WORD_WIRELESS
+ .2byte EC_MOVE2(WISH)
+ .2byte EC_WORD_WITH
+ .2byte EC_MOVE(WITHDRAW)
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_WOBBLY
+ .2byte -1, 2 @ doubled Pokémon species names
+ .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:: @ 859DFB4
.2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 XATU
- ec_pokemon2 XATU
+ .2byte EC_POKEMON(XATU)
+ .2byte EC_POKEMON2(XATU)
gEasyChatWordsByLetter_Y:: @ 859DFBC
- 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:: @ 859DFE2
- 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)
.2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon1 ZUBAT
- ec_pokemon2 ZUBAT
+ .2byte EC_POKEMON(ZUBAT)
+ .2byte EC_POKEMON2(ZUBAT)
gEasyChatWordsByLetter_UnusedJapaneseHi:: @ 859DFF2
- ec_pokemon2 CLEFFA
- ec_word AIYEEH
- ec_pokemon2 WEEDLE
- ec_word HERO
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 PIKACHU
- ec_pokemon1 PIKACHU
- ec_move2 LIGHT_SCREEN
- ec_word SHINE
- ec_word LOW
- ec_pokemon2 CLEFABLE
- ec_word FLYING
- ec_pokemon2 PIDGEOT
- ec_pokemon2 PIDGEOTTO
- ec_word LEFT
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 PICHU
- ec_pokemon1 PICHU
- ec_move2 SCRATCH
- ec_word SURPRISE
- ec_move2 HYPER_FANG
- ec_pokemon2 CLEFAIRY
- ec_word DROUGHT
- ec_word HIDDEN
- ec_word PERSON
- ec_word AWFUL
- ec_pokemon2 CHARMANDER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 STARYU
- ec_pokemon1 STARYU
- ec_word ALONE
- ec_pokemon2 CYNDAQUIL
- ec_move2 EMBER
- ec_pokemon1 VIBRAVA
- ec_word BORED
- ec_pokemon2 SUNKERN
- ec_word SECRET
- ec_word SECRET_BASE
- ec_move2 SECRET_POWER
- ec_pokemon2 TEDDIURSA
- ec_word HIYAH
- ec_move2 DIZZY_PUNCH
- ec_word LIGHTNINGROD
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 VOLTORB
- ec_pokemon1 VOLTORB
- ec_word DAYTIME
- ec_move2 BULK_UP
- ec_word NAP
- ec_word HEROINE
- ec_pokemon1 FEEBAS
+ .2byte EC_POKEMON2(CLEFFA)
+ .2byte EC_WORD_AIYEEH
+ .2byte EC_POKEMON2(WEEDLE)
+ .2byte EC_WORD_HERO
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(PIKACHU)
+ .2byte EC_POKEMON(PIKACHU)
+ .2byte EC_MOVE2(LIGHT_SCREEN)
+ .2byte EC_WORD_SHINE
+ .2byte EC_WORD_LOW
+ .2byte EC_POKEMON2(CLEFABLE)
+ .2byte EC_WORD_FLYING
+ .2byte EC_POKEMON2(PIDGEOT)
+ .2byte EC_POKEMON2(PIDGEOTTO)
+ .2byte EC_WORD_LEFT
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(PICHU)
+ .2byte EC_POKEMON(PICHU)
+ .2byte EC_MOVE2(SCRATCH)
+ .2byte EC_WORD_SURPRISE
+ .2byte EC_MOVE2(HYPER_FANG)
+ .2byte EC_POKEMON2(CLEFAIRY)
+ .2byte EC_WORD_DROUGHT
+ .2byte EC_WORD_HIDDEN
+ .2byte EC_WORD_PERSON
+ .2byte EC_WORD_AWFUL
+ .2byte EC_POKEMON2(CHARMANDER)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(STARYU)
+ .2byte EC_POKEMON(STARYU)
+ .2byte EC_WORD_ALONE
+ .2byte EC_POKEMON2(CYNDAQUIL)
+ .2byte EC_MOVE2(EMBER)
+ .2byte EC_POKEMON(VIBRAVA)
+ .2byte EC_WORD_BORED
+ .2byte EC_POKEMON2(SUNKERN)
+ .2byte EC_WORD_SECRET
+ .2byte EC_WORD_SECRET_BASE
+ .2byte EC_MOVE2(SECRET_POWER)
+ .2byte EC_POKEMON2(TEDDIURSA)
+ .2byte EC_WORD_HIYAH
+ .2byte EC_MOVE2(DIZZY_PUNCH)
+ .2byte EC_WORD_LIGHTNINGROD
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(VOLTORB)
+ .2byte EC_POKEMON(VOLTORB)
+ .2byte EC_WORD_DAYTIME
+ .2byte EC_MOVE2(BULK_UP)
+ .2byte EC_WORD_NAP
+ .2byte EC_WORD_HEROINE
+ .2byte EC_POKEMON(FEEBAS)
gEasyChatWordsByLetter_UnusedJapaneseFu:: @ 859E060
- ec_word FIGHT
- ec_pokemon2 MOLTRES
- ec_word FASHION
- ec_word FEAR
- ec_word FEVER
- ec_move2 IMPRISON
- ec_pokemon2 FLAREON
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 ALAKAZAM
- ec_pokemon1 ALAKAZAM
- ec_pokemon2 MAGMAR
- ec_pokemon1 GRUMPIG
- ec_move2 FEATHER_DANCE
- ec_pokemon2 FORRETRESS
- ec_move2 WHIRLWIND
- ec_word COMPOUNDEYES
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 WIGGLYTUFF
- ec_pokemon1 WIGGLYTUFF
- ec_move2 BEAT_UP
- ec_word MYSTERY
- ec_pokemon2 IVYSAUR
- ec_pokemon2 BULBASAUR
- ec_word MARVEL_SCALE
- ec_word WONDER_GUARD
- ec_pokemon2 VENUSAUR
- ec_word LACKS
- ec_word RESUSCITATE
- ec_word SMACK
- ec_word FUFUFU
- ec_pokemon2 AERODACTYL
- ec_word WIMPY
- ec_pokemon2 MAGBY
- ec_word LOL
- ec_move2 BLIZZARD
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 IGGLYBUFF
- ec_pokemon1 IGGLYBUFF
- ec_word SNORT
- ec_move2 STOMP
- ec_word INSOMNIA
- ec_word WINTER
- ec_word LEVITATE
- ec_pokemon1 FLYGON
- ec_word PLUS
- ec_move2 BLAST_BURN
- ec_pokemon1 PLUSLE
- ec_pokemon2 UMBREON
- ec_move2 FLASH
- ec_word WOBBLY
- ec_move2 TEETER_DANCE
- ec_word PRETEND
- ec_pokemon2 ARTICUNO
- ec_word WANNABE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 JIGGLYPUFF
- ec_pokemon1 JIGGLYPUFF
- ec_pokemon2 SNUBBULL
- ec_word SHAKY
- ec_move2 CRUSH_CLAW
- ec_move2 BLAZE_KICK
- ec_move2 PRESENT
- ec_word PRESSURE
- ec_word BLEND
- ec_word FRONTIER
- ec_word HUMPH
- ec_move2 ERUPTION
+ .2byte EC_WORD_FIGHT
+ .2byte EC_POKEMON2(MOLTRES)
+ .2byte EC_WORD_FASHION
+ .2byte EC_WORD_FEAR
+ .2byte EC_WORD_FEVER
+ .2byte EC_MOVE2(IMPRISON)
+ .2byte EC_POKEMON2(FLAREON)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(ALAKAZAM)
+ .2byte EC_POKEMON(ALAKAZAM)
+ .2byte EC_POKEMON2(MAGMAR)
+ .2byte EC_POKEMON(GRUMPIG)
+ .2byte EC_MOVE2(FEATHER_DANCE)
+ .2byte EC_POKEMON2(FORRETRESS)
+ .2byte EC_MOVE2(WHIRLWIND)
+ .2byte EC_WORD_COMPOUNDEYES
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(WIGGLYTUFF)
+ .2byte EC_POKEMON(WIGGLYTUFF)
+ .2byte EC_MOVE2(BEAT_UP)
+ .2byte EC_WORD_MYSTERY
+ .2byte EC_POKEMON2(IVYSAUR)
+ .2byte EC_POKEMON2(BULBASAUR)
+ .2byte EC_WORD_MARVEL_SCALE
+ .2byte EC_WORD_WONDER_GUARD
+ .2byte EC_POKEMON2(VENUSAUR)
+ .2byte EC_WORD_LACKS
+ .2byte EC_WORD_RESUSCITATE
+ .2byte EC_WORD_SMACK
+ .2byte EC_WORD_FUFUFU
+ .2byte EC_POKEMON2(AERODACTYL)
+ .2byte EC_WORD_WIMPY
+ .2byte EC_POKEMON2(MAGBY)
+ .2byte EC_WORD_LOL
+ .2byte EC_MOVE2(BLIZZARD)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(IGGLYBUFF)
+ .2byte EC_POKEMON(IGGLYBUFF)
+ .2byte EC_WORD_SNORT
+ .2byte EC_MOVE2(STOMP)
+ .2byte EC_WORD_INSOMNIA
+ .2byte EC_WORD_WINTER
+ .2byte EC_WORD_LEVITATE
+ .2byte EC_POKEMON(FLYGON)
+ .2byte EC_WORD_PLUS
+ .2byte EC_MOVE2(BLAST_BURN)
+ .2byte EC_POKEMON(PLUSLE)
+ .2byte EC_POKEMON2(UMBREON)
+ .2byte EC_MOVE2(FLASH)
+ .2byte EC_WORD_WOBBLY
+ .2byte EC_MOVE2(TEETER_DANCE)
+ .2byte EC_WORD_PRETEND
+ .2byte EC_POKEMON2(ARTICUNO)
+ .2byte EC_WORD_WANNABE
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(JIGGLYPUFF)
+ .2byte EC_POKEMON(JIGGLYPUFF)
+ .2byte EC_POKEMON2(SNUBBULL)
+ .2byte EC_WORD_SHAKY
+ .2byte EC_MOVE2(CRUSH_CLAW)
+ .2byte EC_MOVE2(BLAZE_KICK)
+ .2byte EC_MOVE2(PRESENT)
+ .2byte EC_WORD_PRESSURE
+ .2byte EC_WORD_BLEND
+ .2byte EC_WORD_FRONTIER
+ .2byte EC_WORD_HUMPH
+ .2byte EC_MOVE2(ERUPTION)
gEasyChatWordsByLetter_UnusedJapaneseHe:: @ 859E0EE
- ec_word HEY
- ec_pokemon1 CORPHISH
- ec_word BABY
- ec_pokemon2 BAYLEEF
- ec_word BEST
- ec_word LOUSY
- ec_word HEHEHE
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 GRIMER
- ec_pokemon1 GRIMER
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 MUK
- ec_pokemon1 MUK
- ec_word LIQUID_OOZE
- ec_move2 SLUDGE
- ec_move2 SLUDGE_BOMB
- ec_move2 GLARE
- ec_word HEH
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 HERACROSS
- ec_pokemon1 HERACROSS
- ec_pokemon1 PELIPPER
- ec_pokemon2 HOUNDOOM
- ec_pokemon2 PERSIAN
- ec_word RIPPED
- ec_pokemon2 LICKITUNG
- ec_word STUDY
- ec_word COLOR_CHANGE
- ec_move2 TRANSFORM
+ .2byte EC_WORD_HEY
+ .2byte EC_POKEMON(CORPHISH)
+ .2byte EC_WORD_BABY
+ .2byte EC_POKEMON2(BAYLEEF)
+ .2byte EC_WORD_BEST
+ .2byte EC_WORD_LOUSY
+ .2byte EC_WORD_HEHEHE
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(GRIMER)
+ .2byte EC_POKEMON(GRIMER)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(MUK)
+ .2byte EC_POKEMON(MUK)
+ .2byte EC_WORD_LIQUID_OOZE
+ .2byte EC_MOVE2(SLUDGE)
+ .2byte EC_MOVE2(SLUDGE_BOMB)
+ .2byte EC_MOVE2(GLARE)
+ .2byte EC_WORD_HEH
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(HERACROSS)
+ .2byte EC_POKEMON(HERACROSS)
+ .2byte EC_POKEMON(PELIPPER)
+ .2byte EC_POKEMON2(HOUNDOOM)
+ .2byte EC_POKEMON2(PERSIAN)
+ .2byte EC_WORD_RIPPED
+ .2byte EC_POKEMON2(LICKITUNG)
+ .2byte EC_WORD_STUDY
+ .2byte EC_WORD_COLOR_CHANGE
+ .2byte EC_MOVE2(TRANSFORM)
gEasyChatWordsByLetter_UnusedJapaneseHo:: @ 859E12E
- ec_move2 POISON_TAIL
- ec_word POINTS
- ec_pokemon2 HO_OH
- ec_word SOUNDPROOF
- ec_word ADVENTURE
- ec_word EFFECT_SPORE
- ec_move2 ROAR
- ec_pokemon1 WAILORD
- ec_pokemon1 WAILMER
- ec_word DUDE
- ec_word BOARD
- ec_pokemon2 HOOTHOOT
- ec_pokemon1 SALAMENCE
- ec_word BALL
- ec_move2 BONE_RUSH
- ec_word THEY
- ec_word THEY_WERE
- ec_word TO_THEM
- ec_word THEIR
- ec_word THEY_RE
- ec_word THEY_VE
- ec_word POKENAV
- ec_word POKEMON
- ec_word GET
- ec_word POKEDEX
- ec_word PKRS
- ec_move2 CAMOUFLAGE
- ec_word WANT
- ec_move2 COVET
- ec_pokemon1 AGGRON
- ec_move2 TAIL_GLOW
- ec_pokemon1 POOCHYENA
- ec_pokemon2 PIDGEY
- ec_word AS_MUCH_AS
- ec_pokemon2 PONYTA
- ec_move2 BONE_CLUB
- ec_move2 BONEMERANG
- ec_word FIRE
- ec_move2 FIRE_SPIN
- ec_word FLAME_BODY
- ec_move2 FIRE_PUNCH
- ec_pokemon2 SKIPLOOM
- ec_word HOHOHO
- ec_word PRAISE
- ec_word UH_HUH
- ec_pokemon2 PORYGON
- ec_pokemon2 PORYGON2
- ec_move2 VOLT_TACKLE
- ec_word POKEBLOCK
- ec_move2 PERISH_SONG
- ec_word SHREDDED
- ec_pokemon1 CASTFORM
- ec_word BOOK
- ec_word SERIOUS
- ec_word REALLY
+ .2byte EC_MOVE2(POISON_TAIL)
+ .2byte EC_WORD_POINTS
+ .2byte EC_POKEMON2(HO_OH)
+ .2byte EC_WORD_SOUNDPROOF
+ .2byte EC_WORD_ADVENTURE
+ .2byte EC_WORD_EFFECT_SPORE
+ .2byte EC_MOVE2(ROAR)
+ .2byte EC_POKEMON(WAILORD)
+ .2byte EC_POKEMON(WAILMER)
+ .2byte EC_WORD_DUDE
+ .2byte EC_WORD_BOARD
+ .2byte EC_POKEMON2(HOOTHOOT)
+ .2byte EC_POKEMON(SALAMENCE)
+ .2byte EC_WORD_BALL
+ .2byte EC_MOVE2(BONE_RUSH)
+ .2byte EC_WORD_THEY
+ .2byte EC_WORD_THEY_WERE
+ .2byte EC_WORD_TO_THEM
+ .2byte EC_WORD_THEIR
+ .2byte EC_WORD_THEY_RE
+ .2byte EC_WORD_THEY_VE
+ .2byte EC_WORD_POKENAV
+ .2byte EC_WORD_POKEMON
+ .2byte EC_WORD_GET
+ .2byte EC_WORD_POKEDEX
+ .2byte EC_WORD_PKRS
+ .2byte EC_MOVE2(CAMOUFLAGE)
+ .2byte EC_WORD_WANT
+ .2byte EC_MOVE2(COVET)
+ .2byte EC_POKEMON(AGGRON)
+ .2byte EC_MOVE2(TAIL_GLOW)
+ .2byte EC_POKEMON(POOCHYENA)
+ .2byte EC_POKEMON2(PIDGEY)
+ .2byte EC_WORD_AS_MUCH_AS
+ .2byte EC_POKEMON2(PONYTA)
+ .2byte EC_MOVE2(BONE_CLUB)
+ .2byte EC_MOVE2(BONEMERANG)
+ .2byte EC_WORD_FIRE
+ .2byte EC_MOVE2(FIRE_SPIN)
+ .2byte EC_WORD_FLAME_BODY
+ .2byte EC_MOVE2(FIRE_PUNCH)
+ .2byte EC_POKEMON2(SKIPLOOM)
+ .2byte EC_WORD_HOHOHO
+ .2byte EC_WORD_PRAISE
+ .2byte EC_WORD_UH_HUH
+ .2byte EC_POKEMON2(PORYGON)
+ .2byte EC_POKEMON2(PORYGON2)
+ .2byte EC_MOVE2(VOLT_TACKLE)
+ .2byte EC_WORD_POKEBLOCK
+ .2byte EC_MOVE2(PERISH_SONG)
+ .2byte EC_WORD_SHREDDED
+ .2byte EC_POKEMON(CASTFORM)
+ .2byte EC_WORD_BOOK
+ .2byte EC_WORD_SERIOUS
+ .2byte EC_WORD_REALLY
gEasyChatWordsByLetter_UnusedJapaneseMa:: @ 859E19C
- ec_word OH_DEAR
- ec_word IN
- ec_word GIVE_UP
- ec_word MINUS
- ec_pokemon1 MINUN
- ec_word DAILY
- ec_word OWN_TEMPO
- ec_move2 WRAP
- ec_move2 SPIKES
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 MAGCARGO
- ec_pokemon1 MAGCARGO
- ec_move2 MAGNITUDE
- ec_pokemon1 MAKUHITA
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 SLUGMA
- ec_pokemon1 SLUGMA
- ec_word MAGMA_ARMOR
- ec_pokemon2 QUILAVA
- ec_word OVERDO
- ec_word LOSS
- ec_word IF_I_LOSE
- ec_word LOST
- ec_word LOSE
- ec_word TRULY
- ec_word SERIOUSLY
- ec_move2 MAGICAL_LEAF
- ec_move2 MAGIC_COAT
- ec_word MACHINE
- ec_word OUT
- ec_word MASTER
- ec_word INCREASING
- ec_word TOO
- ec_word LIKE
- ec_pokemon2 BELLSPROUT
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 WEEZING
- ec_pokemon1 WEEZING
- ec_word SMELL
- ec_word YET
- ec_word MISTAKE
- ec_pokemon1 LINOONE
- ec_word TOTALLY
- ec_move2 MUD_SHOT
- ec_move2 MACH_PUNCH
- ec_word FESTIVAL
- ec_word UNTIL
- ec_word WAIT
- ec_word GUARD
- ec_move2 PROTECT
- ec_pokemon1 CASCOON
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 MARILL
- ec_pokemon1 MARILL
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 AZUMARILL
- ec_pokemon1 AZUMARILL
- ec_move2 DEFENSE_CURL
- ec_word AS_IF
- ec_pokemon1 SWALOT
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 ELECTRODE
- ec_pokemon1 ELECTRODE
- ec_move2 ROLLING_KICK
- ec_word COMICS
- ec_pokemon2 MANKEY
- ec_word SATISFIED
- ec_pokemon2 MANTINE
+ .2byte EC_WORD_OH_DEAR
+ .2byte EC_WORD_IN
+ .2byte EC_WORD_GIVE_UP
+ .2byte EC_WORD_MINUS
+ .2byte EC_POKEMON(MINUN)
+ .2byte EC_WORD_DAILY
+ .2byte EC_WORD_OWN_TEMPO
+ .2byte EC_MOVE2(WRAP)
+ .2byte EC_MOVE2(SPIKES)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(MAGCARGO)
+ .2byte EC_POKEMON(MAGCARGO)
+ .2byte EC_MOVE2(MAGNITUDE)
+ .2byte EC_POKEMON(MAKUHITA)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(SLUGMA)
+ .2byte EC_POKEMON(SLUGMA)
+ .2byte EC_WORD_MAGMA_ARMOR
+ .2byte EC_POKEMON2(QUILAVA)
+ .2byte EC_WORD_OVERDO
+ .2byte EC_WORD_LOSS
+ .2byte EC_WORD_IF_I_LOSE
+ .2byte EC_WORD_LOST
+ .2byte EC_WORD_LOSE
+ .2byte EC_WORD_TRULY
+ .2byte EC_WORD_SERIOUSLY
+ .2byte EC_MOVE2(MAGICAL_LEAF)
+ .2byte EC_MOVE2(MAGIC_COAT)
+ .2byte EC_WORD_MACHINE
+ .2byte EC_WORD_OUT
+ .2byte EC_WORD_MASTER
+ .2byte EC_WORD_INCREASING
+ .2byte EC_WORD_TOO
+ .2byte EC_WORD_LIKE
+ .2byte EC_POKEMON2(BELLSPROUT)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(WEEZING)
+ .2byte EC_POKEMON(WEEZING)
+ .2byte EC_WORD_SMELL
+ .2byte EC_WORD_YET
+ .2byte EC_WORD_MISTAKE
+ .2byte EC_POKEMON(LINOONE)
+ .2byte EC_WORD_TOTALLY
+ .2byte EC_MOVE2(MUD_SHOT)
+ .2byte EC_MOVE2(MACH_PUNCH)
+ .2byte EC_WORD_FESTIVAL
+ .2byte EC_WORD_UNTIL
+ .2byte EC_WORD_WAIT
+ .2byte EC_WORD_GUARD
+ .2byte EC_MOVE2(PROTECT)
+ .2byte EC_POKEMON(CASCOON)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(MARILL)
+ .2byte EC_POKEMON(MARILL)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(AZUMARILL)
+ .2byte EC_POKEMON(AZUMARILL)
+ .2byte EC_MOVE2(DEFENSE_CURL)
+ .2byte EC_WORD_AS_IF
+ .2byte EC_POKEMON(SWALOT)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(ELECTRODE)
+ .2byte EC_POKEMON(ELECTRODE)
+ .2byte EC_MOVE2(ROLLING_KICK)
+ .2byte EC_WORD_COMICS
+ .2byte EC_POKEMON2(MANKEY)
+ .2byte EC_WORD_SATISFIED
+ .2byte EC_POKEMON2(MANTINE)
gEasyChatWordsByLetter_UnusedJapaneseMi:: @ 859E230
- ec_word PARTNER
- ec_move2 SUBSTITUTE
- ec_word RIGHT
- ec_move2 DETECT
- ec_move2 PIN_MISSILE
- ec_word WATER
- ec_move2 WATER_SPORT
- ec_pokemon1 MUDKIP
- ec_move2 WATER_GUN
- ec_move2 MIST_BALL
- ec_move2 WATER_PULSE
- ec_word WATER_VEIL
- ec_word SHOW
- ec_word SEE
- ec_word DID
- ec_move2 FURY_ATTACK
- ec_move2 FURY_SWIPES
- ec_move2 DESTINY_BOND
- ec_word LOOKS
- ec_word REJECT
- ec_word ACCEPT
- ec_pokemon2 DRATINI
- ec_move2 FALSE_SWIPE
- ec_move2 FORESIGHT
- ec_pokemon2 MEW
- ec_pokemon2 MEWTWO
- ec_move2 MIRROR_COAT
- ec_move2 FUTURE_SIGHT
- ec_word SEES
- ec_move2 MILK_DRINK
- ec_pokemon2 MILTANK
- ec_pokemon1 MILOTIC
- ec_word WE
- ec_word BEEN
- ec_word TO_US
- ec_word OUR
- ec_word WE_RE
+ .2byte EC_WORD_PARTNER
+ .2byte EC_MOVE2(SUBSTITUTE)
+ .2byte EC_WORD_RIGHT
+ .2byte EC_MOVE2(DETECT)
+ .2byte EC_MOVE2(PIN_MISSILE)
+ .2byte EC_WORD_WATER
+ .2byte EC_MOVE2(WATER_SPORT)
+ .2byte EC_POKEMON(MUDKIP)
+ .2byte EC_MOVE2(WATER_GUN)
+ .2byte EC_MOVE2(MIST_BALL)
+ .2byte EC_MOVE2(WATER_PULSE)
+ .2byte EC_WORD_WATER_VEIL
+ .2byte EC_WORD_SHOW
+ .2byte EC_WORD_SEE
+ .2byte EC_WORD_DID
+ .2byte EC_MOVE2(FURY_ATTACK)
+ .2byte EC_MOVE2(FURY_SWIPES)
+ .2byte EC_MOVE2(DESTINY_BOND)
+ .2byte EC_WORD_LOOKS
+ .2byte EC_WORD_REJECT
+ .2byte EC_WORD_ACCEPT
+ .2byte EC_POKEMON2(DRATINI)
+ .2byte EC_MOVE2(FALSE_SWIPE)
+ .2byte EC_MOVE2(FORESIGHT)
+ .2byte EC_POKEMON2(MEW)
+ .2byte EC_POKEMON2(MEWTWO)
+ .2byte EC_MOVE2(MIRROR_COAT)
+ .2byte EC_MOVE2(FUTURE_SIGHT)
+ .2byte EC_WORD_SEES
+ .2byte EC_MOVE2(MILK_DRINK)
+ .2byte EC_POKEMON2(MILTANK)
+ .2byte EC_POKEMON(MILOTIC)
+ .2byte EC_WORD_WE
+ .2byte EC_WORD_BEEN
+ .2byte EC_WORD_TO_US
+ .2byte EC_WORD_OUR
+ .2byte EC_WORD_WE_RE
gEasyChatWordsByLetter_UnusedJapaneseMu:: @ 859E27A
- ec_word MOOD
- ec_pokemon2 MISDREAVUS
- ec_word OLDEN
- ec_word ARRGH
- ec_word BUG
- ec_word SWARM
- ec_word RATHER
- ec_pokemon2 SMOOCHUM
- ec_word INVINCIBLE
- ec_word HEART
- ec_word MUFUFU
- ec_word MMM
+ .2byte EC_WORD_MOOD
+ .2byte EC_POKEMON2(MISDREAVUS)
+ .2byte EC_WORD_OLDEN
+ .2byte EC_WORD_ARRGH
+ .2byte EC_WORD_BUG
+ .2byte EC_WORD_SWARM
+ .2byte EC_WORD_RATHER
+ .2byte EC_POKEMON2(SMOOCHUM)
+ .2byte EC_WORD_INVINCIBLE
+ .2byte EC_WORD_HEART
+ .2byte EC_WORD_MUFUFU
+ .2byte EC_WORD_MMM
gEasyChatWordsByLetter_UnusedJapaneseMe:: @ 859E292
- ec_move2 CALM_MIND
- ec_word MAIL
- ec_move2 MEGA_DRAIN
- ec_move2 MEGA_KICK
- ec_move2 MEGA_PUNCH
- ec_pokemon2 MEGANIUM
- ec_move2 MEGAHORN
- ec_word SEEK
- ec_move2 HIDDEN_POWER
- ec_word RARE
- ec_pokemon1 METAGROSS
- ec_pokemon2 DITTO
- ec_move2 METAL_CLAW
- ec_pokemon1 METANG
- ec_word DESTROYED
- ec_word MESSAGE
- ec_word AWFULLY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 TENTACOOL
- ec_pokemon1 TENTACOOL
- ec_word FIERY
- ec_pokemon2 MAREEP
- ec_move2 ATTRACT
- ec_word CUTE_CHARM
- ec_word IMMUNITY
+ .2byte EC_MOVE2(CALM_MIND)
+ .2byte EC_WORD_MAIL
+ .2byte EC_MOVE2(MEGA_DRAIN)
+ .2byte EC_MOVE2(MEGA_KICK)
+ .2byte EC_MOVE2(MEGA_PUNCH)
+ .2byte EC_POKEMON2(MEGANIUM)
+ .2byte EC_MOVE2(MEGAHORN)
+ .2byte EC_WORD_SEEK
+ .2byte EC_MOVE2(HIDDEN_POWER)
+ .2byte EC_WORD_RARE
+ .2byte EC_POKEMON(METAGROSS)
+ .2byte EC_POKEMON2(DITTO)
+ .2byte EC_MOVE2(METAL_CLAW)
+ .2byte EC_POKEMON(METANG)
+ .2byte EC_WORD_DESTROYED
+ .2byte EC_WORD_MESSAGE
+ .2byte EC_WORD_AWFULLY
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(TENTACOOL)
+ .2byte EC_POKEMON(TENTACOOL)
+ .2byte EC_WORD_FIERY
+ .2byte EC_POKEMON2(MAREEP)
+ .2byte EC_MOVE2(ATTRACT)
+ .2byte EC_WORD_CUTE_CHARM
+ .2byte EC_WORD_IMMUNITY
gEasyChatWordsByLetter_UnusedJapaneseMo:: @ 859E2C6
- ec_word ALMOST
- ec_word BLAZE
- ec_word NEARLY
- ec_word MODE
- ec_word OLD
- ec_word THURSDAY
- ec_pokemon2 FLAAFFY
- ec_word LISTENING
- ec_word OWN
- ec_word MORE
- ec_word DIDN_T
- ec_word PICKUP
- ec_move2 MIMIC
- ec_word TOO_LATE
- ec_word PATTERN
- ec_word FLASH_FIRE
- ec_word RECEIVED
- ec_pokemon2 VENOMOTH
- ec_word DOESN_T
- ec_pokemon2 TANGELA
+ .2byte EC_WORD_ALMOST
+ .2byte EC_WORD_BLAZE
+ .2byte EC_WORD_NEARLY
+ .2byte EC_WORD_MODE
+ .2byte EC_WORD_OLD
+ .2byte EC_WORD_THURSDAY
+ .2byte EC_POKEMON2(FLAAFFY)
+ .2byte EC_WORD_LISTENING
+ .2byte EC_WORD_OWN
+ .2byte EC_WORD_MORE
+ .2byte EC_WORD_DIDN_T
+ .2byte EC_WORD_PICKUP
+ .2byte EC_MOVE2(MIMIC)
+ .2byte EC_WORD_TOO_LATE
+ .2byte EC_WORD_PATTERN
+ .2byte EC_WORD_FLASH_FIRE
+ .2byte EC_WORD_RECEIVED
+ .2byte EC_POKEMON2(VENOMOTH)
+ .2byte EC_WORD_DOESN_T
+ .2byte EC_POKEMON2(TANGELA)
gEasyChatWordsByLetter_UnusedJapaneseYa:: @ 859E2EE
- ec_word HOO_HAH
- ec_word PROMISE
- ec_word KIND
- ec_pokemon1 BALTOY
- ec_word HOLIDAY
- ec_word NEGATIVE
- ec_move2 FRUSTRATION
- ec_word DONE
- ec_word FINALLY
- ec_word ANY
- ec_word YAHOO
- ec_pokemon2 SLOWKING
- ec_pokemon2 SLOWBRO
- ec_move2 LEECH_SEED
- ec_pokemon2 SLOWPOKE
- ec_word DANGER
- ec_pokemon2 MURKROW
- ec_pokemon1 SABLEYE
- ec_word DEFEATED
- ec_word BEAT
- ec_word VITAL_SPIRIT
- ec_pokemon1 VIGOROTH
- ec_word YOUNG
- ec_pokemon2 YANMA
+ .2byte EC_WORD_HOO_HAH
+ .2byte EC_WORD_PROMISE
+ .2byte EC_WORD_KIND
+ .2byte EC_POKEMON(BALTOY)
+ .2byte EC_WORD_HOLIDAY
+ .2byte EC_WORD_NEGATIVE
+ .2byte EC_MOVE2(FRUSTRATION)
+ .2byte EC_WORD_DONE
+ .2byte EC_WORD_FINALLY
+ .2byte EC_WORD_ANY
+ .2byte EC_WORD_YAHOO
+ .2byte EC_POKEMON2(SLOWKING)
+ .2byte EC_POKEMON2(SLOWBRO)
+ .2byte EC_MOVE2(LEECH_SEED)
+ .2byte EC_POKEMON2(SLOWPOKE)
+ .2byte EC_WORD_DANGER
+ .2byte EC_POKEMON2(MURKROW)
+ .2byte EC_POKEMON(SABLEYE)
+ .2byte EC_WORD_DEFEATED
+ .2byte EC_WORD_BEAT
+ .2byte EC_WORD_VITAL_SPIRIT
+ .2byte EC_POKEMON(VIGOROTH)
+ .2byte EC_WORD_YOUNG
+ .2byte EC_POKEMON2(YANMA)
gEasyChatWordsByLetter_UnusedJapaneseYu:: @ 859E31E
- ec_pokemon1 SNORUNT
- ec_word TAKE
- ec_word UNION
- ec_move2 METRONOME
- ec_word DREAM
- ec_move2 DREAM_EATER
- ec_word ALLOW
- ec_word FORGET
- ec_pokemon1 CRADILY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 KADABRA
- ec_pokemon1 KADABRA
+ .2byte EC_POKEMON(SNORUNT)
+ .2byte EC_WORD_TAKE
+ .2byte EC_WORD_UNION
+ .2byte EC_MOVE2(METRONOME)
+ .2byte EC_WORD_DREAM
+ .2byte EC_MOVE2(DREAM_EATER)
+ .2byte EC_WORD_ALLOW
+ .2byte EC_WORD_FORGET
+ .2byte EC_POKEMON(CRADILY)
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(KADABRA)
+ .2byte EC_POKEMON(KADABRA)
gEasyChatWordsByLetter_UnusedJapaneseYo:: @ 859E338
- ec_word WITHOUT
- ec_word YO
- ec_move2 ACID
- ec_word COME_OVER
- ec_word KINDERGARTEN
- ec_word CHLOROPHYLL
- ec_word AFTER
- ec_pokemon2 LARVITAR
- ec_word OH_KAY
- ec_word BEFORE
- ec_word GREAT
- ec_move2 MEDITATE
- ec_word PURE_POWER
- ec_word WELL
- ec_move2 SNATCH
- ec_word OKAY
- ec_word PLANS
- ec_word NIGHTTIME
- ec_word WHILE
- ec_pokemon1 DUSKULL
- ec_word EASY
- ec_word INSTEAD
- ec_word NIGHT
- ec_pokemon2 NOCTOWL
- ec_word COUNT_ON
- ec_word WEAK
- ec_word TOO_WEAK
- ec_word WEAKENED
+ .2byte EC_WORD_WITHOUT
+ .2byte EC_WORD_YO
+ .2byte EC_MOVE2(ACID)
+ .2byte EC_WORD_COME_OVER
+ .2byte EC_WORD_KINDERGARTEN
+ .2byte EC_WORD_CHLOROPHYLL
+ .2byte EC_WORD_AFTER
+ .2byte EC_POKEMON2(LARVITAR)
+ .2byte EC_WORD_OH_KAY
+ .2byte EC_WORD_BEFORE
+ .2byte EC_WORD_GREAT
+ .2byte EC_MOVE2(MEDITATE)
+ .2byte EC_WORD_PURE_POWER
+ .2byte EC_WORD_WELL
+ .2byte EC_MOVE2(SNATCH)
+ .2byte EC_WORD_OKAY
+ .2byte EC_WORD_PLANS
+ .2byte EC_WORD_NIGHTTIME
+ .2byte EC_WORD_WHILE
+ .2byte EC_POKEMON(DUSKULL)
+ .2byte EC_WORD_EASY
+ .2byte EC_WORD_INSTEAD
+ .2byte EC_WORD_NIGHT
+ .2byte EC_POKEMON2(NOCTOWL)
+ .2byte EC_WORD_COUNT_ON
+ .2byte EC_WORD_WEAK
+ .2byte EC_WORD_TOO_WEAK
+ .2byte EC_WORD_WEAKENED
gEasyChatWordsByLetter_UnusedJapaneseRa:: @ 859E370
- ec_pokemon2 RAIKOU
- ec_word WEEK
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 RAICHU
- ec_pokemon1 RAICHU
- ec_word RIVAL
- ec_word LIFE
- ec_pokemon1 MANECTRIC
- ec_word SIMPLE
- ec_word PUSHOVER
- ec_pokemon1 SWAMPERT
- ec_pokemon1 ELECTRIKE
- ec_word SEEMS
- ec_word RADIO
- ec_move2 LUSTER_PURGE
- ec_pokemon2 CHANSEY
- ec_pokemon2 RATICATE
- ec_pokemon1 LATIAS
- ec_pokemon1 LATIOS
- ec_pokemon1 LUVDISC
- ec_pokemon2 LAPRAS
- ec_word LOVEY_DOVEY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 VILEPLUME
- ec_pokemon1 VILEPLUME
- ec_word LALALA
- ec_pokemon1 RALTS
- ec_word FORGETS
- ec_word APPEARS
- ec_word RANK
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 LANTURN
- ec_pokemon1 LANTURN
+ .2byte EC_POKEMON2(RAIKOU)
+ .2byte EC_WORD_WEEK
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(RAICHU)
+ .2byte EC_POKEMON(RAICHU)
+ .2byte EC_WORD_RIVAL
+ .2byte EC_WORD_LIFE
+ .2byte EC_POKEMON(MANECTRIC)
+ .2byte EC_WORD_SIMPLE
+ .2byte EC_WORD_PUSHOVER
+ .2byte EC_POKEMON(SWAMPERT)
+ .2byte EC_POKEMON(ELECTRIKE)
+ .2byte EC_WORD_SEEMS
+ .2byte EC_WORD_RADIO
+ .2byte EC_MOVE2(LUSTER_PURGE)
+ .2byte EC_POKEMON2(CHANSEY)
+ .2byte EC_POKEMON2(RATICATE)
+ .2byte EC_POKEMON(LATIAS)
+ .2byte EC_POKEMON(LATIOS)
+ .2byte EC_POKEMON(LUVDISC)
+ .2byte EC_POKEMON2(LAPRAS)
+ .2byte EC_WORD_LOVEY_DOVEY
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(VILEPLUME)
+ .2byte EC_POKEMON(VILEPLUME)
+ .2byte EC_WORD_LALALA
+ .2byte EC_POKEMON(RALTS)
+ .2byte EC_WORD_FORGETS
+ .2byte EC_WORD_APPEARS
+ .2byte EC_WORD_RANK
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(LANTURN)
+ .2byte EC_POKEMON(LANTURN)
gEasyChatWordsByLetter_UnusedJapaneseRi:: @ 859E3B8
- ec_word LEADER
- ec_move2 LEAF_BLADE
- ec_pokemon2 CHARMELEON
- ec_pokemon2 CHARIZARD
- ec_move2 RECYCLE
- ec_move2 REFLECT
- ec_move2 REFRESH
- ec_move2 REVENGE
- ec_word RIBBON
- ec_word TRENDY
- ec_move2 DRAGON_RAGE
- ec_move2 DRAGON_BREATH
- ec_move2 DRAGON_DANCE
- ec_word VACATION
- ec_pokemon1 LILEEP
- ec_pokemon2 URSARING
- ec_word SHIELD_DUST
+ .2byte EC_WORD_LEADER
+ .2byte EC_MOVE2(LEAF_BLADE)
+ .2byte EC_POKEMON2(CHARMELEON)
+ .2byte EC_POKEMON2(CHARIZARD)
+ .2byte EC_MOVE2(RECYCLE)
+ .2byte EC_MOVE2(REFLECT)
+ .2byte EC_MOVE2(REFRESH)
+ .2byte EC_MOVE2(REVENGE)
+ .2byte EC_WORD_RIBBON
+ .2byte EC_WORD_TRENDY
+ .2byte EC_MOVE2(DRAGON_RAGE)
+ .2byte EC_MOVE2(DRAGON_BREATH)
+ .2byte EC_MOVE2(DRAGON_DANCE)
+ .2byte EC_WORD_VACATION
+ .2byte EC_POKEMON(LILEEP)
+ .2byte EC_POKEMON2(URSARING)
+ .2byte EC_WORD_SHIELD_DUST
gEasyChatWordsByLetter_UnusedJapaneseRu:: @ 859E3DA
- ec_pokemon2 JYNX
- ec_word ROOM
- ec_word RULE
- ec_pokemon2 LUGIA
- ec_word LOOK
- ec_pokemon1 LUNATONE
- ec_word RUBY
- ec_word THAN
- ec_pokemon1 AZURILL
- ec_pokemon1 LUDICOLO
- ec_word HAPPILY
+ .2byte EC_POKEMON2(JYNX)
+ .2byte EC_WORD_ROOM
+ .2byte EC_WORD_RULE
+ .2byte EC_POKEMON2(LUGIA)
+ .2byte EC_WORD_LOOK
+ .2byte EC_POKEMON(LUNATONE)
+ .2byte EC_WORD_RUBY
+ .2byte EC_WORD_THAN
+ .2byte EC_POKEMON(AZURILL)
+ .2byte EC_POKEMON(LUDICOLO)
+ .2byte EC_WORD_HAPPILY
gEasyChatWordsByLetter_UnusedJapaneseRe:: @ 859E3F0
.2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 MAGNETON
- ec_pokemon1 MAGNETON
- ec_move2 ICE_PUNCH
- ec_move2 ICE_BEAM
- ec_pokemon1 REGICE
- ec_pokemon1 REGISTEEL
- ec_pokemon1 REGIROCK
- ec_pokemon1 RAYQUAZA
- ec_word UGLY
- ec_pokemon2 LEDIAN
- ec_pokemon2 LEDYBA
- ec_word FANTASTIC
- ec_word LEVEL
- ec_move2 FURY_CUTTER
- ec_move2 COMET_PUNCH
- ec_word RENTAL
+ .2byte EC_POKEMON2(MAGNETON)
+ .2byte EC_POKEMON(MAGNETON)
+ .2byte EC_MOVE2(ICE_PUNCH)
+ .2byte EC_MOVE2(ICE_BEAM)
+ .2byte EC_POKEMON(REGICE)
+ .2byte EC_POKEMON(REGISTEEL)
+ .2byte EC_POKEMON(REGIROCK)
+ .2byte EC_POKEMON(RAYQUAZA)
+ .2byte EC_WORD_UGLY
+ .2byte EC_POKEMON2(LEDIAN)
+ .2byte EC_POKEMON2(LEDYBA)
+ .2byte EC_WORD_FANTASTIC
+ .2byte EC_WORD_LEVEL
+ .2byte EC_MOVE2(FURY_CUTTER)
+ .2byte EC_MOVE2(COMET_PUNCH)
+ .2byte EC_WORD_RENTAL
gEasyChatWordsByLetter_UnusedJapaneseRo:: @ 859E414
- ec_move2 SKULL_BASH
+ .2byte EC_MOVE2(SKULL_BASH)
.2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 VULPIX
- ec_pokemon1 VULPIX
- ec_pokemon1 ROSELIA
- ec_move2 LOCK_ON
- ec_move2 ROCK_BLAST
- ec_word ROMANTIC
- ec_word QUESTION
+ .2byte EC_POKEMON2(VULPIX)
+ .2byte EC_POKEMON(VULPIX)
+ .2byte EC_POKEMON(ROSELIA)
+ .2byte EC_MOVE2(LOCK_ON)
+ .2byte EC_MOVE2(ROCK_BLAST)
+ .2byte EC_WORD_ROMANTIC
+ .2byte EC_WORD_QUESTION
gEasyChatWordsByLetter_UnusedJapaneseWa:: @ 859E428
- ec_word YAY
- ec_word WORLD
- ec_word AWW
- ec_word WIRELESS
- ec_word WOWEE
- ec_pokemon1 COMBUSKEN
- ec_word UNDERSTAND
- ec_word UNDERSTANDS
- ec_word FAINT
- ec_word ANTICIPATION
- ec_word ONCE
- ec_word MOVE
- ec_word WE_VE
- ec_word FAINTED
- ec_word WOMAN
- ec_word SHE
- ec_word SHE_WAS
- ec_word TO_HER
- ec_word HERS
- ec_word SHE_IS
- ec_word SOME
- ec_pokemon2 JUMPLUFF
- ec_move2 COTTON_SPORE
- ec_word GWAH
- ec_pokemon2 TOTODILE
- ec_word WAHAHAHA
- ec_word ANYWHERE
- ec_move2 STRUGGLE
- ec_word BADLY
- .2byte -1, 2 @ doubled Pokémon species names
- ec_pokemon2 MACHOP
- ec_pokemon1 MACHOP
+ .2byte EC_WORD_YAY
+ .2byte EC_WORD_WORLD
+ .2byte EC_WORD_AWW
+ .2byte EC_WORD_WIRELESS
+ .2byte EC_WORD_WOWEE
+ .2byte EC_POKEMON(COMBUSKEN)
+ .2byte EC_WORD_UNDERSTAND
+ .2byte EC_WORD_UNDERSTANDS
+ .2byte EC_WORD_FAINT
+ .2byte EC_WORD_ANTICIPATION
+ .2byte EC_WORD_ONCE
+ .2byte EC_WORD_MOVE
+ .2byte EC_WORD_WE_VE
+ .2byte EC_WORD_FAINTED
+ .2byte EC_WORD_WOMAN
+ .2byte EC_WORD_SHE
+ .2byte EC_WORD_SHE_WAS
+ .2byte EC_WORD_TO_HER
+ .2byte EC_WORD_HERS
+ .2byte EC_WORD_SHE_IS
+ .2byte EC_WORD_SOME
+ .2byte EC_POKEMON2(JUMPLUFF)
+ .2byte EC_MOVE2(COTTON_SPORE)
+ .2byte EC_WORD_GWAH
+ .2byte EC_POKEMON2(TOTODILE)
+ .2byte EC_WORD_WAHAHAHA
+ .2byte EC_WORD_ANYWHERE
+ .2byte EC_MOVE2(STRUGGLE)
+ .2byte EC_WORD_BADLY
+ .2byte -1, 2 @ doubled Pokémon species names
+ .2byte EC_POKEMON2(MACHOP)
+ .2byte EC_POKEMON(MACHOP)
.align 2
gEasyChatWordsByLetterPointers:: @ 859E46C
diff --git a/data/wild_encounter.s b/data/wild_encounter.s
index e221c2f99..0b46e3d35 100644
--- a/data/wild_encounter.s
+++ b/data/wild_encounter.s
@@ -1,3 +1,4 @@
+#include "constants/species.h"
.include "asm/macros.inc"
.include "constants/constants.inc"
diff --git a/data/wild_mons.inc b/data/wild_mons.inc
index 3361a3975..83b73bc81 100644
--- a/data/wild_mons.inc
+++ b/data/wild_mons.inc
@@ -1,17 +1,17 @@
.align 2
gRoute101_LandMons:: @ 85507E4
- wild_mon WURMPLE, 2
- wild_mon POOCHYENA, 2
- wild_mon WURMPLE, 2
- wild_mon WURMPLE, 3
- wild_mon POOCHYENA, 3
- wild_mon POOCHYENA, 3
- wild_mon WURMPLE, 3
- wild_mon POOCHYENA, 3
- wild_mon ZIGZAGOON, 2
- wild_mon ZIGZAGOON, 2
- wild_mon ZIGZAGOON, 3
- wild_mon ZIGZAGOON, 3
+ wild_mon SPECIES_WURMPLE, 2
+ wild_mon SPECIES_POOCHYENA, 2
+ wild_mon SPECIES_WURMPLE, 2
+ wild_mon SPECIES_WURMPLE, 3
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_WURMPLE, 3
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_ZIGZAGOON, 2
+ wild_mon SPECIES_ZIGZAGOON, 2
+ wild_mon SPECIES_ZIGZAGOON, 3
+ wild_mon SPECIES_ZIGZAGOON, 3
.align 2
gRoute101_LandMonsInfo:: @ 8550814
@@ -20,18 +20,18 @@ gRoute101_LandMonsInfo:: @ 8550814
.align 2
gRoute102_LandMons:: @ 855081C
- wild_mon POOCHYENA, 3
- wild_mon WURMPLE, 3
- wild_mon POOCHYENA, 4
- wild_mon WURMPLE, 4
- wild_mon LOTAD, 3
- wild_mon LOTAD, 4
- wild_mon ZIGZAGOON, 3
- wild_mon ZIGZAGOON, 3
- wild_mon ZIGZAGOON, 4
- wild_mon RALTS, 4
- wild_mon ZIGZAGOON, 4
- wild_mon SEEDOT, 3
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_WURMPLE, 3
+ wild_mon SPECIES_POOCHYENA, 4
+ wild_mon SPECIES_WURMPLE, 4
+ wild_mon SPECIES_LOTAD, 3
+ wild_mon SPECIES_LOTAD, 4
+ wild_mon SPECIES_ZIGZAGOON, 3
+ wild_mon SPECIES_ZIGZAGOON, 3
+ wild_mon SPECIES_ZIGZAGOON, 4
+ wild_mon SPECIES_RALTS, 4
+ wild_mon SPECIES_ZIGZAGOON, 4
+ wild_mon SPECIES_SEEDOT, 3
.align 2
gRoute102_LandMonsInfo:: @ 855084C
@@ -40,11 +40,11 @@ gRoute102_LandMonsInfo:: @ 855084C
.align 2
gRoute102_WaterMons:: @ 8550854
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon GOLDEEN, 20, 30
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_GOLDEEN, 20, 30
.align 2
gRoute102_WaterMonsInfo:: @ 8550868
@@ -53,16 +53,16 @@ gRoute102_WaterMonsInfo:: @ 8550868
.align 2
gRoute102_FishingMons:: @ 8550870
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon CORPHISH, 10, 30
- wild_mon CORPHISH, 25, 30
- wild_mon CORPHISH, 30, 35
- wild_mon CORPHISH, 20, 25
- wild_mon CORPHISH, 35, 40
- wild_mon CORPHISH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_CORPHISH, 10, 30
+ wild_mon SPECIES_CORPHISH, 25, 30
+ wild_mon SPECIES_CORPHISH, 30, 35
+ wild_mon SPECIES_CORPHISH, 20, 25
+ wild_mon SPECIES_CORPHISH, 35, 40
+ wild_mon SPECIES_CORPHISH, 40, 45
.align 2
gRoute102_FishingMonsInfo:: @ 8550898
@@ -71,18 +71,18 @@ gRoute102_FishingMonsInfo:: @ 8550898
.align 2
gRoute103_LandMons:: @ 85508A0
- wild_mon POOCHYENA, 2
- wild_mon POOCHYENA, 3
- wild_mon POOCHYENA, 3
- wild_mon POOCHYENA, 4
- wild_mon WINGULL, 2
- wild_mon ZIGZAGOON, 3
- wild_mon ZIGZAGOON, 3
- wild_mon ZIGZAGOON, 4
- wild_mon WINGULL, 3
- wild_mon WINGULL, 3
- wild_mon WINGULL, 2
- wild_mon WINGULL, 4
+ wild_mon SPECIES_POOCHYENA, 2
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_POOCHYENA, 3
+ wild_mon SPECIES_POOCHYENA, 4
+ wild_mon SPECIES_WINGULL, 2
+ wild_mon SPECIES_ZIGZAGOON, 3
+ wild_mon SPECIES_ZIGZAGOON, 3
+ wild_mon SPECIES_ZIGZAGOON, 4
+ wild_mon SPECIES_WINGULL, 3
+ wild_mon SPECIES_WINGULL, 3
+ wild_mon SPECIES_WINGULL, 2
+ wild_mon SPECIES_WINGULL, 4
.align 2
gRoute103_LandMonsInfo:: @ 85508D0
@@ -91,11 +91,11 @@ gRoute103_LandMonsInfo:: @ 85508D0
.align 2
gRoute103_WaterMons:: @ 85508D8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute103_WaterMonsInfo:: @ 85508EC
@@ -104,16 +104,16 @@ gRoute103_WaterMonsInfo:: @ 85508EC
.align 2
gRoute103_FishingMons:: @ 85508F4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute103_FishingMonsInfo:: @ 855091C
@@ -122,18 +122,18 @@ gRoute103_FishingMonsInfo:: @ 855091C
.align 2
gRoute104_LandMons:: @ 8550924
- wild_mon POOCHYENA, 4
- wild_mon WURMPLE, 4
- wild_mon POOCHYENA, 5
- wild_mon MARILL, 5
- wild_mon MARILL, 4
- wild_mon POOCHYENA, 5
- wild_mon TAILLOW, 4
- wild_mon TAILLOW, 5
- wild_mon WINGULL, 4
- wild_mon WINGULL, 4
- wild_mon WINGULL, 3
- wild_mon WINGULL, 5
+ wild_mon SPECIES_POOCHYENA, 4
+ wild_mon SPECIES_WURMPLE, 4
+ wild_mon SPECIES_POOCHYENA, 5
+ wild_mon SPECIES_MARILL, 5
+ wild_mon SPECIES_MARILL, 4
+ wild_mon SPECIES_POOCHYENA, 5
+ wild_mon SPECIES_TAILLOW, 4
+ wild_mon SPECIES_TAILLOW, 5
+ wild_mon SPECIES_WINGULL, 4
+ wild_mon SPECIES_WINGULL, 4
+ wild_mon SPECIES_WINGULL, 3
+ wild_mon SPECIES_WINGULL, 5
.align 2
gRoute104_LandMonsInfo:: @ 8550954
@@ -142,11 +142,11 @@ gRoute104_LandMonsInfo:: @ 8550954
.align 2
gRoute104_WaterMons:: @ 855095C
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute104_WaterMonsInfo:: @ 8550970
@@ -155,16 +155,16 @@ gRoute104_WaterMonsInfo:: @ 8550970
.align 2
gRoute104_FishingMons:: @ 8550978
- wild_mon MAGIKARP, 5, 10
- wild_mon MAGIKARP, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 25, 30
- wild_mon MAGIKARP, 30, 35
- wild_mon MAGIKARP, 20, 25
- wild_mon MAGIKARP, 35, 40
- wild_mon MAGIKARP, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 25, 30
+ wild_mon SPECIES_MAGIKARP, 30, 35
+ wild_mon SPECIES_MAGIKARP, 20, 25
+ wild_mon SPECIES_MAGIKARP, 35, 40
+ wild_mon SPECIES_MAGIKARP, 40, 45
.align 2
gRoute104_FishingMonsInfo:: @ 85509A0
@@ -173,11 +173,11 @@ gRoute104_FishingMonsInfo:: @ 85509A0
.align 2
gRoute105_WaterMons:: @ 85509A8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute105_WaterMonsInfo:: @ 85509BC
@@ -186,16 +186,16 @@ gRoute105_WaterMonsInfo:: @ 85509BC
.align 2
gRoute105_FishingMons:: @ 85509C4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute105_FishingMonsInfo:: @ 85509EC
@@ -204,18 +204,18 @@ gRoute105_FishingMonsInfo:: @ 85509EC
.align 2
gRoute110_LandMons:: @ 85509F4
- wild_mon POOCHYENA, 12
- wild_mon ELECTRIKE, 12
- wild_mon GULPIN, 12
- wild_mon ELECTRIKE, 13
- wild_mon MINUN, 13
- wild_mon ODDISH, 13
- wild_mon MINUN, 13
- wild_mon GULPIN, 13
- wild_mon WINGULL, 12
- wild_mon WINGULL, 12
- wild_mon PLUSLE, 12
- wild_mon PLUSLE, 13
+ wild_mon SPECIES_POOCHYENA, 12
+ wild_mon SPECIES_ELECTRIKE, 12
+ wild_mon SPECIES_GULPIN, 12
+ wild_mon SPECIES_ELECTRIKE, 13
+ wild_mon SPECIES_MINUN, 13
+ wild_mon SPECIES_ODDISH, 13
+ wild_mon SPECIES_MINUN, 13
+ wild_mon SPECIES_GULPIN, 13
+ wild_mon SPECIES_WINGULL, 12
+ wild_mon SPECIES_WINGULL, 12
+ wild_mon SPECIES_PLUSLE, 12
+ wild_mon SPECIES_PLUSLE, 13
.align 2
gRoute110_LandMonsInfo:: @ 8550A24
@@ -224,11 +224,11 @@ gRoute110_LandMonsInfo:: @ 8550A24
.align 2
gRoute110_WaterMons:: @ 8550A2C
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute110_WaterMonsInfo:: @ 8550A40
@@ -237,16 +237,16 @@ gRoute110_WaterMonsInfo:: @ 8550A40
.align 2
gRoute110_FishingMons:: @ 8550A48
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute110_FishingMonsInfo:: @ 8550A70
@@ -255,18 +255,18 @@ gRoute110_FishingMonsInfo:: @ 8550A70
.align 2
gRoute111_LandMons:: @ 8550A78
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 21
- wild_mon TRAPINCH, 21
- wild_mon BALTOY, 19
- wild_mon BALTOY, 21
- wild_mon SANDSHREW, 19
- wild_mon TRAPINCH, 19
- wild_mon BALTOY, 20
- wild_mon CACNEA, 20
- wild_mon CACNEA, 22
- wild_mon CACNEA, 22
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 21
+ wild_mon SPECIES_TRAPINCH, 21
+ wild_mon SPECIES_BALTOY, 19
+ wild_mon SPECIES_BALTOY, 21
+ wild_mon SPECIES_SANDSHREW, 19
+ wild_mon SPECIES_TRAPINCH, 19
+ wild_mon SPECIES_BALTOY, 20
+ wild_mon SPECIES_CACNEA, 20
+ wild_mon SPECIES_CACNEA, 22
+ wild_mon SPECIES_CACNEA, 22
.align 2
gRoute111_LandMonsInfo:: @ 8550AA8
@@ -275,11 +275,11 @@ gRoute111_LandMonsInfo:: @ 8550AA8
.align 2
gRoute111_WaterMons:: @ 8550AB0
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon GOLDEEN, 20, 30
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_GOLDEEN, 20, 30
.align 2
gRoute111_WaterMonsInfo:: @ 8550AC4
@@ -288,11 +288,11 @@ gRoute111_WaterMonsInfo:: @ 8550AC4
.align 2
gRoute111_RockSmashMons:: @ 8550ACC
- wild_mon GEODUDE, 10, 15
- wild_mon GEODUDE, 5, 10
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 10, 15
+ wild_mon SPECIES_GEODUDE, 5, 10
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 15, 20
.align 2
gRoute111_RockSmashMonsInfo:: @ 8550AE0
@@ -301,16 +301,16 @@ gRoute111_RockSmashMonsInfo:: @ 8550AE0
.align 2
gRoute111_FishingMons:: @ 8550AE8
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon BARBOACH, 20, 25
- wild_mon BARBOACH, 35, 40
- wild_mon BARBOACH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_BARBOACH, 20, 25
+ wild_mon SPECIES_BARBOACH, 35, 40
+ wild_mon SPECIES_BARBOACH, 40, 45
.align 2
gRoute111_FishingMonsInfo:: @ 8550B10
@@ -319,18 +319,18 @@ gRoute111_FishingMonsInfo:: @ 8550B10
.align 2
gRoute112_LandMons:: @ 8550B18
- wild_mon NUMEL, 15
- wild_mon NUMEL, 15
- wild_mon MARILL, 15
- wild_mon NUMEL, 14
- wild_mon NUMEL, 14
- wild_mon MARILL, 14
- wild_mon NUMEL, 16
- wild_mon MARILL, 16
- wild_mon NUMEL, 16
- wild_mon NUMEL, 16
- wild_mon NUMEL, 16
- wild_mon NUMEL, 16
+ wild_mon SPECIES_NUMEL, 15
+ wild_mon SPECIES_NUMEL, 15
+ wild_mon SPECIES_MARILL, 15
+ wild_mon SPECIES_NUMEL, 14
+ wild_mon SPECIES_NUMEL, 14
+ wild_mon SPECIES_MARILL, 14
+ wild_mon SPECIES_NUMEL, 16
+ wild_mon SPECIES_MARILL, 16
+ wild_mon SPECIES_NUMEL, 16
+ wild_mon SPECIES_NUMEL, 16
+ wild_mon SPECIES_NUMEL, 16
+ wild_mon SPECIES_NUMEL, 16
.align 2
gRoute112_LandMonsInfo:: @ 8550B48
@@ -339,18 +339,18 @@ gRoute112_LandMonsInfo:: @ 8550B48
.align 2
gRoute113_LandMons:: @ 8550B50
- wild_mon SPINDA, 15
- wild_mon SPINDA, 15
- wild_mon SLUGMA, 15
- wild_mon SPINDA, 14
- wild_mon SPINDA, 14
- wild_mon SLUGMA, 14
- wild_mon SPINDA, 16
- wild_mon SLUGMA, 16
- wild_mon SPINDA, 16
- wild_mon SKARMORY, 16
- wild_mon SPINDA, 16
- wild_mon SKARMORY, 16
+ wild_mon SPECIES_SPINDA, 15
+ wild_mon SPECIES_SPINDA, 15
+ wild_mon SPECIES_SLUGMA, 15
+ wild_mon SPECIES_SPINDA, 14
+ wild_mon SPECIES_SPINDA, 14
+ wild_mon SPECIES_SLUGMA, 14
+ wild_mon SPECIES_SPINDA, 16
+ wild_mon SPECIES_SLUGMA, 16
+ wild_mon SPECIES_SPINDA, 16
+ wild_mon SPECIES_SKARMORY, 16
+ wild_mon SPECIES_SPINDA, 16
+ wild_mon SPECIES_SKARMORY, 16
.align 2
gRoute113_LandMonsInfo:: @ 8550B80
@@ -359,18 +359,18 @@ gRoute113_LandMonsInfo:: @ 8550B80
.align 2
gRoute114_LandMons:: @ 8550B88
- wild_mon SWABLU, 16
- wild_mon LOTAD, 16
- wild_mon SWABLU, 17
- wild_mon SWABLU, 15
- wild_mon LOTAD, 15
- wild_mon LOMBRE, 16
- wild_mon LOMBRE, 16
- wild_mon LOMBRE, 18
- wild_mon SEVIPER, 17
- wild_mon SEVIPER, 15
- wild_mon SEVIPER, 17
- wild_mon NUZLEAF, 15
+ wild_mon SPECIES_SWABLU, 16
+ wild_mon SPECIES_LOTAD, 16
+ wild_mon SPECIES_SWABLU, 17
+ wild_mon SPECIES_SWABLU, 15
+ wild_mon SPECIES_LOTAD, 15
+ wild_mon SPECIES_LOMBRE, 16
+ wild_mon SPECIES_LOMBRE, 16
+ wild_mon SPECIES_LOMBRE, 18
+ wild_mon SPECIES_SEVIPER, 17
+ wild_mon SPECIES_SEVIPER, 15
+ wild_mon SPECIES_SEVIPER, 17
+ wild_mon SPECIES_NUZLEAF, 15
.align 2
gRoute114_LandMonsInfo:: @ 8550BB8
@@ -379,11 +379,11 @@ gRoute114_LandMonsInfo:: @ 8550BB8
.align 2
gRoute114_WaterMons:: @ 8550BC0
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon GOLDEEN, 20, 30
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_GOLDEEN, 20, 30
.align 2
gRoute114_WaterMonsInfo:: @ 8550BD4
@@ -392,11 +392,11 @@ gRoute114_WaterMonsInfo:: @ 8550BD4
.align 2
gRoute114_RockSmashMons:: @ 8550BDC
- wild_mon GEODUDE, 10, 15
- wild_mon GEODUDE, 5, 10
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 10, 15
+ wild_mon SPECIES_GEODUDE, 5, 10
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 15, 20
.align 2
gRoute114_RockSmashMonsInfo:: @ 8550BF0
@@ -405,16 +405,16 @@ gRoute114_RockSmashMonsInfo:: @ 8550BF0
.align 2
gRoute114_FishingMons:: @ 8550BF8
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon BARBOACH, 20, 25
- wild_mon BARBOACH, 35, 40
- wild_mon BARBOACH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_BARBOACH, 20, 25
+ wild_mon SPECIES_BARBOACH, 35, 40
+ wild_mon SPECIES_BARBOACH, 40, 45
.align 2
gRoute114_FishingMonsInfo:: @ 8550C20
@@ -423,18 +423,18 @@ gRoute114_FishingMonsInfo:: @ 8550C20
.align 2
gRoute116_LandMons:: @ 8550C28
- wild_mon POOCHYENA, 6
- wild_mon WHISMUR, 6
- wild_mon NINCADA, 6
- wild_mon ABRA, 7
- wild_mon NINCADA, 7
- wild_mon TAILLOW, 6
- wild_mon TAILLOW, 7
- wild_mon TAILLOW, 8
- wild_mon POOCHYENA, 7
- wild_mon POOCHYENA, 8
- wild_mon SKITTY, 7
- wild_mon SKITTY, 8
+ wild_mon SPECIES_POOCHYENA, 6
+ wild_mon SPECIES_WHISMUR, 6
+ wild_mon SPECIES_NINCADA, 6
+ wild_mon SPECIES_ABRA, 7
+ wild_mon SPECIES_NINCADA, 7
+ wild_mon SPECIES_TAILLOW, 6
+ wild_mon SPECIES_TAILLOW, 7
+ wild_mon SPECIES_TAILLOW, 8
+ wild_mon SPECIES_POOCHYENA, 7
+ wild_mon SPECIES_POOCHYENA, 8
+ wild_mon SPECIES_SKITTY, 7
+ wild_mon SPECIES_SKITTY, 8
.align 2
gRoute116_LandMonsInfo:: @ 8550C58
@@ -443,18 +443,18 @@ gRoute116_LandMonsInfo:: @ 8550C58
.align 2
gRoute117_LandMons:: @ 8550C60
- wild_mon POOCHYENA, 13
- wild_mon ODDISH, 13
- wild_mon POOCHYENA, 14
- wild_mon ODDISH, 14
- wild_mon MARILL, 13
- wild_mon ODDISH, 13
- wild_mon ILLUMISE, 13
- wild_mon ILLUMISE, 13
- wild_mon ILLUMISE, 14
- wild_mon ILLUMISE, 14
- wild_mon VOLBEAT, 13
- wild_mon SEEDOT, 13
+ wild_mon SPECIES_POOCHYENA, 13
+ wild_mon SPECIES_ODDISH, 13
+ wild_mon SPECIES_POOCHYENA, 14
+ wild_mon SPECIES_ODDISH, 14
+ wild_mon SPECIES_MARILL, 13
+ wild_mon SPECIES_ODDISH, 13
+ wild_mon SPECIES_ILLUMISE, 13
+ wild_mon SPECIES_ILLUMISE, 13
+ wild_mon SPECIES_ILLUMISE, 14
+ wild_mon SPECIES_ILLUMISE, 14
+ wild_mon SPECIES_VOLBEAT, 13
+ wild_mon SPECIES_SEEDOT, 13
.align 2
gRoute117_LandMonsInfo:: @ 8550C90
@@ -463,11 +463,11 @@ gRoute117_LandMonsInfo:: @ 8550C90
.align 2
gRoute117_WaterMons:: @ 8550C98
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon GOLDEEN, 20, 30
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_GOLDEEN, 20, 30
.align 2
gRoute117_WaterMonsInfo:: @ 8550CAC
@@ -476,16 +476,16 @@ gRoute117_WaterMonsInfo:: @ 8550CAC
.align 2
gRoute117_FishingMons:: @ 8550CB4
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon CORPHISH, 10, 30
- wild_mon CORPHISH, 25, 30
- wild_mon CORPHISH, 30, 35
- wild_mon CORPHISH, 20, 25
- wild_mon CORPHISH, 35, 40
- wild_mon CORPHISH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_CORPHISH, 10, 30
+ wild_mon SPECIES_CORPHISH, 25, 30
+ wild_mon SPECIES_CORPHISH, 30, 35
+ wild_mon SPECIES_CORPHISH, 20, 25
+ wild_mon SPECIES_CORPHISH, 35, 40
+ wild_mon SPECIES_CORPHISH, 40, 45
.align 2
gRoute117_FishingMonsInfo:: @ 8550CDC
@@ -494,18 +494,18 @@ gRoute117_FishingMonsInfo:: @ 8550CDC
.align 2
gRoute118_LandMons:: @ 8550CE4
- wild_mon ZIGZAGOON, 24
- wild_mon ELECTRIKE, 24
- wild_mon ZIGZAGOON, 26
- wild_mon ELECTRIKE, 26
- wild_mon LINOONE, 26
- wild_mon MANECTRIC, 26
- wild_mon WINGULL, 25
- wild_mon WINGULL, 25
- wild_mon WINGULL, 26
- wild_mon WINGULL, 26
- wild_mon WINGULL, 27
- wild_mon KECLEON, 25
+ wild_mon SPECIES_ZIGZAGOON, 24
+ wild_mon SPECIES_ELECTRIKE, 24
+ wild_mon SPECIES_ZIGZAGOON, 26
+ wild_mon SPECIES_ELECTRIKE, 26
+ wild_mon SPECIES_LINOONE, 26
+ wild_mon SPECIES_MANECTRIC, 26
+ wild_mon SPECIES_WINGULL, 25
+ wild_mon SPECIES_WINGULL, 25
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 27
+ wild_mon SPECIES_KECLEON, 25
.align 2
gRoute118_LandMonsInfo:: @ 8550D14
@@ -514,11 +514,11 @@ gRoute118_LandMonsInfo:: @ 8550D14
.align 2
gRoute118_WaterMons:: @ 8550D1C
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute118_WaterMonsInfo:: @ 8550D30
@@ -527,16 +527,16 @@ gRoute118_WaterMonsInfo:: @ 8550D30
.align 2
gRoute118_FishingMons:: @ 8550D38
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon CARVANHA, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon CARVANHA, 30, 35
- wild_mon CARVANHA, 20, 25
- wild_mon CARVANHA, 35, 40
- wild_mon CARVANHA, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_CARVANHA, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_CARVANHA, 30, 35
+ wild_mon SPECIES_CARVANHA, 20, 25
+ wild_mon SPECIES_CARVANHA, 35, 40
+ wild_mon SPECIES_CARVANHA, 40, 45
.align 2
gRoute118_FishingMonsInfo:: @ 8550D60
@@ -545,11 +545,11 @@ gRoute118_FishingMonsInfo:: @ 8550D60
.align 2
gRoute124_WaterMons:: @ 8550D68
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute124_WaterMonsInfo:: @ 8550D7C
@@ -558,16 +558,16 @@ gRoute124_WaterMonsInfo:: @ 8550D7C
.align 2
gRoute124_FishingMons:: @ 8550D84
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute124_FishingMonsInfo:: @ 8550DAC
@@ -576,18 +576,18 @@ gRoute124_FishingMonsInfo:: @ 8550DAC
.align 2
gPetalburgWoods_LandMons:: @ 8550DB4
- wild_mon POOCHYENA, 5
- wild_mon WURMPLE, 5
- wild_mon SHROOMISH, 5
- wild_mon POOCHYENA, 6
- wild_mon SILCOON, 5
- wild_mon CASCOON, 5
- wild_mon WURMPLE, 6
- wild_mon SHROOMISH, 6
- wild_mon TAILLOW, 5
- wild_mon SLAKOTH, 5
- wild_mon TAILLOW, 6
- wild_mon SLAKOTH, 6
+ wild_mon SPECIES_POOCHYENA, 5
+ wild_mon SPECIES_WURMPLE, 5
+ wild_mon SPECIES_SHROOMISH, 5
+ wild_mon SPECIES_POOCHYENA, 6
+ wild_mon SPECIES_SILCOON, 5
+ wild_mon SPECIES_CASCOON, 5
+ wild_mon SPECIES_WURMPLE, 6
+ wild_mon SPECIES_SHROOMISH, 6
+ wild_mon SPECIES_TAILLOW, 5
+ wild_mon SPECIES_SLAKOTH, 5
+ wild_mon SPECIES_TAILLOW, 6
+ wild_mon SPECIES_SLAKOTH, 6
.align 2
gPetalburgWoods_LandMonsInfo:: @ 8550DE4
@@ -596,18 +596,18 @@ gPetalburgWoods_LandMonsInfo:: @ 8550DE4
.align 2
gRusturfTunnel_LandMons:: @ 8550DEC
- wild_mon WHISMUR, 6
- wild_mon WHISMUR, 7
- wild_mon WHISMUR, 6
- wild_mon WHISMUR, 6
- wild_mon WHISMUR, 7
- wild_mon WHISMUR, 7
- wild_mon WHISMUR, 5
- wild_mon WHISMUR, 8
- wild_mon WHISMUR, 5
- wild_mon WHISMUR, 8
- wild_mon WHISMUR, 5
- wild_mon WHISMUR, 8
+ wild_mon SPECIES_WHISMUR, 6
+ wild_mon SPECIES_WHISMUR, 7
+ wild_mon SPECIES_WHISMUR, 6
+ wild_mon SPECIES_WHISMUR, 6
+ wild_mon SPECIES_WHISMUR, 7
+ wild_mon SPECIES_WHISMUR, 7
+ wild_mon SPECIES_WHISMUR, 5
+ wild_mon SPECIES_WHISMUR, 8
+ wild_mon SPECIES_WHISMUR, 5
+ wild_mon SPECIES_WHISMUR, 8
+ wild_mon SPECIES_WHISMUR, 5
+ wild_mon SPECIES_WHISMUR, 8
.align 2
gRusturfTunnel_LandMonsInfo:: @ 8550E1C
@@ -616,18 +616,18 @@ gRusturfTunnel_LandMonsInfo:: @ 8550E1C
.align 2
gGraniteCave_1F_LandMons:: @ 8550E24
- wild_mon ZUBAT, 7
- wild_mon MAKUHITA, 8
- wild_mon MAKUHITA, 7
- wild_mon ZUBAT, 8
- wild_mon MAKUHITA, 9
- wild_mon ABRA, 8
- wild_mon MAKUHITA, 10
- wild_mon MAKUHITA, 6
- wild_mon GEODUDE, 7
- wild_mon GEODUDE, 8
- wild_mon GEODUDE, 6
- wild_mon GEODUDE, 9
+ wild_mon SPECIES_ZUBAT, 7
+ wild_mon SPECIES_MAKUHITA, 8
+ wild_mon SPECIES_MAKUHITA, 7
+ wild_mon SPECIES_ZUBAT, 8
+ wild_mon SPECIES_MAKUHITA, 9
+ wild_mon SPECIES_ABRA, 8
+ wild_mon SPECIES_MAKUHITA, 10
+ wild_mon SPECIES_MAKUHITA, 6
+ wild_mon SPECIES_GEODUDE, 7
+ wild_mon SPECIES_GEODUDE, 8
+ wild_mon SPECIES_GEODUDE, 6
+ wild_mon SPECIES_GEODUDE, 9
.align 2
gGraniteCave_1F_LandMonsInfo:: @ 8550E54
@@ -636,18 +636,18 @@ gGraniteCave_1F_LandMonsInfo:: @ 8550E54
.align 2
gGraniteCave_B1F_LandMons:: @ 8550E5C
- wild_mon ZUBAT, 9
- wild_mon ARON, 10
- wild_mon ARON, 9
- wild_mon ARON, 11
- wild_mon ZUBAT, 10
- wild_mon ABRA, 9
- wild_mon MAKUHITA, 10
- wild_mon MAKUHITA, 11
- wild_mon SABLEYE, 10
- wild_mon SABLEYE, 10
- wild_mon SABLEYE, 9
- wild_mon SABLEYE, 11
+ wild_mon SPECIES_ZUBAT, 9
+ wild_mon SPECIES_ARON, 10
+ wild_mon SPECIES_ARON, 9
+ wild_mon SPECIES_ARON, 11
+ wild_mon SPECIES_ZUBAT, 10
+ wild_mon SPECIES_ABRA, 9
+ wild_mon SPECIES_MAKUHITA, 10
+ wild_mon SPECIES_MAKUHITA, 11
+ wild_mon SPECIES_SABLEYE, 10
+ wild_mon SPECIES_SABLEYE, 10
+ wild_mon SPECIES_SABLEYE, 9
+ wild_mon SPECIES_SABLEYE, 11
.align 2
gGraniteCave_B1F_LandMonsInfo:: @ 8550E8C
@@ -656,18 +656,18 @@ gGraniteCave_B1F_LandMonsInfo:: @ 8550E8C
.align 2
gMtPyre_1F_LandMons:: @ 8550E94
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
.align 2
gMtPyre_1F_LandMonsInfo:: @ 8550EC4
@@ -676,18 +676,18 @@ gMtPyre_1F_LandMonsInfo:: @ 8550EC4
.align 2
gVictoryRoad_1F_LandMons:: @ 8550ECC
- wild_mon GOLBAT, 40
- wild_mon HARIYAMA, 40
- wild_mon LAIRON, 40
- wild_mon LOUDRED, 40
- wild_mon ZUBAT, 36
- wild_mon MAKUHITA, 36
- wild_mon GOLBAT, 38
- wild_mon HARIYAMA, 38
- wild_mon ARON, 36
- wild_mon WHISMUR, 36
- wild_mon ARON, 36
- wild_mon WHISMUR, 36
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_HARIYAMA, 40
+ wild_mon SPECIES_LAIRON, 40
+ wild_mon SPECIES_LOUDRED, 40
+ wild_mon SPECIES_ZUBAT, 36
+ wild_mon SPECIES_MAKUHITA, 36
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_HARIYAMA, 38
+ wild_mon SPECIES_ARON, 36
+ wild_mon SPECIES_WHISMUR, 36
+ wild_mon SPECIES_ARON, 36
+ wild_mon SPECIES_WHISMUR, 36
.align 2
gVictoryRoad_1F_LandMonsInfo:: @ 8550EFC
@@ -696,18 +696,18 @@ gVictoryRoad_1F_LandMonsInfo:: @ 8550EFC
.align 2
gSafariZone_South_LandMons:: @ 8550F04
- wild_mon ODDISH, 25
- wild_mon ODDISH, 27
- wild_mon GIRAFARIG, 25
- wild_mon GIRAFARIG, 27
- wild_mon NATU, 25
- wild_mon DODUO, 25
- wild_mon GLOOM, 25
- wild_mon WOBBUFFET, 27
- wild_mon PIKACHU, 25
- wild_mon WOBBUFFET, 27
- wild_mon PIKACHU, 27
- wild_mon WOBBUFFET, 29
+ wild_mon SPECIES_ODDISH, 25
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_GIRAFARIG, 25
+ wild_mon SPECIES_GIRAFARIG, 27
+ wild_mon SPECIES_NATU, 25
+ wild_mon SPECIES_DODUO, 25
+ wild_mon SPECIES_GLOOM, 25
+ wild_mon SPECIES_WOBBUFFET, 27
+ wild_mon SPECIES_PIKACHU, 25
+ wild_mon SPECIES_WOBBUFFET, 27
+ wild_mon SPECIES_PIKACHU, 27
+ wild_mon SPECIES_WOBBUFFET, 29
.align 2
gSafariZone_South_LandMonsInfo:: @ 8550F34
@@ -716,11 +716,11 @@ gSafariZone_South_LandMonsInfo:: @ 8550F34
.align 2
gUnderwater2_WaterMons:: @ 8550F3C
- wild_mon CLAMPERL, 20, 30
- wild_mon CHINCHOU, 20, 30
- wild_mon CLAMPERL, 30, 35
- wild_mon RELICANTH, 30, 35
- wild_mon RELICANTH, 30, 35
+ wild_mon SPECIES_CLAMPERL, 20, 30
+ wild_mon SPECIES_CHINCHOU, 20, 30
+ wild_mon SPECIES_CLAMPERL, 30, 35
+ wild_mon SPECIES_RELICANTH, 30, 35
+ wild_mon SPECIES_RELICANTH, 30, 35
.align 2
gUnderwater2_WaterMonsInfo:: @ 8550F50
@@ -729,11 +729,11 @@ gUnderwater2_WaterMonsInfo:: @ 8550F50
.align 2
gAbandonedShip_Rooms_B1F_WaterMons:: @ 8550F58
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACRUEL, 30, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACRUEL, 30, 35
.align 2
gAbandonedShip_Rooms_B1F_WaterMonsInfo:: @ 8550F6C
@@ -742,16 +742,16 @@ gAbandonedShip_Rooms_B1F_WaterMonsInfo:: @ 8550F6C
.align 2
gAbandonedShip_Rooms_B1F_FishingMons:: @ 8550F74
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon TENTACOOL, 25, 30
- wild_mon TENTACOOL, 30, 35
- wild_mon TENTACRUEL, 30, 35
- wild_mon TENTACRUEL, 25, 30
- wild_mon TENTACRUEL, 20, 25
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_TENTACOOL, 25, 30
+ wild_mon SPECIES_TENTACOOL, 30, 35
+ wild_mon SPECIES_TENTACRUEL, 30, 35
+ wild_mon SPECIES_TENTACRUEL, 25, 30
+ wild_mon SPECIES_TENTACRUEL, 20, 25
.align 2
gAbandonedShip_Rooms_B1F_FishingMonsInfo:: @ 8550F9C
@@ -760,18 +760,18 @@ gAbandonedShip_Rooms_B1F_FishingMonsInfo:: @ 8550F9C
.align 2
gGraniteCave_B2F_LandMons:: @ 8550FA4
- wild_mon ZUBAT, 10
- wild_mon ARON, 11
- wild_mon ARON, 10
- wild_mon ZUBAT, 11
- wild_mon ARON, 12
- wild_mon ABRA, 10
- wild_mon SABLEYE, 10
- wild_mon SABLEYE, 11
- wild_mon SABLEYE, 12
- wild_mon SABLEYE, 10
- wild_mon SABLEYE, 12
- wild_mon SABLEYE, 10
+ wild_mon SPECIES_ZUBAT, 10
+ wild_mon SPECIES_ARON, 11
+ wild_mon SPECIES_ARON, 10
+ wild_mon SPECIES_ZUBAT, 11
+ wild_mon SPECIES_ARON, 12
+ wild_mon SPECIES_ABRA, 10
+ wild_mon SPECIES_SABLEYE, 10
+ wild_mon SPECIES_SABLEYE, 11
+ wild_mon SPECIES_SABLEYE, 12
+ wild_mon SPECIES_SABLEYE, 10
+ wild_mon SPECIES_SABLEYE, 12
+ wild_mon SPECIES_SABLEYE, 10
.align 2
gGraniteCave_B2F_LandMonsInfo:: @ 8550FD4
@@ -780,11 +780,11 @@ gGraniteCave_B2F_LandMonsInfo:: @ 8550FD4
.align 2
gGraniteCave_B2F_RockSmashMons:: @ 8550FDC
- wild_mon GEODUDE, 10, 15
- wild_mon NOSEPASS, 10, 20
- wild_mon GEODUDE, 5, 10
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 10, 15
+ wild_mon SPECIES_NOSEPASS, 10, 20
+ wild_mon SPECIES_GEODUDE, 5, 10
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 15, 20
.align 2
gGraniteCave_B2F_RockSmashMonsInfo:: @ 8550FF0
@@ -793,18 +793,18 @@ gGraniteCave_B2F_RockSmashMonsInfo:: @ 8550FF0
.align 2
gFieryPath_LandMons:: @ 8550FF8
- wild_mon NUMEL, 15
- wild_mon KOFFING, 15
- wild_mon NUMEL, 16
- wild_mon MACHOP, 15
- wild_mon TORKOAL, 15
- wild_mon SLUGMA, 15
- wild_mon KOFFING, 16
- wild_mon MACHOP, 16
- wild_mon TORKOAL, 14
- wild_mon TORKOAL, 16
- wild_mon GRIMER, 14
- wild_mon GRIMER, 14
+ wild_mon SPECIES_NUMEL, 15
+ wild_mon SPECIES_KOFFING, 15
+ wild_mon SPECIES_NUMEL, 16
+ wild_mon SPECIES_MACHOP, 15
+ wild_mon SPECIES_TORKOAL, 15
+ wild_mon SPECIES_SLUGMA, 15
+ wild_mon SPECIES_KOFFING, 16
+ wild_mon SPECIES_MACHOP, 16
+ wild_mon SPECIES_TORKOAL, 14
+ wild_mon SPECIES_TORKOAL, 16
+ wild_mon SPECIES_GRIMER, 14
+ wild_mon SPECIES_GRIMER, 14
.align 2
gFieryPath_LandMonsInfo:: @ 8551028
@@ -813,18 +813,18 @@ gFieryPath_LandMonsInfo:: @ 8551028
.align 2
gMeteorFalls_B1F_2R_LandMons:: @ 8551030
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 35
- wild_mon BAGON, 30
- wild_mon SOLROCK, 35
- wild_mon BAGON, 35
- wild_mon SOLROCK, 37
- wild_mon BAGON, 25
- wild_mon SOLROCK, 39
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_BAGON, 30
+ wild_mon SPECIES_SOLROCK, 35
+ wild_mon SPECIES_BAGON, 35
+ wild_mon SPECIES_SOLROCK, 37
+ wild_mon SPECIES_BAGON, 25
+ wild_mon SPECIES_SOLROCK, 39
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
.align 2
gMeteorFalls_B1F_2R_LandMonsInfo:: @ 8551060
@@ -833,11 +833,11 @@ gMeteorFalls_B1F_2R_LandMonsInfo:: @ 8551060
.align 2
gMeteorFalls_B1F_2R_WaterMons:: @ 8551068
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon SOLROCK, 25, 35
- wild_mon SOLROCK, 15, 25
- wild_mon SOLROCK, 5, 15
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_SOLROCK, 25, 35
+ wild_mon SPECIES_SOLROCK, 15, 25
+ wild_mon SPECIES_SOLROCK, 5, 15
.align 2
gMeteorFalls_B1F_2R_WaterMonsInfo:: @ 855107C
@@ -846,16 +846,16 @@ gMeteorFalls_B1F_2R_WaterMonsInfo:: @ 855107C
.align 2
gMeteorFalls_B1F_2R_FishingMons:: @ 8551084
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon WHISCASH, 30, 35
- wild_mon WHISCASH, 35, 40
- wild_mon WHISCASH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_WHISCASH, 30, 35
+ wild_mon SPECIES_WHISCASH, 35, 40
+ wild_mon SPECIES_WHISCASH, 40, 45
.align 2
gMeteorFalls_B1F_2R_FishingMonsInfo:: @ 85510AC
@@ -864,18 +864,18 @@ gMeteorFalls_B1F_2R_FishingMonsInfo:: @ 85510AC
.align 2
gJaggedPass_LandMons:: @ 85510B4
- wild_mon NUMEL, 21
- wild_mon NUMEL, 21
- wild_mon MACHOP, 21
- wild_mon NUMEL, 20
- wild_mon SPOINK, 20
- wild_mon MACHOP, 20
- wild_mon SPOINK, 21
- wild_mon MACHOP, 22
- wild_mon NUMEL, 22
- wild_mon SPOINK, 22
- wild_mon NUMEL, 22
- wild_mon SPOINK, 22
+ wild_mon SPECIES_NUMEL, 21
+ wild_mon SPECIES_NUMEL, 21
+ wild_mon SPECIES_MACHOP, 21
+ wild_mon SPECIES_NUMEL, 20
+ wild_mon SPECIES_SPOINK, 20
+ wild_mon SPECIES_MACHOP, 20
+ wild_mon SPECIES_SPOINK, 21
+ wild_mon SPECIES_MACHOP, 22
+ wild_mon SPECIES_NUMEL, 22
+ wild_mon SPECIES_SPOINK, 22
+ wild_mon SPECIES_NUMEL, 22
+ wild_mon SPECIES_SPOINK, 22
.align 2
gJaggedPass_LandMonsInfo:: @ 85510E4
@@ -884,11 +884,11 @@ gJaggedPass_LandMonsInfo:: @ 85510E4
.align 2
gRoute106_WaterMons:: @ 85510EC
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute106_WaterMonsInfo:: @ 8551100
@@ -897,16 +897,16 @@ gRoute106_WaterMonsInfo:: @ 8551100
.align 2
gRoute106_FishingMons:: @ 8551108
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute106_FishingMonsInfo:: @ 8551130
@@ -915,11 +915,11 @@ gRoute106_FishingMonsInfo:: @ 8551130
.align 2
gRoute107_WaterMons:: @ 8551138
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute107_WaterMonsInfo:: @ 855114C
@@ -928,16 +928,16 @@ gRoute107_WaterMonsInfo:: @ 855114C
.align 2
gRoute107_FishingMons:: @ 8551154
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute107_FishingMonsInfo:: @ 855117C
@@ -946,11 +946,11 @@ gRoute107_FishingMonsInfo:: @ 855117C
.align 2
gRoute108_WaterMons:: @ 8551184
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute108_WaterMonsInfo:: @ 8551198
@@ -959,16 +959,16 @@ gRoute108_WaterMonsInfo:: @ 8551198
.align 2
gRoute108_FishingMons:: @ 85511A0
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute108_FishingMonsInfo:: @ 85511C8
@@ -977,11 +977,11 @@ gRoute108_FishingMonsInfo:: @ 85511C8
.align 2
gRoute109_WaterMons:: @ 85511D0
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute109_WaterMonsInfo:: @ 85511E4
@@ -990,16 +990,16 @@ gRoute109_WaterMonsInfo:: @ 85511E4
.align 2
gRoute109_FishingMons:: @ 85511EC
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute109_FishingMonsInfo:: @ 8551214
@@ -1008,18 +1008,18 @@ gRoute109_FishingMonsInfo:: @ 8551214
.align 2
gRoute115_LandMons:: @ 855121C
- wild_mon SWABLU, 23
- wild_mon TAILLOW, 23
- wild_mon SWABLU, 25
- wild_mon TAILLOW, 24
- wild_mon TAILLOW, 25
- wild_mon SWELLOW, 25
- wild_mon JIGGLYPUFF, 24
- wild_mon JIGGLYPUFF, 25
- wild_mon WINGULL, 24
- wild_mon WINGULL, 24
- wild_mon WINGULL, 26
- wild_mon WINGULL, 25
+ wild_mon SPECIES_SWABLU, 23
+ wild_mon SPECIES_TAILLOW, 23
+ wild_mon SPECIES_SWABLU, 25
+ wild_mon SPECIES_TAILLOW, 24
+ wild_mon SPECIES_TAILLOW, 25
+ wild_mon SPECIES_SWELLOW, 25
+ wild_mon SPECIES_JIGGLYPUFF, 24
+ wild_mon SPECIES_JIGGLYPUFF, 25
+ wild_mon SPECIES_WINGULL, 24
+ wild_mon SPECIES_WINGULL, 24
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 25
.align 2
gRoute115_LandMonsInfo:: @ 855124C
@@ -1028,11 +1028,11 @@ gRoute115_LandMonsInfo:: @ 855124C
.align 2
gRoute115_WaterMons:: @ 8551254
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute115_WaterMonsInfo:: @ 8551268
@@ -1041,16 +1041,16 @@ gRoute115_WaterMonsInfo:: @ 8551268
.align 2
gRoute115_FishingMons:: @ 8551270
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute115_FishingMonsInfo:: @ 8551298
@@ -1059,18 +1059,18 @@ gRoute115_FishingMonsInfo:: @ 8551298
.align 2
gNewMauville_Inside_LandMons:: @ 85512A0
- wild_mon VOLTORB, 24
- wild_mon MAGNEMITE, 24
- wild_mon VOLTORB, 25
- wild_mon MAGNEMITE, 25
- wild_mon VOLTORB, 23
- wild_mon MAGNEMITE, 23
- wild_mon VOLTORB, 26
- wild_mon MAGNEMITE, 26
- wild_mon VOLTORB, 22
- wild_mon MAGNEMITE, 22
- wild_mon ELECTRODE, 26
- wild_mon MAGNETON, 26
+ wild_mon SPECIES_VOLTORB, 24
+ wild_mon SPECIES_MAGNEMITE, 24
+ wild_mon SPECIES_VOLTORB, 25
+ wild_mon SPECIES_MAGNEMITE, 25
+ wild_mon SPECIES_VOLTORB, 23
+ wild_mon SPECIES_MAGNEMITE, 23
+ wild_mon SPECIES_VOLTORB, 26
+ wild_mon SPECIES_MAGNEMITE, 26
+ wild_mon SPECIES_VOLTORB, 22
+ wild_mon SPECIES_MAGNEMITE, 22
+ wild_mon SPECIES_ELECTRODE, 26
+ wild_mon SPECIES_MAGNETON, 26
.align 2
gNewMauville_Inside_LandMonsInfo:: @ 85512D0
@@ -1079,18 +1079,18 @@ gNewMauville_Inside_LandMonsInfo:: @ 85512D0
.align 2
gRoute119_LandMons:: @ 85512D8
- wild_mon ZIGZAGOON, 25
- wild_mon LINOONE, 25
- wild_mon ZIGZAGOON, 27
- wild_mon ODDISH, 25
- wild_mon LINOONE, 27
- wild_mon ODDISH, 26
- wild_mon ODDISH, 27
- wild_mon ODDISH, 24
- wild_mon TROPIUS, 25
- wild_mon TROPIUS, 26
- wild_mon TROPIUS, 27
- wild_mon KECLEON, 25
+ wild_mon SPECIES_ZIGZAGOON, 25
+ wild_mon SPECIES_LINOONE, 25
+ wild_mon SPECIES_ZIGZAGOON, 27
+ wild_mon SPECIES_ODDISH, 25
+ wild_mon SPECIES_LINOONE, 27
+ wild_mon SPECIES_ODDISH, 26
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_ODDISH, 24
+ wild_mon SPECIES_TROPIUS, 25
+ wild_mon SPECIES_TROPIUS, 26
+ wild_mon SPECIES_TROPIUS, 27
+ wild_mon SPECIES_KECLEON, 25
.align 2
gRoute119_LandMonsInfo:: @ 8551308
@@ -1099,11 +1099,11 @@ gRoute119_LandMonsInfo:: @ 8551308
.align 2
gRoute119_WaterMons:: @ 8551310
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute119_WaterMonsInfo:: @ 8551324
@@ -1112,16 +1112,16 @@ gRoute119_WaterMonsInfo:: @ 8551324
.align 2
gRoute119_FishingMons:: @ 855132C
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon CARVANHA, 10, 30
- wild_mon CARVANHA, 25, 30
- wild_mon CARVANHA, 30, 35
- wild_mon CARVANHA, 20, 25
- wild_mon CARVANHA, 35, 40
- wild_mon CARVANHA, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_CARVANHA, 10, 30
+ wild_mon SPECIES_CARVANHA, 25, 30
+ wild_mon SPECIES_CARVANHA, 30, 35
+ wild_mon SPECIES_CARVANHA, 20, 25
+ wild_mon SPECIES_CARVANHA, 35, 40
+ wild_mon SPECIES_CARVANHA, 40, 45
.align 2
gRoute119_FishingMonsInfo:: @ 8551354
@@ -1130,18 +1130,18 @@ gRoute119_FishingMonsInfo:: @ 8551354
.align 2
gRoute120_LandMons:: @ 855135C
- wild_mon POOCHYENA, 25
- wild_mon MIGHTYENA, 25
- wild_mon MIGHTYENA, 27
- wild_mon ODDISH, 25
- wild_mon MARILL, 25
- wild_mon ODDISH, 26
- wild_mon ODDISH, 27
- wild_mon MARILL, 27
- wild_mon ABSOL, 25
- wild_mon ABSOL, 27
- wild_mon KECLEON, 25
- wild_mon SEEDOT, 25
+ wild_mon SPECIES_POOCHYENA, 25
+ wild_mon SPECIES_MIGHTYENA, 25
+ wild_mon SPECIES_MIGHTYENA, 27
+ wild_mon SPECIES_ODDISH, 25
+ wild_mon SPECIES_MARILL, 25
+ wild_mon SPECIES_ODDISH, 26
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_MARILL, 27
+ wild_mon SPECIES_ABSOL, 25
+ wild_mon SPECIES_ABSOL, 27
+ wild_mon SPECIES_KECLEON, 25
+ wild_mon SPECIES_SEEDOT, 25
.align 2
gRoute120_LandMonsInfo:: @ 855138C
@@ -1150,11 +1150,11 @@ gRoute120_LandMonsInfo:: @ 855138C
.align 2
gRoute120_WaterMons:: @ 8551394
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon GOLDEEN, 20, 30
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_GOLDEEN, 20, 30
.align 2
gRoute120_WaterMonsInfo:: @ 85513A8
@@ -1163,16 +1163,16 @@ gRoute120_WaterMonsInfo:: @ 85513A8
.align 2
gRoute120_FishingMons:: @ 85513B0
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon BARBOACH, 20, 25
- wild_mon BARBOACH, 35, 40
- wild_mon BARBOACH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_BARBOACH, 20, 25
+ wild_mon SPECIES_BARBOACH, 35, 40
+ wild_mon SPECIES_BARBOACH, 40, 45
.align 2
gRoute120_FishingMonsInfo:: @ 85513D8
@@ -1181,18 +1181,18 @@ gRoute120_FishingMonsInfo:: @ 85513D8
.align 2
gRoute121_LandMons:: @ 85513E0
- wild_mon POOCHYENA, 26
- wild_mon SHUPPET, 26
- wild_mon MIGHTYENA, 26
- wild_mon SHUPPET, 28
- wild_mon MIGHTYENA, 28
- wild_mon ODDISH, 26
- wild_mon ODDISH, 28
- wild_mon GLOOM, 28
- wild_mon WINGULL, 26
- wild_mon WINGULL, 27
- wild_mon WINGULL, 28
- wild_mon KECLEON, 25
+ wild_mon SPECIES_POOCHYENA, 26
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_MIGHTYENA, 26
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_MIGHTYENA, 28
+ wild_mon SPECIES_ODDISH, 26
+ wild_mon SPECIES_ODDISH, 28
+ wild_mon SPECIES_GLOOM, 28
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 27
+ wild_mon SPECIES_WINGULL, 28
+ wild_mon SPECIES_KECLEON, 25
.align 2
gRoute121_LandMonsInfo:: @ 8551410
@@ -1201,11 +1201,11 @@ gRoute121_LandMonsInfo:: @ 8551410
.align 2
gRoute121_WaterMons:: @ 8551418
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute121_WaterMonsInfo:: @ 855142C
@@ -1214,16 +1214,16 @@ gRoute121_WaterMonsInfo:: @ 855142C
.align 2
gRoute121_FishingMons:: @ 8551434
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute121_FishingMonsInfo:: @ 855145C
@@ -1232,11 +1232,11 @@ gRoute121_FishingMonsInfo:: @ 855145C
.align 2
gRoute122_WaterMons:: @ 8551464
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute122_WaterMonsInfo:: @ 8551478
@@ -1245,16 +1245,16 @@ gRoute122_WaterMonsInfo:: @ 8551478
.align 2
gRoute122_FishingMons:: @ 8551480
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute122_FishingMonsInfo:: @ 85514A8
@@ -1263,18 +1263,18 @@ gRoute122_FishingMonsInfo:: @ 85514A8
.align 2
gRoute123_LandMons:: @ 85514B0
- wild_mon POOCHYENA, 26
- wild_mon SHUPPET, 26
- wild_mon MIGHTYENA, 26
- wild_mon SHUPPET, 28
- wild_mon MIGHTYENA, 28
- wild_mon ODDISH, 26
- wild_mon ODDISH, 28
- wild_mon GLOOM, 28
- wild_mon WINGULL, 26
- wild_mon WINGULL, 27
- wild_mon WINGULL, 28
- wild_mon KECLEON, 25
+ wild_mon SPECIES_POOCHYENA, 26
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_MIGHTYENA, 26
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_MIGHTYENA, 28
+ wild_mon SPECIES_ODDISH, 26
+ wild_mon SPECIES_ODDISH, 28
+ wild_mon SPECIES_GLOOM, 28
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 27
+ wild_mon SPECIES_WINGULL, 28
+ wild_mon SPECIES_KECLEON, 25
.align 2
gRoute123_LandMonsInfo:: @ 85514E0
@@ -1283,11 +1283,11 @@ gRoute123_LandMonsInfo:: @ 85514E0
.align 2
gRoute123_WaterMons:: @ 85514E8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute123_WaterMonsInfo:: @ 85514FC
@@ -1296,16 +1296,16 @@ gRoute123_WaterMonsInfo:: @ 85514FC
.align 2
gRoute123_FishingMons:: @ 8551504
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute123_FishingMonsInfo:: @ 855152C
@@ -1314,18 +1314,18 @@ gRoute123_FishingMonsInfo:: @ 855152C
.align 2
gMtPyre_2F_LandMons:: @ 8551534
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
.align 2
gMtPyre_2F_LandMonsInfo:: @ 8551564
@@ -1334,18 +1334,18 @@ gMtPyre_2F_LandMonsInfo:: @ 8551564
.align 2
gMtPyre_3F_LandMons:: @ 855156C
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
.align 2
gMtPyre_3F_LandMonsInfo:: @ 855159C
@@ -1354,18 +1354,18 @@ gMtPyre_3F_LandMonsInfo:: @ 855159C
.align 2
gMtPyre_4F_LandMons:: @ 85515A4
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 25
- wild_mon DUSKULL, 29
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 25
+ wild_mon SPECIES_DUSKULL, 29
.align 2
gMtPyre_4F_LandMonsInfo:: @ 85515D4
@@ -1374,18 +1374,18 @@ gMtPyre_4F_LandMonsInfo:: @ 85515D4
.align 2
gMtPyre_5F_LandMons:: @ 85515DC
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 25
- wild_mon DUSKULL, 29
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 25
+ wild_mon SPECIES_DUSKULL, 29
.align 2
gMtPyre_5F_LandMonsInfo:: @ 855160C
@@ -1394,18 +1394,18 @@ gMtPyre_5F_LandMonsInfo:: @ 855160C
.align 2
gMtPyre_6F_LandMons:: @ 8551614
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 24
- wild_mon SHUPPET, 23
- wild_mon SHUPPET, 22
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 27
- wild_mon DUSKULL, 25
- wild_mon DUSKULL, 29
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_SHUPPET, 23
+ wild_mon SPECIES_SHUPPET, 22
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 27
+ wild_mon SPECIES_DUSKULL, 25
+ wild_mon SPECIES_DUSKULL, 29
.align 2
gMtPyre_6F_LandMonsInfo:: @ 8551644
@@ -1414,18 +1414,18 @@ gMtPyre_6F_LandMonsInfo:: @ 8551644
.align 2
gMtPyre_Exterior_LandMons:: @ 855164C
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 29
- wild_mon VULPIX, 29
- wild_mon VULPIX, 27
- wild_mon VULPIX, 29
- wild_mon VULPIX, 25
- wild_mon WINGULL, 27
- wild_mon WINGULL, 27
- wild_mon WINGULL, 26
- wild_mon WINGULL, 28
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_VULPIX, 29
+ wild_mon SPECIES_VULPIX, 27
+ wild_mon SPECIES_VULPIX, 29
+ wild_mon SPECIES_VULPIX, 25
+ wild_mon SPECIES_WINGULL, 27
+ wild_mon SPECIES_WINGULL, 27
+ wild_mon SPECIES_WINGULL, 26
+ wild_mon SPECIES_WINGULL, 28
.align 2
gMtPyre_Exterior_LandMonsInfo:: @ 855167C
@@ -1434,18 +1434,18 @@ gMtPyre_Exterior_LandMonsInfo:: @ 855167C
.align 2
gMtPyre_Summit_LandMons:: @ 8551684
- wild_mon SHUPPET, 28
- wild_mon SHUPPET, 29
- wild_mon SHUPPET, 27
- wild_mon SHUPPET, 26
- wild_mon SHUPPET, 30
- wild_mon SHUPPET, 25
- wild_mon SHUPPET, 24
- wild_mon DUSKULL, 28
- wild_mon DUSKULL, 26
- wild_mon DUSKULL, 30
- wild_mon CHIMECHO, 28
- wild_mon CHIMECHO, 28
+ wild_mon SPECIES_SHUPPET, 28
+ wild_mon SPECIES_SHUPPET, 29
+ wild_mon SPECIES_SHUPPET, 27
+ wild_mon SPECIES_SHUPPET, 26
+ wild_mon SPECIES_SHUPPET, 30
+ wild_mon SPECIES_SHUPPET, 25
+ wild_mon SPECIES_SHUPPET, 24
+ wild_mon SPECIES_DUSKULL, 28
+ wild_mon SPECIES_DUSKULL, 26
+ wild_mon SPECIES_DUSKULL, 30
+ wild_mon SPECIES_CHIMECHO, 28
+ wild_mon SPECIES_CHIMECHO, 28
.align 2
gMtPyre_Summit_LandMonsInfo:: @ 85516B4
@@ -1454,18 +1454,18 @@ gMtPyre_Summit_LandMonsInfo:: @ 85516B4
.align 2
gGraniteCave_StevensRoom_LandMons:: @ 85516BC
- wild_mon ZUBAT, 7
- wild_mon MAKUHITA, 8
- wild_mon MAKUHITA, 7
- wild_mon ZUBAT, 8
- wild_mon MAKUHITA, 9
- wild_mon ABRA, 8
- wild_mon MAKUHITA, 10
- wild_mon MAKUHITA, 6
- wild_mon ARON, 7
- wild_mon ARON, 8
- wild_mon ARON, 7
- wild_mon ARON, 8
+ wild_mon SPECIES_ZUBAT, 7
+ wild_mon SPECIES_MAKUHITA, 8
+ wild_mon SPECIES_MAKUHITA, 7
+ wild_mon SPECIES_ZUBAT, 8
+ wild_mon SPECIES_MAKUHITA, 9
+ wild_mon SPECIES_ABRA, 8
+ wild_mon SPECIES_MAKUHITA, 10
+ wild_mon SPECIES_MAKUHITA, 6
+ wild_mon SPECIES_ARON, 7
+ wild_mon SPECIES_ARON, 8
+ wild_mon SPECIES_ARON, 7
+ wild_mon SPECIES_ARON, 8
.align 2
gGraniteCave_StevensRoom_LandMonsInfo:: @ 85516EC
@@ -1474,11 +1474,11 @@ gGraniteCave_StevensRoom_LandMonsInfo:: @ 85516EC
.align 2
gRoute125_WaterMons:: @ 85516F4
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute125_WaterMonsInfo:: @ 8551708
@@ -1487,16 +1487,16 @@ gRoute125_WaterMonsInfo:: @ 8551708
.align 2
gRoute125_FishingMons:: @ 8551710
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute125_FishingMonsInfo:: @ 8551738
@@ -1505,11 +1505,11 @@ gRoute125_FishingMonsInfo:: @ 8551738
.align 2
gRoute126_WaterMons:: @ 8551740
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute126_WaterMonsInfo:: @ 8551754
@@ -1518,16 +1518,16 @@ gRoute126_WaterMonsInfo:: @ 8551754
.align 2
gRoute126_FishingMons:: @ 855175C
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute126_FishingMonsInfo:: @ 8551784
@@ -1536,11 +1536,11 @@ gRoute126_FishingMonsInfo:: @ 8551784
.align 2
gRoute127_WaterMons:: @ 855178C
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute127_WaterMonsInfo:: @ 85517A0
@@ -1549,16 +1549,16 @@ gRoute127_WaterMonsInfo:: @ 85517A0
.align 2
gRoute127_FishingMons:: @ 85517A8
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute127_FishingMonsInfo:: @ 85517D0
@@ -1567,11 +1567,11 @@ gRoute127_FishingMonsInfo:: @ 85517D0
.align 2
gRoute128_WaterMons:: @ 85517D8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute128_WaterMonsInfo:: @ 85517EC
@@ -1580,16 +1580,16 @@ gRoute128_WaterMonsInfo:: @ 85517EC
.align 2
gRoute128_FishingMons:: @ 85517F4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon LUVDISC, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon LUVDISC, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon CORSOLA, 30, 35
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_LUVDISC, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_LUVDISC, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_CORSOLA, 30, 35
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute128_FishingMonsInfo:: @ 855181C
@@ -1598,11 +1598,11 @@ gRoute128_FishingMonsInfo:: @ 855181C
.align 2
gRoute129_WaterMons:: @ 8551824
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon WAILORD, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_WAILORD, 25, 30
.align 2
gRoute129_WaterMonsInfo:: @ 8551838
@@ -1611,16 +1611,16 @@ gRoute129_WaterMonsInfo:: @ 8551838
.align 2
gRoute129_FishingMons:: @ 8551840
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute129_FishingMonsInfo:: @ 8551868
@@ -1629,18 +1629,18 @@ gRoute129_FishingMonsInfo:: @ 8551868
.align 2
gRoute130_LandMons:: @ 8551870
- wild_mon WYNAUT, 30
- wild_mon WYNAUT, 35
- wild_mon WYNAUT, 25
- wild_mon WYNAUT, 40
- wild_mon WYNAUT, 20
- wild_mon WYNAUT, 45
- wild_mon WYNAUT, 15
- wild_mon WYNAUT, 50
- wild_mon WYNAUT, 10
- wild_mon WYNAUT, 5
- wild_mon WYNAUT, 10
- wild_mon WYNAUT, 5
+ wild_mon SPECIES_WYNAUT, 30
+ wild_mon SPECIES_WYNAUT, 35
+ wild_mon SPECIES_WYNAUT, 25
+ wild_mon SPECIES_WYNAUT, 40
+ wild_mon SPECIES_WYNAUT, 20
+ wild_mon SPECIES_WYNAUT, 45
+ wild_mon SPECIES_WYNAUT, 15
+ wild_mon SPECIES_WYNAUT, 50
+ wild_mon SPECIES_WYNAUT, 10
+ wild_mon SPECIES_WYNAUT, 5
+ wild_mon SPECIES_WYNAUT, 10
+ wild_mon SPECIES_WYNAUT, 5
.align 2
gRoute130_LandMonsInfo:: @ 85518A0
@@ -1649,11 +1649,11 @@ gRoute130_LandMonsInfo:: @ 85518A0
.align 2
gRoute130_WaterMons:: @ 85518A8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute130_WaterMonsInfo:: @ 85518BC
@@ -1662,16 +1662,16 @@ gRoute130_WaterMonsInfo:: @ 85518BC
.align 2
gRoute130_FishingMons:: @ 85518C4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute130_FishingMonsInfo:: @ 85518EC
@@ -1680,11 +1680,11 @@ gRoute130_FishingMonsInfo:: @ 85518EC
.align 2
gRoute131_WaterMons:: @ 85518F4
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute131_WaterMonsInfo:: @ 8551908
@@ -1693,16 +1693,16 @@ gRoute131_WaterMonsInfo:: @ 8551908
.align 2
gRoute131_FishingMons:: @ 8551910
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute131_FishingMonsInfo:: @ 8551938
@@ -1711,11 +1711,11 @@ gRoute131_FishingMonsInfo:: @ 8551938
.align 2
gRoute132_WaterMons:: @ 8551940
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute132_WaterMonsInfo:: @ 8551954
@@ -1724,16 +1724,16 @@ gRoute132_WaterMonsInfo:: @ 8551954
.align 2
gRoute132_FishingMons:: @ 855195C
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon HORSEA, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_HORSEA, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute132_FishingMonsInfo:: @ 8551984
@@ -1742,11 +1742,11 @@ gRoute132_FishingMonsInfo:: @ 8551984
.align 2
gRoute133_WaterMons:: @ 855198C
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute133_WaterMonsInfo:: @ 85519A0
@@ -1755,16 +1755,16 @@ gRoute133_WaterMonsInfo:: @ 85519A0
.align 2
gRoute133_FishingMons:: @ 85519A8
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon HORSEA, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_HORSEA, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute133_FishingMonsInfo:: @ 85519D0
@@ -1773,11 +1773,11 @@ gRoute133_FishingMonsInfo:: @ 85519D0
.align 2
gRoute134_WaterMons:: @ 85519D8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gRoute134_WaterMonsInfo:: @ 85519EC
@@ -1786,16 +1786,16 @@ gRoute134_WaterMonsInfo:: @ 85519EC
.align 2
gRoute134_FishingMons:: @ 85519F4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon HORSEA, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_HORSEA, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gRoute134_FishingMonsInfo:: @ 8551A1C
@@ -1804,11 +1804,11 @@ gRoute134_FishingMonsInfo:: @ 8551A1C
.align 2
gAbandonedShip_HiddenFloorCorridors_WaterMons:: @ 8551A24
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACOOL, 5, 35
- wild_mon TENTACRUEL, 30, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_TENTACRUEL, 30, 35
.align 2
gAbandonedShip_HiddenFloorCorridors_WaterMonsInfo:: @ 8551A38
@@ -1817,16 +1817,16 @@ gAbandonedShip_HiddenFloorCorridors_WaterMonsInfo:: @ 8551A38
.align 2
gAbandonedShip_HiddenFloorCorridors_FishingMons:: @ 8551A40
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon TENTACOOL, 25, 30
- wild_mon TENTACOOL, 30, 35
- wild_mon TENTACRUEL, 30, 35
- wild_mon TENTACRUEL, 25, 30
- wild_mon TENTACRUEL, 20, 25
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_TENTACOOL, 25, 30
+ wild_mon SPECIES_TENTACOOL, 30, 35
+ wild_mon SPECIES_TENTACRUEL, 30, 35
+ wild_mon SPECIES_TENTACRUEL, 25, 30
+ wild_mon SPECIES_TENTACRUEL, 20, 25
.align 2
gAbandonedShip_HiddenFloorCorridors_FishingMonsInfo:: @ 8551A68
@@ -1835,18 +1835,18 @@ gAbandonedShip_HiddenFloorCorridors_FishingMonsInfo:: @ 8551A68
.align 2
gSeafloorCavern_Room1_LandMons:: @ 8551A70
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room1_LandMonsInfo:: @ 8551AA0
@@ -1855,18 +1855,18 @@ gSeafloorCavern_Room1_LandMonsInfo:: @ 8551AA0
.align 2
gSeafloorCavern_Room2_LandMons:: @ 8551AA8
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room2_LandMonsInfo:: @ 8551AD8
@@ -1875,18 +1875,18 @@ gSeafloorCavern_Room2_LandMonsInfo:: @ 8551AD8
.align 2
gSeafloorCavern_Room3_LandMons:: @ 8551AE0
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room3_LandMonsInfo:: @ 8551B10
@@ -1895,18 +1895,18 @@ gSeafloorCavern_Room3_LandMonsInfo:: @ 8551B10
.align 2
gSeafloorCavern_Room4_LandMons:: @ 8551B18
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room4_LandMonsInfo:: @ 8551B48
@@ -1915,18 +1915,18 @@ gSeafloorCavern_Room4_LandMonsInfo:: @ 8551B48
.align 2
gSeafloorCavern_Room5_LandMons:: @ 8551B50
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room5_LandMonsInfo:: @ 8551B80
@@ -1935,18 +1935,18 @@ gSeafloorCavern_Room5_LandMonsInfo:: @ 8551B80
.align 2
gSeafloorCavern_Room6_LandMons:: @ 8551B88
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room6_LandMonsInfo:: @ 8551BB8
@@ -1955,11 +1955,11 @@ gSeafloorCavern_Room6_LandMonsInfo:: @ 8551BB8
.align 2
gSeafloorCavern_Room6_WaterMons:: @ 8551BC0
- wild_mon TENTACOOL, 5, 35
- wild_mon ZUBAT, 5, 35
- wild_mon ZUBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_ZUBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
.align 2
gSeafloorCavern_Room6_WaterMonsInfo:: @ 8551BD4
@@ -1968,16 +1968,16 @@ gSeafloorCavern_Room6_WaterMonsInfo:: @ 8551BD4
.align 2
gSeafloorCavern_Room6_FishingMons:: @ 8551BDC
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gSeafloorCavern_Room6_FishingMonsInfo:: @ 8551C04
@@ -1986,18 +1986,18 @@ gSeafloorCavern_Room6_FishingMonsInfo:: @ 8551C04
.align 2
gSeafloorCavern_Room7_LandMons:: @ 8551C0C
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room7_LandMonsInfo:: @ 8551C3C
@@ -2006,11 +2006,11 @@ gSeafloorCavern_Room7_LandMonsInfo:: @ 8551C3C
.align 2
gSeafloorCavern_Room7_WaterMons:: @ 8551C44
- wild_mon TENTACOOL, 5, 35
- wild_mon ZUBAT, 5, 35
- wild_mon ZUBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_ZUBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
.align 2
gSeafloorCavern_Room7_WaterMonsInfo:: @ 8551C58
@@ -2019,16 +2019,16 @@ gSeafloorCavern_Room7_WaterMonsInfo:: @ 8551C58
.align 2
gSeafloorCavern_Room7_FishingMons:: @ 8551C60
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gSeafloorCavern_Room7_FishingMonsInfo:: @ 8551C88
@@ -2037,18 +2037,18 @@ gSeafloorCavern_Room7_FishingMonsInfo:: @ 8551C88
.align 2
gSeafloorCavern_Room8_LandMons:: @ 8551C90
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gSeafloorCavern_Room8_LandMonsInfo:: @ 8551CC0
@@ -2057,11 +2057,11 @@ gSeafloorCavern_Room8_LandMonsInfo:: @ 8551CC0
.align 2
gSeafloorCavern_Entrance_WaterMons:: @ 8551CC8
- wild_mon TENTACOOL, 5, 35
- wild_mon ZUBAT, 5, 35
- wild_mon ZUBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_ZUBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
.align 2
gSeafloorCavern_Entrance_WaterMonsInfo:: @ 8551CDC
@@ -2070,16 +2070,16 @@ gSeafloorCavern_Entrance_WaterMonsInfo:: @ 8551CDC
.align 2
gSeafloorCavern_Entrance_FishingMons:: @ 8551CE4
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gSeafloorCavern_Entrance_FishingMonsInfo:: @ 8551D0C
@@ -2088,18 +2088,18 @@ gSeafloorCavern_Entrance_FishingMonsInfo:: @ 8551D0C
.align 2
gCaveOfOrigin_Entrance_LandMons:: @ 8551D14
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 28
- wild_mon ZUBAT, 29
- wild_mon ZUBAT, 34
- wild_mon ZUBAT, 35
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_ZUBAT, 29
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_ZUBAT, 35
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gCaveOfOrigin_Entrance_LandMonsInfo:: @ 8551D44
@@ -2108,18 +2108,18 @@ gCaveOfOrigin_Entrance_LandMonsInfo:: @ 8551D44
.align 2
gCaveOfOrigin_1F_LandMons:: @ 8551D4C
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon SABLEYE, 30
- wild_mon SABLEYE, 32
- wild_mon SABLEYE, 34
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 34
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SABLEYE, 30
+ wild_mon SPECIES_SABLEYE, 32
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gCaveOfOrigin_1F_LandMonsInfo:: @ 8551D7C
@@ -2128,18 +2128,18 @@ gCaveOfOrigin_1F_LandMonsInfo:: @ 8551D7C
.align 2
gCaveOfOrigin_UnusedRubySapphireMap1_LandMons:: @ 8551D84
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon SABLEYE, 30
- wild_mon SABLEYE, 32
- wild_mon SABLEYE, 34
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 34
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SABLEYE, 30
+ wild_mon SPECIES_SABLEYE, 32
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gCaveOfOrigin_UnusedRubySapphireMap1_LandMonsInfo:: @ 8551DB4
@@ -2148,18 +2148,18 @@ gCaveOfOrigin_UnusedRubySapphireMap1_LandMonsInfo:: @ 8551DB4
.align 2
gCaveOfOrigin_UnusedRubySapphireMap2_LandMons:: @ 8551DBC
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon SABLEYE, 30
- wild_mon SABLEYE, 32
- wild_mon SABLEYE, 34
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 34
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SABLEYE, 30
+ wild_mon SPECIES_SABLEYE, 32
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gCaveOfOrigin_UnusedRubySapphireMap2_LandMonsInfo:: @ 8551DEC
@@ -2168,18 +2168,18 @@ gCaveOfOrigin_UnusedRubySapphireMap2_LandMonsInfo:: @ 8551DEC
.align 2
gCaveOfOrigin_UnusedRubySapphireMap3_LandMons:: @ 8551DF4
- wild_mon ZUBAT, 30
- wild_mon ZUBAT, 31
- wild_mon ZUBAT, 32
- wild_mon SABLEYE, 30
- wild_mon SABLEYE, 32
- wild_mon SABLEYE, 34
- wild_mon ZUBAT, 33
- wild_mon ZUBAT, 34
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 36
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_ZUBAT, 31
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SABLEYE, 30
+ wild_mon SPECIES_SABLEYE, 32
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_ZUBAT, 33
+ wild_mon SPECIES_ZUBAT, 34
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 36
.align 2
gCaveOfOrigin_UnusedRubySapphireMap3_LandMonsInfo:: @ 8551E24
@@ -2188,18 +2188,18 @@ gCaveOfOrigin_UnusedRubySapphireMap3_LandMonsInfo:: @ 8551E24
.align 2
gNewMauville_Entrance_LandMons:: @ 8551E2C
- wild_mon VOLTORB, 24
- wild_mon MAGNEMITE, 24
- wild_mon VOLTORB, 25
- wild_mon MAGNEMITE, 25
- wild_mon VOLTORB, 23
- wild_mon MAGNEMITE, 23
- wild_mon VOLTORB, 26
- wild_mon MAGNEMITE, 26
- wild_mon VOLTORB, 22
- wild_mon MAGNEMITE, 22
- wild_mon VOLTORB, 22
- wild_mon MAGNEMITE, 22
+ wild_mon SPECIES_VOLTORB, 24
+ wild_mon SPECIES_MAGNEMITE, 24
+ wild_mon SPECIES_VOLTORB, 25
+ wild_mon SPECIES_MAGNEMITE, 25
+ wild_mon SPECIES_VOLTORB, 23
+ wild_mon SPECIES_MAGNEMITE, 23
+ wild_mon SPECIES_VOLTORB, 26
+ wild_mon SPECIES_MAGNEMITE, 26
+ wild_mon SPECIES_VOLTORB, 22
+ wild_mon SPECIES_MAGNEMITE, 22
+ wild_mon SPECIES_VOLTORB, 22
+ wild_mon SPECIES_MAGNEMITE, 22
.align 2
gNewMauville_Entrance_LandMonsInfo:: @ 8551E5C
@@ -2208,18 +2208,18 @@ gNewMauville_Entrance_LandMonsInfo:: @ 8551E5C
.align 2
gSafariZone_Southwest_LandMons:: @ 8551E64
- wild_mon ODDISH, 25
- wild_mon ODDISH, 27
- wild_mon GIRAFARIG, 25
- wild_mon GIRAFARIG, 27
- wild_mon NATU, 25
- wild_mon DODUO, 27
- wild_mon GLOOM, 25
- wild_mon WOBBUFFET, 27
- wild_mon PIKACHU, 25
- wild_mon WOBBUFFET, 27
- wild_mon PIKACHU, 27
- wild_mon WOBBUFFET, 29
+ wild_mon SPECIES_ODDISH, 25
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_GIRAFARIG, 25
+ wild_mon SPECIES_GIRAFARIG, 27
+ wild_mon SPECIES_NATU, 25
+ wild_mon SPECIES_DODUO, 27
+ wild_mon SPECIES_GLOOM, 25
+ wild_mon SPECIES_WOBBUFFET, 27
+ wild_mon SPECIES_PIKACHU, 25
+ wild_mon SPECIES_WOBBUFFET, 27
+ wild_mon SPECIES_PIKACHU, 27
+ wild_mon SPECIES_WOBBUFFET, 29
.align 2
gSafariZone_Southwest_LandMonsInfo:: @ 8551E94
@@ -2228,11 +2228,11 @@ gSafariZone_Southwest_LandMonsInfo:: @ 8551E94
.align 2
gSafariZone_Southwest_WaterMons:: @ 8551E9C
- wild_mon PSYDUCK, 20, 30
- wild_mon PSYDUCK, 20, 30
- wild_mon PSYDUCK, 30, 35
- wild_mon PSYDUCK, 30, 35
- wild_mon PSYDUCK, 30, 35
+ wild_mon SPECIES_PSYDUCK, 20, 30
+ wild_mon SPECIES_PSYDUCK, 20, 30
+ wild_mon SPECIES_PSYDUCK, 30, 35
+ wild_mon SPECIES_PSYDUCK, 30, 35
+ wild_mon SPECIES_PSYDUCK, 30, 35
.align 2
gSafariZone_Southwest_WaterMonsInfo:: @ 8551EB0
@@ -2241,16 +2241,16 @@ gSafariZone_Southwest_WaterMonsInfo:: @ 8551EB0
.align 2
gSafariZone_Southwest_FishingMons:: @ 8551EB8
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 25
- wild_mon GOLDEEN, 10, 30
- wild_mon GOLDEEN, 25, 30
- wild_mon GOLDEEN, 30, 35
- wild_mon SEAKING, 30, 35
- wild_mon SEAKING, 35, 40
- wild_mon SEAKING, 25, 30
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 25
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_GOLDEEN, 25, 30
+ wild_mon SPECIES_GOLDEEN, 30, 35
+ wild_mon SPECIES_SEAKING, 30, 35
+ wild_mon SPECIES_SEAKING, 35, 40
+ wild_mon SPECIES_SEAKING, 25, 30
.align 2
gSafariZone_Southwest_FishingMonsInfo:: @ 8551EE0
@@ -2259,18 +2259,18 @@ gSafariZone_Southwest_FishingMonsInfo:: @ 8551EE0
.align 2
gSafariZone_North_LandMons:: @ 8551EE8
- wild_mon PHANPY, 27
- wild_mon ODDISH, 27
- wild_mon PHANPY, 29
- wild_mon ODDISH, 29
- wild_mon NATU, 27
- wild_mon GLOOM, 29
- wild_mon GLOOM, 31
- wild_mon NATU, 29
- wild_mon XATU, 29
- wild_mon HERACROSS, 27
- wild_mon XATU, 31
- wild_mon HERACROSS, 29
+ wild_mon SPECIES_PHANPY, 27
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_PHANPY, 29
+ wild_mon SPECIES_ODDISH, 29
+ wild_mon SPECIES_NATU, 27
+ wild_mon SPECIES_GLOOM, 29
+ wild_mon SPECIES_GLOOM, 31
+ wild_mon SPECIES_NATU, 29
+ wild_mon SPECIES_XATU, 29
+ wild_mon SPECIES_HERACROSS, 27
+ wild_mon SPECIES_XATU, 31
+ wild_mon SPECIES_HERACROSS, 29
.align 2
gSafariZone_North_LandMonsInfo:: @ 8551F18
@@ -2279,11 +2279,11 @@ gSafariZone_North_LandMonsInfo:: @ 8551F18
.align 2
gSafariZone_North_RockSmashMons:: @ 8551F20
- wild_mon GEODUDE, 10, 15
- wild_mon GEODUDE, 5, 10
- wild_mon GEODUDE, 15, 20
- wild_mon GEODUDE, 20, 25
- wild_mon GEODUDE, 25, 30
+ wild_mon SPECIES_GEODUDE, 10, 15
+ wild_mon SPECIES_GEODUDE, 5, 10
+ wild_mon SPECIES_GEODUDE, 15, 20
+ wild_mon SPECIES_GEODUDE, 20, 25
+ wild_mon SPECIES_GEODUDE, 25, 30
.align 2
gSafariZone_North_RockSmashMonsInfo:: @ 8551F34
@@ -2292,18 +2292,18 @@ gSafariZone_North_RockSmashMonsInfo:: @ 8551F34
.align 2
gSafariZone_Northwest_LandMons:: @ 8551F3C
- wild_mon RHYHORN, 27
- wild_mon ODDISH, 27
- wild_mon RHYHORN, 29
- wild_mon ODDISH, 29
- wild_mon DODUO, 27
- wild_mon GLOOM, 29
- wild_mon GLOOM, 31
- wild_mon DODUO, 29
- wild_mon DODRIO, 29
- wild_mon PINSIR, 27
- wild_mon DODRIO, 31
- wild_mon PINSIR, 29
+ wild_mon SPECIES_RHYHORN, 27
+ wild_mon SPECIES_ODDISH, 27
+ wild_mon SPECIES_RHYHORN, 29
+ wild_mon SPECIES_ODDISH, 29
+ wild_mon SPECIES_DODUO, 27
+ wild_mon SPECIES_GLOOM, 29
+ wild_mon SPECIES_GLOOM, 31
+ wild_mon SPECIES_DODUO, 29
+ wild_mon SPECIES_DODRIO, 29
+ wild_mon SPECIES_PINSIR, 27
+ wild_mon SPECIES_DODRIO, 31
+ wild_mon SPECIES_PINSIR, 29
.align 2
gSafariZone_Northwest_LandMonsInfo:: @ 8551F6C
@@ -2312,11 +2312,11 @@ gSafariZone_Northwest_LandMonsInfo:: @ 8551F6C
.align 2
gSafariZone_Northwest_WaterMons:: @ 8551F74
- wild_mon PSYDUCK, 20, 30
- wild_mon PSYDUCK, 20, 30
- wild_mon PSYDUCK, 30, 35
- wild_mon GOLDUCK, 30, 35
- wild_mon GOLDUCK, 25, 40
+ wild_mon SPECIES_PSYDUCK, 20, 30
+ wild_mon SPECIES_PSYDUCK, 20, 30
+ wild_mon SPECIES_PSYDUCK, 30, 35
+ wild_mon SPECIES_GOLDUCK, 30, 35
+ wild_mon SPECIES_GOLDUCK, 25, 40
.align 2
gSafariZone_Northwest_WaterMonsInfo:: @ 8551F88
@@ -2325,16 +2325,16 @@ gSafariZone_Northwest_WaterMonsInfo:: @ 8551F88
.align 2
gSafariZone_Northwest_FishingMons:: @ 8551F90
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 25
- wild_mon GOLDEEN, 10, 30
- wild_mon GOLDEEN, 25, 30
- wild_mon GOLDEEN, 30, 35
- wild_mon SEAKING, 30, 35
- wild_mon SEAKING, 35, 40
- wild_mon SEAKING, 25, 30
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 25
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_GOLDEEN, 25, 30
+ wild_mon SPECIES_GOLDEEN, 30, 35
+ wild_mon SPECIES_SEAKING, 30, 35
+ wild_mon SPECIES_SEAKING, 35, 40
+ wild_mon SPECIES_SEAKING, 25, 30
.align 2
gSafariZone_Northwest_FishingMonsInfo:: @ 8551FB8
@@ -2343,18 +2343,18 @@ gSafariZone_Northwest_FishingMonsInfo:: @ 8551FB8
.align 2
gVictoryRoad_B1F_LandMons:: @ 8551FC0
- wild_mon GOLBAT, 40
- wild_mon HARIYAMA, 40
- wild_mon LAIRON, 40
- wild_mon LAIRON, 40
- wild_mon GOLBAT, 38
- wild_mon HARIYAMA, 38
- wild_mon GOLBAT, 42
- wild_mon HARIYAMA, 42
- wild_mon LAIRON, 42
- wild_mon MAWILE, 38
- wild_mon LAIRON, 42
- wild_mon MAWILE, 38
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_HARIYAMA, 40
+ wild_mon SPECIES_LAIRON, 40
+ wild_mon SPECIES_LAIRON, 40
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_HARIYAMA, 38
+ wild_mon SPECIES_GOLBAT, 42
+ wild_mon SPECIES_HARIYAMA, 42
+ wild_mon SPECIES_LAIRON, 42
+ wild_mon SPECIES_MAWILE, 38
+ wild_mon SPECIES_LAIRON, 42
+ wild_mon SPECIES_MAWILE, 38
.align 2
gVictoryRoad_B1F_LandMonsInfo:: @ 8551FF0
@@ -2363,11 +2363,11 @@ gVictoryRoad_B1F_LandMonsInfo:: @ 8551FF0
.align 2
gVictoryRoad_B1F_RockSmashMons:: @ 8551FF8
- wild_mon GRAVELER, 30, 40
- wild_mon GEODUDE, 30, 40
- wild_mon GRAVELER, 35, 40
- wild_mon GRAVELER, 35, 40
- wild_mon GRAVELER, 35, 40
+ wild_mon SPECIES_GRAVELER, 30, 40
+ wild_mon SPECIES_GEODUDE, 30, 40
+ wild_mon SPECIES_GRAVELER, 35, 40
+ wild_mon SPECIES_GRAVELER, 35, 40
+ wild_mon SPECIES_GRAVELER, 35, 40
.align 2
gVictoryRoad_B1F_RockSmashMonsInfo:: @ 855200C
@@ -2376,18 +2376,18 @@ gVictoryRoad_B1F_RockSmashMonsInfo:: @ 855200C
.align 2
gVictoryRoad_B2F_LandMons:: @ 8552014
- wild_mon GOLBAT, 40
- wild_mon SABLEYE, 40
- wild_mon LAIRON, 40
- wild_mon LAIRON, 40
- wild_mon GOLBAT, 42
- wild_mon SABLEYE, 42
- wild_mon GOLBAT, 44
- wild_mon SABLEYE, 44
- wild_mon LAIRON, 42
- wild_mon MAWILE, 42
- wild_mon LAIRON, 44
- wild_mon MAWILE, 44
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_SABLEYE, 40
+ wild_mon SPECIES_LAIRON, 40
+ wild_mon SPECIES_LAIRON, 40
+ wild_mon SPECIES_GOLBAT, 42
+ wild_mon SPECIES_SABLEYE, 42
+ wild_mon SPECIES_GOLBAT, 44
+ wild_mon SPECIES_SABLEYE, 44
+ wild_mon SPECIES_LAIRON, 42
+ wild_mon SPECIES_MAWILE, 42
+ wild_mon SPECIES_LAIRON, 44
+ wild_mon SPECIES_MAWILE, 44
.align 2
gVictoryRoad_B2F_LandMonsInfo:: @ 8552044
@@ -2396,11 +2396,11 @@ gVictoryRoad_B2F_LandMonsInfo:: @ 8552044
.align 2
gVictoryRoad_B2F_WaterMons:: @ 855204C
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 25, 30
- wild_mon GOLBAT, 35, 40
- wild_mon GOLBAT, 35, 40
- wild_mon GOLBAT, 35, 40
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 25, 30
+ wild_mon SPECIES_GOLBAT, 35, 40
+ wild_mon SPECIES_GOLBAT, 35, 40
+ wild_mon SPECIES_GOLBAT, 35, 40
.align 2
gVictoryRoad_B2F_WaterMonsInfo:: @ 8552060
@@ -2409,16 +2409,16 @@ gVictoryRoad_B2F_WaterMonsInfo:: @ 8552060
.align 2
gVictoryRoad_B2F_FishingMons:: @ 8552068
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon WHISCASH, 30, 35
- wild_mon WHISCASH, 35, 40
- wild_mon WHISCASH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_WHISCASH, 30, 35
+ wild_mon SPECIES_WHISCASH, 35, 40
+ wild_mon SPECIES_WHISCASH, 40, 45
.align 2
gVictoryRoad_B2F_FishingMonsInfo:: @ 8552090
@@ -2427,18 +2427,18 @@ gVictoryRoad_B2F_FishingMonsInfo:: @ 8552090
.align 2
gMeteorFalls_1F_1R_LandMons:: @ 8552098
- wild_mon ZUBAT, 16
- wild_mon ZUBAT, 17
- wild_mon ZUBAT, 18
- wild_mon ZUBAT, 15
- wild_mon ZUBAT, 14
- wild_mon SOLROCK, 16
- wild_mon SOLROCK, 18
- wild_mon SOLROCK, 14
- wild_mon ZUBAT, 19
- wild_mon ZUBAT, 20
- wild_mon ZUBAT, 19
- wild_mon ZUBAT, 20
+ wild_mon SPECIES_ZUBAT, 16
+ wild_mon SPECIES_ZUBAT, 17
+ wild_mon SPECIES_ZUBAT, 18
+ wild_mon SPECIES_ZUBAT, 15
+ wild_mon SPECIES_ZUBAT, 14
+ wild_mon SPECIES_SOLROCK, 16
+ wild_mon SPECIES_SOLROCK, 18
+ wild_mon SPECIES_SOLROCK, 14
+ wild_mon SPECIES_ZUBAT, 19
+ wild_mon SPECIES_ZUBAT, 20
+ wild_mon SPECIES_ZUBAT, 19
+ wild_mon SPECIES_ZUBAT, 20
.align 2
gMeteorFalls_1F_1R_LandMonsInfo:: @ 85520C8
@@ -2447,11 +2447,11 @@ gMeteorFalls_1F_1R_LandMonsInfo:: @ 85520C8
.align 2
gMeteorFalls_1F_1R_WaterMons:: @ 85520D0
- wild_mon ZUBAT, 5, 35
- wild_mon ZUBAT, 30, 35
- wild_mon SOLROCK, 25, 35
- wild_mon SOLROCK, 15, 25
- wild_mon SOLROCK, 5, 15
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_ZUBAT, 30, 35
+ wild_mon SPECIES_SOLROCK, 25, 35
+ wild_mon SPECIES_SOLROCK, 15, 25
+ wild_mon SPECIES_SOLROCK, 5, 15
.align 2
gMeteorFalls_1F_1R_WaterMonsInfo:: @ 85520E4
@@ -2460,16 +2460,16 @@ gMeteorFalls_1F_1R_WaterMonsInfo:: @ 85520E4
.align 2
gMeteorFalls_1F_1R_FishingMons:: @ 85520EC
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon BARBOACH, 20, 25
- wild_mon BARBOACH, 35, 40
- wild_mon BARBOACH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_BARBOACH, 20, 25
+ wild_mon SPECIES_BARBOACH, 35, 40
+ wild_mon SPECIES_BARBOACH, 40, 45
.align 2
gMeteorFalls_1F_1R_FishingMonsInfo:: @ 8552114
@@ -2478,18 +2478,18 @@ gMeteorFalls_1F_1R_FishingMonsInfo:: @ 8552114
.align 2
gMeteorFalls_1F_2R_LandMons:: @ 855211C
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon SOLROCK, 35
- wild_mon SOLROCK, 33
- wild_mon SOLROCK, 37
- wild_mon GOLBAT, 35
- wild_mon SOLROCK, 39
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_SOLROCK, 35
+ wild_mon SPECIES_SOLROCK, 33
+ wild_mon SPECIES_SOLROCK, 37
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SOLROCK, 39
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
.align 2
gMeteorFalls_1F_2R_LandMonsInfo:: @ 855214C
@@ -2498,11 +2498,11 @@ gMeteorFalls_1F_2R_LandMonsInfo:: @ 855214C
.align 2
gMeteorFalls_1F_2R_WaterMons:: @ 8552154
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon SOLROCK, 25, 35
- wild_mon SOLROCK, 15, 25
- wild_mon SOLROCK, 5, 15
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_SOLROCK, 25, 35
+ wild_mon SPECIES_SOLROCK, 15, 25
+ wild_mon SPECIES_SOLROCK, 5, 15
.align 2
gMeteorFalls_1F_2R_WaterMonsInfo:: @ 8552168
@@ -2511,16 +2511,16 @@ gMeteorFalls_1F_2R_WaterMonsInfo:: @ 8552168
.align 2
gMeteorFalls_1F_2R_FishingMons:: @ 8552170
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon WHISCASH, 30, 35
- wild_mon WHISCASH, 35, 40
- wild_mon WHISCASH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_WHISCASH, 30, 35
+ wild_mon SPECIES_WHISCASH, 35, 40
+ wild_mon SPECIES_WHISCASH, 40, 45
.align 2
gMeteorFalls_1F_2R_FishingMonsInfo:: @ 8552198
@@ -2529,18 +2529,18 @@ gMeteorFalls_1F_2R_FishingMonsInfo:: @ 8552198
.align 2
gMeteorFalls_B1F_1R_LandMons:: @ 85521A0
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon SOLROCK, 35
- wild_mon SOLROCK, 33
- wild_mon SOLROCK, 37
- wild_mon GOLBAT, 35
- wild_mon SOLROCK, 39
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_SOLROCK, 35
+ wild_mon SPECIES_SOLROCK, 33
+ wild_mon SPECIES_SOLROCK, 37
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SOLROCK, 39
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
.align 2
gMeteorFalls_B1F_1R_LandMonsInfo:: @ 85521D0
@@ -2549,11 +2549,11 @@ gMeteorFalls_B1F_1R_LandMonsInfo:: @ 85521D0
.align 2
gMeteorFalls_B1F_1R_WaterMons:: @ 85521D8
- wild_mon GOLBAT, 30, 35
- wild_mon GOLBAT, 30, 35
- wild_mon SOLROCK, 25, 35
- wild_mon SOLROCK, 15, 25
- wild_mon SOLROCK, 5, 15
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_GOLBAT, 30, 35
+ wild_mon SPECIES_SOLROCK, 25, 35
+ wild_mon SPECIES_SOLROCK, 15, 25
+ wild_mon SPECIES_SOLROCK, 5, 15
.align 2
gMeteorFalls_B1F_1R_WaterMonsInfo:: @ 85521EC
@@ -2562,16 +2562,16 @@ gMeteorFalls_B1F_1R_WaterMonsInfo:: @ 85521EC
.align 2
gMeteorFalls_B1F_1R_FishingMons:: @ 85521F4
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon BARBOACH, 10, 30
- wild_mon BARBOACH, 25, 30
- wild_mon BARBOACH, 30, 35
- wild_mon WHISCASH, 30, 35
- wild_mon WHISCASH, 35, 40
- wild_mon WHISCASH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_BARBOACH, 10, 30
+ wild_mon SPECIES_BARBOACH, 25, 30
+ wild_mon SPECIES_BARBOACH, 30, 35
+ wild_mon SPECIES_WHISCASH, 30, 35
+ wild_mon SPECIES_WHISCASH, 35, 40
+ wild_mon SPECIES_WHISCASH, 40, 45
.align 2
gMeteorFalls_B1F_1R_FishingMonsInfo:: @ 855221C
@@ -2580,18 +2580,18 @@ gMeteorFalls_B1F_1R_FishingMonsInfo:: @ 855221C
.align 2
gShoalCave_LowTideStairsRoom_LandMons:: @ 8552224
- wild_mon ZUBAT, 26
- wild_mon SPHEAL, 26
- wild_mon ZUBAT, 28
- wild_mon SPHEAL, 28
- wild_mon ZUBAT, 30
- wild_mon SPHEAL, 30
- wild_mon ZUBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
+ wild_mon SPECIES_ZUBAT, 26
+ wild_mon SPECIES_SPHEAL, 26
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_SPHEAL, 28
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_SPHEAL, 30
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
.align 2
gShoalCave_LowTideStairsRoom_LandMonsInfo:: @ 8552254
@@ -2600,18 +2600,18 @@ gShoalCave_LowTideStairsRoom_LandMonsInfo:: @ 8552254
.align 2
gShoalCave_LowTideLowerRoom_LandMons:: @ 855225C
- wild_mon ZUBAT, 26
- wild_mon SPHEAL, 26
- wild_mon ZUBAT, 28
- wild_mon SPHEAL, 28
- wild_mon ZUBAT, 30
- wild_mon SPHEAL, 30
- wild_mon ZUBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
+ wild_mon SPECIES_ZUBAT, 26
+ wild_mon SPECIES_SPHEAL, 26
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_SPHEAL, 28
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_SPHEAL, 30
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
.align 2
gShoalCave_LowTideLowerRoom_LandMonsInfo:: @ 855228C
@@ -2620,18 +2620,18 @@ gShoalCave_LowTideLowerRoom_LandMonsInfo:: @ 855228C
.align 2
gShoalCave_LowTideInnerRoom_LandMons:: @ 8552294
- wild_mon ZUBAT, 26
- wild_mon SPHEAL, 26
- wild_mon ZUBAT, 28
- wild_mon SPHEAL, 28
- wild_mon ZUBAT, 30
- wild_mon SPHEAL, 30
- wild_mon ZUBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
+ wild_mon SPECIES_ZUBAT, 26
+ wild_mon SPECIES_SPHEAL, 26
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_SPHEAL, 28
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_SPHEAL, 30
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
.align 2
gShoalCave_LowTideInnerRoom_LandMonsInfo:: @ 85522C4
@@ -2640,11 +2640,11 @@ gShoalCave_LowTideInnerRoom_LandMonsInfo:: @ 85522C4
.align 2
gShoalCave_LowTideInnerRoom_WaterMons:: @ 85522CC
- wild_mon TENTACOOL, 5, 35
- wild_mon ZUBAT, 5, 35
- wild_mon SPHEAL, 25, 30
- wild_mon SPHEAL, 25, 30
- wild_mon SPHEAL, 25, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_SPHEAL, 25, 30
+ wild_mon SPECIES_SPHEAL, 25, 30
+ wild_mon SPECIES_SPHEAL, 25, 35
.align 2
gShoalCave_LowTideInnerRoom_WaterMonsInfo:: @ 85522E0
@@ -2653,16 +2653,16 @@ gShoalCave_LowTideInnerRoom_WaterMonsInfo:: @ 85522E0
.align 2
gShoalCave_LowTideInnerRoom_FishingMons:: @ 85522E8
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gShoalCave_LowTideInnerRoom_FishingMonsInfo:: @ 8552310
@@ -2671,18 +2671,18 @@ gShoalCave_LowTideInnerRoom_FishingMonsInfo:: @ 8552310
.align 2
gShoalCave_LowTideEntranceRoom_LandMons:: @ 8552318
- wild_mon ZUBAT, 26
- wild_mon SPHEAL, 26
- wild_mon ZUBAT, 28
- wild_mon SPHEAL, 28
- wild_mon ZUBAT, 30
- wild_mon SPHEAL, 30
- wild_mon ZUBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 32
- wild_mon SPHEAL, 32
+ wild_mon SPECIES_ZUBAT, 26
+ wild_mon SPECIES_SPHEAL, 26
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_SPHEAL, 28
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_SPHEAL, 30
+ wild_mon SPECIES_ZUBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SPHEAL, 32
.align 2
gShoalCave_LowTideEntranceRoom_LandMonsInfo:: @ 8552348
@@ -2691,11 +2691,11 @@ gShoalCave_LowTideEntranceRoom_LandMonsInfo:: @ 8552348
.align 2
gShoalCave_LowTideEntranceRoom_WaterMons:: @ 8552350
- wild_mon TENTACOOL, 5, 35
- wild_mon ZUBAT, 5, 35
- wild_mon SPHEAL, 25, 30
- wild_mon SPHEAL, 25, 30
- wild_mon SPHEAL, 25, 35
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_ZUBAT, 5, 35
+ wild_mon SPECIES_SPHEAL, 25, 30
+ wild_mon SPECIES_SPHEAL, 25, 30
+ wild_mon SPECIES_SPHEAL, 25, 35
.align 2
gShoalCave_LowTideEntranceRoom_WaterMonsInfo:: @ 8552364
@@ -2704,16 +2704,16 @@ gShoalCave_LowTideEntranceRoom_WaterMonsInfo:: @ 8552364
.align 2
gShoalCave_LowTideEntranceRoom_FishingMons:: @ 855236C
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gShoalCave_LowTideEntranceRoom_FishingMonsInfo:: @ 8552394
@@ -2722,11 +2722,11 @@ gShoalCave_LowTideEntranceRoom_FishingMonsInfo:: @ 8552394
.align 2
gLilycoveCity_WaterMons:: @ 855239C
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gLilycoveCity_WaterMonsInfo:: @ 85523B0
@@ -2735,16 +2735,16 @@ gLilycoveCity_WaterMonsInfo:: @ 85523B0
.align 2
gLilycoveCity_FishingMons:: @ 85523B8
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon STARYU, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_STARYU, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gLilycoveCity_FishingMonsInfo:: @ 85523E0
@@ -2753,11 +2753,11 @@ gLilycoveCity_FishingMonsInfo:: @ 85523E0
.align 2
gDewfordTown_WaterMons:: @ 85523E8
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gDewfordTown_WaterMonsInfo:: @ 85523FC
@@ -2766,16 +2766,16 @@ gDewfordTown_WaterMonsInfo:: @ 85523FC
.align 2
gDewfordTown_FishingMons:: @ 8552404
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gDewfordTown_FishingMonsInfo:: @ 855242C
@@ -2784,11 +2784,11 @@ gDewfordTown_FishingMonsInfo:: @ 855242C
.align 2
gSlateportCity_WaterMons:: @ 8552434
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gSlateportCity_WaterMonsInfo:: @ 8552448
@@ -2797,16 +2797,16 @@ gSlateportCity_WaterMonsInfo:: @ 8552448
.align 2
gSlateportCity_FishingMons:: @ 8552450
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 20, 25
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 20, 25
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gSlateportCity_FishingMonsInfo:: @ 8552478
@@ -2815,11 +2815,11 @@ gSlateportCity_FishingMonsInfo:: @ 8552478
.align 2
gMossdeepCity_WaterMons:: @ 8552480
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gMossdeepCity_WaterMonsInfo:: @ 8552494
@@ -2828,16 +2828,16 @@ gMossdeepCity_WaterMonsInfo:: @ 8552494
.align 2
gMossdeepCity_FishingMons:: @ 855249C
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gMossdeepCity_FishingMonsInfo:: @ 85524C4
@@ -2846,11 +2846,11 @@ gMossdeepCity_FishingMonsInfo:: @ 85524C4
.align 2
gPacifidlogTown_WaterMons:: @ 85524CC
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gPacifidlogTown_WaterMonsInfo:: @ 85524E0
@@ -2859,16 +2859,16 @@ gPacifidlogTown_WaterMonsInfo:: @ 85524E0
.align 2
gPacifidlogTown_FishingMons:: @ 85524E8
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon TENTACOOL, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon SHARPEDO, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon WAILMER, 25, 30
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_TENTACOOL, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_SHARPEDO, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_WAILMER, 25, 30
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gPacifidlogTown_FishingMonsInfo:: @ 8552510
@@ -2877,11 +2877,11 @@ gPacifidlogTown_FishingMonsInfo:: @ 8552510
.align 2
gEverGrandeCity_WaterMons:: @ 8552518
- wild_mon TENTACOOL, 5, 35
- wild_mon WINGULL, 10, 30
- wild_mon WINGULL, 15, 25
- wild_mon PELIPPER, 25, 30
- wild_mon PELIPPER, 25, 30
+ wild_mon SPECIES_TENTACOOL, 5, 35
+ wild_mon SPECIES_WINGULL, 10, 30
+ wild_mon SPECIES_WINGULL, 15, 25
+ wild_mon SPECIES_PELIPPER, 25, 30
+ wild_mon SPECIES_PELIPPER, 25, 30
.align 2
gEverGrandeCity_WaterMonsInfo:: @ 855252C
@@ -2890,16 +2890,16 @@ gEverGrandeCity_WaterMonsInfo:: @ 855252C
.align 2
gEverGrandeCity_FishingMons:: @ 8552534
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon LUVDISC, 10, 30
- wild_mon WAILMER, 10, 30
- wild_mon LUVDISC, 30, 35
- wild_mon WAILMER, 30, 35
- wild_mon CORSOLA, 30, 35
- wild_mon WAILMER, 35, 40
- wild_mon WAILMER, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_LUVDISC, 10, 30
+ wild_mon SPECIES_WAILMER, 10, 30
+ wild_mon SPECIES_LUVDISC, 30, 35
+ wild_mon SPECIES_WAILMER, 30, 35
+ wild_mon SPECIES_CORSOLA, 30, 35
+ wild_mon SPECIES_WAILMER, 35, 40
+ wild_mon SPECIES_WAILMER, 40, 45
.align 2
gEverGrandeCity_FishingMonsInfo:: @ 855255C
@@ -2908,11 +2908,11 @@ gEverGrandeCity_FishingMonsInfo:: @ 855255C
.align 2
gPetalburgCity_WaterMons:: @ 8552564
- wild_mon MARILL, 20, 30
- wild_mon MARILL, 10, 20
- wild_mon MARILL, 30, 35
- wild_mon MARILL, 5, 10
- wild_mon MARILL, 5, 10
+ wild_mon SPECIES_MARILL, 20, 30
+ wild_mon SPECIES_MARILL, 10, 20
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_MARILL, 5, 10
+ wild_mon SPECIES_MARILL, 5, 10
.align 2
gPetalburgCity_WaterMonsInfo:: @ 8552578
@@ -2921,16 +2921,16 @@ gPetalburgCity_WaterMonsInfo:: @ 8552578
.align 2
gPetalburgCity_FishingMons:: @ 8552580
- wild_mon MAGIKARP, 5, 10
- wild_mon GOLDEEN, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon GOLDEEN, 10, 30
- wild_mon CORPHISH, 10, 30
- wild_mon CORPHISH, 25, 30
- wild_mon CORPHISH, 30, 35
- wild_mon CORPHISH, 20, 25
- wild_mon CORPHISH, 35, 40
- wild_mon CORPHISH, 40, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_GOLDEEN, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_GOLDEEN, 10, 30
+ wild_mon SPECIES_CORPHISH, 10, 30
+ wild_mon SPECIES_CORPHISH, 25, 30
+ wild_mon SPECIES_CORPHISH, 30, 35
+ wild_mon SPECIES_CORPHISH, 20, 25
+ wild_mon SPECIES_CORPHISH, 35, 40
+ wild_mon SPECIES_CORPHISH, 40, 45
.align 2
gPetalburgCity_FishingMonsInfo:: @ 85525A8
@@ -2939,11 +2939,11 @@ gPetalburgCity_FishingMonsInfo:: @ 85525A8
.align 2
gUnderwater1_WaterMons:: @ 85525B0
- wild_mon CLAMPERL, 20, 30
- wild_mon CHINCHOU, 20, 30
- wild_mon CLAMPERL, 30, 35
- wild_mon RELICANTH, 30, 35
- wild_mon RELICANTH, 30, 35
+ wild_mon SPECIES_CLAMPERL, 20, 30
+ wild_mon SPECIES_CHINCHOU, 20, 30
+ wild_mon SPECIES_CLAMPERL, 30, 35
+ wild_mon SPECIES_RELICANTH, 30, 35
+ wild_mon SPECIES_RELICANTH, 30, 35
.align 2
gUnderwater1_WaterMonsInfo:: @ 85525C4
@@ -2952,18 +2952,18 @@ gUnderwater1_WaterMonsInfo:: @ 85525C4
.align 2
gShoalCave_LowTideIceRoom_LandMons:: @ 85525CC
- wild_mon ZUBAT, 26
- wild_mon SPHEAL, 26
- wild_mon ZUBAT, 28
- wild_mon SPHEAL, 28
- wild_mon ZUBAT, 30
- wild_mon SPHEAL, 30
- wild_mon SNORUNT, 26
- wild_mon SPHEAL, 32
- wild_mon GOLBAT, 30
- wild_mon SNORUNT, 28
- wild_mon GOLBAT, 32
- wild_mon SNORUNT, 30
+ wild_mon SPECIES_ZUBAT, 26
+ wild_mon SPECIES_SPHEAL, 26
+ wild_mon SPECIES_ZUBAT, 28
+ wild_mon SPECIES_SPHEAL, 28
+ wild_mon SPECIES_ZUBAT, 30
+ wild_mon SPECIES_SPHEAL, 30
+ wild_mon SPECIES_SNORUNT, 26
+ wild_mon SPECIES_SPHEAL, 32
+ wild_mon SPECIES_GOLBAT, 30
+ wild_mon SPECIES_SNORUNT, 28
+ wild_mon SPECIES_GOLBAT, 32
+ wild_mon SPECIES_SNORUNT, 30
.align 2
gShoalCave_LowTideIceRoom_LandMonsInfo:: @ 85525FC
@@ -2972,18 +2972,18 @@ gShoalCave_LowTideIceRoom_LandMonsInfo:: @ 85525FC
.align 2
gSkyPillar_1F_LandMons:: @ 8552604
- wild_mon SABLEYE, 33
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon SABLEYE, 34
- wild_mon CLAYDOL, 36
- wild_mon BANETTE, 37
- wild_mon BANETTE, 38
- wild_mon CLAYDOL, 36
- wild_mon CLAYDOL, 37
- wild_mon CLAYDOL, 38
- wild_mon CLAYDOL, 37
- wild_mon CLAYDOL, 38
+ wild_mon SPECIES_SABLEYE, 33
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_BANETTE, 37
+ wild_mon SPECIES_BANETTE, 38
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_CLAYDOL, 37
+ wild_mon SPECIES_CLAYDOL, 38
+ wild_mon SPECIES_CLAYDOL, 37
+ wild_mon SPECIES_CLAYDOL, 38
.align 2
gSkyPillar_1F_LandMonsInfo:: @ 8552634
@@ -2992,11 +2992,11 @@ gSkyPillar_1F_LandMonsInfo:: @ 8552634
.align 2
gSootopolisCity_WaterMons:: @ 855263C
- wild_mon MAGIKARP, 5, 35
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 15, 25
- wild_mon MAGIKARP, 25, 30
- wild_mon MAGIKARP, 25, 30
+ wild_mon SPECIES_MAGIKARP, 5, 35
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 15, 25
+ wild_mon SPECIES_MAGIKARP, 25, 30
+ wild_mon SPECIES_MAGIKARP, 25, 30
.align 2
gSootopolisCity_WaterMonsInfo:: @ 8552650
@@ -3005,16 +3005,16 @@ gSootopolisCity_WaterMonsInfo:: @ 8552650
.align 2
gSootopolisCity_FishingMons:: @ 8552658
- wild_mon MAGIKARP, 5, 10
- wild_mon TENTACOOL, 5, 10
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 10, 30
- wild_mon MAGIKARP, 30, 35
- wild_mon MAGIKARP, 30, 35
- wild_mon GYARADOS, 35, 40
- wild_mon GYARADOS, 35, 45
- wild_mon GYARADOS, 5, 45
+ wild_mon SPECIES_MAGIKARP, 5, 10
+ wild_mon SPECIES_TENTACOOL, 5, 10
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 10, 30
+ wild_mon SPECIES_MAGIKARP, 30, 35
+ wild_mon SPECIES_MAGIKARP, 30, 35
+ wild_mon SPECIES_GYARADOS, 35, 40
+ wild_mon SPECIES_GYARADOS, 35, 45
+ wild_mon SPECIES_GYARADOS, 5, 45
.align 2
gSootopolisCity_FishingMonsInfo:: @ 8552680
@@ -3023,18 +3023,18 @@ gSootopolisCity_FishingMonsInfo:: @ 8552680
.align 2
gSkyPillar_3F_LandMons:: @ 8552688
- wild_mon SABLEYE, 33
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon SABLEYE, 34
- wild_mon CLAYDOL, 36
- wild_mon BANETTE, 37
- wild_mon BANETTE, 38
- wild_mon CLAYDOL, 36
- wild_mon CLAYDOL, 37
- wild_mon CLAYDOL, 38
- wild_mon CLAYDOL, 37
- wild_mon CLAYDOL, 38
+ wild_mon SPECIES_SABLEYE, 33
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_BANETTE, 37
+ wild_mon SPECIES_BANETTE, 38
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_CLAYDOL, 37
+ wild_mon SPECIES_CLAYDOL, 38
+ wild_mon SPECIES_CLAYDOL, 37
+ wild_mon SPECIES_CLAYDOL, 38
.align 2
gSkyPillar_3F_LandMonsInfo:: @ 85526B8
@@ -3043,18 +3043,18 @@ gSkyPillar_3F_LandMonsInfo:: @ 85526B8
.align 2
gSkyPillar_5F_LandMons:: @ 85526C0
- wild_mon SABLEYE, 33
- wild_mon GOLBAT, 34
- wild_mon GOLBAT, 35
- wild_mon SABLEYE, 34
- wild_mon CLAYDOL, 36
- wild_mon BANETTE, 37
- wild_mon BANETTE, 38
- wild_mon CLAYDOL, 36
- wild_mon CLAYDOL, 37
- wild_mon ALTARIA, 38
- wild_mon ALTARIA, 39
- wild_mon ALTARIA, 39
+ wild_mon SPECIES_SABLEYE, 33
+ wild_mon SPECIES_GOLBAT, 34
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SABLEYE, 34
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_BANETTE, 37
+ wild_mon SPECIES_BANETTE, 38
+ wild_mon SPECIES_CLAYDOL, 36
+ wild_mon SPECIES_CLAYDOL, 37
+ wild_mon SPECIES_ALTARIA, 38
+ wild_mon SPECIES_ALTARIA, 39
+ wild_mon SPECIES_ALTARIA, 39
.align 2
gSkyPillar_5F_LandMonsInfo:: @ 85526F0
@@ -3063,18 +3063,18 @@ gSkyPillar_5F_LandMonsInfo:: @ 85526F0
.align 2
gSafariZone_Southeast_LandMons:: @ 85526F8
- wild_mon SUNKERN, 33
- wild_mon MAREEP, 34
- wild_mon SUNKERN, 35
- wild_mon MAREEP, 36
- wild_mon AIPOM, 34
- wild_mon SPINARAK, 33
- wild_mon HOOTHOOT, 35
- wild_mon SNUBBULL, 34
- wild_mon STANTLER, 36
- wild_mon GLIGAR, 37
- wild_mon STANTLER, 39
- wild_mon GLIGAR, 40
+ wild_mon SPECIES_SUNKERN, 33
+ wild_mon SPECIES_MAREEP, 34
+ wild_mon SPECIES_SUNKERN, 35
+ wild_mon SPECIES_MAREEP, 36
+ wild_mon SPECIES_AIPOM, 34
+ wild_mon SPECIES_SPINARAK, 33
+ wild_mon SPECIES_HOOTHOOT, 35
+ wild_mon SPECIES_SNUBBULL, 34
+ wild_mon SPECIES_STANTLER, 36
+ wild_mon SPECIES_GLIGAR, 37
+ wild_mon SPECIES_STANTLER, 39
+ wild_mon SPECIES_GLIGAR, 40
.align 2
gSafariZone_Southeast_LandMonsInfo:: @ 8552728
@@ -3083,11 +3083,11 @@ gSafariZone_Southeast_LandMonsInfo:: @ 8552728
.align 2
gSafariZone_Southeast_WaterMons:: @ 8552730
- wild_mon WOOPER, 25, 30
- wild_mon MARILL, 25, 30
- wild_mon MARILL, 25, 30
- wild_mon MARILL, 30, 35
- wild_mon QUAGSIRE, 35, 40
+ wild_mon SPECIES_WOOPER, 25, 30
+ wild_mon SPECIES_MARILL, 25, 30
+ wild_mon SPECIES_MARILL, 25, 30
+ wild_mon SPECIES_MARILL, 30, 35
+ wild_mon SPECIES_QUAGSIRE, 35, 40
.align 2
gSafariZone_Southeast_WaterMonsInfo:: @ 8552744
@@ -3096,16 +3096,16 @@ gSafariZone_Southeast_WaterMonsInfo:: @ 8552744
.align 2
gSafariZone_Southeast_FishingMons:: @ 855274C
- wild_mon MAGIKARP, 25, 30
- wild_mon GOLDEEN, 25, 30
- wild_mon MAGIKARP, 25, 30
- wild_mon GOLDEEN, 25, 30
- wild_mon REMORAID, 30, 35
- wild_mon GOLDEEN, 25, 30
- wild_mon REMORAID, 25, 30
- wild_mon REMORAID, 30, 35
- wild_mon REMORAID, 30, 35
- wild_mon OCTILLERY, 35, 40
+ wild_mon SPECIES_MAGIKARP, 25, 30
+ wild_mon SPECIES_GOLDEEN, 25, 30
+ wild_mon SPECIES_MAGIKARP, 25, 30
+ wild_mon SPECIES_GOLDEEN, 25, 30
+ wild_mon SPECIES_REMORAID, 30, 35
+ wild_mon SPECIES_GOLDEEN, 25, 30
+ wild_mon SPECIES_REMORAID, 25, 30
+ wild_mon SPECIES_REMORAID, 30, 35
+ wild_mon SPECIES_REMORAID, 30, 35
+ wild_mon SPECIES_OCTILLERY, 35, 40
.align 2
gSafariZone_Southeast_FishingMonsInfo:: @ 8552774
@@ -3114,18 +3114,18 @@ gSafariZone_Southeast_FishingMonsInfo:: @ 8552774
.align 2
gSafariZone_Northeast_LandMons:: @ 855277C
- wild_mon AIPOM, 33
- wild_mon TEDDIURSA, 34
- wild_mon AIPOM, 35
- wild_mon TEDDIURSA, 36
- wild_mon SUNKERN, 34
- wild_mon LEDYBA, 33
- wild_mon HOOTHOOT, 35
- wild_mon PINECO, 34
- wild_mon HOUNDOUR, 36
- wild_mon MILTANK, 37
- wild_mon HOUNDOUR, 39
- wild_mon MILTANK, 40
+ wild_mon SPECIES_AIPOM, 33
+ wild_mon SPECIES_TEDDIURSA, 34
+ wild_mon SPECIES_AIPOM, 35
+ wild_mon SPECIES_TEDDIURSA, 36
+ wild_mon SPECIES_SUNKERN, 34
+ wild_mon SPECIES_LEDYBA, 33
+ wild_mon SPECIES_HOOTHOOT, 35
+ wild_mon SPECIES_PINECO, 34
+ wild_mon SPECIES_HOUNDOUR, 36
+ wild_mon SPECIES_MILTANK, 37
+ wild_mon SPECIES_HOUNDOUR, 39
+ wild_mon SPECIES_MILTANK, 40
.align 2
gSafariZone_Northeast_LandMonsInfo:: @ 85527AC
@@ -3134,11 +3134,11 @@ gSafariZone_Northeast_LandMonsInfo:: @ 85527AC
.align 2
gSafariZone_Northeast_RockSmashMons:: @ 85527B4
- wild_mon SHUCKLE, 25, 30
- wild_mon SHUCKLE, 20, 25
- wild_mon SHUCKLE, 30, 35
- wild_mon SHUCKLE, 30, 35
- wild_mon SHUCKLE, 35, 40
+ wild_mon SPECIES_SHUCKLE, 25, 30
+ wild_mon SPECIES_SHUCKLE, 20, 25
+ wild_mon SPECIES_SHUCKLE, 30, 35
+ wild_mon SPECIES_SHUCKLE, 30, 35
+ wild_mon SPECIES_SHUCKLE, 35, 40
.align 2
gSafariZone_Northeast_RockSmashMonsInfo:: @ 85527C8
@@ -3147,18 +3147,18 @@ gSafariZone_Northeast_RockSmashMonsInfo:: @ 85527C8
.align 2
gMagmaHideout_1F_LandMons:: @ 85527D0
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_1F_LandMonsInfo:: @ 8552800
@@ -3167,18 +3167,18 @@ gMagmaHideout_1F_LandMonsInfo:: @ 8552800
.align 2
gMagmaHideout_2F_1R_LandMons:: @ 8552808
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_2F_1R_LandMonsInfo:: @ 8552838
@@ -3187,18 +3187,18 @@ gMagmaHideout_2F_1R_LandMonsInfo:: @ 8552838
.align 2
gMagmaHideout_2F_2R_LandMons:: @ 8552840
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_2F_2R_LandMonsInfo:: @ 8552870
@@ -3207,18 +3207,18 @@ gMagmaHideout_2F_2R_LandMonsInfo:: @ 8552870
.align 2
gMagmaHideout_3F_1R_LandMons:: @ 8552878
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_3F_1R_LandMonsInfo:: @ 85528A8
@@ -3227,18 +3227,18 @@ gMagmaHideout_3F_1R_LandMonsInfo:: @ 85528A8
.align 2
gMagmaHideout_3F_2R_LandMons:: @ 85528B0
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_3F_2R_LandMonsInfo:: @ 85528E0
@@ -3247,18 +3247,18 @@ gMagmaHideout_3F_2R_LandMonsInfo:: @ 85528E0
.align 2
gMagmaHideout_4F_LandMons:: @ 85528E8
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_4F_LandMonsInfo:: @ 8552918
@@ -3267,18 +3267,18 @@ gMagmaHideout_4F_LandMonsInfo:: @ 8552918
.align 2
gMagmaHideout_3F_3R_LandMons:: @ 8552920
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_3F_3R_LandMonsInfo:: @ 8552950
@@ -3287,18 +3287,18 @@ gMagmaHideout_3F_3R_LandMonsInfo:: @ 8552950
.align 2
gMagmaHideout_2F_3R_LandMons:: @ 8552958
- wild_mon GEODUDE, 27
- wild_mon TORKOAL, 28
- wild_mon GEODUDE, 28
- wild_mon TORKOAL, 30
- wild_mon GEODUDE, 29
- wild_mon GEODUDE, 30
- wild_mon GEODUDE, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 30
- wild_mon GRAVELER, 31
- wild_mon GRAVELER, 32
- wild_mon GRAVELER, 33
+ wild_mon SPECIES_GEODUDE, 27
+ wild_mon SPECIES_TORKOAL, 28
+ wild_mon SPECIES_GEODUDE, 28
+ wild_mon SPECIES_TORKOAL, 30
+ wild_mon SPECIES_GEODUDE, 29
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GEODUDE, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 30
+ wild_mon SPECIES_GRAVELER, 31
+ wild_mon SPECIES_GRAVELER, 32
+ wild_mon SPECIES_GRAVELER, 33
.align 2
gMagmaHideout_2F_3R_LandMonsInfo:: @ 8552988
@@ -3307,18 +3307,18 @@ gMagmaHideout_2F_3R_LandMonsInfo:: @ 8552988
.align 2
gMirageTower_1F_LandMons:: @ 8552990
- wild_mon SANDSHREW, 21
- wild_mon TRAPINCH, 21
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 22
- wild_mon TRAPINCH, 22
- wild_mon SANDSHREW, 23
- wild_mon TRAPINCH, 23
- wild_mon SANDSHREW, 24
- wild_mon TRAPINCH, 24
+ wild_mon SPECIES_SANDSHREW, 21
+ wild_mon SPECIES_TRAPINCH, 21
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 22
+ wild_mon SPECIES_TRAPINCH, 22
+ wild_mon SPECIES_SANDSHREW, 23
+ wild_mon SPECIES_TRAPINCH, 23
+ wild_mon SPECIES_SANDSHREW, 24
+ wild_mon SPECIES_TRAPINCH, 24
.align 2
gMirageTower_1F_LandMonsInfo:: @ 85529C0
@@ -3327,18 +3327,18 @@ gMirageTower_1F_LandMonsInfo:: @ 85529C0
.align 2
gMirageTower_2F_LandMons:: @ 85529C8
- wild_mon SANDSHREW, 21
- wild_mon TRAPINCH, 21
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 22
- wild_mon TRAPINCH, 22
- wild_mon SANDSHREW, 23
- wild_mon TRAPINCH, 23
- wild_mon SANDSHREW, 24
- wild_mon TRAPINCH, 24
+ wild_mon SPECIES_SANDSHREW, 21
+ wild_mon SPECIES_TRAPINCH, 21
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 22
+ wild_mon SPECIES_TRAPINCH, 22
+ wild_mon SPECIES_SANDSHREW, 23
+ wild_mon SPECIES_TRAPINCH, 23
+ wild_mon SPECIES_SANDSHREW, 24
+ wild_mon SPECIES_TRAPINCH, 24
.align 2
gMirageTower_2F_LandMonsInfo:: @ 85529F8
@@ -3347,18 +3347,18 @@ gMirageTower_2F_LandMonsInfo:: @ 85529F8
.align 2
gMirageTower_3F_LandMons:: @ 8552A00
- wild_mon SANDSHREW, 21
- wild_mon TRAPINCH, 21
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 22
- wild_mon TRAPINCH, 22
- wild_mon SANDSHREW, 23
- wild_mon TRAPINCH, 23
- wild_mon SANDSHREW, 24
- wild_mon TRAPINCH, 24
+ wild_mon SPECIES_SANDSHREW, 21
+ wild_mon SPECIES_TRAPINCH, 21
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 22
+ wild_mon SPECIES_TRAPINCH, 22
+ wild_mon SPECIES_SANDSHREW, 23
+ wild_mon SPECIES_TRAPINCH, 23
+ wild_mon SPECIES_SANDSHREW, 24
+ wild_mon SPECIES_TRAPINCH, 24
.align 2
gMirageTower_3F_LandMonsInfo:: @ 8552A30
@@ -3367,18 +3367,18 @@ gMirageTower_3F_LandMonsInfo:: @ 8552A30
.align 2
gMirageTower_4F_LandMons:: @ 8552A38
- wild_mon SANDSHREW, 21
- wild_mon TRAPINCH, 21
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 20
- wild_mon TRAPINCH, 20
- wild_mon SANDSHREW, 22
- wild_mon TRAPINCH, 22
- wild_mon SANDSHREW, 23
- wild_mon TRAPINCH, 23
- wild_mon SANDSHREW, 24
- wild_mon TRAPINCH, 24
+ wild_mon SPECIES_SANDSHREW, 21
+ wild_mon SPECIES_TRAPINCH, 21
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 20
+ wild_mon SPECIES_TRAPINCH, 20
+ wild_mon SPECIES_SANDSHREW, 22
+ wild_mon SPECIES_TRAPINCH, 22
+ wild_mon SPECIES_SANDSHREW, 23
+ wild_mon SPECIES_TRAPINCH, 23
+ wild_mon SPECIES_SANDSHREW, 24
+ wild_mon SPECIES_TRAPINCH, 24
.align 2
gMirageTower_4F_LandMonsInfo:: @ 8552A68
@@ -3387,18 +3387,18 @@ gMirageTower_4F_LandMonsInfo:: @ 8552A68
.align 2
gDesertUnderpass_LandMons:: @ 8552A70
- wild_mon DITTO, 38
- wild_mon WHISMUR, 35
- wild_mon DITTO, 40
- wild_mon LOUDRED, 40
- wild_mon DITTO, 41
- wild_mon WHISMUR, 36
- wild_mon LOUDRED, 38
- wild_mon DITTO, 42
- wild_mon WHISMUR, 38
- wild_mon DITTO, 43
- wild_mon LOUDRED, 44
- wild_mon DITTO, 45
+ wild_mon SPECIES_DITTO, 38
+ wild_mon SPECIES_WHISMUR, 35
+ wild_mon SPECIES_DITTO, 40
+ wild_mon SPECIES_LOUDRED, 40
+ wild_mon SPECIES_DITTO, 41
+ wild_mon SPECIES_WHISMUR, 36
+ wild_mon SPECIES_LOUDRED, 38
+ wild_mon SPECIES_DITTO, 42
+ wild_mon SPECIES_WHISMUR, 38
+ wild_mon SPECIES_DITTO, 43
+ wild_mon SPECIES_LOUDRED, 44
+ wild_mon SPECIES_DITTO, 45
.align 2
gDesertUnderpass_LandMonsInfo:: @ 8552AA0
@@ -3407,18 +3407,18 @@ gDesertUnderpass_LandMonsInfo:: @ 8552AA0
.align 2
gArtisanCave_B1F_LandMons:: @ 8552AA8
- wild_mon SMEARGLE, 40
- wild_mon SMEARGLE, 41
- wild_mon SMEARGLE, 42
- wild_mon SMEARGLE, 43
- wild_mon SMEARGLE, 44
- wild_mon SMEARGLE, 45
- wild_mon SMEARGLE, 46
- wild_mon SMEARGLE, 47
- wild_mon SMEARGLE, 48
- wild_mon SMEARGLE, 49
- wild_mon SMEARGLE, 50
- wild_mon SMEARGLE, 50
+ wild_mon SPECIES_SMEARGLE, 40
+ wild_mon SPECIES_SMEARGLE, 41
+ wild_mon SPECIES_SMEARGLE, 42
+ wild_mon SPECIES_SMEARGLE, 43
+ wild_mon SPECIES_SMEARGLE, 44
+ wild_mon SPECIES_SMEARGLE, 45
+ wild_mon SPECIES_SMEARGLE, 46
+ wild_mon SPECIES_SMEARGLE, 47
+ wild_mon SPECIES_SMEARGLE, 48
+ wild_mon SPECIES_SMEARGLE, 49
+ wild_mon SPECIES_SMEARGLE, 50
+ wild_mon SPECIES_SMEARGLE, 50
.align 2
gArtisanCave_B1F_LandMonsInfo:: @ 8552AD8
@@ -3427,18 +3427,18 @@ gArtisanCave_B1F_LandMonsInfo:: @ 8552AD8
.align 2
gArtisanCave_1F_LandMons:: @ 8552AE0
- wild_mon SMEARGLE, 40
- wild_mon SMEARGLE, 41
- wild_mon SMEARGLE, 42
- wild_mon SMEARGLE, 43
- wild_mon SMEARGLE, 44
- wild_mon SMEARGLE, 45
- wild_mon SMEARGLE, 46
- wild_mon SMEARGLE, 47
- wild_mon SMEARGLE, 48
- wild_mon SMEARGLE, 49
- wild_mon SMEARGLE, 50
- wild_mon SMEARGLE, 50
+ wild_mon SPECIES_SMEARGLE, 40
+ wild_mon SPECIES_SMEARGLE, 41
+ wild_mon SPECIES_SMEARGLE, 42
+ wild_mon SPECIES_SMEARGLE, 43
+ wild_mon SPECIES_SMEARGLE, 44
+ wild_mon SPECIES_SMEARGLE, 45
+ wild_mon SPECIES_SMEARGLE, 46
+ wild_mon SPECIES_SMEARGLE, 47
+ wild_mon SPECIES_SMEARGLE, 48
+ wild_mon SPECIES_SMEARGLE, 49
+ wild_mon SPECIES_SMEARGLE, 50
+ wild_mon SPECIES_SMEARGLE, 50
.align 2
gArtisanCave_1F_LandMonsInfo:: @ 8552B10
@@ -3447,18 +3447,18 @@ gArtisanCave_1F_LandMonsInfo:: @ 8552B10
.align 2
gAlteringCave1_LandMons:: @ 8552B18
- wild_mon ZUBAT, 10
- wild_mon ZUBAT, 12
- wild_mon ZUBAT, 8
- wild_mon ZUBAT, 14
- wild_mon ZUBAT, 10
- wild_mon ZUBAT, 12
- wild_mon ZUBAT, 16
- wild_mon ZUBAT, 6
- wild_mon ZUBAT, 8
- wild_mon ZUBAT, 14
- wild_mon ZUBAT, 8
- wild_mon ZUBAT, 14
+ wild_mon SPECIES_ZUBAT, 10
+ wild_mon SPECIES_ZUBAT, 12
+ wild_mon SPECIES_ZUBAT, 8
+ wild_mon SPECIES_ZUBAT, 14
+ wild_mon SPECIES_ZUBAT, 10
+ wild_mon SPECIES_ZUBAT, 12
+ wild_mon SPECIES_ZUBAT, 16
+ wild_mon SPECIES_ZUBAT, 6
+ wild_mon SPECIES_ZUBAT, 8
+ wild_mon SPECIES_ZUBAT, 14
+ wild_mon SPECIES_ZUBAT, 8
+ wild_mon SPECIES_ZUBAT, 14
.align 2
gAlteringCave1_LandMonsInfo:: @ 8552B48
@@ -3467,18 +3467,18 @@ gAlteringCave1_LandMonsInfo:: @ 8552B48
.align 2
gAlteringCave2_LandMons:: @ 8552B50
- wild_mon MAREEP, 7
- wild_mon MAREEP, 9
- wild_mon MAREEP, 5
- wild_mon MAREEP, 11
- wild_mon MAREEP, 7
- wild_mon MAREEP, 9
- wild_mon MAREEP, 13
- wild_mon MAREEP, 3
- wild_mon MAREEP, 5
- wild_mon MAREEP, 11
- wild_mon MAREEP, 5
- wild_mon MAREEP, 11
+ wild_mon SPECIES_MAREEP, 7
+ wild_mon SPECIES_MAREEP, 9
+ wild_mon SPECIES_MAREEP, 5
+ wild_mon SPECIES_MAREEP, 11
+ wild_mon SPECIES_MAREEP, 7
+ wild_mon SPECIES_MAREEP, 9
+ wild_mon SPECIES_MAREEP, 13
+ wild_mon SPECIES_MAREEP, 3
+ wild_mon SPECIES_MAREEP, 5
+ wild_mon SPECIES_MAREEP, 11
+ wild_mon SPECIES_MAREEP, 5
+ wild_mon SPECIES_MAREEP, 11
.align 2
gAlteringCave2_LandMonsInfo:: @ 8552B80
@@ -3487,18 +3487,18 @@ gAlteringCave2_LandMonsInfo:: @ 8552B80
.align 2
gAlteringCave3_LandMons:: @ 8552B88
- wild_mon PINECO, 23
- wild_mon PINECO, 25
- wild_mon PINECO, 22
- wild_mon PINECO, 27
- wild_mon PINECO, 23
- wild_mon PINECO, 25
- wild_mon PINECO, 29
- wild_mon PINECO, 19
- wild_mon PINECO, 21
- wild_mon PINECO, 27
- wild_mon PINECO, 21
- wild_mon PINECO, 27
+ wild_mon SPECIES_PINECO, 23
+ wild_mon SPECIES_PINECO, 25
+ wild_mon SPECIES_PINECO, 22
+ wild_mon SPECIES_PINECO, 27
+ wild_mon SPECIES_PINECO, 23
+ wild_mon SPECIES_PINECO, 25
+ wild_mon SPECIES_PINECO, 29
+ wild_mon SPECIES_PINECO, 19
+ wild_mon SPECIES_PINECO, 21
+ wild_mon SPECIES_PINECO, 27
+ wild_mon SPECIES_PINECO, 21
+ wild_mon SPECIES_PINECO, 27
.align 2
gAlteringCave3_LandMonsInfo:: @ 8552BB8
@@ -3507,18 +3507,18 @@ gAlteringCave3_LandMonsInfo:: @ 8552BB8
.align 2
gAlteringCave4_LandMons:: @ 8552BC0
- wild_mon HOUNDOUR, 16
- wild_mon HOUNDOUR, 18
- wild_mon HOUNDOUR, 14
- wild_mon HOUNDOUR, 20
- wild_mon HOUNDOUR, 16
- wild_mon HOUNDOUR, 18
- wild_mon HOUNDOUR, 22
- wild_mon HOUNDOUR, 12
- wild_mon HOUNDOUR, 14
- wild_mon HOUNDOUR, 20
- wild_mon HOUNDOUR, 14
- wild_mon HOUNDOUR, 20
+ wild_mon SPECIES_HOUNDOUR, 16
+ wild_mon SPECIES_HOUNDOUR, 18
+ wild_mon SPECIES_HOUNDOUR, 14
+ wild_mon SPECIES_HOUNDOUR, 20
+ wild_mon SPECIES_HOUNDOUR, 16
+ wild_mon SPECIES_HOUNDOUR, 18
+ wild_mon SPECIES_HOUNDOUR, 22
+ wild_mon SPECIES_HOUNDOUR, 12
+ wild_mon SPECIES_HOUNDOUR, 14
+ wild_mon SPECIES_HOUNDOUR, 20
+ wild_mon SPECIES_HOUNDOUR, 14
+ wild_mon SPECIES_HOUNDOUR, 20
.align 2
gAlteringCave4_LandMonsInfo:: @ 8552BF0
@@ -3527,18 +3527,18 @@ gAlteringCave4_LandMonsInfo:: @ 8552BF0
.align 2
gAlteringCave5_LandMons:: @ 8552BF8
- wild_mon TEDDIURSA, 10
- wild_mon TEDDIURSA, 12
- wild_mon TEDDIURSA, 8
- wild_mon TEDDIURSA, 14
- wild_mon TEDDIURSA, 10
- wild_mon TEDDIURSA, 12
- wild_mon TEDDIURSA, 16
- wild_mon TEDDIURSA, 6
- wild_mon TEDDIURSA, 8
- wild_mon TEDDIURSA, 14
- wild_mon TEDDIURSA, 8
- wild_mon TEDDIURSA, 14
+ wild_mon SPECIES_TEDDIURSA, 10
+ wild_mon SPECIES_TEDDIURSA, 12
+ wild_mon SPECIES_TEDDIURSA, 8
+ wild_mon SPECIES_TEDDIURSA, 14
+ wild_mon SPECIES_TEDDIURSA, 10
+ wild_mon SPECIES_TEDDIURSA, 12
+ wild_mon SPECIES_TEDDIURSA, 16
+ wild_mon SPECIES_TEDDIURSA, 6
+ wild_mon SPECIES_TEDDIURSA, 8
+ wild_mon SPECIES_TEDDIURSA, 14
+ wild_mon SPECIES_TEDDIURSA, 8
+ wild_mon SPECIES_TEDDIURSA, 14
.align 2
gAlteringCave5_LandMonsInfo:: @ 8552C28
@@ -3547,18 +3547,18 @@ gAlteringCave5_LandMonsInfo:: @ 8552C28
.align 2
gAlteringCave6_LandMons:: @ 8552C30
- wild_mon AIPOM, 22
- wild_mon AIPOM, 24
- wild_mon AIPOM, 20
- wild_mon AIPOM, 26
- wild_mon AIPOM, 22
- wild_mon AIPOM, 24
- wild_mon AIPOM, 28
- wild_mon AIPOM, 18
- wild_mon AIPOM, 20
- wild_mon AIPOM, 26
- wild_mon AIPOM, 20
- wild_mon AIPOM, 26
+ wild_mon SPECIES_AIPOM, 22
+ wild_mon SPECIES_AIPOM, 24
+ wild_mon SPECIES_AIPOM, 20
+ wild_mon SPECIES_AIPOM, 26
+ wild_mon SPECIES_AIPOM, 22
+ wild_mon SPECIES_AIPOM, 24
+ wild_mon SPECIES_AIPOM, 28
+ wild_mon SPECIES_AIPOM, 18
+ wild_mon SPECIES_AIPOM, 20
+ wild_mon SPECIES_AIPOM, 26
+ wild_mon SPECIES_AIPOM, 20
+ wild_mon SPECIES_AIPOM, 26
.align 2
gAlteringCave6_LandMonsInfo:: @ 8552C60
@@ -3567,18 +3567,18 @@ gAlteringCave6_LandMonsInfo:: @ 8552C60
.align 2
gAlteringCave7_LandMons:: @ 8552C68
- wild_mon SHUCKLE, 22
- wild_mon SHUCKLE, 24
- wild_mon SHUCKLE, 20
- wild_mon SHUCKLE, 26
- wild_mon SHUCKLE, 22
- wild_mon SHUCKLE, 24
- wild_mon SHUCKLE, 28
- wild_mon SHUCKLE, 18
- wild_mon SHUCKLE, 20
- wild_mon SHUCKLE, 26
- wild_mon SHUCKLE, 20
- wild_mon SHUCKLE, 26
+ wild_mon SPECIES_SHUCKLE, 22
+ wild_mon SPECIES_SHUCKLE, 24
+ wild_mon SPECIES_SHUCKLE, 20
+ wild_mon SPECIES_SHUCKLE, 26
+ wild_mon SPECIES_SHUCKLE, 22
+ wild_mon SPECIES_SHUCKLE, 24
+ wild_mon SPECIES_SHUCKLE, 28
+ wild_mon SPECIES_SHUCKLE, 18
+ wild_mon SPECIES_SHUCKLE, 20
+ wild_mon SPECIES_SHUCKLE, 26
+ wild_mon SPECIES_SHUCKLE, 20
+ wild_mon SPECIES_SHUCKLE, 26
.align 2
gAlteringCave7_LandMonsInfo:: @ 8552C98
@@ -3587,18 +3587,18 @@ gAlteringCave7_LandMonsInfo:: @ 8552C98
.align 2
gAlteringCave8_LandMons:: @ 8552CA0
- wild_mon STANTLER, 22
- wild_mon STANTLER, 24
- wild_mon STANTLER, 20
- wild_mon STANTLER, 26
- wild_mon STANTLER, 22
- wild_mon STANTLER, 24
- wild_mon STANTLER, 28
- wild_mon STANTLER, 18
- wild_mon STANTLER, 20
- wild_mon STANTLER, 26
- wild_mon STANTLER, 20
- wild_mon STANTLER, 26
+ wild_mon SPECIES_STANTLER, 22
+ wild_mon SPECIES_STANTLER, 24
+ wild_mon SPECIES_STANTLER, 20
+ wild_mon SPECIES_STANTLER, 26
+ wild_mon SPECIES_STANTLER, 22
+ wild_mon SPECIES_STANTLER, 24
+ wild_mon SPECIES_STANTLER, 28
+ wild_mon SPECIES_STANTLER, 18
+ wild_mon SPECIES_STANTLER, 20
+ wild_mon SPECIES_STANTLER, 26
+ wild_mon SPECIES_STANTLER, 20
+ wild_mon SPECIES_STANTLER, 26
.align 2
gAlteringCave8_LandMonsInfo:: @ 8552CD0
@@ -3607,18 +3607,18 @@ gAlteringCave8_LandMonsInfo:: @ 8552CD0
.align 2
gAlteringCave9_LandMons:: @ 8552CD8
- wild_mon SMEARGLE, 22
- wild_mon SMEARGLE, 24
- wild_mon SMEARGLE, 20
- wild_mon SMEARGLE, 26
- wild_mon SMEARGLE, 22
- wild_mon SMEARGLE, 24
- wild_mon SMEARGLE, 28
- wild_mon SMEARGLE, 18
- wild_mon SMEARGLE, 20
- wild_mon SMEARGLE, 26
- wild_mon SMEARGLE, 20
- wild_mon SMEARGLE, 26
+ wild_mon SPECIES_SMEARGLE, 22
+ wild_mon SPECIES_SMEARGLE, 24
+ wild_mon SPECIES_SMEARGLE, 20
+ wild_mon SPECIES_SMEARGLE, 26
+ wild_mon SPECIES_SMEARGLE, 22
+ wild_mon SPECIES_SMEARGLE, 24
+ wild_mon SPECIES_SMEARGLE, 28
+ wild_mon SPECIES_SMEARGLE, 18
+ wild_mon SPECIES_SMEARGLE, 20
+ wild_mon SPECIES_SMEARGLE, 26
+ wild_mon SPECIES_SMEARGLE, 20
+ wild_mon SPECIES_SMEARGLE, 26
.align 2
gAlteringCave9_LandMonsInfo:: @ 8552D08
@@ -3627,18 +3627,18 @@ gAlteringCave9_LandMonsInfo:: @ 8552D08
.align 2
gMeteorFalls_StevensCave_LandMons:: @ 8552D10
- wild_mon GOLBAT, 33
- wild_mon GOLBAT, 35
- wild_mon GOLBAT, 33
- wild_mon SOLROCK, 35
- wild_mon SOLROCK, 33
- wild_mon SOLROCK, 37
- wild_mon GOLBAT, 35
- wild_mon SOLROCK, 39
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
- wild_mon GOLBAT, 38
- wild_mon GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_GOLBAT, 33
+ wild_mon SPECIES_SOLROCK, 35
+ wild_mon SPECIES_SOLROCK, 33
+ wild_mon SPECIES_SOLROCK, 37
+ wild_mon SPECIES_GOLBAT, 35
+ wild_mon SPECIES_SOLROCK, 39
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
+ wild_mon SPECIES_GOLBAT, 38
+ wild_mon SPECIES_GOLBAT, 40
.align 2
gMeteorFalls_StevensCave_LandMonsInfo:: @ 8552D40
diff --git a/include/constants/easy_chat.h b/include/constants/easy_chat.h
index 12350aebe..2c437c88e 100644
--- a/include/constants/easy_chat.h
+++ b/include/constants/easy_chat.h
@@ -44,6 +44,14 @@
#define EC_WORD_POKEDEX (EC_GROUP_TRAINER << 9) | 0x10
#define EC_WORD_RUBY (EC_GROUP_TRAINER << 9) | 0x11
#define EC_WORD_LEVEL (EC_GROUP_TRAINER << 9) | 0x12
+#define EC_WORD_RED (EC_GROUP_TRAINER << 9) | 0x13
+#define EC_WORD_GREEN (EC_GROUP_TRAINER << 9) | 0x14
+#define EC_WORD_BAG (EC_GROUP_TRAINER << 9) | 0x15
+#define EC_WORD_FLAME (EC_GROUP_TRAINER << 9) | 0x16
+#define EC_WORD_GOLD (EC_GROUP_TRAINER << 9) | 0x17
+#define EC_WORD_LEAF (EC_GROUP_TRAINER << 9) | 0x18
+#define EC_WORD_SILVER (EC_GROUP_TRAINER << 9) | 0x19
+#define EC_WORD_EMERALD (EC_GROUP_TRAINER << 9) | 0x1a
// STATUS
#define EC_WORD_DARK (EC_GROUP_STATUS << 9) | 0x0
@@ -1017,6 +1025,13 @@
#define EC_WORD_MASTER (EC_GROUP_EVENTS << 9) | 0x13
#define EC_WORD_RANK (EC_GROUP_EVENTS << 9) | 0x14
#define EC_WORD_RIBBON (EC_GROUP_EVENTS << 9) | 0x15
+#define EC_WORD_CRUSH (EC_GROUP_EVENTS << 9) | 0x16
+#define EC_WORD_DIRECT (EC_GROUP_EVENTS << 9) | 0x17
+#define EC_WORD_TOWER (EC_GROUP_EVENTS << 9) | 0x18
+#define EC_WORD_UNION (EC_GROUP_EVENTS << 9) | 0x19
+#define EC_WORD_ROOM (EC_GROUP_EVENTS << 9) | 0x1a
+#define EC_WORD_WIRELESS (EC_GROUP_EVENTS << 9) | 0x1b
+#define EC_WORD_FRONTIER (EC_GROUP_EVENTS << 9) | 0x1c
// TRENDY_SAYING
#define EC_WORD_KTHX_BYE (EC_GROUP_TRENDY_SAYING << 9) | 0x0
diff --git a/include/constants/flags.h b/include/constants/flags.h
index fc0bbb2ea..e74ef1ef0 100644
--- a/include/constants/flags.h
+++ b/include/constants/flags.h
@@ -1,9 +1,1285 @@
#ifndef GUARD_CONSTANTS_FLAGS_H
#define GUARD_CONSTANTS_FLAGS_H
-#define FLAG_340 0x340
-#define FLAG_LEGENDARIES_IN_SOOTOPOLIS 0x53
-#define FLAG_PENDING_DAYCARE_EGG 0x86
+#define FLAG_0x001 0x1
+#define FLAG_0x002 0x2
+#define FLAG_0x003 0x3
+#define FLAG_0x004 0x4
+#define FLAG_0x005 0x5
+#define FLAG_0x006 0x6
+#define FLAG_0x007 0x7
+#define FLAG_0x008 0x8
+#define FLAG_0x009 0x9
+#define FLAG_0x00A 0xA
+#define FLAG_0x00B 0xB
+#define FLAG_0x00C 0xC
+#define FLAG_0x00D 0xD
+#define FLAG_0x00E 0xE
+#define FLAG_0x00F 0xF
+#define FLAG_0x010 0x10
+#define FLAG_0x011 0x11
+#define FLAG_0x012 0x12
+#define FLAG_0x013 0x13
+#define FLAG_0x014 0x14
+#define FLAG_0x015 0x15
+#define FLAG_0x016 0x16
+#define FLAG_0x017 0x17
+#define FLAG_0x018 0x18
+#define FLAG_0x019 0x19
+#define FLAG_0x01A 0x1A
+#define FLAG_0x01B 0x1B
+#define FLAG_0x01C 0x1C
+#define FLAG_0x01D 0x1D
+#define FLAG_0x01E 0x1E
+#define FLAG_0x01F 0x1F
+#define FLAG_0x020 0x20
+#define FLAG_0x021 0x21
+#define FLAG_0x022 0x22
+#define FLAG_0x023 0x23
+#define FLAG_0x024 0x24
+#define FLAG_0x025 0x25
+#define FLAG_0x026 0x26
+#define FLAG_0x027 0x27
+#define FLAG_0x028 0x28
+#define FLAG_0x029 0x29
+#define FLAG_0x02A 0x2A
+#define FLAG_0x02B 0x2B
+#define FLAG_0x02C 0x2C
+#define FLAG_0x02D 0x2D
+#define FLAG_0x02E 0x2E
+#define FLAG_0x02F 0x2F
+#define FLAG_0x030 0x30
+#define FLAG_0x031 0x31
+#define FLAG_0x032 0x32
+#define FLAG_0x033 0x33
+#define FLAG_0x034 0x34
+#define FLAG_0x035 0x35
+#define FLAG_0x036 0x36
+#define FLAG_0x037 0x37
+#define FLAG_0x038 0x38
+#define FLAG_0x039 0x39
+#define FLAG_0x03A 0x3A
+#define FLAG_0x03B 0x3B
+#define FLAG_0x03C 0x3C
+#define FLAG_0x03D 0x3D
+#define FLAG_0x03E 0x3E
+#define FLAG_0x03F 0x3F
+#define FLAG_0x040 0x40
+#define FLAG_0x041 0x41
+#define FLAG_0x042 0x42
+#define FLAG_0x043 0x43
+#define FLAG_0x044 0x44
+#define FLAG_0x045 0x45
+#define FLAG_0x046 0x46
+#define FLAG_0x047 0x47
+#define FLAG_0x048 0x48
+#define FLAG_0x049 0x49
+#define FLAG_0x04A 0x4A
+#define FLAG_0x04B 0x4B
+#define FLAG_0x04C 0x4C
+#define FLAG_0x04D 0x4D
+#define FLAG_0x04E 0x4E
+#define FLAG_0x04F 0x4F
+#define FLAG_0x050 0x50
+#define FLAG_0x051 0x51
+#define FLAG_0x052 0x52
+#define FLAG_LEGENDARIES_IN_SOOTOPOLIS 0x53
+#define FLAG_0x054 0x54
+#define FLAG_0x055 0x55
+#define FLAG_0x056 0x56
+#define FLAG_0x057 0x57
+#define FLAG_0x058 0x58
+#define FLAG_0x059 0x59
+#define FLAG_0x05A 0x5A
+#define FLAG_0x05B 0x5B
+#define FLAG_0x05C 0x5C
+#define FLAG_0x05D 0x5D
+#define FLAG_0x05E 0x5E
+#define FLAG_0x05F 0x5F
+#define FLAG_0x060 0x60
+#define FLAG_0x061 0x61
+#define FLAG_0x062 0x62
+#define FLAG_0x063 0x63
+#define FLAG_0x064 0x64
+#define FLAG_0x065 0x65
+#define FLAG_0x066 0x66
+#define FLAG_0x067 0x67
+#define FLAG_0x068 0x68
+#define FLAG_0x069 0x69
+#define FLAG_0x06A 0x6A
+#define FLAG_0x06B 0x6B
+#define FLAG_0x06C 0x6C
+#define FLAG_0x06D 0x6D
+#define FLAG_0x06E 0x6E
+#define FLAG_0x06F 0x6F
+#define FLAG_0x070 0x70
+#define FLAG_0x071 0x71
+#define FLAG_0x072 0x72
+#define FLAG_0x073 0x73
+#define FLAG_0x074 0x74
+#define FLAG_0x075 0x75
+#define FLAG_0x076 0x76
+#define FLAG_0x077 0x77
+#define FLAG_0x078 0x78
+#define FLAG_0x079 0x79
+#define FLAG_0x07A 0x7A
+#define FLAG_0x07B 0x7B
+#define FLAG_0x07C 0x7C
+#define FLAG_0x07D 0x7D
+#define FLAG_0x07E 0x7E
+#define FLAG_0x07F 0x7F
+#define FLAG_0x080 0x80
+#define FLAG_0x081 0x81
+#define FLAG_0x082 0x82
+#define FLAG_0x083 0x83
+#define FLAG_0x084 0x84
+#define FLAG_0x085 0x85
+#define FLAG_PENDING_DAYCARE_EGG 0x86
+#define FLAG_0x087 0x87
+#define FLAG_0x088 0x88
+#define FLAG_0x089 0x89
+#define FLAG_0x08A 0x8A
+#define FLAG_0x08B 0x8B
+#define FLAG_0x08C 0x8C
+#define FLAG_0x08D 0x8D
+#define FLAG_0x08E 0x8E
+#define FLAG_0x08F 0x8F
+#define FLAG_0x090 0x90
+#define FLAG_0x091 0x91
+#define FLAG_0x092 0x92
+#define FLAG_0x093 0x93
+#define FLAG_0x094 0x94
+#define FLAG_0x095 0x95
+#define FLAG_0x096 0x96
+#define FLAG_0x097 0x97
+#define FLAG_0x098 0x98
+#define FLAG_0x099 0x99
+#define FLAG_0x09A 0x9A
+#define FLAG_0x09B 0x9B
+#define FLAG_0x09C 0x9C
+#define FLAG_0x09D 0x9D
+#define FLAG_0x09E 0x9E
+#define FLAG_0x09F 0x9F
+#define FLAG_0x0A0 0xA0
+#define FLAG_0x0A1 0xA1
+#define FLAG_0x0A2 0xA2
+#define FLAG_0x0A3 0xA3
+#define FLAG_0x0A4 0xA4
+#define FLAG_0x0A5 0xA5
+#define FLAG_0x0A6 0xA6
+#define FLAG_0x0A7 0xA7
+#define FLAG_0x0A8 0xA8
+#define FLAG_0x0A9 0xA9
+#define FLAG_0x0AA 0xAA
+#define FLAG_0x0AB 0xAB
+#define FLAG_0x0AC 0xAC
+#define FLAG_0x0AD 0xAD
+#define FLAG_0x0AE 0xAE
+#define FLAG_0x0AF 0xAF
+#define FLAG_0x0B0 0xB0
+#define FLAG_0x0B1 0xB1
+#define FLAG_0x0B2 0xB2
+#define FLAG_0x0B3 0xB3
+#define FLAG_0x0B4 0xB4
+#define FLAG_0x0B5 0xB5
+#define FLAG_0x0B6 0xB6
+#define FLAG_0x0B7 0xB7
+#define FLAG_0x0B8 0xB8
+#define FLAG_0x0B9 0xB9
+#define FLAG_0x0BA 0xBA
+#define FLAG_0x0BB 0xBB
+#define FLAG_0x0BC 0xBC
+#define FLAG_0x0BD 0xBD
+#define FLAG_0x0BE 0xBE
+#define FLAG_0x0BF 0xBF
+#define FLAG_0x0C0 0xC0
+#define FLAG_0x0C1 0xC1
+#define FLAG_0x0C2 0xC2
+#define FLAG_0x0C3 0xC3
+#define FLAG_0x0C4 0xC4
+#define FLAG_0x0C5 0xC5
+#define FLAG_0x0C6 0xC6
+#define FLAG_0x0C7 0xC7
+#define FLAG_0x0C8 0xC8
+#define FLAG_0x0C9 0xC9
+#define FLAG_0x0CA 0xCA
+#define FLAG_0x0CB 0xCB
+#define FLAG_0x0CC 0xCC
+#define FLAG_0x0CD 0xCD
+#define FLAG_0x0CE 0xCE
+#define FLAG_0x0CF 0xCF
+#define FLAG_0x0D0 0xD0
+#define FLAG_0x0D1 0xD1
+#define FLAG_0x0D2 0xD2
+#define FLAG_0x0D3 0xD3
+#define FLAG_0x0D4 0xD4
+#define FLAG_0x0D5 0xD5
+#define FLAG_0x0D6 0xD6
+#define FLAG_0x0D7 0xD7
+#define FLAG_0x0D8 0xD8
+#define FLAG_0x0D9 0xD9
+#define FLAG_0x0DA 0xDA
+#define FLAG_0x0DB 0xDB
+#define FLAG_0x0DC 0xDC
+#define FLAG_0x0DD 0xDD
+#define FLAG_0x0DE 0xDE
+#define FLAG_0x0DF 0xDF
+#define FLAG_0x0E0 0xE0
+#define FLAG_0x0E1 0xE1
+#define FLAG_0x0E2 0xE2
+#define FLAG_0x0E3 0xE3
+#define FLAG_0x0E4 0xE4
+#define FLAG_0x0E5 0xE5
+#define FLAG_0x0E6 0xE6
+#define FLAG_0x0E7 0xE7
+#define FLAG_0x0E8 0xE8
+#define FLAG_0x0E9 0xE9
+#define FLAG_0x0EA 0xEA
+#define FLAG_0x0EB 0xEB
+#define FLAG_0x0EC 0xEC
+#define FLAG_0x0ED 0xED
+#define FLAG_0x0EE 0xEE
+#define FLAG_0x0EF 0xEF
+#define FLAG_0x0F0 0xF0
+#define FLAG_0x0F1 0xF1
+#define FLAG_0x0F2 0xF2
+#define FLAG_0x0F3 0xF3
+#define FLAG_0x0F4 0xF4
+#define FLAG_0x0F5 0xF5
+#define FLAG_0x0F6 0xF6
+#define FLAG_0x0F7 0xF7
+#define FLAG_0x0F8 0xF8
+#define FLAG_0x0F9 0xF9
+#define FLAG_0x0FA 0xFA
+#define FLAG_0x0FB 0xFB
+#define FLAG_0x0FC 0xFC
+#define FLAG_0x0FD 0xFD
+#define FLAG_0x0FE 0xFE
+#define FLAG_0x0FF 0xFF
+#define FLAG_0x100 0x100
+#define FLAG_0x101 0x101
+#define FLAG_0x102 0x102
+#define FLAG_0x103 0x103
+#define FLAG_0x104 0x104
+#define FLAG_0x105 0x105
+#define FLAG_0x106 0x106
+#define FLAG_0x107 0x107
+#define FLAG_0x108 0x108
+#define FLAG_0x109 0x109
+#define FLAG_0x10A 0x10A
+#define FLAG_0x10B 0x10B
+#define FLAG_0x10C 0x10C
+#define FLAG_0x10D 0x10D
+#define FLAG_0x10E 0x10E
+#define FLAG_0x10F 0x10F
+#define FLAG_0x110 0x110
+#define FLAG_0x111 0x111
+#define FLAG_0x112 0x112
+#define FLAG_0x113 0x113
+#define FLAG_0x114 0x114
+#define FLAG_0x115 0x115
+#define FLAG_0x116 0x116
+#define FLAG_0x117 0x117
+#define FLAG_0x118 0x118
+#define FLAG_0x119 0x119
+#define FLAG_0x11A 0x11A
+#define FLAG_0x11B 0x11B
+#define FLAG_0x11C 0x11C
+#define FLAG_0x11D 0x11D
+#define FLAG_0x11E 0x11E
+#define FLAG_0x11F 0x11F
+#define FLAG_0x120 0x120
+#define FLAG_0x121 0x121
+#define FLAG_0x122 0x122
+#define FLAG_0x123 0x123
+#define FLAG_0x124 0x124
+#define FLAG_0x125 0x125
+#define FLAG_0x126 0x126
+#define FLAG_0x127 0x127
+#define FLAG_0x128 0x128
+#define FLAG_0x129 0x129
+#define FLAG_0x12A 0x12A
+#define FLAG_0x12B 0x12B
+#define FLAG_0x12C 0x12C
+#define FLAG_0x12D 0x12D
+#define FLAG_0x12E 0x12E
+#define FLAG_0x12F 0x12F
+#define FLAG_0x130 0x130
+#define FLAG_0x131 0x131
+#define FLAG_0x132 0x132
+#define FLAG_0x133 0x133
+#define FLAG_0x134 0x134
+#define FLAG_0x135 0x135
+#define FLAG_0x136 0x136
+#define FLAG_0x137 0x137
+#define FLAG_0x138 0x138
+#define FLAG_0x139 0x139
+#define FLAG_0x13A 0x13A
+#define FLAG_0x13B 0x13B
+#define FLAG_0x13C 0x13C
+#define FLAG_0x13D 0x13D
+#define FLAG_0x13E 0x13E
+#define FLAG_0x13F 0x13F
+#define FLAG_0x140 0x140
+#define FLAG_0x141 0x141
+#define FLAG_0x142 0x142
+#define FLAG_0x143 0x143
+#define FLAG_0x144 0x144
+#define FLAG_0x145 0x145
+#define FLAG_0x146 0x146
+#define FLAG_0x147 0x147
+#define FLAG_0x148 0x148
+#define FLAG_0x149 0x149
+#define FLAG_0x14A 0x14A
+#define FLAG_0x14B 0x14B
+#define FLAG_0x14C 0x14C
+#define FLAG_0x14D 0x14D
+#define FLAG_0x14E 0x14E
+#define FLAG_0x14F 0x14F
+#define FLAG_0x150 0x150
+#define FLAG_0x151 0x151
+#define FLAG_0x152 0x152
+#define FLAG_0x153 0x153
+#define FLAG_0x154 0x154
+#define FLAG_0x155 0x155
+#define FLAG_0x156 0x156
+#define FLAG_0x157 0x157
+#define FLAG_0x158 0x158
+#define FLAG_0x159 0x159
+#define FLAG_0x15A 0x15A
+#define FLAG_0x15B 0x15B
+#define FLAG_0x15C 0x15C
+#define FLAG_0x15D 0x15D
+#define FLAG_0x15E 0x15E
+#define FLAG_0x15F 0x15F
+#define FLAG_0x160 0x160
+#define FLAG_0x161 0x161
+#define FLAG_0x162 0x162
+#define FLAG_0x163 0x163
+#define FLAG_0x164 0x164
+#define FLAG_0x165 0x165
+#define FLAG_0x166 0x166
+#define FLAG_0x167 0x167
+#define FLAG_0x168 0x168
+#define FLAG_0x169 0x169
+#define FLAG_0x16A 0x16A
+#define FLAG_0x16B 0x16B
+#define FLAG_0x16C 0x16C
+#define FLAG_0x16D 0x16D
+#define FLAG_0x16E 0x16E
+#define FLAG_0x16F 0x16F
+#define FLAG_0x170 0x170
+#define FLAG_0x171 0x171
+#define FLAG_0x172 0x172
+#define FLAG_0x173 0x173
+#define FLAG_0x174 0x174
+#define FLAG_0x175 0x175
+#define FLAG_0x176 0x176
+#define FLAG_0x177 0x177
+#define FLAG_0x178 0x178
+#define FLAG_0x179 0x179
+#define FLAG_0x17A 0x17A
+#define FLAG_0x17B 0x17B
+#define FLAG_0x17C 0x17C
+#define FLAG_0x17D 0x17D
+#define FLAG_0x17E 0x17E
+#define FLAG_0x17F 0x17F
+#define FLAG_0x180 0x180
+#define FLAG_0x181 0x181
+#define FLAG_0x182 0x182
+#define FLAG_0x183 0x183
+#define FLAG_0x184 0x184
+#define FLAG_0x185 0x185
+#define FLAG_0x186 0x186
+#define FLAG_0x187 0x187
+#define FLAG_0x188 0x188
+#define FLAG_0x189 0x189
+#define FLAG_0x18A 0x18A
+#define FLAG_0x18B 0x18B
+#define FLAG_0x18C 0x18C
+#define FLAG_0x18D 0x18D
+#define FLAG_0x18E 0x18E
+#define FLAG_0x18F 0x18F
+#define FLAG_0x190 0x190
+#define FLAG_0x191 0x191
+#define FLAG_0x192 0x192
+#define FLAG_0x193 0x193
+#define FLAG_0x194 0x194
+#define FLAG_0x195 0x195
+#define FLAG_0x196 0x196
+#define FLAG_0x197 0x197
+#define FLAG_0x198 0x198
+#define FLAG_0x199 0x199
+#define FLAG_0x19A 0x19A
+#define FLAG_0x19B 0x19B
+#define FLAG_0x19C 0x19C
+#define FLAG_0x19D 0x19D
+#define FLAG_0x19E 0x19E
+#define FLAG_0x19F 0x19F
+#define FLAG_0x1A0 0x1A0
+#define FLAG_0x1A1 0x1A1
+#define FLAG_0x1A2 0x1A2
+#define FLAG_0x1A3 0x1A3
+#define FLAG_0x1A4 0x1A4
+#define FLAG_0x1A5 0x1A5
+#define FLAG_0x1A6 0x1A6
+#define FLAG_0x1A7 0x1A7
+#define FLAG_0x1A8 0x1A8
+#define FLAG_0x1A9 0x1A9
+#define FLAG_0x1AA 0x1AA
+#define FLAG_0x1AB 0x1AB
+#define FLAG_0x1AC 0x1AC
+#define FLAG_0x1AD 0x1AD
+#define FLAG_0x1AE 0x1AE
+#define FLAG_0x1AF 0x1AF
+#define FLAG_0x1B0 0x1B0
+#define FLAG_0x1B1 0x1B1
+#define FLAG_0x1B2 0x1B2
+#define FLAG_0x1B3 0x1B3
+#define FLAG_0x1B4 0x1B4
+#define FLAG_0x1B5 0x1B5
+#define FLAG_0x1B6 0x1B6
+#define FLAG_0x1B7 0x1B7
+#define FLAG_0x1B8 0x1B8
+#define FLAG_0x1B9 0x1B9
+#define FLAG_0x1BA 0x1BA
+#define FLAG_0x1BB 0x1BB
+#define FLAG_0x1BC 0x1BC
+#define FLAG_0x1BD 0x1BD
+#define FLAG_0x1BE 0x1BE
+#define FLAG_0x1BF 0x1BF
+#define FLAG_0x1C0 0x1C0
+#define FLAG_0x1C1 0x1C1
+#define FLAG_0x1C2 0x1C2
+#define FLAG_0x1C3 0x1C3
+#define FLAG_0x1C4 0x1C4
+#define FLAG_0x1C5 0x1C5
+#define FLAG_0x1C6 0x1C6
+#define FLAG_0x1C7 0x1C7
+#define FLAG_0x1C8 0x1C8
+#define FLAG_0x1C9 0x1C9
+#define FLAG_0x1CA 0x1CA
+#define FLAG_0x1CB 0x1CB
+#define FLAG_0x1CC 0x1CC
+#define FLAG_0x1CD 0x1CD
+#define FLAG_0x1CE 0x1CE
+#define FLAG_0x1CF 0x1CF
+#define FLAG_0x1D0 0x1D0
+#define FLAG_0x1D1 0x1D1
+#define FLAG_0x1D2 0x1D2
+#define FLAG_0x1D3 0x1D3
+#define FLAG_0x1D4 0x1D4
+#define FLAG_0x1D5 0x1D5
+#define FLAG_0x1D6 0x1D6
+#define FLAG_0x1D7 0x1D7
+#define FLAG_0x1D8 0x1D8
+#define FLAG_0x1D9 0x1D9
+#define FLAG_0x1DA 0x1DA
+#define FLAG_0x1DB 0x1DB
+#define FLAG_0x1DC 0x1DC
+#define FLAG_0x1DD 0x1DD
+#define FLAG_0x1DE 0x1DE
+#define FLAG_0x1DF 0x1DF
+#define FLAG_0x1E0 0x1E0
+#define FLAG_0x1E1 0x1E1
+#define FLAG_0x1E2 0x1E2
+#define FLAG_0x1E3 0x1E3
+#define FLAG_0x1E4 0x1E4
+#define FLAG_0x1E5 0x1E5
+#define FLAG_0x1E6 0x1E6
+#define FLAG_0x1E7 0x1E7
+#define FLAG_0x1E8 0x1E8
+#define FLAG_0x1E9 0x1E9
+#define FLAG_0x1EA 0x1EA
+#define FLAG_0x1EB 0x1EB
+#define FLAG_0x1EC 0x1EC
+#define FLAG_0x1ED 0x1ED
+#define FLAG_0x1EE 0x1EE
+#define FLAG_0x1EF 0x1EF
+#define FLAG_0x1F0 0x1F0
+#define FLAG_0x1F1 0x1F1
+#define FLAG_0x1F2 0x1F2
+#define FLAG_0x1F3 0x1F3
+#define FLAG_0x1F4 0x1F4
+#define FLAG_0x1F5 0x1F5
+#define FLAG_0x1F6 0x1F6
+#define FLAG_0x1F7 0x1F7
+#define FLAG_0x1F8 0x1F8
+#define FLAG_0x1F9 0x1F9
+#define FLAG_0x1FA 0x1FA
+#define FLAG_0x1FB 0x1FB
+#define FLAG_0x1FC 0x1FC
+#define FLAG_0x1FD 0x1FD
+#define FLAG_0x1FE 0x1FE
+#define FLAG_0x1FF 0x1FF
+#define FLAG_0x200 0x200
+#define FLAG_0x201 0x201
+#define FLAG_0x202 0x202
+#define FLAG_0x203 0x203
+#define FLAG_0x204 0x204
+#define FLAG_0x205 0x205
+#define FLAG_0x206 0x206
+#define FLAG_0x207 0x207
+#define FLAG_0x208 0x208
+#define FLAG_0x209 0x209
+#define FLAG_0x20A 0x20A
+#define FLAG_0x20B 0x20B
+#define FLAG_0x20C 0x20C
+#define FLAG_0x20D 0x20D
+#define FLAG_0x20E 0x20E
+#define FLAG_0x20F 0x20F
+#define FLAG_0x210 0x210
+#define FLAG_0x211 0x211
+#define FLAG_0x212 0x212
+#define FLAG_0x213 0x213
+#define FLAG_0x214 0x214
+#define FLAG_0x215 0x215
+#define FLAG_0x216 0x216
+#define FLAG_0x217 0x217
+#define FLAG_0x218 0x218
+#define FLAG_0x219 0x219
+#define FLAG_0x21A 0x21A
+#define FLAG_0x21B 0x21B
+#define FLAG_0x21C 0x21C
+#define FLAG_0x21D 0x21D
+#define FLAG_0x21E 0x21E
+#define FLAG_0x21F 0x21F
+#define FLAG_0x220 0x220
+#define FLAG_0x221 0x221
+#define FLAG_0x222 0x222
+#define FLAG_0x223 0x223
+#define FLAG_0x224 0x224
+#define FLAG_0x225 0x225
+#define FLAG_0x226 0x226
+#define FLAG_0x227 0x227
+#define FLAG_0x228 0x228
+#define FLAG_0x229 0x229
+#define FLAG_0x22A 0x22A
+#define FLAG_0x22B 0x22B
+#define FLAG_0x22C 0x22C
+#define FLAG_0x22D 0x22D
+#define FLAG_0x22E 0x22E
+#define FLAG_0x22F 0x22F
+#define FLAG_0x230 0x230
+#define FLAG_0x231 0x231
+#define FLAG_0x232 0x232
+#define FLAG_0x233 0x233
+#define FLAG_0x234 0x234
+#define FLAG_0x235 0x235
+#define FLAG_0x236 0x236
+#define FLAG_0x237 0x237
+#define FLAG_0x238 0x238
+#define FLAG_0x239 0x239
+#define FLAG_0x23A 0x23A
+#define FLAG_0x23B 0x23B
+#define FLAG_0x23C 0x23C
+#define FLAG_0x23D 0x23D
+#define FLAG_0x23E 0x23E
+#define FLAG_0x23F 0x23F
+#define FLAG_0x240 0x240
+#define FLAG_0x241 0x241
+#define FLAG_0x242 0x242
+#define FLAG_0x243 0x243
+#define FLAG_0x244 0x244
+#define FLAG_0x245 0x245
+#define FLAG_0x246 0x246
+#define FLAG_0x247 0x247
+#define FLAG_0x248 0x248
+#define FLAG_0x249 0x249
+#define FLAG_0x24A 0x24A
+#define FLAG_0x24B 0x24B
+#define FLAG_0x24C 0x24C
+#define FLAG_0x24D 0x24D
+#define FLAG_0x24E 0x24E
+#define FLAG_0x24F 0x24F
+#define FLAG_0x250 0x250
+#define FLAG_0x251 0x251
+#define FLAG_0x252 0x252
+#define FLAG_0x253 0x253
+#define FLAG_0x254 0x254
+#define FLAG_0x255 0x255
+#define FLAG_0x256 0x256
+#define FLAG_0x257 0x257
+#define FLAG_0x258 0x258
+#define FLAG_0x259 0x259
+#define FLAG_0x25A 0x25A
+#define FLAG_0x25B 0x25B
+#define FLAG_0x25C 0x25C
+#define FLAG_0x25D 0x25D
+#define FLAG_0x25E 0x25E
+#define FLAG_0x25F 0x25F
+#define FLAG_0x260 0x260
+#define FLAG_0x261 0x261
+#define FLAG_0x262 0x262
+#define FLAG_0x263 0x263
+#define FLAG_0x264 0x264
+#define FLAG_0x265 0x265
+#define FLAG_0x266 0x266
+#define FLAG_0x267 0x267
+#define FLAG_0x268 0x268
+#define FLAG_0x269 0x269
+#define FLAG_0x26A 0x26A
+#define FLAG_0x26B 0x26B
+#define FLAG_0x26C 0x26C
+#define FLAG_0x26D 0x26D
+#define FLAG_0x26E 0x26E
+#define FLAG_0x26F 0x26F
+#define FLAG_0x270 0x270
+#define FLAG_0x271 0x271
+#define FLAG_0x272 0x272
+#define FLAG_0x273 0x273
+#define FLAG_0x274 0x274
+#define FLAG_0x275 0x275
+#define FLAG_0x276 0x276
+#define FLAG_0x277 0x277
+#define FLAG_0x278 0x278
+#define FLAG_0x279 0x279
+#define FLAG_0x27A 0x27A
+#define FLAG_0x27B 0x27B
+#define FLAG_0x27C 0x27C
+#define FLAG_0x27D 0x27D
+#define FLAG_0x27E 0x27E
+#define FLAG_0x27F 0x27F
+#define FLAG_0x280 0x280
+#define FLAG_0x281 0x281
+#define FLAG_0x282 0x282
+#define FLAG_0x283 0x283
+#define FLAG_0x284 0x284
+#define FLAG_0x285 0x285
+#define FLAG_0x286 0x286
+#define FLAG_0x287 0x287
+#define FLAG_0x288 0x288
+#define FLAG_0x289 0x289
+#define FLAG_0x28A 0x28A
+#define FLAG_0x28B 0x28B
+#define FLAG_0x28C 0x28C
+#define FLAG_0x28D 0x28D
+#define FLAG_0x28E 0x28E
+#define FLAG_0x28F 0x28F
+#define FLAG_0x290 0x290
+#define FLAG_0x291 0x291
+#define FLAG_0x292 0x292
+#define FLAG_0x293 0x293
+#define FLAG_0x294 0x294
+#define FLAG_0x295 0x295
+#define FLAG_0x296 0x296
+#define FLAG_0x297 0x297
+#define FLAG_0x298 0x298
+#define FLAG_0x299 0x299
+#define FLAG_0x29A 0x29A
+#define FLAG_0x29B 0x29B
+#define FLAG_0x29C 0x29C
+#define FLAG_0x29D 0x29D
+#define FLAG_0x29E 0x29E
+#define FLAG_0x29F 0x29F
+#define FLAG_0x2A0 0x2A0
+#define FLAG_0x2A1 0x2A1
+#define FLAG_0x2A2 0x2A2
+#define FLAG_0x2A3 0x2A3
+#define FLAG_0x2A4 0x2A4
+#define FLAG_0x2A5 0x2A5
+#define FLAG_0x2A6 0x2A6
+#define FLAG_0x2A7 0x2A7
+#define FLAG_0x2A8 0x2A8
+#define FLAG_0x2A9 0x2A9
+#define FLAG_0x2AA 0x2AA
+#define FLAG_0x2AB 0x2AB
+#define FLAG_0x2AC 0x2AC
+#define FLAG_0x2AD 0x2AD
+#define FLAG_0x2AE 0x2AE
+#define FLAG_0x2AF 0x2AF
+#define FLAG_0x2B0 0x2B0
+#define FLAG_0x2B1 0x2B1
+#define FLAG_0x2B2 0x2B2
+#define FLAG_0x2B3 0x2B3
+#define FLAG_0x2B4 0x2B4
+#define FLAG_0x2B5 0x2B5
+#define FLAG_0x2B6 0x2B6
+#define FLAG_0x2B7 0x2B7
+#define FLAG_0x2B8 0x2B8
+#define FLAG_0x2B9 0x2B9
+#define FLAG_0x2BA 0x2BA
+#define FLAG_0x2BB 0x2BB
+#define FLAG_0x2BC 0x2BC
+#define FLAG_0x2BD 0x2BD
+#define FLAG_0x2BE 0x2BE
+#define FLAG_0x2BF 0x2BF
+#define FLAG_0x2C0 0x2C0
+#define FLAG_0x2C1 0x2C1
+#define FLAG_0x2C2 0x2C2
+#define FLAG_0x2C3 0x2C3
+#define FLAG_0x2C4 0x2C4
+#define FLAG_0x2C5 0x2C5
+#define FLAG_0x2C6 0x2C6
+#define FLAG_0x2C7 0x2C7
+#define FLAG_0x2C8 0x2C8
+#define FLAG_0x2C9 0x2C9
+#define FLAG_0x2CA 0x2CA
+#define FLAG_0x2CB 0x2CB
+#define FLAG_0x2CC 0x2CC
+#define FLAG_0x2CD 0x2CD
+#define FLAG_0x2CE 0x2CE
+#define FLAG_0x2CF 0x2CF
+#define FLAG_0x2D0 0x2D0
+#define FLAG_0x2D1 0x2D1
+#define FLAG_0x2D2 0x2D2
+#define FLAG_0x2D3 0x2D3
+#define FLAG_0x2D4 0x2D4
+#define FLAG_0x2D5 0x2D5
+#define FLAG_0x2D6 0x2D6
+#define FLAG_0x2D7 0x2D7
+#define FLAG_0x2D8 0x2D8
+#define FLAG_0x2D9 0x2D9
+#define FLAG_0x2DA 0x2DA
+#define FLAG_0x2DB 0x2DB
+#define FLAG_0x2DC 0x2DC
+#define FLAG_0x2DD 0x2DD
+#define FLAG_0x2DE 0x2DE
+#define FLAG_0x2DF 0x2DF
+#define FLAG_0x2E0 0x2E0
+#define FLAG_0x2E1 0x2E1
+#define FLAG_0x2E2 0x2E2
+#define FLAG_0x2E3 0x2E3
+#define FLAG_0x2E4 0x2E4
+#define FLAG_0x2E5 0x2E5
+#define FLAG_0x2E6 0x2E6
+#define FLAG_0x2E7 0x2E7
+#define FLAG_0x2E8 0x2E8
+#define FLAG_0x2E9 0x2E9
+#define FLAG_0x2EA 0x2EA
+#define FLAG_0x2EB 0x2EB
+#define FLAG_0x2EC 0x2EC
+#define FLAG_0x2ED 0x2ED
+#define FLAG_0x2EE 0x2EE
+#define FLAG_0x2EF 0x2EF
+#define FLAG_0x2F0 0x2F0
+#define FLAG_0x2F1 0x2F1
+#define FLAG_0x2F2 0x2F2
+#define FLAG_0x2F3 0x2F3
+#define FLAG_0x2F4 0x2F4
+#define FLAG_0x2F5 0x2F5
+#define FLAG_0x2F6 0x2F6
+#define FLAG_0x2F7 0x2F7
+#define FLAG_0x2F8 0x2F8
+#define FLAG_0x2F9 0x2F9
+#define FLAG_0x2FA 0x2FA
+#define FLAG_0x2FB 0x2FB
+#define FLAG_0x2FC 0x2FC
+#define FLAG_0x2FD 0x2FD
+#define FLAG_0x2FE 0x2FE
+#define FLAG_0x2FF 0x2FF
+#define FLAG_0x300 0x300
+#define FLAG_0x301 0x301
+#define FLAG_0x302 0x302
+#define FLAG_0x303 0x303
+#define FLAG_0x304 0x304
+#define FLAG_0x305 0x305
+#define FLAG_0x306 0x306
+#define FLAG_0x307 0x307
+#define FLAG_0x308 0x308
+#define FLAG_0x309 0x309
+#define FLAG_0x30A 0x30A
+#define FLAG_0x30B 0x30B
+#define FLAG_0x30C 0x30C
+#define FLAG_0x30D 0x30D
+#define FLAG_0x30E 0x30E
+#define FLAG_0x30F 0x30F
+#define FLAG_0x310 0x310
+#define FLAG_0x311 0x311
+#define FLAG_0x312 0x312
+#define FLAG_0x313 0x313
+#define FLAG_0x314 0x314
+#define FLAG_0x315 0x315
+#define FLAG_0x316 0x316
+#define FLAG_0x317 0x317
+#define FLAG_0x318 0x318
+#define FLAG_0x319 0x319
+#define FLAG_0x31A 0x31A
+#define FLAG_0x31B 0x31B
+#define FLAG_0x31C 0x31C
+#define FLAG_0x31D 0x31D
+#define FLAG_0x31E 0x31E
+#define FLAG_0x31F 0x31F
+#define FLAG_0x320 0x320
+#define FLAG_0x321 0x321
+#define FLAG_0x322 0x322
+#define FLAG_0x323 0x323
+#define FLAG_0x324 0x324
+#define FLAG_0x325 0x325
+#define FLAG_0x326 0x326
+#define FLAG_0x327 0x327
+#define FLAG_0x328 0x328
+#define FLAG_0x329 0x329
+#define FLAG_0x32A 0x32A
+#define FLAG_0x32B 0x32B
+#define FLAG_0x32C 0x32C
+#define FLAG_0x32D 0x32D
+#define FLAG_0x32E 0x32E
+#define FLAG_0x32F 0x32F
+#define FLAG_0x330 0x330
+#define FLAG_0x331 0x331
+#define FLAG_0x332 0x332
+#define FLAG_0x333 0x333
+#define FLAG_0x334 0x334
+#define FLAG_0x335 0x335
+#define FLAG_0x336 0x336
+#define FLAG_0x337 0x337
+#define FLAG_0x338 0x338
+#define FLAG_0x339 0x339
+#define FLAG_0x33A 0x33A
+#define FLAG_0x33B 0x33B
+#define FLAG_0x33C 0x33C
+#define FLAG_0x33D 0x33D
+#define FLAG_0x33E 0x33E
+#define FLAG_0x33F 0x33F
+#define FLAG_0x340 0x340
+#define FLAG_0x341 0x341
+#define FLAG_0x342 0x342
+#define FLAG_0x343 0x343
+#define FLAG_0x344 0x344
+#define FLAG_0x345 0x345
+#define FLAG_0x346 0x346
+#define FLAG_0x347 0x347
+#define FLAG_0x348 0x348
+#define FLAG_0x349 0x349
+#define FLAG_0x34A 0x34A
+#define FLAG_0x34B 0x34B
+#define FLAG_0x34C 0x34C
+#define FLAG_0x34D 0x34D
+#define FLAG_0x34E 0x34E
+#define FLAG_0x34F 0x34F
+#define FLAG_0x350 0x350
+#define FLAG_0x351 0x351
+#define FLAG_0x352 0x352
+#define FLAG_0x353 0x353
+#define FLAG_0x354 0x354
+#define FLAG_0x355 0x355
+#define FLAG_0x356 0x356
+#define FLAG_0x357 0x357
+#define FLAG_0x358 0x358
+#define FLAG_0x359 0x359
+#define FLAG_0x35A 0x35A
+#define FLAG_0x35B 0x35B
+#define FLAG_0x35C 0x35C
+#define FLAG_0x35D 0x35D
+#define FLAG_0x35E 0x35E
+#define FLAG_0x35F 0x35F
+#define FLAG_0x360 0x360
+#define FLAG_0x361 0x361
+#define FLAG_0x362 0x362
+#define FLAG_0x363 0x363
+#define FLAG_0x364 0x364
+#define FLAG_0x365 0x365
+#define FLAG_0x366 0x366
+#define FLAG_0x367 0x367
+#define FLAG_0x368 0x368
+#define FLAG_0x369 0x369
+#define FLAG_0x36A 0x36A
+#define FLAG_0x36B 0x36B
+#define FLAG_0x36C 0x36C
+#define FLAG_0x36D 0x36D
+#define FLAG_0x36E 0x36E
+#define FLAG_0x36F 0x36F
+#define FLAG_0x370 0x370
+#define FLAG_0x371 0x371
+#define FLAG_0x372 0x372
+#define FLAG_0x373 0x373
+#define FLAG_0x374 0x374
+#define FLAG_0x375 0x375
+#define FLAG_0x376 0x376
+#define FLAG_0x377 0x377
+#define FLAG_0x378 0x378
+#define FLAG_0x379 0x379
+#define FLAG_0x37A 0x37A
+#define FLAG_0x37B 0x37B
+#define FLAG_0x37C 0x37C
+#define FLAG_0x37D 0x37D
+#define FLAG_0x37E 0x37E
+#define FLAG_0x37F 0x37F
+#define FLAG_0x380 0x380
+#define FLAG_0x381 0x381
+#define FLAG_0x382 0x382
+#define FLAG_0x383 0x383
+#define FLAG_0x384 0x384
+#define FLAG_0x385 0x385
+#define FLAG_0x386 0x386
+#define FLAG_0x387 0x387
+#define FLAG_0x388 0x388
+#define FLAG_0x389 0x389
+#define FLAG_0x38A 0x38A
+#define FLAG_0x38B 0x38B
+#define FLAG_0x38C 0x38C
+#define FLAG_0x38D 0x38D
+#define FLAG_0x38E 0x38E
+#define FLAG_0x38F 0x38F
+#define FLAG_0x390 0x390
+#define FLAG_0x391 0x391
+#define FLAG_0x392 0x392
+#define FLAG_0x393 0x393
+#define FLAG_0x394 0x394
+#define FLAG_0x395 0x395
+#define FLAG_0x396 0x396
+#define FLAG_0x397 0x397
+#define FLAG_0x398 0x398
+#define FLAG_0x399 0x399
+#define FLAG_0x39A 0x39A
+#define FLAG_0x39B 0x39B
+#define FLAG_0x39C 0x39C
+#define FLAG_0x39D 0x39D
+#define FLAG_0x39E 0x39E
+#define FLAG_0x39F 0x39F
+#define FLAG_0x3A0 0x3A0
+#define FLAG_0x3A1 0x3A1
+#define FLAG_0x3A2 0x3A2
+#define FLAG_0x3A3 0x3A3
+#define FLAG_0x3A4 0x3A4
+#define FLAG_0x3A5 0x3A5
+#define FLAG_0x3A6 0x3A6
+#define FLAG_0x3A7 0x3A7
+#define FLAG_0x3A8 0x3A8
+#define FLAG_0x3A9 0x3A9
+#define FLAG_0x3AA 0x3AA
+#define FLAG_0x3AB 0x3AB
+#define FLAG_0x3AC 0x3AC
+#define FLAG_0x3AD 0x3AD
+#define FLAG_0x3AE 0x3AE
+#define FLAG_0x3AF 0x3AF
+#define FLAG_0x3B0 0x3B0
+#define FLAG_0x3B1 0x3B1
+#define FLAG_0x3B2 0x3B2
+#define FLAG_0x3B3 0x3B3
+#define FLAG_0x3B4 0x3B4
+#define FLAG_0x3B5 0x3B5
+#define FLAG_0x3B6 0x3B6
+#define FLAG_0x3B7 0x3B7
+#define FLAG_0x3B8 0x3B8
+#define FLAG_0x3B9 0x3B9
+#define FLAG_0x3BA 0x3BA
+#define FLAG_0x3BB 0x3BB
+#define FLAG_0x3BC 0x3BC
+#define FLAG_0x3BD 0x3BD
+#define FLAG_0x3BE 0x3BE
+#define FLAG_0x3BF 0x3BF
+#define FLAG_0x3C0 0x3C0
+#define FLAG_0x3C1 0x3C1
+#define FLAG_0x3C2 0x3C2
+#define FLAG_0x3C3 0x3C3
+#define FLAG_0x3C4 0x3C4
+#define FLAG_0x3C5 0x3C5
+#define FLAG_0x3C6 0x3C6
+#define FLAG_0x3C7 0x3C7
+#define FLAG_0x3C8 0x3C8
+#define FLAG_0x3C9 0x3C9
+#define FLAG_0x3CA 0x3CA
+#define FLAG_0x3CB 0x3CB
+#define FLAG_0x3CC 0x3CC
+#define FLAG_0x3CD 0x3CD
+#define FLAG_0x3CE 0x3CE
+#define FLAG_0x3CF 0x3CF
+#define FLAG_0x3D0 0x3D0
+#define FLAG_0x3D1 0x3D1
+#define FLAG_0x3D2 0x3D2
+#define FLAG_0x3D3 0x3D3
+#define FLAG_0x3D4 0x3D4
+#define FLAG_0x3D5 0x3D5
+#define FLAG_0x3D6 0x3D6
+#define FLAG_0x3D7 0x3D7
+#define FLAG_0x3D8 0x3D8
+#define FLAG_0x3D9 0x3D9
+#define FLAG_0x3DA 0x3DA
+#define FLAG_0x3DB 0x3DB
+#define FLAG_0x3DC 0x3DC
+#define FLAG_0x3DD 0x3DD
+#define FLAG_0x3DE 0x3DE
+#define FLAG_0x3DF 0x3DF
+#define FLAG_0x3E0 0x3E0
+#define FLAG_0x3E1 0x3E1
+#define FLAG_0x3E2 0x3E2
+#define FLAG_0x3E3 0x3E3
+#define FLAG_0x3E4 0x3E4
+#define FLAG_0x3E5 0x3E5
+#define FLAG_0x3E6 0x3E6
+#define FLAG_0x3E7 0x3E7
+#define FLAG_0x3E8 0x3E8
+#define FLAG_0x3E9 0x3E9
+#define FLAG_0x3EA 0x3EA
+#define FLAG_0x3EB 0x3EB
+#define FLAG_0x3EC 0x3EC
+#define FLAG_0x3ED 0x3ED
+#define FLAG_0x3EE 0x3EE
+#define FLAG_0x3EF 0x3EF
+#define FLAG_0x3F0 0x3F0
+#define FLAG_0x3F1 0x3F1
+#define FLAG_0x3F2 0x3F2
+#define FLAG_0x3F3 0x3F3
+#define FLAG_0x3F4 0x3F4
+#define FLAG_0x3F5 0x3F5
+#define FLAG_0x3F6 0x3F6
+#define FLAG_0x3F7 0x3F7
+#define FLAG_0x3F8 0x3F8
+#define FLAG_0x3F9 0x3F9
+#define FLAG_0x3FA 0x3FA
+#define FLAG_0x3FB 0x3FB
+#define FLAG_0x3FC 0x3FC
+#define FLAG_0x3FD 0x3FD
+#define FLAG_0x3FE 0x3FE
+#define FLAG_0x3FF 0x3FF
+#define FLAG_0x400 0x400
+#define FLAG_0x401 0x401
+#define FLAG_0x402 0x402
+#define FLAG_0x403 0x403
+#define FLAG_0x404 0x404
+#define FLAG_0x405 0x405
+#define FLAG_0x406 0x406
+#define FLAG_0x407 0x407
+#define FLAG_0x408 0x408
+#define FLAG_0x409 0x409
+#define FLAG_0x40A 0x40A
+#define FLAG_0x40B 0x40B
+#define FLAG_0x40C 0x40C
+#define FLAG_0x40D 0x40D
+#define FLAG_0x40E 0x40E
+#define FLAG_0x40F 0x40F
+#define FLAG_0x410 0x410
+#define FLAG_0x411 0x411
+#define FLAG_0x412 0x412
+#define FLAG_0x413 0x413
+#define FLAG_0x414 0x414
+#define FLAG_0x415 0x415
+#define FLAG_0x416 0x416
+#define FLAG_0x417 0x417
+#define FLAG_0x418 0x418
+#define FLAG_0x419 0x419
+#define FLAG_0x41A 0x41A
+#define FLAG_0x41B 0x41B
+#define FLAG_0x41C 0x41C
+#define FLAG_0x41D 0x41D
+#define FLAG_0x41E 0x41E
+#define FLAG_0x41F 0x41F
+#define FLAG_0x420 0x420
+#define FLAG_0x421 0x421
+#define FLAG_0x422 0x422
+#define FLAG_0x423 0x423
+#define FLAG_0x424 0x424
+#define FLAG_0x425 0x425
+#define FLAG_0x426 0x426
+#define FLAG_0x427 0x427
+#define FLAG_0x428 0x428
+#define FLAG_0x429 0x429
+#define FLAG_0x42A 0x42A
+#define FLAG_0x42B 0x42B
+#define FLAG_0x42C 0x42C
+#define FLAG_0x42D 0x42D
+#define FLAG_0x42E 0x42E
+#define FLAG_0x42F 0x42F
+#define FLAG_0x430 0x430
+#define FLAG_0x431 0x431
+#define FLAG_0x432 0x432
+#define FLAG_0x433 0x433
+#define FLAG_0x434 0x434
+#define FLAG_0x435 0x435
+#define FLAG_0x436 0x436
+#define FLAG_0x437 0x437
+#define FLAG_0x438 0x438
+#define FLAG_0x439 0x439
+#define FLAG_0x43A 0x43A
+#define FLAG_0x43B 0x43B
+#define FLAG_0x43C 0x43C
+#define FLAG_0x43D 0x43D
+#define FLAG_0x43E 0x43E
+#define FLAG_0x43F 0x43F
+#define FLAG_0x440 0x440
+#define FLAG_0x441 0x441
+#define FLAG_0x442 0x442
+#define FLAG_0x443 0x443
+#define FLAG_0x444 0x444
+#define FLAG_0x445 0x445
+#define FLAG_0x446 0x446
+#define FLAG_0x447 0x447
+#define FLAG_0x448 0x448
+#define FLAG_0x449 0x449
+#define FLAG_0x44A 0x44A
+#define FLAG_0x44B 0x44B
+#define FLAG_0x44C 0x44C
+#define FLAG_0x44D 0x44D
+#define FLAG_0x44E 0x44E
+#define FLAG_0x44F 0x44F
+#define FLAG_0x450 0x450
+#define FLAG_0x451 0x451
+#define FLAG_0x452 0x452
+#define FLAG_0x453 0x453
+#define FLAG_0x454 0x454
+#define FLAG_0x455 0x455
+#define FLAG_0x456 0x456
+#define FLAG_0x457 0x457
+#define FLAG_0x458 0x458
+#define FLAG_0x459 0x459
+#define FLAG_0x45A 0x45A
+#define FLAG_0x45B 0x45B
+#define FLAG_0x45C 0x45C
+#define FLAG_0x45D 0x45D
+#define FLAG_0x45E 0x45E
+#define FLAG_0x45F 0x45F
+#define FLAG_0x460 0x460
+#define FLAG_0x461 0x461
+#define FLAG_0x462 0x462
+#define FLAG_0x463 0x463
+#define FLAG_0x464 0x464
+#define FLAG_0x465 0x465
+#define FLAG_0x466 0x466
+#define FLAG_0x467 0x467
+#define FLAG_0x468 0x468
+#define FLAG_0x469 0x469
+#define FLAG_0x46A 0x46A
+#define FLAG_0x46B 0x46B
+#define FLAG_0x46C 0x46C
+#define FLAG_0x46D 0x46D
+#define FLAG_0x46E 0x46E
+#define FLAG_0x46F 0x46F
+#define FLAG_0x470 0x470
+#define FLAG_0x471 0x471
+#define FLAG_0x472 0x472
+#define FLAG_0x473 0x473
+#define FLAG_0x474 0x474
+#define FLAG_0x475 0x475
+#define FLAG_0x476 0x476
+#define FLAG_0x477 0x477
+#define FLAG_0x478 0x478
+#define FLAG_0x479 0x479
+#define FLAG_0x47A 0x47A
+#define FLAG_0x47B 0x47B
+#define FLAG_0x47C 0x47C
+#define FLAG_0x47D 0x47D
+#define FLAG_0x47E 0x47E
+#define FLAG_0x47F 0x47F
+#define FLAG_0x480 0x480
+#define FLAG_0x481 0x481
+#define FLAG_0x482 0x482
+#define FLAG_0x483 0x483
+#define FLAG_0x484 0x484
+#define FLAG_0x485 0x485
+#define FLAG_0x486 0x486
+#define FLAG_0x487 0x487
+#define FLAG_0x488 0x488
+#define FLAG_0x489 0x489
+#define FLAG_0x48A 0x48A
+#define FLAG_0x48B 0x48B
+#define FLAG_0x48C 0x48C
+#define FLAG_0x48D 0x48D
+#define FLAG_0x48E 0x48E
+#define FLAG_0x48F 0x48F
+#define FLAG_0x490 0x490
+#define FLAG_0x491 0x491
+#define FLAG_0x492 0x492
+#define FLAG_0x493 0x493
+#define FLAG_0x494 0x494
+#define FLAG_0x495 0x495
+#define FLAG_0x496 0x496
+#define FLAG_0x497 0x497
+#define FLAG_0x498 0x498
+#define FLAG_0x499 0x499
+#define FLAG_0x49A 0x49A
+#define FLAG_0x49B 0x49B
+#define FLAG_0x49C 0x49C
+#define FLAG_0x49D 0x49D
+#define FLAG_0x49E 0x49E
+#define FLAG_0x49F 0x49F
+#define FLAG_0x4A0 0x4A0
+#define FLAG_0x4A1 0x4A1
+#define FLAG_0x4A2 0x4A2
+#define FLAG_0x4A3 0x4A3
+#define FLAG_0x4A4 0x4A4
+#define FLAG_0x4A5 0x4A5
+#define FLAG_0x4A6 0x4A6
+#define FLAG_0x4A7 0x4A7
+#define FLAG_0x4A8 0x4A8
+#define FLAG_0x4A9 0x4A9
+#define FLAG_0x4AA 0x4AA
+#define FLAG_0x4AB 0x4AB
+#define FLAG_0x4AC 0x4AC
+#define FLAG_0x4AD 0x4AD
+#define FLAG_0x4AE 0x4AE
+#define FLAG_0x4AF 0x4AF
+#define FLAG_0x4B0 0x4B0
+#define FLAG_0x4B1 0x4B1
+#define FLAG_0x4B2 0x4B2
+#define FLAG_0x4B3 0x4B3
+#define FLAG_0x4B4 0x4B4
+#define FLAG_0x4B5 0x4B5
+#define FLAG_0x4B6 0x4B6
+#define FLAG_0x4B7 0x4B7
+#define FLAG_0x4B8 0x4B8
+#define FLAG_0x4B9 0x4B9
+#define FLAG_0x4BA 0x4BA
+#define FLAG_0x4BB 0x4BB
+#define FLAG_0x4BC 0x4BC
+#define FLAG_0x4BD 0x4BD
+#define FLAG_0x4BE 0x4BE
+#define FLAG_0x4BF 0x4BF
+#define FLAG_0x4C0 0x4C0
+#define FLAG_0x4C1 0x4C1
+#define FLAG_0x4C2 0x4C2
+#define FLAG_0x4C3 0x4C3
+#define FLAG_0x4C4 0x4C4
+#define FLAG_0x4C5 0x4C5
+#define FLAG_0x4C6 0x4C6
+#define FLAG_0x4C7 0x4C7
+#define FLAG_0x4C8 0x4C8
+#define FLAG_0x4C9 0x4C9
+#define FLAG_0x4CA 0x4CA
+#define FLAG_0x4CB 0x4CB
+#define FLAG_0x4CC 0x4CC
+#define FLAG_0x4CD 0x4CD
+#define FLAG_0x4CE 0x4CE
+#define FLAG_0x4CF 0x4CF
+#define FLAG_0x4D0 0x4D0
+#define FLAG_0x4D1 0x4D1
+#define FLAG_0x4D2 0x4D2
+#define FLAG_0x4D3 0x4D3
+#define FLAG_0x4D4 0x4D4
+#define FLAG_0x4D5 0x4D5
+#define FLAG_0x4D6 0x4D6
+#define FLAG_0x4D7 0x4D7
+#define FLAG_0x4D8 0x4D8
+#define FLAG_0x4D9 0x4D9
+#define FLAG_0x4DA 0x4DA
+#define FLAG_0x4DB 0x4DB
+#define FLAG_0x4DC 0x4DC
+#define FLAG_0x4DD 0x4DD
+#define FLAG_0x4DE 0x4DE
+#define FLAG_0x4DF 0x4DF
+#define FLAG_0x4E0 0x4E0
+#define FLAG_0x4E1 0x4E1
+#define FLAG_0x4E2 0x4E2
+#define FLAG_0x4E3 0x4E3
+#define FLAG_0x4E4 0x4E4
+#define FLAG_0x4E5 0x4E5
+#define FLAG_0x4E6 0x4E6
+#define FLAG_0x4E7 0x4E7
+#define FLAG_0x4E8 0x4E8
+#define FLAG_0x4E9 0x4E9
+#define FLAG_0x4EA 0x4EA
+#define FLAG_0x4EB 0x4EB
+#define FLAG_0x4EC 0x4EC
+#define FLAG_0x4ED 0x4ED
+#define FLAG_0x4EE 0x4EE
+#define FLAG_0x4EF 0x4EF
+#define FLAG_0x4F0 0x4F0
+#define FLAG_0x4F1 0x4F1
+#define FLAG_0x4F2 0x4F2
+#define FLAG_0x4F3 0x4F3
+#define FLAG_0x4F4 0x4F4
+#define FLAG_0x4F5 0x4F5
+#define FLAG_0x4F6 0x4F6
+#define FLAG_0x4F7 0x4F7
+#define FLAG_0x4F8 0x4F8
+#define FLAG_0x4F9 0x4F9
+#define FLAG_0x4FA 0x4FA
+#define FLAG_0x4FB 0x4FB
+#define FLAG_0x4FC 0x4FC
+#define FLAG_0x4FD 0x4FD
+#define FLAG_0x4FE 0x4FE
+#define FLAG_0x4FF 0x4FF
#define FLAG_TRAINER_FLAG_START 0x500
@@ -12,6 +1288,7 @@
// SYSTEM FLAGS
+// 0x860
#define FLAG_SYS_POKEMON_GET (CODE_FLAGS + 0)
#define FLAG_SYS_POKEDEX_GET (CODE_FLAGS + 1)
#define FLAG_SYS_POKENAV_GET (CODE_FLAGS + 2)
@@ -48,7 +1325,15 @@
#define FLAG_VISITED_SOOTOPOLIS_CITY (CODE_FLAGS + 0x1D)
#define FLAG_VISITED_EVER_GRANDE_CITY (CODE_FLAGS + 0x1E)
-#define FLAG_SYS_UNKNOWN_880 (CODE_FLAGS + 0x20)
+#define FLAG_0x87F (CODE_FLAGS + 0x1F)
+#define FLAG_0x880 (CODE_FLAGS + 0x20)
+#define FLAG_0x881 (CODE_FLAGS + 0x21)
+#define FLAG_0x882 (CODE_FLAGS + 0x22)
+#define FLAG_0x883 (CODE_FLAGS + 0x23)
+#define FLAG_0x884 (CODE_FLAGS + 0x24)
+#define FLAG_0x885 (CODE_FLAGS + 0x25)
+#define FLAG_0x886 (CODE_FLAGS + 0x26)
+#define FLAG_0x887 (CODE_FLAGS + 0x27)
#define FLAG_SYS_USE_FLASH (CODE_FLAGS + 0x28)
#define FLAG_SYS_USE_STRENGTH (CODE_FLAGS + 0x29)
@@ -57,6 +1342,9 @@
#define FLAG_SYS_SAFARI_MODE (CODE_FLAGS + 0x2C)
#define FLAG_SYS_CRUISE_MODE (CODE_FLAGS + 0x2D)
+#define FLAG_0x88E (CODE_FLAGS + 0x2E)
+#define FLAG_0x88F (CODE_FLAGS + 0x2F)
+
#define FLAG_SYS_TV_HOME (CODE_FLAGS + 0x30)
#define FLAG_SYS_TV_WATCH (CODE_FLAGS + 0x31)
#define FLAG_SYS_TV_START (CODE_FLAGS + 0x32)
@@ -70,8 +1358,21 @@
#define FLAG_SYS_SHOAL_TIDE (CODE_FLAGS + 0x3A)
#define FLAG_SYS_RIBBON_GET (CODE_FLAGS + 0x3B)
+#define FLAG_0x89C (CODE_FLAGS + 0x3C)
+#define FLAG_0x89D (CODE_FLAGS + 0x3D)
+#define FLAG_0x89E (CODE_FLAGS + 0x3E)
+#define FLAG_0x89F (CODE_FLAGS + 0x3F)
+#define FLAG_0x8A0 (CODE_FLAGS + 0x40)
+#define FLAG_0x8A1 (CODE_FLAGS + 0x41)
+#define FLAG_0x8A2 (CODE_FLAGS + 0x42)
+#define FLAG_0x8A3 (CODE_FLAGS + 0x43)
+#define FLAG_0x8A4 (CODE_FLAGS + 0x44)
+#define FLAG_0x8A5 (CODE_FLAGS + 0x45)
+#define FLAG_0x8A6 (CODE_FLAGS + 0x46)
+#define FLAG_0x8A7 (CODE_FLAGS + 0x47)
#define FLAG_UNLOCK_BATTLE_FRONTIER (CODE_FLAGS + 0x48)
#define FLAG_UNLOCK_SOUTHERN_ISLAND (CODE_FLAGS + 0x49)
+#define FLAG_0x8AA (CODE_FLAGS + 0x4A)
#define FLAG_SYS_PC_LANETTE (CODE_FLAGS + 0x4B)
#define FLAG_SYS_MYSTERY_EVENT_ENABLE (CODE_FLAGS + 0x4C)
@@ -85,13 +1386,26 @@
#define FLAG_SYS_POKEMON_LEAGUE_FLY (CODE_FLAGS + 0x54)
+#define FLAG_0x8B5 (CODE_FLAGS + 0x55)
+#define FLAG_0x8B6 (CODE_FLAGS + 0x56)
+#define FLAG_0x8B7 (CODE_FLAGS + 0x57)
+#define FLAG_0x8B8 (CODE_FLAGS + 0x58)
+#define FLAG_0x8B9 (CODE_FLAGS + 0x59)
+#define FLAG_0x8BA (CODE_FLAGS + 0x5A)
+#define FLAG_0x8BB (CODE_FLAGS + 0x5B)
+#define FLAG_0x8BC (CODE_FLAGS + 0x5C)
+
#define FLAG_SYS_TV_LATI (CODE_FLAGS + 0x5D)
+#define FLAG_0x8BE (CODE_FLAGS + 0x5E)
+
#define FLAG_SYS_SHOAL_ITEM (CODE_FLAGS + 0x5F)
#define FLAG_SYS_B_DASH (CODE_FLAGS + 0x60) // got Running Shoes
#define FLAG_SYS_CTRL_OBJ_DELETE (CODE_FLAGS + 0x61)
#define FLAG_SYS_RESET_RTC_ENABLE (CODE_FLAGS + 0x62)
+#define FLAG_0x8C3 (CODE_FLAGS + 0x63)
+
#define FLAG_SYS_TOWER_SILVER (CODE_FLAGS + 0x64)
#define FLAG_SYS_TOWER_GOLD (CODE_FLAGS + 0x65)
#define FLAG_SYS_DOME_SILVER (CODE_FLAGS + 0x66)
@@ -108,12 +1422,157 @@
#define FLAG_SYS_PYRAMID_GOLD (CODE_FLAGS + 0x71)
#define FLAG_SYS_FRONTIER_PASS (CODE_FLAGS + 0x72)
+#define FLAG_0x8D3 (CODE_FLAGS + 0x73)
+#define FLAG_0x8D4 (CODE_FLAGS + 0x74)
+#define FLAG_0x8D5 (CODE_FLAGS + 0x75)
+#define FLAG_0x8D6 (CODE_FLAGS + 0x76)
+
#define FLAG_SYS_STORAGE_UNKNOWN_FLAG (CODE_FLAGS + 0x77)
+#define FLAG_0x8D8 (CODE_FLAGS + 0x78)
+#define FLAG_0x8D9 (CODE_FLAGS + 0x79)
+#define FLAG_0x8DA (CODE_FLAGS + 0x7A)
+
#define FLAG_SYS_MYSTERY_GIFT_ENABLE (CODE_FLAGS + 0x7B)
-// SPECIAL FLAGS (unknown purpose)
+#define FLAG_0x8DC (CODE_FLAGS + 0x7C)
+#define FLAG_0x8DD (CODE_FLAGS + 0x7D)
+#define FLAG_0x8DE (CODE_FLAGS + 0x7E)
+#define FLAG_0x8DF (CODE_FLAGS + 0x7F)
+#define FLAG_0x8E0 (CODE_FLAGS + 0x80)
+#define FLAG_0x8E1 (CODE_FLAGS + 0x81)
+#define FLAG_0x8E2 (CODE_FLAGS + 0x82)
+#define FLAG_0x8E3 (CODE_FLAGS + 0x83)
+#define FLAG_0x8E4 (CODE_FLAGS + 0x84)
+#define FLAG_0x8E5 (CODE_FLAGS + 0x85)
+#define FLAG_0x8E6 (CODE_FLAGS + 0x86)
+#define FLAG_0x8E7 (CODE_FLAGS + 0x87)
+#define FLAG_0x8E8 (CODE_FLAGS + 0x88)
+#define FLAG_0x8E9 (CODE_FLAGS + 0x89)
+#define FLAG_0x8EA (CODE_FLAGS + 0x8A)
+#define FLAG_0x8EB (CODE_FLAGS + 0x8B)
+#define FLAG_0x8EC (CODE_FLAGS + 0x8C)
+#define FLAG_0x8ED (CODE_FLAGS + 0x8D)
+#define FLAG_0x8EE (CODE_FLAGS + 0x8E)
+#define FLAG_0x8EF (CODE_FLAGS + 0x8F)
+#define FLAG_0x8F0 (CODE_FLAGS + 0x90)
+#define FLAG_0x8F1 (CODE_FLAGS + 0x91)
+#define FLAG_0x8F2 (CODE_FLAGS + 0x92)
+#define FLAG_0x8F3 (CODE_FLAGS + 0x93)
+#define FLAG_0x8F4 (CODE_FLAGS + 0x94)
+#define FLAG_0x8F5 (CODE_FLAGS + 0x95)
+#define FLAG_0x8F6 (CODE_FLAGS + 0x96)
+#define FLAG_0x8F7 (CODE_FLAGS + 0x97)
+#define FLAG_0x8F8 (CODE_FLAGS + 0x98)
+#define FLAG_0x8F9 (CODE_FLAGS + 0x99)
+#define FLAG_0x8FA (CODE_FLAGS + 0x9A)
+#define FLAG_0x8FB (CODE_FLAGS + 0x9B)
+#define FLAG_0x8FC (CODE_FLAGS + 0x9C)
+#define FLAG_0x8FD (CODE_FLAGS + 0x9D)
+#define FLAG_0x8FE (CODE_FLAGS + 0x9E)
+#define FLAG_0x8FF (CODE_FLAGS + 0x9F)
+#define FLAG_0x900 (CODE_FLAGS + 0xA0)
+#define FLAG_0x901 (CODE_FLAGS + 0xA1)
+#define FLAG_0x902 (CODE_FLAGS + 0xA2)
+#define FLAG_0x903 (CODE_FLAGS + 0xA3)
+#define FLAG_0x904 (CODE_FLAGS + 0xA4)
+#define FLAG_0x905 (CODE_FLAGS + 0xA5)
+#define FLAG_0x906 (CODE_FLAGS + 0xA6)
+#define FLAG_0x907 (CODE_FLAGS + 0xA7)
+#define FLAG_0x908 (CODE_FLAGS + 0xA8)
+#define FLAG_0x909 (CODE_FLAGS + 0xA9)
+#define FLAG_0x90A (CODE_FLAGS + 0xAA)
+#define FLAG_0x90B (CODE_FLAGS + 0xAB)
+#define FLAG_0x90C (CODE_FLAGS + 0xAC)
+#define FLAG_0x90D (CODE_FLAGS + 0xAD)
+#define FLAG_0x90E (CODE_FLAGS + 0xAE)
+#define FLAG_0x90F (CODE_FLAGS + 0xAF)
+#define FLAG_0x910 (CODE_FLAGS + 0xB0)
+#define FLAG_0x911 (CODE_FLAGS + 0xB1)
+#define FLAG_0x912 (CODE_FLAGS + 0xB2)
+#define FLAG_0x913 (CODE_FLAGS + 0xB3)
+#define FLAG_0x914 (CODE_FLAGS + 0xB4)
+#define FLAG_0x915 (CODE_FLAGS + 0xB5)
+#define FLAG_0x916 (CODE_FLAGS + 0xB6)
+#define FLAG_0x917 (CODE_FLAGS + 0xB7)
+#define FLAG_0x918 (CODE_FLAGS + 0xB8)
+#define FLAG_0x919 (CODE_FLAGS + 0xB9)
+#define FLAG_0x91A (CODE_FLAGS + 0xBA)
+#define FLAG_0x91B (CODE_FLAGS + 0xBB)
+#define FLAG_0x91C (CODE_FLAGS + 0xBC)
+#define FLAG_0x91D (CODE_FLAGS + 0xBD)
+#define FLAG_0x91E (CODE_FLAGS + 0xBE)
+#define FLAG_0x91F (CODE_FLAGS + 0xBF)
+#define FLAG_0x920 (CODE_FLAGS + 0xC0)
+#define FLAG_0x921 (CODE_FLAGS + 0xC1)
+#define FLAG_0x922 (CODE_FLAGS + 0xC2)
+#define FLAG_0x923 (CODE_FLAGS + 0xC3)
+#define FLAG_0x924 (CODE_FLAGS + 0xC4)
+#define FLAG_0x925 (CODE_FLAGS + 0xC5)
+#define FLAG_0x926 (CODE_FLAGS + 0xC6)
+#define FLAG_0x927 (CODE_FLAGS + 0xC7)
+#define FLAG_0x928 (CODE_FLAGS + 0xC8)
+#define FLAG_0x929 (CODE_FLAGS + 0xC9)
+#define FLAG_0x92A (CODE_FLAGS + 0xCA)
+#define FLAG_0x92B (CODE_FLAGS + 0xCB)
+#define FLAG_0x92C (CODE_FLAGS + 0xCC)
+#define FLAG_0x92D (CODE_FLAGS + 0xCD)
+#define FLAG_0x92E (CODE_FLAGS + 0xCE)
+#define FLAG_0x92F (CODE_FLAGS + 0xCF)
+#define FLAG_0x930 (CODE_FLAGS + 0xD0)
+#define FLAG_0x931 (CODE_FLAGS + 0xD1)
+#define FLAG_0x932 (CODE_FLAGS + 0xD2)
+#define FLAG_0x933 (CODE_FLAGS + 0xD3)
+#define FLAG_0x934 (CODE_FLAGS + 0xD4)
+#define FLAG_0x935 (CODE_FLAGS + 0xD5)
+#define FLAG_0x936 (CODE_FLAGS + 0xD6)
+#define FLAG_0x937 (CODE_FLAGS + 0xD7)
+#define FLAG_0x938 (CODE_FLAGS + 0xD8)
+#define FLAG_0x939 (CODE_FLAGS + 0xD9)
+#define FLAG_0x93A (CODE_FLAGS + 0xDA)
+#define FLAG_0x93B (CODE_FLAGS + 0xDB)
+#define FLAG_0x93C (CODE_FLAGS + 0xDC)
+#define FLAG_0x93D (CODE_FLAGS + 0xDD)
+#define FLAG_0x93E (CODE_FLAGS + 0xDE)
+#define FLAG_0x93F (CODE_FLAGS + 0xDF)
+#define FLAG_0x940 (CODE_FLAGS + 0xE0)
+#define FLAG_0x941 (CODE_FLAGS + 0xE1)
+#define FLAG_0x942 (CODE_FLAGS + 0xE2)
+#define FLAG_0x943 (CODE_FLAGS + 0xE3)
+#define FLAG_0x944 (CODE_FLAGS + 0xE4)
+#define FLAG_0x945 (CODE_FLAGS + 0xE5)
+#define FLAG_0x946 (CODE_FLAGS + 0xE6)
+#define FLAG_0x947 (CODE_FLAGS + 0xE7)
+#define FLAG_0x948 (CODE_FLAGS + 0xE8)
+#define FLAG_0x949 (CODE_FLAGS + 0xE9)
+#define FLAG_0x94A (CODE_FLAGS + 0xEA)
+#define FLAG_0x94B (CODE_FLAGS + 0xEB)
+#define FLAG_0x94C (CODE_FLAGS + 0xEC)
+#define FLAG_0x94D (CODE_FLAGS + 0xED)
+#define FLAG_0x94E (CODE_FLAGS + 0xEE)
+#define FLAG_0x94F (CODE_FLAGS + 0xEF)
+#define FLAG_0x950 (CODE_FLAGS + 0xF0)
+#define FLAG_0x951 (CODE_FLAGS + 0xF1)
+#define FLAG_0x952 (CODE_FLAGS + 0xF2)
+#define FLAG_0x953 (CODE_FLAGS + 0xF3)
+#define FLAG_0x954 (CODE_FLAGS + 0xF4)
+#define FLAG_0x955 (CODE_FLAGS + 0xF5)
+#define FLAG_0x956 (CODE_FLAGS + 0xF6)
+#define FLAG_0x957 (CODE_FLAGS + 0xF7)
+#define FLAG_0x958 (CODE_FLAGS + 0xF8)
+#define FLAG_0x959 (CODE_FLAGS + 0xF9)
+#define FLAG_0x95A (CODE_FLAGS + 0xFA)
+#define FLAG_0x95B (CODE_FLAGS + 0xFB)
+#define FLAG_0x95C (CODE_FLAGS + 0xFC)
+#define FLAG_0x95D (CODE_FLAGS + 0xFD)
+#define FLAG_0x95E (CODE_FLAGS + 0xFE)
+#define FLAG_0x95F (CODE_FLAGS + 0xFF)
-#define SPECIAL_FLAG_1 0x4001
+// SPECIAL FLAGS (unknown purpose)
+#define FLAG_SPECIAL_FLAG_0x4000 0x4000
+#define FLAG_SPECIAL_FLAG_0x4001 0x4001
+#define FLAG_SPECIAL_FLAG_0x4002 0x4002
+#define FLAG_SPECIAL_FLAG_0x4003 0x4003
+#define FLAG_SPECIAL_FLAG_0x4004 0x4004
#endif // GUARD_CONSTANTS_FLAGS_H
diff --git a/include/constants/map_objects.h b/include/constants/map_objects.h
index 6a1c9e11a..d5b983005 100644
--- a/include/constants/map_objects.h
+++ b/include/constants/map_objects.h
@@ -1,232 +1,263 @@
#ifndef GUARD_CONSTANTS_MAP_OBJECTS_H
#define GUARD_CONSTANTS_MAP_OBJECTS_H
-#define MAP_OBJ_GFX_BRENDAN_NORMAL 0
-#define MAP_OBJ_GFX_BRENDAN_MACH_BIKE 1
-#define MAP_OBJ_GFX_BRENDAN_SURFING 2
-#define MAP_OBJ_GFX_BRENDAN_FIELD_MOVE 3
-#define MAP_OBJ_GFX_QUINTY_PLUMP 4
-#define MAP_OBJ_GFX_LITTLE_BOY_1 5
-#define MAP_OBJ_GFX_LITTLE_GIRL_1 6
-#define MAP_OBJ_GFX_BOY_1 7
-#define MAP_OBJ_GFX_GIRL_1 8
-#define MAP_OBJ_GFX_BOY_2 9
-#define MAP_OBJ_GFX_GIRL_2 10
-#define MAP_OBJ_GFX_LITTLE_BOY_2 11
-#define MAP_OBJ_GFX_LITTLE_GIRL_2 12
-#define MAP_OBJ_GFX_BOY_3 13
-#define MAP_OBJ_GFX_GIRL_3 14
-#define MAP_OBJ_GFX_BOY_4 15
-#define MAP_OBJ_GFX_WOMAN_1 16
-#define MAP_OBJ_GFX_FAT_MAN 17
-#define MAP_OBJ_GFX_WOMAN_2 18
-#define MAP_OBJ_GFX_MAN_1 19
-#define MAP_OBJ_GFX_WOMAN_3 20
-#define MAP_OBJ_GFX_OLD_MAN_1 21
-#define MAP_OBJ_GFX_OLD_WOMAN_1 22
-#define MAP_OBJ_GFX_MAN_2 23
-#define MAP_OBJ_GFX_WOMAN_4 24
-#define MAP_OBJ_GFX_MAN_3 25
-#define MAP_OBJ_GFX_WOMAN_5 26
-#define MAP_OBJ_GFX_COOK 27
-#define MAP_OBJ_GFX_WOMAN_6 28
-#define MAP_OBJ_GFX_OLD_MAN_2 29
-#define MAP_OBJ_GFX_OLD_WOMAN_2 30
-#define MAP_OBJ_GFX_CAMPER 31
-#define MAP_OBJ_GFX_PICNICKER 32
-#define MAP_OBJ_GFX_MAN_4 33
-#define MAP_OBJ_GFX_WOMAN_7 34
-#define MAP_OBJ_GFX_YOUNGSTER 35
-#define MAP_OBJ_GFX_BUG_CATCHER 36
-#define MAP_OBJ_GFX_PSYCHIC_M 37
-#define MAP_OBJ_GFX_SCHOOL_KID_M 38
-#define MAP_OBJ_GFX_MANIAC 39
-#define MAP_OBJ_GFX_HEX_MANIAC 40
-#define MAP_OBJ_GFX_WOMAN_8 41
-#define MAP_OBJ_GFX_SWIMMER_M 42
-#define MAP_OBJ_GFX_SWIMMER_F 43
-#define MAP_OBJ_GFX_BLACK_BELT 44
-#define MAP_OBJ_GFX_BEAUTY 45
-#define MAP_OBJ_GFX_SCIENTIST_1 46
-#define MAP_OBJ_GFX_LASS 47
-#define MAP_OBJ_GFX_GENTLEMAN 48
-#define MAP_OBJ_GFX_SAILOR 49
-#define MAP_OBJ_GFX_FISHERMAN 50
-#define MAP_OBJ_GFX_RUNNING_TRIATHLETE_M 51
-#define MAP_OBJ_GFX_RUNNING_TRIATHLETE_F 52
-#define MAP_OBJ_GFX_TUBER_F 53
-#define MAP_OBJ_GFX_TUBER_M 54
-#define MAP_OBJ_GFX_HIKER 55
-#define MAP_OBJ_GFX_CYCLING_TRIATHLETE_M 56
-#define MAP_OBJ_GFX_CYCLING_TRIATHLETE_F 57
-#define MAP_OBJ_GFX_NURSE 58
-#define MAP_OBJ_GFX_ITEM_BALL 59
-#define MAP_OBJ_GFX_BERRY_TREE 60
-#define MAP_OBJ_GFX_BERRY_TREE_EARLY_STAGES 61
-#define MAP_OBJ_GFX_BERRY_TREE_LATE_STAGES 62
-#define MAP_OBJ_GFX_BRENDAN_ACRO_BIKE 63
-#define MAP_OBJ_GFX_PROF_BIRCH 64
-#define MAP_OBJ_GFX_MAN_5 65
-#define MAP_OBJ_GFX_MAN_6 66
-#define MAP_OBJ_GFX_REPORTER_M 67
-#define MAP_OBJ_GFX_REPORTER_F 68
-#define MAP_OBJ_GFX_BARD 69
-#define MAP_OBJ_GFX_HIPSTER 70
-#define MAP_OBJ_GFX_TRADER 71
-#define MAP_OBJ_GFX_STORYTELLER 72
-#define MAP_OBJ_GFX_GIDDY 73
-#define MAP_OBJ_GFX_UNUSED_MAUVILLE_OLD_MAN_1 74
-#define MAP_OBJ_GFX_UNUSED_MAUVILLE_OLD_MAN_2 75
-#define MAP_OBJ_GFX_UNUSED_NATU_DOLL 76
-#define MAP_OBJ_GFX_UNUSED_MAGNEMITE_DOLL 77
-#define MAP_OBJ_GFX_UNUSED_SQUIRTLE_DOLL 78
-#define MAP_OBJ_GFX_UNUSED_WOOPER_DOLL 79
-#define MAP_OBJ_GFX_UNUSED_PIKACHU_DOLL 80
-#define MAP_OBJ_GFX_UNUSED_PORYGON2_DOLL 81
-#define MAP_OBJ_GFX_CUTTABLE_TREE 82
-#define MAP_OBJ_GFX_MART_EMPLOYEE 83
-#define MAP_OBJ_GFX_ROOFTOP_SALE_WOMAN 84
-#define MAP_OBJ_GFX_TEALA 85
-#define MAP_OBJ_GFX_BREAKABLE_ROCK 86
-#define MAP_OBJ_GFX_PUSHABLE_BOULDER 87
-#define MAP_OBJ_GFX_MR_BRINEYS_BOAT 88
-#define MAP_OBJ_GFX_MAY_NORMAL 89
-#define MAP_OBJ_GFX_MAY_MACH_BIKE 90
-#define MAP_OBJ_GFX_MAY_ACRO_BIKE 91
-#define MAP_OBJ_GFX_MAY_SURFING 92
-#define MAP_OBJ_GFX_MAY_FIELD_MOVE 93
-#define MAP_OBJ_GFX_TRUCK 94
-#define MAP_OBJ_GFX_MACHOKE_CARRYING_BOX 95
-#define MAP_OBJ_GFX_MACHOKE_FACING_AWAY 96
-#define MAP_OBJ_GFX_BIRCHS_BAG 97
-#define MAP_OBJ_GFX_POOCHYENA 98
-#define MAP_OBJ_GFX_ARTIST 99
-#define MAP_OBJ_GFX_RIVAL_BRENDAN_NORMAL 100
-#define MAP_OBJ_GFX_RIVAL_BRENDAN_MACH_BIKE 101
-#define MAP_OBJ_GFX_RIVAL_BRENDAN_ACRO_BIKE 102
-#define MAP_OBJ_GFX_RIVAL_BRENDAN_SURFING 103
-#define MAP_OBJ_GFX_RIVAL_BRENDAN_FIELD_MOVE 104
-#define MAP_OBJ_GFX_RIVAL_MAY_NORMAL 105
-#define MAP_OBJ_GFX_RIVAL_MAY_MACH_BIKE 106
-#define MAP_OBJ_GFX_RIVAL_MAY_ACRO_BIKE 107
-#define MAP_OBJ_GFX_RIVAL_MAY_SURFING 108
-#define MAP_OBJ_GFX_RIVAL_MAY_FIELD_MOVE 109
-#define MAP_OBJ_GFX_CAMERAMAN 110
-#define MAP_OBJ_GFX_BRENDAN_UNDERWATER 111
-#define MAP_OBJ_GFX_MAY_UNDERWATER 112
-#define MAP_OBJ_GFX_MOVING_BOX 113
-#define MAP_OBJ_GFX_CABLE_CAR 114
-#define MAP_OBJ_GFX_SCIENTIST_2 115
-#define MAP_OBJ_GFX_MAN_7 116
-#define MAP_OBJ_GFX_AQUA_MEMBER_M 117
-#define MAP_OBJ_GFX_AQUA_MEMBER_F 118
-#define MAP_OBJ_GFX_MAGMA_MEMBER_M 119
-#define MAP_OBJ_GFX_MAGMA_MEMBER_F 120
-#define MAP_OBJ_GFX_SIDNEY 121
-#define MAP_OBJ_GFX_PHOEBE 122
-#define MAP_OBJ_GFX_GLACIA 123
-#define MAP_OBJ_GFX_DRAKE 124
-#define MAP_OBJ_GFX_ROXANNE 125
-#define MAP_OBJ_GFX_BRAWLY 126
-#define MAP_OBJ_GFX_WATTSON 127
-#define MAP_OBJ_GFX_FLANNERY 128
-#define MAP_OBJ_GFX_NORMAN 129
-#define MAP_OBJ_GFX_WINONA 130
-#define MAP_OBJ_GFX_LIZA 131
-#define MAP_OBJ_GFX_TATE 132
-#define MAP_OBJ_GFX_WALLACE 133
-#define MAP_OBJ_GFX_STEVEN 134
-#define MAP_OBJ_GFX_WALLY 135
-#define MAP_OBJ_GFX_LITTLE_BOY_3 136
-#define MAP_OBJ_GFX_BRENDAN_FISHING 137
-#define MAP_OBJ_GFX_MAY_FISHING 138
-#define MAP_OBJ_GFX_HOT_SPRINGS_OLD_WOMAN 139
-#define MAP_OBJ_GFX_SS_TIDAL 140
-#define MAP_OBJ_GFX_SUBMARINE_SHADOW 141
-#define MAP_OBJ_GFX_PICHU_DOLL 142
-#define MAP_OBJ_GFX_PIKACHU_DOLL 143
-#define MAP_OBJ_GFX_MARILL_DOLL 144
-#define MAP_OBJ_GFX_TOGEPI_DOLL 145
-#define MAP_OBJ_GFX_CYNDAQUIL_DOLL 146
-#define MAP_OBJ_GFX_CHIKORITA_DOLL 147
-#define MAP_OBJ_GFX_TOTODILE_DOLL 148
-#define MAP_OBJ_GFX_JIGGLYPUFF_DOLL 149
-#define MAP_OBJ_GFX_MEOWTH_DOLL 150
-#define MAP_OBJ_GFX_CLEFAIRY_DOLL 151
-#define MAP_OBJ_GFX_DITTO_DOLL 152
-#define MAP_OBJ_GFX_SMOOCHUM_DOLL 153
-#define MAP_OBJ_GFX_TREECKO_DOLL 154
-#define MAP_OBJ_GFX_TORCHIC_DOLL 155
-#define MAP_OBJ_GFX_MUDKIP_DOLL 156
-#define MAP_OBJ_GFX_DUSKULL_DOLL 157
-#define MAP_OBJ_GFX_WYNAUT_DOLL 158
-#define MAP_OBJ_GFX_BALTOY_DOLL 159
-#define MAP_OBJ_GFX_KECLEON_DOLL 160
-#define MAP_OBJ_GFX_AZURILL_DOLL 161
-#define MAP_OBJ_GFX_SKITTY_DOLL 162
-#define MAP_OBJ_GFX_SWABLU_DOLL 163
-#define MAP_OBJ_GFX_GULPIN_DOLL 164
-#define MAP_OBJ_GFX_LOTAD_DOLL 165
-#define MAP_OBJ_GFX_SEEDOT_DOLL 166
-#define MAP_OBJ_GFX_PIKA_CUSHION 167
-#define MAP_OBJ_GFX_ROUND_CUSHION 168
-#define MAP_OBJ_GFX_KISS_CUSHION 169
-#define MAP_OBJ_GFX_ZIGZAG_CUSHION 170
-#define MAP_OBJ_GFX_SPIN_CUSHION 171
-#define MAP_OBJ_GFX_DIAMOND_CUSHION 172
-#define MAP_OBJ_GFX_BALL_CUSHION 173
-#define MAP_OBJ_GFX_GRASS_CUSHION 174
-#define MAP_OBJ_GFX_FIRE_CUSHION 175
-#define MAP_OBJ_GFX_WATER_CUSHION 176
-#define MAP_OBJ_GFX_BIG_SNORLAX_DOLL 177
-#define MAP_OBJ_GFX_BIG_RHYDON_DOLL 178
-#define MAP_OBJ_GFX_BIG_LAPRAS_DOLL 179
-#define MAP_OBJ_GFX_BIG_VENUSAUR_DOLL 180
-#define MAP_OBJ_GFX_BIG_CHARIZARD_DOLL 181
-#define MAP_OBJ_GFX_BIG_BLASTOISE_DOLL 182
-#define MAP_OBJ_GFX_BIG_WAILMER_DOLL 183
-#define MAP_OBJ_GFX_BIG_REGIROCK_DOLL 184
-#define MAP_OBJ_GFX_BIG_REGICE_DOLL 185
-#define MAP_OBJ_GFX_BIG_REGISTEEL_DOLL 186
-#define MAP_OBJ_GFX_LATIAS 187
-#define MAP_OBJ_GFX_LATIOS 188
-#define MAP_OBJ_GFX_BOY_5 189
-#define MAP_OBJ_GFX_CONTEST_JUDGE 190
-#define MAP_OBJ_GFX_BRENDAN_WATERING 191
-#define MAP_OBJ_GFX_MAY_WATERING 192
-#define MAP_OBJ_GFX_BRENDAN_DECORATING 193
-#define MAP_OBJ_GFX_MAY_DECORATING 194
-#define MAP_OBJ_GFX_ARCHIE 195
-#define MAP_OBJ_GFX_MAXIE 196
-#define MAP_OBJ_GFX_KYOGRE_1 197
-#define MAP_OBJ_GFX_GROUDON_1 198
-#define MAP_OBJ_GFX_FOSSIL 199
-#define MAP_OBJ_GFX_REGIROCK 200
-#define MAP_OBJ_GFX_REGICE 201
-#define MAP_OBJ_GFX_REGISTEEL 202
-#define MAP_OBJ_GFX_SKITTY 203
-#define MAP_OBJ_GFX_KECLEON_1 204
-#define MAP_OBJ_GFX_KYOGRE_2 205
-#define MAP_OBJ_GFX_GROUDON_2 206
-#define MAP_OBJ_GFX_RAYQUAZA 207
-#define MAP_OBJ_GFX_ZIGZAGOON 208
-#define MAP_OBJ_GFX_PIKACHU 209
-#define MAP_OBJ_GFX_AZUMARILL 210
-#define MAP_OBJ_GFX_WINGULL 211
-#define MAP_OBJ_GFX_KECLEON_2 212
-#define MAP_OBJ_GFX_TUBER_M_SWIMMING 213
-#define MAP_OBJ_GFX_AZURILL 214
-#define MAP_OBJ_GFX_MOM 215
-#define MAP_OBJ_GFX_LINK_BRENDAN 216
-#define MAP_OBJ_GFX_LINK_MAY 217
+#define MAP_OBJ_GFX_BRENDAN_NORMAL 0
+#define MAP_OBJ_GFX_BRENDAN_MACH_BIKE 1
+#define MAP_OBJ_GFX_BRENDAN_SURFING 2
+#define MAP_OBJ_GFX_BRENDAN_FIELD_MOVE 3
+#define MAP_OBJ_GFX_QUINTY_PLUMP 4
+#define MAP_OBJ_GFX_LITTLE_BOY_1 5
+#define MAP_OBJ_GFX_LITTLE_GIRL_1 6
+#define MAP_OBJ_GFX_BOY_1 7
+#define MAP_OBJ_GFX_GIRL_1 8
+#define MAP_OBJ_GFX_BOY_2 9
+#define MAP_OBJ_GFX_GIRL_2 10
+#define MAP_OBJ_GFX_LITTLE_BOY_2 11
+#define MAP_OBJ_GFX_LITTLE_GIRL_2 12
+#define MAP_OBJ_GFX_BOY_3 13
+#define MAP_OBJ_GFX_GIRL_3 14
+#define MAP_OBJ_GFX_BOY_4 15
+#define MAP_OBJ_GFX_WOMAN_1 16
+#define MAP_OBJ_GFX_FAT_MAN 17
+#define MAP_OBJ_GFX_WOMAN_2 18
+#define MAP_OBJ_GFX_MAN_1 19
+#define MAP_OBJ_GFX_WOMAN_3 20
+#define MAP_OBJ_GFX_OLD_MAN_1 21
+#define MAP_OBJ_GFX_OLD_WOMAN_1 22
+#define MAP_OBJ_GFX_MAN_2 23
+#define MAP_OBJ_GFX_WOMAN_4 24
+#define MAP_OBJ_GFX_MAN_3 25
+#define MAP_OBJ_GFX_WOMAN_5 26
+#define MAP_OBJ_GFX_COOK 27
+#define MAP_OBJ_GFX_WOMAN_6 28
+#define MAP_OBJ_GFX_OLD_MAN_2 29
+#define MAP_OBJ_GFX_OLD_WOMAN_2 30
+#define MAP_OBJ_GFX_CAMPER 31
+#define MAP_OBJ_GFX_PICNICKER 32
+#define MAP_OBJ_GFX_MAN_4 33
+#define MAP_OBJ_GFX_WOMAN_7 34
+#define MAP_OBJ_GFX_YOUNGSTER 35
+#define MAP_OBJ_GFX_BUG_CATCHER 36
+#define MAP_OBJ_GFX_PSYCHIC_M 37
+#define MAP_OBJ_GFX_SCHOOL_KID_M 38
+#define MAP_OBJ_GFX_MANIAC 39
+#define MAP_OBJ_GFX_HEX_MANIAC 40
+#define MAP_OBJ_GFX_RAYQUAZA_1 41
+#define MAP_OBJ_GFX_SWIMMER_M 42
+#define MAP_OBJ_GFX_SWIMMER_F 43
+#define MAP_OBJ_GFX_BLACK_BELT 44
+#define MAP_OBJ_GFX_BEAUTY 45
+#define MAP_OBJ_GFX_SCIENTIST_1 46
+#define MAP_OBJ_GFX_LASS 47
+#define MAP_OBJ_GFX_GENTLEMAN 48
+#define MAP_OBJ_GFX_SAILOR 49
+#define MAP_OBJ_GFX_FISHERMAN 50
+#define MAP_OBJ_GFX_RUNNING_TRIATHLETE_M 51
+#define MAP_OBJ_GFX_RUNNING_TRIATHLETE_F 52
+#define MAP_OBJ_GFX_TUBER_F 53
+#define MAP_OBJ_GFX_TUBER_M 54
+#define MAP_OBJ_GFX_HIKER 55
+#define MAP_OBJ_GFX_CYCLING_TRIATHLETE_M 56
+#define MAP_OBJ_GFX_CYCLING_TRIATHLETE_F 57
+#define MAP_OBJ_GFX_NURSE 58
+#define MAP_OBJ_GFX_ITEM_BALL 59
+#define MAP_OBJ_GFX_BERRY_TREE 60
+#define MAP_OBJ_GFX_BERRY_TREE_EARLY_STAGES 61
+#define MAP_OBJ_GFX_BERRY_TREE_LATE_STAGES 62
+#define MAP_OBJ_GFX_BRENDAN_ACRO_BIKE 63
+#define MAP_OBJ_GFX_PROF_BIRCH 64
+#define MAP_OBJ_GFX_MAN_5 65
+#define MAP_OBJ_GFX_MAN_6 66
+#define MAP_OBJ_GFX_REPORTER_M 67
+#define MAP_OBJ_GFX_REPORTER_F 68
+#define MAP_OBJ_GFX_BARD 69
+#define MAP_OBJ_GFX_ANABEL 70
+#define MAP_OBJ_GFX_TUCKER 71
+#define MAP_OBJ_GFX_GRETA 72
+#define MAP_OBJ_GFX_SPENSER 73
+#define MAP_OBJ_GFX_NOLAND 74
+#define MAP_OBJ_GFX_LUCY 75
+#define MAP_OBJ_GFX_UNUSED_NATU_DOLL 76
+#define MAP_OBJ_GFX_UNUSED_MAGNEMITE_DOLL 77
+#define MAP_OBJ_GFX_UNUSED_SQUIRTLE_DOLL 78
+#define MAP_OBJ_GFX_UNUSED_WOOPER_DOLL 79
+#define MAP_OBJ_GFX_UNUSED_PIKACHU_DOLL 80
+#define MAP_OBJ_GFX_UNUSED_PORYGON2_DOLL 81
+#define MAP_OBJ_GFX_CUTTABLE_TREE 82
+#define MAP_OBJ_GFX_MART_EMPLOYEE 83
+#define MAP_OBJ_GFX_ROOFTOP_SALE_WOMAN 84
+#define MAP_OBJ_GFX_TEALA 85
+#define MAP_OBJ_GFX_BREAKABLE_ROCK 86
+#define MAP_OBJ_GFX_PUSHABLE_BOULDER 87
+#define MAP_OBJ_GFX_MR_BRINEYS_BOAT 88
+#define MAP_OBJ_GFX_MAY_NORMAL 89
+#define MAP_OBJ_GFX_MAY_MACH_BIKE 90
+#define MAP_OBJ_GFX_MAY_ACRO_BIKE 91
+#define MAP_OBJ_GFX_MAY_SURFING 92
+#define MAP_OBJ_GFX_MAY_FIELD_MOVE 93
+#define MAP_OBJ_GFX_TRUCK 94
+#define MAP_OBJ_GFX_VIGAROTH_CARRYING_BOX 95
+#define MAP_OBJ_GFX_VIGAROTH_FACING_AWAY 96
+#define MAP_OBJ_GFX_BIRCHS_BAG 97
+#define MAP_OBJ_GFX_ZIGZAGOON_1 98
+#define MAP_OBJ_GFX_ARTIST 99
+#define MAP_OBJ_GFX_RIVAL_BRENDAN_NORMAL 100
+#define MAP_OBJ_GFX_RIVAL_BRENDAN_MACH_BIKE 101
+#define MAP_OBJ_GFX_RIVAL_BRENDAN_ACRO_BIKE 102
+#define MAP_OBJ_GFX_RIVAL_BRENDAN_SURFING 103
+#define MAP_OBJ_GFX_RIVAL_BRENDAN_FIELD_MOVE 104
+#define MAP_OBJ_GFX_RIVAL_MAY_NORMAL 105
+#define MAP_OBJ_GFX_RIVAL_MAY_MACH_BIKE 106
+#define MAP_OBJ_GFX_RIVAL_MAY_ACRO_BIKE 107
+#define MAP_OBJ_GFX_RIVAL_MAY_SURFING 108
+#define MAP_OBJ_GFX_RIVAL_MAY_FIELD_MOVE 109
+#define MAP_OBJ_GFX_CAMERAMAN 110
+#define MAP_OBJ_GFX_BRENDAN_UNDERWATER 111
+#define MAP_OBJ_GFX_MAY_UNDERWATER 112
+#define MAP_OBJ_GFX_MOVING_BOX 113
+#define MAP_OBJ_GFX_CABLE_CAR 114
+#define MAP_OBJ_GFX_SCIENTIST_2 115
+#define MAP_OBJ_GFX_MAN_7 116
+#define MAP_OBJ_GFX_AQUA_MEMBER_M 117
+#define MAP_OBJ_GFX_AQUA_MEMBER_F 118
+#define MAP_OBJ_GFX_MAGMA_MEMBER_M 119
+#define MAP_OBJ_GFX_MAGMA_MEMBER_F 120
+#define MAP_OBJ_GFX_SIDNEY 121
+#define MAP_OBJ_GFX_PHOEBE 122
+#define MAP_OBJ_GFX_GLACIA 123
+#define MAP_OBJ_GFX_DRAKE 124
+#define MAP_OBJ_GFX_ROXANNE 125
+#define MAP_OBJ_GFX_BRAWLY 126
+#define MAP_OBJ_GFX_WATTSON 127
+#define MAP_OBJ_GFX_FLANNERY 128
+#define MAP_OBJ_GFX_NORMAN 129
+#define MAP_OBJ_GFX_WINONA 130
+#define MAP_OBJ_GFX_LIZA 131
+#define MAP_OBJ_GFX_TATE 132
+#define MAP_OBJ_GFX_WALLACE 133
+#define MAP_OBJ_GFX_STEVEN 134
+#define MAP_OBJ_GFX_WALLY 135
+#define MAP_OBJ_GFX_LITTLE_BOY_3 136
+#define MAP_OBJ_GFX_BRENDAN_FISHING 137
+#define MAP_OBJ_GFX_MAY_FISHING 138
+#define MAP_OBJ_GFX_HOT_SPRINGS_OLD_WOMAN 139
+#define MAP_OBJ_GFX_SS_TIDAL 140
+#define MAP_OBJ_GFX_SUBMARINE_SHADOW 141
+#define MAP_OBJ_GFX_PICHU_DOLL 142
+#define MAP_OBJ_GFX_PIKACHU_DOLL 143
+#define MAP_OBJ_GFX_MARILL_DOLL 144
+#define MAP_OBJ_GFX_TOGEPI_DOLL 145
+#define MAP_OBJ_GFX_CYNDAQUIL_DOLL 146
+#define MAP_OBJ_GFX_CHIKORITA_DOLL 147
+#define MAP_OBJ_GFX_TOTODILE_DOLL 148
+#define MAP_OBJ_GFX_JIGGLYPUFF_DOLL 149
+#define MAP_OBJ_GFX_MEOWTH_DOLL 150
+#define MAP_OBJ_GFX_CLEFAIRY_DOLL 151
+#define MAP_OBJ_GFX_DITTO_DOLL 152
+#define MAP_OBJ_GFX_SMOOCHUM_DOLL 153
+#define MAP_OBJ_GFX_TREECKO_DOLL 154
+#define MAP_OBJ_GFX_TORCHIC_DOLL 155
+#define MAP_OBJ_GFX_MUDKIP_DOLL 156
+#define MAP_OBJ_GFX_DUSKULL_DOLL 157
+#define MAP_OBJ_GFX_WYNAUT_DOLL 158
+#define MAP_OBJ_GFX_BALTOY_DOLL 159
+#define MAP_OBJ_GFX_KECLEON_DOLL 160
+#define MAP_OBJ_GFX_AZURILL_DOLL 161
+#define MAP_OBJ_GFX_SKITTY_DOLL 162
+#define MAP_OBJ_GFX_SWABLU_DOLL 163
+#define MAP_OBJ_GFX_GULPIN_DOLL 164
+#define MAP_OBJ_GFX_LOTAD_DOLL 165
+#define MAP_OBJ_GFX_SEEDOT_DOLL 166
+#define MAP_OBJ_GFX_PIKA_CUSHION 167
+#define MAP_OBJ_GFX_ROUND_CUSHION 168
+#define MAP_OBJ_GFX_KISS_CUSHION 169
+#define MAP_OBJ_GFX_ZIGZAG_CUSHION 170
+#define MAP_OBJ_GFX_SPIN_CUSHION 171
+#define MAP_OBJ_GFX_DIAMOND_CUSHION 172
+#define MAP_OBJ_GFX_BALL_CUSHION 173
+#define MAP_OBJ_GFX_GRASS_CUSHION 174
+#define MAP_OBJ_GFX_FIRE_CUSHION 175
+#define MAP_OBJ_GFX_WATER_CUSHION 176
+#define MAP_OBJ_GFX_BIG_SNORLAX_DOLL 177
+#define MAP_OBJ_GFX_BIG_RHYDON_DOLL 178
+#define MAP_OBJ_GFX_BIG_LAPRAS_DOLL 179
+#define MAP_OBJ_GFX_BIG_VENUSAUR_DOLL 180
+#define MAP_OBJ_GFX_BIG_CHARIZARD_DOLL 181
+#define MAP_OBJ_GFX_BIG_BLASTOISE_DOLL 182
+#define MAP_OBJ_GFX_BIG_WAILMER_DOLL 183
+#define MAP_OBJ_GFX_BIG_REGIROCK_DOLL 184
+#define MAP_OBJ_GFX_BIG_REGICE_DOLL 185
+#define MAP_OBJ_GFX_BIG_REGISTEEL_DOLL 186
+#define MAP_OBJ_GFX_LATIAS 187
+#define MAP_OBJ_GFX_LATIOS 188
+#define MAP_OBJ_GFX_BOY_5 189
+#define MAP_OBJ_GFX_CONTEST_JUDGE 190
+#define MAP_OBJ_GFX_BRENDAN_WATERING 191
+#define MAP_OBJ_GFX_MAY_WATERING 192
+#define MAP_OBJ_GFX_BRENDAN_DECORATING 193
+#define MAP_OBJ_GFX_MAY_DECORATING 194
+#define MAP_OBJ_GFX_ARCHIE 195
+#define MAP_OBJ_GFX_MAXIE 196
+#define MAP_OBJ_GFX_KYOGRE_1 197
+#define MAP_OBJ_GFX_GROUDON_1 198
+#define MAP_OBJ_GFX_FOSSIL 199
+#define MAP_OBJ_GFX_REGIROCK 200
+#define MAP_OBJ_GFX_REGICE 201
+#define MAP_OBJ_GFX_REGISTEEL 202
+#define MAP_OBJ_GFX_SKITTY 203
+#define MAP_OBJ_GFX_KECLEON_1 204
+#define MAP_OBJ_GFX_KYOGRE_2 205
+#define MAP_OBJ_GFX_GROUDON_2 206
+#define MAP_OBJ_GFX_RAYQUAZA_2 207
+#define MAP_OBJ_GFX_ZIGZAGOON_2 208
+#define MAP_OBJ_GFX_PIKACHU 209
+#define MAP_OBJ_GFX_AZUMARILL 210
+#define MAP_OBJ_GFX_WINGULL 211
+#define MAP_OBJ_GFX_KECLEON_2 212
+#define MAP_OBJ_GFX_TUBER_M_SWIMMING 213
+#define MAP_OBJ_GFX_AZURILL 214
+#define MAP_OBJ_GFX_MOM 215
+#define MAP_OBJ_GFX_LINK_BRENDAN 216
+#define MAP_OBJ_GFX_LINK_MAY 217
+#define MAP_OBJ_GFX_JUAN 218
+#define MAP_OBJ_GFX_SCOTT 219
+#define MAP_OBJ_GFX_POOCHYENA 220
+#define MAP_OBJ_GFX_KYOGRE_3 221
+#define MAP_OBJ_GFX_GROUDON_3 222
+#define MAP_OBJ_GFX_MYSTERY_GIFT_MAN 223
+#define MAP_OBJ_GFX_TRICK_HOUSE_STATUE 224
+#define MAP_OBJ_GFX_KIRLIA 225
+#define MAP_OBJ_GFX_DUSCLOPS 226
+#define MAP_OBJ_GFX_UNION_ROOM_NURSE 227
+#define MAP_OBJ_GFX_SUDOWOODO 228
+#define MAP_OBJ_GFX_MEW 229
+#define MAP_OBJ_GFX_RED 230
+#define MAP_OBJ_GFX_LEAF 231
+#define MAP_OBJ_GFX_DEOXYS 232
+#define MAP_OBJ_GFX_DEOXYS_TRIANGLE 233
+#define MAP_OBJ_GFX_BRANDON 234
+#define MAP_OBJ_GFX_LINK_RS_BRENDAN 235
+#define MAP_OBJ_GFX_LINK_RS_MAY 236
+#define MAP_OBJ_GFX_LUGIA 237
+#define MAP_OBJ_GFX_HOOH 238
+#define MAP_OBJ_GFX_BARD_2 239
+#define MAP_OBJ_GFX_HIPSTER 240
+#define MAP_OBJ_GFX_TRADER 241
+#define MAP_OBJ_GFX_STORYTELLER 242
+#define MAP_OBJ_GFX_GIDDY 243
+#define MAP_OBJ_GFX_PLACEHOLDER_1 244
+#define MAP_OBJ_GFX_PLACEHOLDER_2 245
-#define SHADOW_SIZE_S 0
-#define SHADOW_SIZE_M 1
-#define SHADOW_SIZE_L 2
-#define SHADOW_SIZE_XL 3
+#define SHADOW_SIZE_S 0
+#define SHADOW_SIZE_M 1
+#define SHADOW_SIZE_L 2
+#define SHADOW_SIZE_XL 3
-#define TRACKS_NONE 0
-#define TRACKS_FOOT 1
-#define TRACKS_BIKE_TIRE 2
+#define F_INANIMATE (1 << 6)
+#define F_DISABLE_REFLECTION_PALETTE_LOAD (1 << 7)
+
+#define TRACKS_NONE 0
+#define TRACKS_FOOT 1
+#define TRACKS_BIKE_TIRE 2
#endif // GUARD_CONSTANTS_MAP_OBJECTS_H
diff --git a/include/constants/moves.h b/include/constants/moves.h
index ceec76c13..f3a3acb90 100644
--- a/include/constants/moves.h
+++ b/include/constants/moves.h
@@ -357,4 +357,6 @@
#define MOVE_DOOM_DESIRE 353
#define MOVE_PSYCHO_BOOST 354
+#define LAST_MOVE_INDEX MOVE_PSYCHO_BOOST
+
#endif // GUARD_CONSTANTS_MOVES_H
diff --git a/include/constants/opponents.h b/include/constants/opponents.h
deleted file mode 100644
index d907153bd..000000000
--- a/include/constants/opponents.h
+++ /dev/null
@@ -1,699 +0,0 @@
-#ifndef GUARD_CONSTANTS_OPPONENTS_H
-#define GUARD_CONSTANTS_OPPONENTS_H
-
-#define OPPONENT_NONE 0
-#define OPPONENT_ARCHIE_1 1
-#define OPPONENT_GRUNT_1 2
-#define OPPONENT_GRUNT_2 3
-#define OPPONENT_GRUNT_3 4
-#define OPPONENT_GRUNT_4 5
-#define OPPONENT_GRUNT_5 6
-#define OPPONENT_GRUNT_6 7
-#define OPPONENT_GRUNT_7 8
-#define OPPONENT_GRUNT_8 9
-#define OPPONENT_GRUNT_9 10
-#define OPPONENT_GRUNT_10 11
-#define OPPONENT_GRUNT_11 12
-#define OPPONENT_GRUNT_12 13
-#define OPPONENT_GRUNT_13 14
-#define OPPONENT_GRUNT_14 15
-#define OPPONENT_GRUNT_15 16
-#define OPPONENT_GRUNT_16 17
-#define OPPONENT_GRUNT_17 18
-#define OPPONENT_GRUNT_18 19
-#define OPPONENT_GRUNT_19 20
-#define OPPONENT_GRUNT_20 21
-#define OPPONENT_GRUNT_21 22
-#define OPPONENT_GRUNT_22 23
-#define OPPONENT_GRUNT_23 24
-#define OPPONENT_GRUNT_24 25
-#define OPPONENT_GRUNT_25 26
-#define OPPONENT_GRUNT_26 27
-#define OPPONENT_GRUNT_27 28
-#define OPPONENT_ANONYMOUS_1 29
-#define OPPONENT_MATT_1 30
-#define OPPONENT_MATT_2 31
-#define OPPONENT_SHELLY_1 32
-#define OPPONENT_SHELLY_2 33
-#define OPPONENT_ARCHIE_2 34
-#define OPPONENT_ARCHIE_3 35
-#define OPPONENT_DAISY 36
-#define OPPONENT_ROSE_1 37
-#define OPPONENT_LILY 38
-#define OPPONENT_VIOLET 39
-#define OPPONENT_ROSE_2 40
-#define OPPONENT_ROSE_3 41
-#define OPPONENT_ROSE_4 42
-#define OPPONENT_ROSE_5 43
-#define OPPONENT_DUSTY_1 44
-#define OPPONENT_CHIP 45
-#define OPPONENT_FOSTER 46
-#define OPPONENT_DUSTY_2 47
-#define OPPONENT_DUSTY_3 48
-#define OPPONENT_DUSTY_4 49
-#define OPPONENT_DUSTY_5 50
-#define OPPONENT_GABBY_AND_TY_1 51
-#define OPPONENT_GABBY_AND_TY_2 52
-#define OPPONENT_GABBY_AND_TY_3 53
-#define OPPONENT_GABBY_AND_TY_4 54
-#define OPPONENT_GABBY_AND_TY_5 55
-#define OPPONENT_GABBY_AND_TY_6 56
-#define OPPONENT_LOLA_1 57
-#define OPPONENT_CARMEN 58
-#define OPPONENT_GWEN 59
-#define OPPONENT_LOLA_2 60
-#define OPPONENT_LOLA_3 61
-#define OPPONENT_LOLA_4 62
-#define OPPONENT_LOLA_5 63
-#define OPPONENT_RICKY_1 64
-#define OPPONENT_SIMON 65
-#define OPPONENT_CHARLIE 66
-#define OPPONENT_RICKY_2 67
-#define OPPONENT_RICKY_3 68
-#define OPPONENT_RICKY_4 69
-#define OPPONENT_RICKY_5 70
-#define OPPONENT_RANDALL 71
-#define OPPONENT_PARKER 72
-#define OPPONENT_GEORGE 73
-#define OPPONENT_BERKE 74
-#define OPPONENT_CLYDE 75
-#define OPPONENT_VINCENT 76
-#define OPPONENT_LEROY 77
-#define OPPONENT_WILTON_1 78
-#define OPPONENT_EDGAR 79
-#define OPPONENT_ALBERT 80
-#define OPPONENT_SAMUEL 81
-#define OPPONENT_VITO 82
-#define OPPONENT_OWEN 83
-#define OPPONENT_WILTON_2 84
-#define OPPONENT_WILTON_3 85
-#define OPPONENT_WILTON_4 86
-#define OPPONENT_WILTON_5 87
-#define OPPONENT_WARREN 88
-#define OPPONENT_MARY 89
-#define OPPONENT_LORI 90
-#define OPPONENT_JODY 91
-#define OPPONENT_WENDY 92
-#define OPPONENT_ELAINE 93
-#define OPPONENT_BROOKE_1 94
-#define OPPONENT_JENNIFER 95
-#define OPPONENT_HOPE 96
-#define OPPONENT_SHANNON 97
-#define OPPONENT_MICHELLE 98
-#define OPPONENT_CAROLINE 99
-#define OPPONENT_JULIE 100
-#define OPPONENT_BROOKE_2 101
-#define OPPONENT_BROOKE_3 102
-#define OPPONENT_BROOKE_4 103
-#define OPPONENT_BROOKE_5 104
-#define OPPONENT_PATRICIA 105
-#define OPPONENT_KINDRA 106
-#define OPPONENT_TAMMY 107
-#define OPPONENT_VALERIE_1 108
-#define OPPONENT_TASHA 109
-#define OPPONENT_VALERIE_2 110
-#define OPPONENT_VALERIE_3 111
-#define OPPONENT_VALERIE_4 112
-#define OPPONENT_VALERIE_5 113
-#define OPPONENT_CINDY_1 114
-#define OPPONENT_ANONYMOUS_2 115
-#define OPPONENT_BRIANNA_1 116
-#define OPPONENT_CINDY_2 117
-#define OPPONENT_BRIANNA_2 118
-#define OPPONENT_ANETTE 119
-#define OPPONENT_CINDY_3 120
-#define OPPONENT_CINDY_4 121
-#define OPPONENT_CINDY_5 122
-#define OPPONENT_CINDY_6 123
-#define OPPONENT_MELISSA 124
-#define OPPONENT_SHEILA 125
-#define OPPONENT_SHIRLEY 126
-#define OPPONENT_JESSICA_1 127
-#define OPPONENT_CONNIE 128
-#define OPPONENT_BRIDGET 129
-#define OPPONENT_OLIVIA 130
-#define OPPONENT_TIFFANY 131
-#define OPPONENT_JESSICA_2 132
-#define OPPONENT_JESSICA_3 133
-#define OPPONENT_JESSICA_4 134
-#define OPPONENT_JESSICA_5 135
-#define OPPONENT_WINSTON_1 136
-#define OPPONENT_ANONYMOUS_3 137
-#define OPPONENT_GARRET 138
-#define OPPONENT_WINSTON_2 139
-#define OPPONENT_WINSTON_3 140
-#define OPPONENT_WINSTON_4 141
-#define OPPONENT_WINSTON_5 142
-#define OPPONENT_STEVE_1 143
-#define OPPONENT_CHRIS 144
-#define OPPONENT_MARK 145
-#define OPPONENT_KENN 146
-#define OPPONENT_STEVE_2 147
-#define OPPONENT_STEVE_3 148
-#define OPPONENT_STEVE_4 149
-#define OPPONENT_STEVE_5 150
-#define OPPONENT_LUIS 151
-#define OPPONENT_AUSTIN 152
-#define OPPONENT_DOUGLAS 153
-#define OPPONENT_DARRIN 154
-#define OPPONENT_TONY_1 155
-#define OPPONENT_JEROME 156
-#define OPPONENT_MATTHEW 157
-#define OPPONENT_DAVID 158
-#define OPPONENT_SPENCER 159
-#define OPPONENT_ROLAND 160
-#define OPPONENT_CODY 161
-#define OPPONENT_STAN 162
-#define OPPONENT_BARRY 163
-#define OPPONENT_DEAN 164
-#define OPPONENT_RODNEY 165
-#define OPPONENT_RICHARD 166
-#define OPPONENT_HERMAN 167
-#define OPPONENT_ANONYMOUS_4 168
-#define OPPONENT_GILBERT 169
-#define OPPONENT_FRANKLIN 170
-#define OPPONENT_DANNY 171
-#define OPPONENT_JACK 172
-#define OPPONENT_DUDLEY 173
-#define OPPONENT_CHAD 174
-#define OPPONENT_TONY_2 175
-#define OPPONENT_TONY_3 176
-#define OPPONENT_TONY_4 177
-#define OPPONENT_TONY_5 178
-#define OPPONENT_HIDEKI 179
-#define OPPONENT_HITOSHI 180
-#define OPPONENT_KIYO 181
-#define OPPONENT_KOICHI 182
-#define OPPONENT_NOB_1 183
-#define OPPONENT_NOB_2 184
-#define OPPONENT_NOB_3 185
-#define OPPONENT_NOB_4 186
-#define OPPONENT_NOB_5 187
-#define OPPONENT_YUJI 188
-#define OPPONENT_DAISUKE 189
-#define OPPONENT_ATSUSHI 190
-#define OPPONENT_KIRK 191
-#define OPPONENT_SCOTT 192
-#define OPPONENT_HARVEY 193
-#define OPPONENT_SHAWN 194
-#define OPPONENT_RANDY 195
-#define OPPONENT_DALTON_1 196
-#define OPPONENT_DALTON_2 197
-#define OPPONENT_DALTON_3 198
-#define OPPONENT_DALTON_4 199
-#define OPPONENT_DALTON_5 200
-#define OPPONENT_COLE 201
-#define OPPONENT_FLINT 202
-#define OPPONENT_AXLE 203
-#define OPPONENT_JAKE 204
-#define OPPONENT_ANDY 205
-#define OPPONENT_BERNIE_1 206
-#define OPPONENT_BERNIE_2 207
-#define OPPONENT_BERNIE_3 208
-#define OPPONENT_BERNIE_4 209
-#define OPPONENT_BERNIE_5 210
-#define OPPONENT_DREW 211
-#define OPPONENT_CLIFF 212
-#define OPPONENT_LARRY 213
-#define OPPONENT_SHANE 214
-#define OPPONENT_JUSTIN 215
-#define OPPONENT_ETHAN_1 216
-#define OPPONENT_JEFF 217
-#define OPPONENT_TRAVIS 218
-#define OPPONENT_ETHAN_2 219
-#define OPPONENT_ETHAN_3 220
-#define OPPONENT_ETHAN_4 221
-#define OPPONENT_ETHAN_5 222
-#define OPPONENT_BRENT 223
-#define OPPONENT_DONALD 224
-#define OPPONENT_TAYLOR 225
-#define OPPONENT_BRANDON_1 226
-#define OPPONENT_DEREK 227
-#define OPPONENT_BRANDON_2 228
-#define OPPONENT_BRANDON_3 229
-#define OPPONENT_BRANDON_4 230
-#define OPPONENT_BRANDON_5 231
-#define OPPONENT_EDWARD 232
-#define OPPONENT_PRESTON 233
-#define OPPONENT_VIRGIL 234
-#define OPPONENT_FRITZ 235
-#define OPPONENT_WILLIAM 236
-#define OPPONENT_JOSHUA 237
-#define OPPONENT_CAMERON_1 238
-#define OPPONENT_CAMERON_2 239
-#define OPPONENT_CAMERON_3 240
-#define OPPONENT_CAMERON_4 241
-#define OPPONENT_CAMERON_5 242
-#define OPPONENT_JACLYN 243
-#define OPPONENT_HANNAH 244
-#define OPPONENT_SAMANTHA 245
-#define OPPONENT_MAURA 246
-#define OPPONENT_KAYLA 247
-#define OPPONENT_ALEXIS 248
-#define OPPONENT_JACKI_1 249
-#define OPPONENT_JACKI_2 250
-#define OPPONENT_JACKI_3 251
-#define OPPONENT_JACKI_4 252
-#define OPPONENT_JACKI_5 253
-#define OPPONENT_WALTER_1 254
-#define OPPONENT_TUCKER 255
-#define OPPONENT_THOMAS 256
-#define OPPONENT_WALTER_2 257
-#define OPPONENT_WALTER_3 258
-#define OPPONENT_WALTER_4 259
-#define OPPONENT_WALTER_5 260
-#define OPPONENT_SIDNEY 261
-#define OPPONENT_PHOEBE 262
-#define OPPONENT_GLACIA 263
-#define OPPONENT_DRAKE 264
-#define OPPONENT_ROXANNE 265
-#define OPPONENT_BRAWLY 266
-#define OPPONENT_WATTSON 267
-#define OPPONENT_FLANNERY 268
-#define OPPONENT_NORMAN 269
-#define OPPONENT_WINONA 270
-#define OPPONENT_TATE_AND_LIZA 271
-#define OPPONENT_WALLACE 272
-#define OPPONENT_JERRY_1 273
-#define OPPONENT_TED 274
-#define OPPONENT_PAUL 275
-#define OPPONENT_JERRY_2 276
-#define OPPONENT_JERRY_3 277
-#define OPPONENT_JERRY_4 278
-#define OPPONENT_JERRY_5 279
-#define OPPONENT_KAREN_1 280
-#define OPPONENT_GEORGIA 281
-#define OPPONENT_KAREN_2 282
-#define OPPONENT_KAREN_3 283
-#define OPPONENT_KAREN_4 284
-#define OPPONENT_KAREN_5 285
-#define OPPONENT_KATE_AND_JOY 286
-#define OPPONENT_ANNA_AND_MEG_1 287
-#define OPPONENT_ANNA_AND_MEG_2 288
-#define OPPONENT_ANNA_AND_MEG_3 289
-#define OPPONENT_ANNA_AND_MEG_4 290
-#define OPPONENT_ANNA_AND_MEG_5 291
-#define OPPONENT_VICTOR 292
-#define OPPONENT_MIGUEL_1 293
-#define OPPONENT_COLTON 294
-#define OPPONENT_MIGUEL_2 295
-#define OPPONENT_MIGUEL_3 296
-#define OPPONENT_MIGUEL_4 297
-#define OPPONENT_MIGUEL_5 298
-#define OPPONENT_VICTORIA 299
-#define OPPONENT_VANESSA 300
-#define OPPONENT_MARISSA 301
-#define OPPONENT_ISABEL_1 302
-#define OPPONENT_ISABEL_2 303
-#define OPPONENT_ISABEL_3 304
-#define OPPONENT_ISABEL_4 305
-#define OPPONENT_ISABEL_5 306
-#define OPPONENT_TIMOTHY_1 307
-#define OPPONENT_TIMOTHY_2 308
-#define OPPONENT_TIMOTHY_3 309
-#define OPPONENT_TIMOTHY_4 310
-#define OPPONENT_TIMOTHY_5 311
-#define OPPONENT_VICKY 312
-#define OPPONENT_SHELBY_1 313
-#define OPPONENT_SHELBY_2 314
-#define OPPONENT_SHELBY_3 315
-#define OPPONENT_SHELBY_4 316
-#define OPPONENT_SHELBY_5 317
-#define OPPONENT_CALVIN_1 318
-#define OPPONENT_BILLY 319
-#define OPPONENT_JOSH 320
-#define OPPONENT_TOMMY 321
-#define OPPONENT_JOEY 322
-#define OPPONENT_BEN 323
-#define OPPONENT_ANONYMOUS_5 324
-#define OPPONENT_KEVIN 325
-#define OPPONENT_NEAL 326
-#define OPPONENT_DILLON 327
-#define OPPONENT_CALVIN_2 328
-#define OPPONENT_CALVIN_3 329
-#define OPPONENT_CALVIN_4 330
-#define OPPONENT_CALVIN_5 331
-#define OPPONENT_EDDIE 332
-#define OPPONENT_ALLEN 333
-#define OPPONENT_TIMMY 334
-#define OPPONENT_STEVEN 335
-#define OPPONENT_ANDREW 336
-#define OPPONENT_IVAN 337
-#define OPPONENT_CLAUDE 338
-#define OPPONENT_ELLIOT_1 339
-#define OPPONENT_NED 340
-#define OPPONENT_DALE 341
-#define OPPONENT_NOLAN 342
-#define OPPONENT_BARNY 343
-#define OPPONENT_WADE 344
-#define OPPONENT_CARTER 345
-#define OPPONENT_ELLIOT_2 346
-#define OPPONENT_ELLIOT_3 347
-#define OPPONENT_ELLIOT_4 348
-#define OPPONENT_ELLIOT_5 349
-#define OPPONENT_RONALD 350
-#define OPPONENT_JACOB 351
-#define OPPONENT_ANTHONY 352
-#define OPPONENT_BENJAMIN_1 353
-#define OPPONENT_BENJAMIN_2 354
-#define OPPONENT_BENJAMIN_3 355
-#define OPPONENT_BENJAMIN_4 356
-#define OPPONENT_BENJAMIN_5 357
-#define OPPONENT_ABIGAIL_1 358
-#define OPPONENT_JASMINE 359
-#define OPPONENT_ABIGAIL_2 360
-#define OPPONENT_ABIGAIL_3 361
-#define OPPONENT_ABIGAIL_4 362
-#define OPPONENT_ABIGAIL_5 363
-#define OPPONENT_DYLAN_1 364
-#define OPPONENT_DYLAN_2 365
-#define OPPONENT_DYLAN_3 366
-#define OPPONENT_DYLAN_4 367
-#define OPPONENT_DYLAN_5 368
-#define OPPONENT_MARIA_1 369
-#define OPPONENT_MARIA_2 370
-#define OPPONENT_MARIA_3 371
-#define OPPONENT_MARIA_4 372
-#define OPPONENT_MARIA_5 373
-#define OPPONENT_CALEB 374
-#define OPPONENT_ANONYMOUS_6 375
-#define OPPONENT_ISAIAH_1 376
-#define OPPONENT_ANONYMOUS_7 377
-#define OPPONENT_CHASE 378
-#define OPPONENT_ISAIAH_2 379
-#define OPPONENT_ISAIAH_3 380
-#define OPPONENT_ISAIAH_4 381
-#define OPPONENT_ISAIAH_5 382
-#define OPPONENT_ANONYMOUS_8 383
-#define OPPONENT_CONNOR 384
-#define OPPONENT_ANONYMOUS_9 385
-#define OPPONENT_KATELYN_1 386
-#define OPPONENT_ALLISON 387
-#define OPPONENT_KATELYN_2 388
-#define OPPONENT_KATELYN_3 389
-#define OPPONENT_KATELYN_4 390
-#define OPPONENT_KATELYN_5 391
-#define OPPONENT_NICOLAS_1 392
-#define OPPONENT_NICOLAS_2 393
-#define OPPONENT_NICOLAS_3 394
-#define OPPONENT_NICOLAS_4 395
-#define OPPONENT_NICOLAS_5 396
-#define OPPONENT_AARON 397
-#define OPPONENT_PERRY 398
-#define OPPONENT_HUGH 399
-#define OPPONENT_PHIL 400
-#define OPPONENT_JARED 401
-#define OPPONENT_ANONYMOUS_10 402
-#define OPPONENT_TANNER 403
-#define OPPONENT_WILL 404
-#define OPPONENT_COLIN 405
-#define OPPONENT_ROBERT_1 406
-#define OPPONENT_BENNY 407
-#define OPPONENT_CHESTER 408
-#define OPPONENT_ROBERT_2 409
-#define OPPONENT_ROBERT_3 410
-#define OPPONENT_ROBERT_4 411
-#define OPPONENT_ROBERT_5 412
-#define OPPONENT_ALEX 413
-#define OPPONENT_BECK 414
-#define OPPONENT_YASU 415
-#define OPPONENT_TAKASHI 416
-#define OPPONENT_MAKOTO 417
-#define OPPONENT_HIDEO_1 418
-#define OPPONENT_LAO_1 419
-#define OPPONENT_LUNG 420
-#define OPPONENT_LAO_2 421
-#define OPPONENT_LAO_3 422
-#define OPPONENT_LAO_4 423
-#define OPPONENT_LAO_5 424
-#define OPPONENT_TESSA 425
-#define OPPONENT_LAURA 426
-#define OPPONENT_CYNDY_1 427
-#define OPPONENT_CORA 428
-#define OPPONENT_JILL 429
-#define OPPONENT_CYNDY_2 430
-#define OPPONENT_CYNDY_3 431
-#define OPPONENT_CYNDY_4 432
-#define OPPONENT_CYNDY_5 433
-#define OPPONENT_MADELINE_1 434
-#define OPPONENT_CLARISSA 435
-#define OPPONENT_ANGELICA 436
-#define OPPONENT_MADELINE_2 437
-#define OPPONENT_MADELINE_3 438
-#define OPPONENT_MADELINE_4 439
-#define OPPONENT_MADELINE_5 440
-#define OPPONENT_BEVERLY 441
-#define OPPONENT_DAWN 442
-#define OPPONENT_NICOLE 443
-#define OPPONENT_DENISE 444
-#define OPPONENT_BETH 445
-#define OPPONENT_TARA 446
-#define OPPONENT_MISSY 447
-#define OPPONENT_ALICE 448
-#define OPPONENT_JENNY_1 449
-#define OPPONENT_GRACE 450
-#define OPPONENT_TANYA 451
-#define OPPONENT_SHARON 452
-#define OPPONENT_NIKKI 453
-#define OPPONENT_BRENDA 454
-#define OPPONENT_KATIE 455
-#define OPPONENT_SUSIE 456
-#define OPPONENT_KARA 457
-#define OPPONENT_DANA 458
-#define OPPONENT_ERIN 459
-#define OPPONENT_DEBRA 460
-#define OPPONENT_LINDA 461
-#define OPPONENT_KAYLEE 462
-#define OPPONENT_LAUREL 463
-#define OPPONENT_DARCY 464
-#define OPPONENT_JENNY_2 465
-#define OPPONENT_JENNY_3 466
-#define OPPONENT_JENNY_4 467
-#define OPPONENT_JENNY_5 468
-#define OPPONENT_HEIDI 469
-#define OPPONENT_BECKY 470
-#define OPPONENT_CAROL 471
-#define OPPONENT_NANCY 472
-#define OPPONENT_MARTHA 473
-#define OPPONENT_DIANA_1 474
-#define OPPONENT_NINA 475
-#define OPPONENT_IRENE 476
-#define OPPONENT_DIANA_2 477
-#define OPPONENT_DIANA_3 478
-#define OPPONENT_DIANA_4 479
-#define OPPONENT_DIANA_5 480
-#define OPPONENT_AMY_AND_LIV_1 481
-#define OPPONENT_AMY_AND_LIV_2 482
-#define OPPONENT_GINA_AND_MIA_1 483
-#define OPPONENT_MIU_AND_YUKI 484
-#define OPPONENT_AMY_AND_LIV_3 485
-#define OPPONENT_GINA_AND_MIA_2 486
-#define OPPONENT_AMY_AND_LIV_4 487
-#define OPPONENT_AMY_AND_LIV_5 488
-#define OPPONENT_AMY_AND_LIV_6 489
-#define OPPONENT_HUEY 490
-#define OPPONENT_EDMOND 491
-#define OPPONENT_ERNEST_1 492
-#define OPPONENT_DWAYNE 493
-#define OPPONENT_PHILLIP 494
-#define OPPONENT_LEONARD 495
-#define OPPONENT_DUNCAN 496
-#define OPPONENT_ERNEST_2 497
-#define OPPONENT_ERNEST_3 498
-#define OPPONENT_ERNEST_4 499
-#define OPPONENT_ERNEST_5 500
-#define OPPONENT_ANONYMOUS_11 501
-#define OPPONENT_ANONYMOUS_12 502
-#define OPPONENT_ANONYMOUS_13 503
-#define OPPONENT_SONNY 504
-#define OPPONENT_DONOVAN 505
-#define OPPONENT_GERALD 506
-#define OPPONENT_KELVIN 507
-#define OPPONENT_KODY 508
-#define OPPONENT_TEVIN 509
-#define OPPONENT_DAMON 510
-#define OPPONENT_PABLO 511
-#define OPPONENT_EDWIN_1 512
-#define OPPONENT_HECTOR_1 513
-#define OPPONENT_HECTOR_2 514
-#define OPPONENT_EDWIN_2 515
-#define OPPONENT_EDWIN_3 516
-#define OPPONENT_EDWIN_4 517
-#define OPPONENT_EDWIN_5 518
-#define OPPONENT_WALLY_1 519
-#define OPPONENT_BRENDAN_1 520
-#define OPPONENT_BRENDAN_2 521
-#define OPPONENT_BRENDAN_3 522
-#define OPPONENT_BRENDAN_4 523
-#define OPPONENT_BRENDAN_5 524
-#define OPPONENT_BRENDAN_6 525
-#define OPPONENT_BRENDAN_7 526
-#define OPPONENT_BRENDAN_8 527
-#define OPPONENT_BRENDAN_9 528
-#define OPPONENT_MAY_1 529
-#define OPPONENT_MAY_2 530
-#define OPPONENT_MAY_3 531
-#define OPPONENT_MAY_4 532
-#define OPPONENT_MAY_5 533
-#define OPPONENT_MAY_6 534
-#define OPPONENT_MAY_7 535
-#define OPPONENT_MAY_8 536
-#define OPPONENT_MAY_9 537
-#define OPPONENT_ISAAC_1 538
-#define OPPONENT_RILEY 539
-#define OPPONENT_AIDAN 540
-#define OPPONENT_ISAAC_2 541
-#define OPPONENT_ISAAC_3 542
-#define OPPONENT_ISAAC_4 543
-#define OPPONENT_ISAAC_5 544
-#define OPPONENT_LYDIA_1 545
-#define OPPONENT_ALEXIA 546
-#define OPPONENT_DANIELLE 547
-#define OPPONENT_LYDIA_2 548
-#define OPPONENT_LYDIA_3 549
-#define OPPONENT_LYDIA_4 550
-#define OPPONENT_LYDIA_5 551
-#define OPPONENT_JACKSON_1 552
-#define OPPONENT_CARLOS 553
-#define OPPONENT_SEBASTIAN 554
-#define OPPONENT_JACKSON_2 555
-#define OPPONENT_JACKSON_3 556
-#define OPPONENT_JACKSON_4 557
-#define OPPONENT_JACKSON_5 558
-#define OPPONENT_CATHERINE_1 559
-#define OPPONENT_JENNA 560
-#define OPPONENT_SOPHIA 561
-#define OPPONENT_CATHERINE_2 562
-#define OPPONENT_CATHERINE_3 563
-#define OPPONENT_CATHERINE_4 564
-#define OPPONENT_CATHERINE_5 565
-#define OPPONENT_MAXIE_1 566
-#define OPPONENT_GRUNT_28 567
-#define OPPONENT_GRUNT_29 568
-#define OPPONENT_GRUNT_30 569
-#define OPPONENT_GRUNT_31 570
-#define OPPONENT_GRUNT_32 571
-#define OPPONENT_GRUNT_33 572
-#define OPPONENT_GRUNT_34 573
-#define OPPONENT_GRUNT_35 574
-#define OPPONENT_GRUNT_36 575
-#define OPPONENT_GRUNT_37 576
-#define OPPONENT_GRUNT_38 577
-#define OPPONENT_GRUNT_39 578
-#define OPPONENT_GRUNT_40 579
-#define OPPONENT_GRUNT_41 580
-#define OPPONENT_GRUNT_42 581
-#define OPPONENT_GRUNT_43 582
-#define OPPONENT_GRUNT_44 583
-#define OPPONENT_GRUNT_45 584
-#define OPPONENT_GRUNT_46 585
-#define OPPONENT_GRUNT_47 586
-#define OPPONENT_GRUNT_48 587
-#define OPPONENT_GRUNT_49 588
-#define OPPONENT_GRUNT_50 589
-#define OPPONENT_GRUNT_51 590
-#define OPPONENT_GRUNT_52 591
-#define OPPONENT_GRUNT_53 592
-#define OPPONENT_GRUNT_54 593
-#define OPPONENT_ANONYMOUS_14 594
-#define OPPONENT_ANONYMOUS_15 595
-#define OPPONENT_TABITHA_1 596
-#define OPPONENT_TABITHA_2 597
-#define OPPONENT_ANONYMOUS_16 598
-#define OPPONENT_COURTNEY_1 599
-#define OPPONENT_COURTNEY_2 600
-#define OPPONENT_MAXIE_2 601
-#define OPPONENT_MAXIE_3 602
-#define OPPONENT_TIANA 603
-#define OPPONENT_HALEY_1 604
-#define OPPONENT_JANICE 605
-#define OPPONENT_VIVI 606
-#define OPPONENT_HALEY_2 607
-#define OPPONENT_HALEY_3 608
-#define OPPONENT_HALEY_4 609
-#define OPPONENT_HALEY_5 610
-#define OPPONENT_SALLY 611
-#define OPPONENT_ROBIN 612
-#define OPPONENT_ANDREA 613
-#define OPPONENT_CRISSY 614
-#define OPPONENT_RICK 615
-#define OPPONENT_LYLE 616
-#define OPPONENT_JOSE 617
-#define OPPONENT_DOUG 618
-#define OPPONENT_GREG 619
-#define OPPONENT_KENT 620
-#define OPPONENT_JAMES_1 621
-#define OPPONENT_JAMES_2 622
-#define OPPONENT_JAMES_3 623
-#define OPPONENT_JAMES_4 624
-#define OPPONENT_JAMES_5 625
-#define OPPONENT_BRICE 626
-#define OPPONENT_TRENT_1 627
-#define OPPONENT_LENNY 628
-#define OPPONENT_LUCAS_1 629
-#define OPPONENT_ALAN 630
-#define OPPONENT_CLARK 631
-#define OPPONENT_ERIC 632
-#define OPPONENT_LUCAS_2 633
-#define OPPONENT_MIKE_1 634
-#define OPPONENT_MIKE_2 635
-#define OPPONENT_TRENT_2 636
-#define OPPONENT_TRENT_3 637
-#define OPPONENT_TRENT_4 638
-#define OPPONENT_TRENT_5 639
-#define OPPONENT_DEZ_AND_LUKE 640
-#define OPPONENT_LEA_AND_JED 641
-#define OPPONENT_LOIS_AND_HAL_1 642
-#define OPPONENT_LOIS_AND_HAL_2 643
-#define OPPONENT_LOIS_AND_HAL_3 644
-#define OPPONENT_LOIS_AND_HAL_4 645
-#define OPPONENT_LOIS_AND_HAL_5 646
-#define OPPONENT_JOHANNA 647
-#define OPPONENT_ZANE 648
-#define OPPONENT_VIVIAN 649
-#define OPPONENT_SADIE 650
-#define OPPONENT_HIDEO_2 651
-#define OPPONENT_KEIGO 652
-#define OPPONENT_TSUNAO 653
-#define OPPONENT_TERRELL 654
-#define OPPONENT_KYLEE 655
-#define OPPONENT_WALLY_2 656
-#define OPPONENT_WALLY_3 657
-#define OPPONENT_WALLY_4 658
-#define OPPONENT_WALLY_5 659
-#define OPPONENT_WALLY_6 660
-#define OPPONENT_BRENDAN_10 661
-#define OPPONENT_BRENDAN_11 662
-#define OPPONENT_BRENDAN_12 663
-#define OPPONENT_MAY_10 664
-#define OPPONENT_MAY_11 665
-#define OPPONENT_MAY_12 666
-#define OPPONENT_JONAH 667
-#define OPPONENT_HENRY 668
-#define OPPONENT_ROGER 669
-#define OPPONENT_ALEXA 670
-#define OPPONENT_RUBEN 671
-#define OPPONENT_KOJI 672
-#define OPPONENT_WAYNE 673
-#define OPPONENT_BYRON 674
-#define OPPONENT_REED 675
-#define OPPONENT_TISHA 676
-#define OPPONENT_TORI_AND_TIA 677
-#define OPPONENT_KIM_AND_IRIS 678
-#define OPPONENT_TYRA_AND_IVY 679
-#define OPPONENT_MEL_AND_PAUL 680
-#define OPPONENT_JOHN_AND_JAY_1 681
-#define OPPONENT_JOHN_AND_JAY_2 682
-#define OPPONENT_JOHN_AND_JAY_3 683
-#define OPPONENT_JOHN_AND_JAY_4 684
-#define OPPONENT_JOHN_AND_JAY_5 685
-#define OPPONENT_RELI_AND_IAN 686
-#define OPPONENT_RITA_AND_SAM_1 687
-#define OPPONENT_RITA_AND_SAM_2 688
-#define OPPONENT_RITA_AND_SAM_3 689
-#define OPPONENT_RITA_AND_SAM_4 690
-#define OPPONENT_RITA_AND_SAM_5 691
-#define OPPONENT_LISA_AND_RAY 692
-#define OPPONENT_EUGENE 693
-
-#endif // GUARD_CONSTANTS_OPPONENTS_H
diff --git a/include/constants/songs.h b/include/constants/songs.h
index 5225f5899..2e3adcbbf 100644
--- a/include/constants/songs.h
+++ b/include/constants/songs.h
@@ -357,16 +357,108 @@
#define BGM_DAIGO 454
#define BGM_THANKFOR 455
#define BGM_END 456
-#define BGM_BATTLE27 457
-#define BGM_BATTLE31 458
-#define BGM_BATTLE20 459
-#define BGM_BATTLE32 460
-#define BGM_BATTLE33 461
-#define BGM_BATTLE36 462
-#define BGM_BATTLE34 463
-#define BGM_BATTLE35 464
-#define BGM_BATTLE38 465
-#define BGM_BATTLE30 466
+#define BGM_BATTLE_FRONTIER 457
+#define BGM_BATTLE_ARENA 458
+#define BGM_ME_BATTLE_POINTS 459
+#define BGM_ME_MATCH_CALL 460
+#define BGM_BATTLE_PYRAMID 461
+#define BGM_BATTLE_PYRAMID_SUMMIT 462
+#define BGM_BATTLE_PALACE 463
+#define BGM_FANFA_RAYQUAZA 464
+#define BGM_BATTLE_TOWER 465
+#define BGM_ME_BATTLE_SYMBOL 466
+#define BGM_BATTLE_DOME_TOURNAMENT 467
+#define BGM_BATTLE_PIKE 468
+#define BGM_BATTLE_FACTORY 469
+#define BGM_BATTLE_LEGENDARY 470
+#define BGM_BATTLE_FRONTIER_BRAIN 471
+#define BGM_BATTLE_MEW 472
+#define BGM_BATTLE_DOME 473
+#define BGM_BATTLE27 474
+#define BGM_BATTLE31 475
+#define BGM_BATTLE20 476
+#define BGM_BATTLE32 477
+#define BGM_BATTLE33 478
+#define BGM_BATTLE36 479
+#define BGM_BATTLE34 480
+#define BGM_BATTLE35 481
+#define BGM_BATTLE38 482
+#define BGM_BATTLE30 483
+#define BGM_FRLG_FOLLOW_ME 484
+#define BGM_FRLG_GAMECORNER 485
+#define BGM_FRLG_ROCKET_HIDEOUT 486
+#define BGM_FRLG_GYM 487
+#define BGM_FRLG_JIGGLYPUFF 488
+#define BGM_FRLG_OPENING 489
+#define BGM_FRLG_TITLE 490
+#define BGM_FRLG_CINNABAR_ISLAND 491
+#define BGM_FRLG_LAVENDER_TOWN 492
+#define BGM_FRLG_HEALING_TEST 493
+#define BGM_FRLG_BICYCLE 494
+#define BGM_FRLG_SUSPICIOUS_EYE 495
+#define BGM_FRLG_GIRL_EYE 496
+#define BGM_FRLG_BOY_EYE 497
+#define BGM_FRLG_CONGRATULATIONS_HALL_OF_FAME 498
+#define BGM_FRLG_VIRIDIAN_FOREST 499
+#define BGM_FRLG_MT_MOON 500
+#define BGM_FRLG_POKEMON_MANSION 501
+#define BGM_FRLG_CREDITS 502
+#define BGM_FRLG_ROUTE_1 503
+#define BGM_FRLG_ROUTE_24 504
+#define BGM_FRLG_ROUTE_3 505
+#define BGM_FRLG_ROUTE_11 506
+#define BGM_FRLG_INDIGO_PLATEAU 507
+#define BGM_FRLG_BATTLE_LEADER 508
+#define BGM_FRLG_BATTLE_TRAINER 509
+#define BGM_FRLG_BATTLE_WILD_POKEMON 510
+#define BGM_FRLG_BATTLE_CHAMPION 511
+#define BGM_FRLG_PALLET_TOWN 512
+#define BGM_FRLG_OAK_LAB 513
+#define BGM_FRLG_PROF_OAK 514
+#define BGM_FRLG_POKEMON_CENTER 515
+#define BGM_FRLG_SS_ANNE 516
+#define BGM_FRLG_SURF 517
+#define BGM_FRLG_POKEMON_TOWER 518
+#define BGM_FRLG_SILPH 519
+#define BGM_FRLG_CERULEAN_CITY 520
+#define BGM_FRLG_CELADON_CITY 521
+#define BGM_FRLG_KACHI_TRAINER 522
+#define BGM_FRLG_KACHI_WILD_POKEMON 523
+#define BGM_FRLG_KACHI_LEADER 524
+#define BGM_FRLG_VERMILION_CITY 525
+#define BGM_FRLG_VIRIDIAN_CITY 526
+#define BGM_FRLG_RIVAL 527
+#define BGM_FRLG_RIVAL_POSTBATTLE 528
+#define BGM_FRLG_ME_POKEDEX_EVAL 529
+#define BGM_FRLG_ME_KEYITEM 530
+#define BGM_FRLG_FANFA_POKEMON_CAUGHT 531
+#define BGM_FRLG_FANFA_TRAINERCARD_PHOTO 532
+#define BGM_FRLG_GAMEFREAK_LOGO 533
+#define BGM_FRLG_CAUGHT_POKEMON 534
+#define BGM_FRLG_GAME_EXPLANATION_START 535
+#define BGM_FRLG_GAME_EXPLANATION_MIDDLE 536
+#define BGM_FRLG_GAME_EXPLANATION_END 537
+#define BGM_FRLG_POKEMON_JUMP 538
+#define BGM_FRLG_UNION_ROOM 539
+#define BGM_FRLG_POKEMON_NETWORK_CENTER 540
+#define BGM_FRLG_MYSTERY_GIFT 541
+#define BGM_FRLG_DODRIO_BERRY_PICK 542
+#define BGM_FRLG_MT_EMBER 543
+#define BGM_FRLG_TEACHY_TV_EPISODE 544
+#define BGM_FRLG_SEVII_ISLANDS 545
+#define BGM_FRLG_TANOBY_RUINS 546
+#define BGM_FRLG_ISLAND_ONE 547
+#define BGM_FRLG_ISLAND_FOUR 548
+#define BGM_FRLG_ISLAND_SIX 549
+#define BGM_FRLG_FLUTE 550
+#define BGM_FRLG_BATTLE_DEOXYS 551
+#define BGM_FRLG_BATTLE_MEWTWO 552
+#define BGM_FRLG_BATTLE_LEGENDARY 553
+#define BGM_FRLG_LEADER_EYE 554
+#define BGM_FRLG_DEOXYS_EYE 555
+#define BGM_FRLG_TRAINER_TOWER 556
+#define BGM_FRLG_HALL_OF_FAME_PALLET_TOWN 557
+#define BGM_FRLG_TEACHY_TV 558
#define BGM_ROUTE_118 0x7FFF // What is this for?
diff --git a/include/constants/vars.h b/include/constants/vars.h
index 21834879f..6828614bf 100644
--- a/include/constants/vars.h
+++ b/include/constants/vars.h
@@ -14,6 +14,26 @@
#define VAR_0x4008 0x4008
#define VAR_0x4009 0x4009
#define VAR_0x400A 0x400A
+#define VAR_0x400B 0x400B
+#define VAR_0x400C 0x400C
+#define VAR_0x400D 0x400D
+#define VAR_0x400E 0x400E
+#define VAR_0x400F 0x400F
+#define VAR_0x4010 0x4010
+#define VAR_0x4011 0x4011
+#define VAR_0x4012 0x4012
+#define VAR_0x4013 0x4013
+#define VAR_0x4014 0x4014
+#define VAR_0x4015 0x4015
+#define VAR_0x4016 0x4016
+#define VAR_0x4017 0x4017
+#define VAR_0x4018 0x4018
+#define VAR_0x4019 0x4019
+#define VAR_0x401A 0x401A
+#define VAR_0x401B 0x401B
+#define VAR_0x401C 0x401C
+#define VAR_0x401D 0x401D
+#define VAR_0x401E 0x401E
#define VAR_0x401F 0x401F
#define VAR_RECYCLE_GOODS 0x4020
#define VAR_REPEL_STEP_COUNT 0x4021
@@ -22,35 +42,244 @@
#define VAR_MIRAGE_RND_H 0x4024
#define VAR_MIRAGE_RND_L 0x4025
#define VAR_SECRET_BASE_MAP 0x4026
-
+#define VAR_0x4027 0x4027
+#define VAR_0x4028 0x4028
+#define VAR_0x4029 0x4029
#define VAR_HAPPINESS_STEP_COUNTER 0x402A
#define VAR_POISON_STEP_COUNTER 0x402B
#define VAR_RESET_RTC_ENABLE 0x402C
-
+#define VAR_0x402D 0x402D
+#define VAR_0x402E 0x402E
+#define VAR_0x402F 0x402F
+#define VAR_0x4030 0x4030
+#define VAR_0x4031 0x4031
+#define VAR_0x4032 0x4032
+#define VAR_0x4033 0x4033
+#define VAR_0x4034 0x4034
+#define VAR_0x4035 0x4035
+#define VAR_STORAGE_UNKNOWN 0x4036
+#define VAR_0x4037 0x4037
+#define VAR_0x4038 0x4038
+#define VAR_0x4039 0x4039
+#define VAR_0x403A 0x403A
+#define VAR_0x403B 0x403B
+#define VAR_0x403C 0x403C
+#define VAR_0x403D 0x403D
+#define VAR_ALTERING_CAVE_WILD_SET 0x403E
+#define VAR_0x403F 0x403F
#define VAR_DAYS 0x4040
-
+#define VAR_0x4041 0x4041
+#define VAR_0x4042 0x4042
#define VAR_DEPT_STORE_FLOOR 0x4043
+#define VAR_0x4044 0x4044
#define VAR_POKELOT_PRIZE 0x4045
#define VAR_NATIONAL_DEX 0x4046
-#define VAR_SHROOMISH_SIZE_RECORD 0x4047
+#define VAR_SEEDOT_SIZE_RECORD 0x4047
#define VAR_ASH_GATHER_COUNT 0x4048
#define VAR_BIRCH_STATE 0x4049
#define VAR_CRUISE_STEP_COUNT 0x404A
#define VAR_POKELOT_RND1 0x404B
#define VAR_POKELOT_RND2 0x404C
-
-#define VAR_BARBOACH_SIZE_RECORD 0x404F
-
+#define VAR_0x404D 0x404D
+#define VAR_0x404E 0x404E
+#define VAR_LOTAD_SIZE_RECORD 0x404F
+#define VAR_0x4050 0x4050
+#define VAR_0x4051 0x4051
+#define VAR_0x4052 0x4052
+#define VAR_0x4053 0x4053
#define VAR_0x4054 0x4054
-
+#define VAR_0x4055 0x4055
+#define VAR_0x4056 0x4056
+#define VAR_0x4057 0x4057
+#define VAR_0x4058 0x4058
+#define VAR_0x4059 0x4059
+#define VAR_0x405A 0x405A
+#define VAR_0x405B 0x405B
+#define VAR_0x405C 0x405C
+#define VAR_0x405D 0x405D
+#define VAR_0x405E 0x405E
+#define VAR_0x405F 0x405F
+#define VAR_0x4060 0x4060
+#define VAR_0x4061 0x4061
+#define VAR_0x4062 0x4062
+#define VAR_0x4063 0x4063
+#define VAR_0x4064 0x4064
+#define VAR_0x4065 0x4065
+#define VAR_0x4066 0x4066
+#define VAR_0x4067 0x4067
+#define VAR_0x4068 0x4068
+#define VAR_0x4069 0x4069
+#define VAR_0x406A 0x406A
+#define VAR_0x406B 0x406B
+#define VAR_0x406C 0x406C
+#define VAR_0x406D 0x406D
+#define VAR_0x406E 0x406E
+#define VAR_0x406F 0x406F
+#define VAR_0x4070 0x4070
+#define VAR_0x4071 0x4071
+#define VAR_0x4072 0x4072
+#define VAR_0x4073 0x4073
+#define VAR_0x4074 0x4074
+#define VAR_0x4075 0x4075
+#define VAR_0x4076 0x4076
+#define VAR_0x4077 0x4077
+#define VAR_0x4078 0x4078
+#define VAR_0x4079 0x4079
+#define VAR_0x407A 0x407A
+#define VAR_0x407B 0x407B
+#define VAR_0x407C 0x407C
+#define VAR_0x407D 0x407D
+#define VAR_0x407E 0x407E
+#define VAR_0x407F 0x407F
+#define VAR_0x4080 0x4080
+#define VAR_0x4081 0x4081
+#define VAR_0x4082 0x4082
+#define VAR_0x4083 0x4083
+#define VAR_0x4084 0x4084
+#define VAR_0x4085 0x4085
+#define VAR_0x4086 0x4086
+#define VAR_0x4087 0x4087
+#define VAR_0x4088 0x4088
#define VAR_0x4089 0x4089
+#define VAR_0x408A 0x408A
+#define VAR_0x408B 0x408B
+#define VAR_0x408C 0x408C
+#define VAR_0x408D 0x408D
+#define VAR_0x408E 0x408E
+#define VAR_0x408F 0x408F
+#define VAR_0x4090 0x4090
+#define VAR_0x4091 0x4091
+#define VAR_0x4092 0x4092
+#define VAR_0x4093 0x4093
+#define VAR_0x4094 0x4094
#define VAR_0x4095 0x4095
+#define VAR_0x4096 0x4096
#define VAR_0x4097 0x4097
-#define VAR_0x409a 0x409a
-#define VAR_WEATHER_INSTITUTE_CLEARED 0x040B3
+#define VAR_0x4098 0x4098
+#define VAR_0x4099 0x4099
+#define VAR_0x409A 0x409A
+#define VAR_0x409B 0x409B
+#define VAR_0x409C 0x409C
+#define VAR_0x409D 0x409D
+#define VAR_0x409E 0x409E
+#define VAR_0x409F 0x409F
+#define VAR_0x40A0 0x40A0
+#define VAR_0x40A1 0x40A1
+#define VAR_0x40A2 0x40A2
+#define VAR_0x40A3 0x40A3
+#define VAR_0x40A4 0x40A4
+#define VAR_0x40A5 0x40A5
+#define VAR_0x40A6 0x40A6
+#define VAR_0x40A7 0x40A7
+#define VAR_0x40A8 0x40A8
+#define VAR_0x40A9 0x40A9
+#define VAR_0x40AA 0x40AA
+#define VAR_0x40AB 0x40AB
+#define VAR_0x40AC 0x40AC
+#define VAR_0x40AD 0x40AD
+#define VAR_0x40AE 0x40AE
+#define VAR_0x40AF 0x40AF
+#define VAR_0x40B0 0x40B0
+#define VAR_0x40B1 0x40B1
+#define VAR_0x40B2 0x40B2
+#define VAR_0x40B3 0x40B3
#define VAR_PORTHOLE 0x40B4
-
+#define VAR_0x40B5 0x40B5
+#define VAR_0x40B6 0x40B6
+#define VAR_0x40B7 0x40B7
+#define VAR_0x40B8 0x40B8
+#define VAR_0x40B9 0x40B9
+#define VAR_0x40BA 0x40BA
+#define VAR_0x40BB 0x40BB
#define VAR_0x40BC 0x40BC
+#define VAR_0x40BD 0x40BD
+#define VAR_0x40BE 0x40BE
+#define VAR_0x40BF 0x40BF
+#define VAR_0x40C0 0x40C0
+#define VAR_0x40C1 0x40C1
#define VAR_0x40C2 0x40C2
+#define VAR_0x40C3 0x40C3
+#define VAR_0x40C4 0x40C4
+#define VAR_0x40C5 0x40C5
+#define VAR_0x40C6 0x40C6
+#define VAR_0x40C7 0x40C7
+#define VAR_0x40C8 0x40C8
+#define VAR_0x40C9 0x40C9
+#define VAR_0x40CA 0x40CA
+#define VAR_0x40CB 0x40CB
+#define VAR_0x40CC 0x40CC
+#define VAR_0x40CD 0x40CD
+#define VAR_0x40CE 0x40CE
+#define VAR_FRONTIER_FACILITY 0x40CF
+#define VAR_0x40D0 0x40D0
+#define VAR_0x40D1 0x40D1
+#define VAR_0x40D2 0x40D2
+#define VAR_0x40D3 0x40D3
+#define VAR_0x40D4 0x40D4
+#define VAR_0x40D5 0x40D5
+#define VAR_0x40D6 0x40D6
+#define VAR_0x40D7 0x40D7
+#define VAR_0x40D8 0x40D8
+#define VAR_0x40D9 0x40D9
+#define VAR_0x40DA 0x40DA
+#define VAR_0x40DB 0x40DB
+#define VAR_0x40DC 0x40DC
+#define VAR_0x40DD 0x40DD
+#define VAR_0x40DE 0x40DE
+#define VAR_0x40DF 0x40DF
+#define VAR_0x40E0 0x40E0
+#define VAR_0x40E1 0x40E1
+#define VAR_0x40E2 0x40E2
+#define VAR_0x40E3 0x40E3
+#define VAR_0x40E4 0x40E4
+#define VAR_0x40E5 0x40E5
+#define VAR_DAILY_SLOTS 0x40E6
+#define VAR_DAILY_WILDS 0x40E7
+#define VAR_DAILY_BLENDER 0x40E8
+#define VAR_DAILY_PLANTED_BERRIES 0x40E9
+#define VAR_DAILY_PICKED_BERRIES 0x40EA
+#define VAR_DAILY_ROULETTE 0x40EB
+#define VAR_0x40EC 0x40EC
+#define VAR_0x40ED 0x40ED
+#define VAR_0x40EE 0x40EE
+#define VAR_0x40EF 0x40EF
+#define VAR_0x40F0 0x40F0
+#define VAR_DAILY_BP 0x40F1
+#define VAR_0x40F2 0x40F2
+#define VAR_0x40F3 0x40F3
+#define VAR_0x40F4 0x40F4
+#define VAR_0x40F5 0x40F5
+#define VAR_0x40F6 0x40F6
+#define VAR_0x40F7 0x40F7
+#define VAR_0x40F8 0x40F8
+#define VAR_0x40F9 0x40F9
+#define VAR_0x40FA 0x40FA
+#define VAR_0x40FB 0x40FB
+#define VAR_0x40FC 0x40FC
+#define VAR_0x40FD 0x40FD
+#define VAR_0x40FE 0x40FE
+#define VAR_0x40FF 0x40FF
+
+#define VAR_0x8000 0x8000
+#define VAR_0x8001 0x8001
+#define VAR_0x8002 0x8002
+#define VAR_0x8003 0x8003
+#define VAR_0x8004 0x8004
+#define VAR_0x8005 0x8005
+#define VAR_0x8006 0x8006
+#define VAR_0x8007 0x8007
+#define VAR_0x8008 0x8008
+#define VAR_0x8009 0x8009
+#define VAR_0x800A 0x800A
+#define VAR_0x800B 0x800B
+#define VAR_FACING 0x800C
+#define VAR_RESULT 0x800D
+#define VAR_ITEM_ID 0x800E
+#define VAR_LAST_TALKED 0x800F
+#define VAR_CONTEST_RANK 0x8010
+#define VAR_CONTEST_CATEGORY 0x8011
+#define VAR_MON_BOX_ID 0x8012
+#define VAR_MON_BOX_POS 0x8013
+#define VAR_0x8014 0x8014
#endif // GUARD_CONSTANTS_VARS_H
diff --git a/include/data/bard_music/pokemon.h b/include/data/bard_music/pokemon.h
index 7b4081a3c..693005360 100644
--- a/include/data/bard_music/pokemon.h
+++ b/include/data/bard_music/pokemon.h
@@ -1,6 +1,6 @@
#ifndef GUARD_DATA_BARD_MUSIC_POKEMON_H
#define GUARD_DATA_BARD_MUSIC_POKEMON_H
-#include "species.h"
+#include "constants/species.h"
const u16 gUnknown_085F5490 = NUM_SPECIES;
diff --git a/include/event_data.h b/include/event_data.h
index c2cae1f35..f829d3b87 100644
--- a/include/event_data.h
+++ b/include/event_data.h
@@ -2,7 +2,7 @@
#define GUARD_EVENT_DATA_H
#include "constants/flags.h"
-#include "vars.h"
+#include "constants/vars.h"
void InitEventData(void);
void ClearTempFieldEventData(void);
diff --git a/include/moves.h b/include/moves.h
deleted file mode 100644
index 682f59506..000000000
--- a/include/moves.h
+++ /dev/null
@@ -1,366 +0,0 @@
-#ifndef GUARD_MOVES_H
-#define GUARD_MOVES_H
-
-enum
-{
- MOVE_NONE,
- MOVE_POUND,
- MOVE_KARATE_CHOP,
- MOVE_DOUBLE_SLAP,
- MOVE_COMET_PUNCH,
- MOVE_MEGA_PUNCH,
- MOVE_PAY_DAY,
- MOVE_FIRE_PUNCH,
- MOVE_ICE_PUNCH,
- MOVE_THUNDER_PUNCH,
- MOVE_SCRATCH,
- MOVE_VICE_GRIP,
- MOVE_GUILLOTINE,
- MOVE_RAZOR_WIND,
- MOVE_SWORDS_DANCE,
- MOVE_CUT,
- MOVE_GUST,
- MOVE_WING_ATTACK,
- MOVE_WHIRLWIND,
- MOVE_FLY,
- MOVE_BIND,
- MOVE_SLAM,
- MOVE_VINE_WHIP,
- MOVE_STOMP,
- MOVE_DOUBLE_KICK,
- MOVE_MEGA_KICK,
- MOVE_JUMP_KICK,
- MOVE_ROLLING_KICK,
- MOVE_SAND_ATTACK,
- MOVE_HEADBUTT,
- MOVE_HORN_ATTACK,
- MOVE_FURY_ATTACK,
- MOVE_HORN_DRILL,
- MOVE_TACKLE,
- MOVE_BODY_SLAM,
- MOVE_WRAP,
- MOVE_TAKE_DOWN,
- MOVE_THRASH,
- MOVE_DOUBLE_EDGE,
- MOVE_TAIL_WHIP,
- MOVE_POISON_STING,
- MOVE_TWINEEDLE,
- MOVE_PIN_MISSILE,
- MOVE_LEER,
- MOVE_BITE,
- MOVE_GROWL,
- MOVE_ROAR,
- MOVE_SING,
- MOVE_SUPERSONIC,
- MOVE_SONIC_BOOM,
- MOVE_DISABLE,
- MOVE_ACID,
- MOVE_EMBER,
- MOVE_FLAMETHROWER,
- MOVE_MIST,
- MOVE_WATER_GUN,
- MOVE_HYDRO_PUMP,
- MOVE_SURF,
- MOVE_ICE_BEAM,
- MOVE_BLIZZARD,
- MOVE_PSYBEAM,
- MOVE_BUBBLE_BEAM,
- MOVE_AURORA_BEAM,
- MOVE_HYPER_BEAM,
- MOVE_PECK,
- MOVE_DRILL_PECK,
- MOVE_SUBMISSION,
- MOVE_LOW_KICK,
- MOVE_COUNTER,
- MOVE_SEISMIC_TOSS,
- MOVE_STRENGTH,
- MOVE_ABSORB,
- MOVE_MEGA_DRAIN,
- MOVE_LEECH_SEED,
- MOVE_GROWTH,
- MOVE_RAZOR_LEAF,
- MOVE_SOLAR_BEAM,
- MOVE_POISON_POWDER,
- MOVE_STUN_SPORE,
- MOVE_SLEEP_POWDER,
- MOVE_PETAL_DANCE,
- MOVE_STRING_SHOT,
- MOVE_DRAGON_RAGE,
- MOVE_FIRE_SPIN,
- MOVE_THUNDER_SHOCK,
- MOVE_THUNDERBOLT,
- MOVE_THUNDER_WAVE,
- MOVE_THUNDER,
- MOVE_ROCK_THROW,
- MOVE_EARTHQUAKE,
- MOVE_FISSURE,
- MOVE_DIG,
- MOVE_TOXIC,
- MOVE_CONFUSION,
- MOVE_PSYCHIC,
- MOVE_HYPNOSIS,
- MOVE_MEDITATE,
- MOVE_AGILITY,
- MOVE_QUICK_ATTACK,
- MOVE_RAGE,
- MOVE_TELEPORT,
- MOVE_NIGHT_SHADE,
- MOVE_MIMIC,
- MOVE_SCREECH,
- MOVE_DOUBLE_TEAM,
- MOVE_RECOVER,
- MOVE_HARDEN,
- MOVE_MINIMIZE,
- MOVE_SMOKESCREEN,
- MOVE_CONFUSE_RAY,
- MOVE_WITHDRAW,
- MOVE_DEFENSE_CURL,
- MOVE_BARRIER,
- MOVE_LIGHT_SCREEN,
- MOVE_HAZE,
- MOVE_REFLECT,
- MOVE_FOCUS_ENERGY,
- MOVE_BIDE,
- MOVE_METRONOME,
- MOVE_MIRROR_MOVE,
- MOVE_SELF_DESTRUCT,
- MOVE_EGG_BOMB,
- MOVE_LICK,
- MOVE_SMOG,
- MOVE_SLUDGE,
- MOVE_BONE_CLUB,
- MOVE_FIRE_BLAST,
- MOVE_WATERFALL,
- MOVE_CLAMP,
- MOVE_SWIFT,
- MOVE_SKULL_BASH,
- MOVE_SPIKE_CANNON,
- MOVE_CONSTRICT,
- MOVE_AMNESIA,
- MOVE_KINESIS,
- MOVE_SOFT_BOILED,
- MOVE_HI_JUMP_KICK,
- MOVE_GLARE,
- MOVE_DREAM_EATER,
- MOVE_POISON_GAS,
- MOVE_BARRAGE,
- MOVE_LEECH_LIFE,
- MOVE_LOVELY_KISS,
- MOVE_SKY_ATTACK,
- MOVE_TRANSFORM,
- MOVE_BUBBLE,
- MOVE_DIZZY_PUNCH,
- MOVE_SPORE,
- MOVE_FLASH,
- MOVE_PSYWAVE,
- MOVE_SPLASH,
- MOVE_ACID_ARMOR,
- MOVE_CRABHAMMER,
- MOVE_EXPLOSION,
- MOVE_FURY_SWIPES,
- MOVE_BONEMERANG,
- MOVE_REST,
- MOVE_ROCK_SLIDE,
- MOVE_HYPER_FANG,
- MOVE_SHARPEN,
- MOVE_CONVERSION,
- MOVE_TRI_ATTACK,
- MOVE_SUPER_FANG,
- MOVE_SLASH,
- MOVE_SUBSTITUTE,
- MOVE_STRUGGLE,
- MOVE_SKETCH,
- MOVE_TRIPLE_KICK,
- MOVE_THIEF,
- MOVE_SPIDER_WEB,
- MOVE_MIND_READER,
- MOVE_NIGHTMARE,
- MOVE_FLAME_WHEEL,
- MOVE_SNORE,
- MOVE_CURSE,
- MOVE_FLAIL,
- MOVE_CONVERSION_2,
- MOVE_AEROBLAST,
- MOVE_COTTON_SPORE,
- MOVE_REVERSAL,
- MOVE_SPITE,
- MOVE_POWDER_SNOW,
- MOVE_PROTECT,
- MOVE_MACH_PUNCH,
- MOVE_SCARY_FACE,
- MOVE_FAINT_ATTACK,
- MOVE_SWEET_KISS,
- MOVE_BELLY_DRUM,
- MOVE_SLUDGE_BOMB,
- MOVE_MUD_SLAP,
- MOVE_OCTAZOOKA,
- MOVE_SPIKES,
- MOVE_ZAP_CANNON,
- MOVE_FORESIGHT,
- MOVE_DESTINY_BOND,
- MOVE_PERISH_SONG,
- MOVE_ICY_WIND,
- MOVE_DETECT,
- MOVE_BONE_RUSH,
- MOVE_LOCK_ON,
- MOVE_OUTRAGE,
- MOVE_SANDSTORM,
- MOVE_GIGA_DRAIN,
- MOVE_ENDURE,
- MOVE_CHARM,
- MOVE_ROLLOUT,
- MOVE_FALSE_SWIPE,
- MOVE_SWAGGER,
- MOVE_MILK_DRINK,
- MOVE_SPARK,
- MOVE_FURY_CUTTER,
- MOVE_STEEL_WING,
- MOVE_MEAN_LOOK,
- MOVE_ATTRACT,
- MOVE_SLEEP_TALK,
- MOVE_HEAL_BELL,
- MOVE_RETURN,
- MOVE_PRESENT,
- MOVE_FRUSTRATION,
- MOVE_SAFEGUARD,
- MOVE_PAIN_SPLIT,
- MOVE_SACRED_FIRE,
- MOVE_MAGNITUDE,
- MOVE_DYNAMIC_PUNCH,
- MOVE_MEGAHORN,
- MOVE_DRAGON_BREATH,
- MOVE_BATON_PASS,
- MOVE_ENCORE,
- MOVE_PURSUIT,
- MOVE_RAPID_SPIN,
- MOVE_SWEET_SCENT,
- MOVE_IRON_TAIL,
- MOVE_METAL_CLAW,
- MOVE_VITAL_THROW,
- MOVE_MORNING_SUN,
- MOVE_SYNTHESIS,
- MOVE_MOONLIGHT,
- MOVE_HIDDEN_POWER,
- MOVE_CROSS_CHOP,
- MOVE_TWISTER,
- MOVE_RAIN_DANCE,
- MOVE_SUNNY_DAY,
- MOVE_CRUNCH,
- MOVE_MIRROR_COAT,
- MOVE_PSYCH_UP,
- MOVE_EXTREME_SPEED,
- MOVE_ANCIENT_POWER,
- MOVE_SHADOW_BALL,
- MOVE_FUTURE_SIGHT,
- MOVE_ROCK_SMASH,
- MOVE_WHIRLPOOL,
- MOVE_BEAT_UP,
- MOVE_FAKE_OUT,
- MOVE_UPROAR,
- MOVE_STOCKPILE,
- MOVE_SPIT_UP,
- MOVE_SWALLOW,
- MOVE_HEAT_WAVE,
- MOVE_HAIL,
- MOVE_TORMENT,
- MOVE_FLATTER,
- MOVE_WILL_O_WISP,
- MOVE_MEMENTO,
- MOVE_FACADE,
- MOVE_FOCUS_PUNCH,
- MOVE_SMELLING_SALT,
- MOVE_FOLLOW_ME,
- MOVE_NATURE_POWER,
- MOVE_CHARGE,
- MOVE_TAUNT,
- MOVE_HELPING_HAND,
- MOVE_TRICK,
- MOVE_ROLE_PLAY,
- MOVE_WISH,
- MOVE_ASSIST,
- MOVE_INGRAIN,
- MOVE_SUPERPOWER,
- MOVE_MAGIC_COAT,
- MOVE_RECYCLE,
- MOVE_REVENGE,
- MOVE_BRICK_BREAK,
- MOVE_YAWN,
- MOVE_KNOCK_OFF,
- MOVE_ENDEAVOR,
- MOVE_ERUPTION,
- MOVE_SKILL_SWAP,
- MOVE_IMPRISON,
- MOVE_REFRESH,
- MOVE_GRUDGE,
- MOVE_SNATCH,
- MOVE_SECRET_POWER,
- MOVE_DIVE,
- MOVE_ARM_THRUST,
- MOVE_CAMOUFLAGE,
- MOVE_TAIL_GLOW,
- MOVE_LUSTER_PURGE,
- MOVE_MIST_BALL,
- MOVE_FEATHER_DANCE,
- MOVE_TEETER_DANCE,
- MOVE_BLAZE_KICK,
- MOVE_MUD_SPORT,
- MOVE_ICE_BALL,
- MOVE_NEEDLE_ARM,
- MOVE_SLACK_OFF,
- MOVE_HYPER_VOICE,
- MOVE_POISON_FANG,
- MOVE_CRUSH_CLAW,
- MOVE_BLAST_BURN,
- MOVE_HYDRO_CANNON,
- MOVE_METEOR_MASH,
- MOVE_ASTONISH,
- MOVE_WEATHER_BALL,
- MOVE_AROMATHERAPY,
- MOVE_FAKE_TEARS,
- MOVE_AIR_CUTTER,
- MOVE_OVERHEAT,
- MOVE_ODOR_SLEUTH,
- MOVE_ROCK_TOMB,
- MOVE_SILVER_WIND,
- MOVE_METAL_SOUND,
- MOVE_GRASS_WHISTLE,
- MOVE_TICKLE,
- MOVE_COSMIC_POWER,
- MOVE_WATER_SPOUT,
- MOVE_SIGNAL_BEAM,
- MOVE_SHADOW_PUNCH,
- MOVE_EXTRASENSORY,
- MOVE_SKY_UPPERCUT,
- MOVE_SAND_TOMB,
- MOVE_SHEER_COLD,
- MOVE_MUDDY_WATER,
- MOVE_BULLET_SEED,
- MOVE_AERIAL_ACE,
- MOVE_ICICLE_SPEAR,
- MOVE_IRON_DEFENSE,
- MOVE_BLOCK,
- MOVE_HOWL,
- MOVE_DRAGON_CLAW,
- MOVE_FRENZY_PLANT,
- MOVE_BULK_UP,
- MOVE_BOUNCE,
- MOVE_MUD_SHOT,
- MOVE_POISON_TAIL,
- MOVE_COVET,
- MOVE_VOLT_TACKLE,
- MOVE_MAGICAL_LEAF,
- MOVE_WATER_SPORT,
- MOVE_CALM_MIND,
- MOVE_LEAF_BLADE,
- MOVE_DRAGON_DANCE,
- MOVE_ROCK_BLAST,
- MOVE_SHOCK_WAVE,
- MOVE_WATER_PULSE,
- MOVE_DOOM_DESIRE,
- MOVE_PSYCHO_BOOST,
-};
-extern const u8 gMoveNames[][13];
-
-#define LAST_MOVE_INDEX MOVE_PSYCHO_BOOST
-
-#endif // GUARD_MOVES_H
diff --git a/include/species.h b/include/species.h
deleted file mode 100644
index ac0797418..000000000
--- a/include/species.h
+++ /dev/null
@@ -1,454 +0,0 @@
-#ifndef GUARD_SPECIES_H
-#define GUARD_SPECIES_H
-
-enum
-{
- SPECIES_NONE, // 0x000
- SPECIES_BULBASAUR, // 0x001
- SPECIES_IVYSAUR, // 0x002
- SPECIES_VENUSAUR, // 0x003
- SPECIES_CHARMANDER, // 0x004
- SPECIES_CHARMELEON, // 0x005
- SPECIES_CHARIZARD, // 0x006
- SPECIES_SQUIRTLE, // 0x007
- SPECIES_WARTORTLE, // 0x008
- SPECIES_BLASTOISE, // 0x009
- SPECIES_CATERPIE, // 0x00a
- SPECIES_METAPOD, // 0x00b
- SPECIES_BUTTERFREE, // 0x00c
- SPECIES_WEEDLE, // 0x00d
- SPECIES_KAKUNA, // 0x00e
- SPECIES_BEEDRILL, // 0x00f
- SPECIES_PIDGEY, // 0x010
- SPECIES_PIDGEOTTO, // 0x011
- SPECIES_PIDGEOT, // 0x012
- SPECIES_RATTATA, // 0x013
- SPECIES_RATICATE, // 0x014
- SPECIES_SPEAROW, // 0x015
- SPECIES_FEAROW, // 0x016
- SPECIES_EKANS, // 0x017
- SPECIES_ARBOK, // 0x018
- SPECIES_PIKACHU, // 0x019
- SPECIES_RAICHU, // 0x01a
- SPECIES_SANDSHREW, // 0x01b
- SPECIES_SANDSLASH, // 0x01c
- SPECIES_NIDORAN_F, // 0x01d
- SPECIES_NIDORINA, // 0x01e
- SPECIES_NIDOQUEEN, // 0x01f
- SPECIES_NIDORAN_M, // 0x020
- SPECIES_NIDORINO, // 0x021
- SPECIES_NIDOKING, // 0x022
- SPECIES_CLEFAIRY, // 0x023
- SPECIES_CLEFABLE, // 0x024
- SPECIES_VULPIX, // 0x025
- SPECIES_NINETALES, // 0x026
- SPECIES_JIGGLYPUFF, // 0x027
- SPECIES_WIGGLYTUFF, // 0x028
- SPECIES_ZUBAT, // 0x029
- SPECIES_GOLBAT, // 0x02a
- SPECIES_ODDISH, // 0x02b
- SPECIES_GLOOM, // 0x02c
- SPECIES_VILEPLUME, // 0x02d
- SPECIES_PARAS, // 0x02e
- SPECIES_PARASECT, // 0x02f
- SPECIES_VENONAT, // 0x030
- SPECIES_VENOMOTH, // 0x031
- SPECIES_DIGLETT, // 0x032
- SPECIES_DUGTRIO, // 0x033
- SPECIES_MEOWTH, // 0x034
- SPECIES_PERSIAN, // 0x035
- SPECIES_PSYDUCK, // 0x036
- SPECIES_GOLDUCK, // 0x037
- SPECIES_MANKEY, // 0x038
- SPECIES_PRIMEAPE, // 0x039
- SPECIES_GROWLITHE, // 0x03a
- SPECIES_ARCANINE, // 0x03b
- SPECIES_POLIWAG, // 0x03c
- SPECIES_POLIWHIRL, // 0x03d
- SPECIES_POLIWRATH, // 0x03e
- SPECIES_ABRA, // 0x03f
- SPECIES_KADABRA, // 0x040
- SPECIES_ALAKAZAM, // 0x041
- SPECIES_MACHOP, // 0x042
- SPECIES_MACHOKE, // 0x043
- SPECIES_MACHAMP, // 0x044
- SPECIES_BELLSPROUT, // 0x045
- SPECIES_WEEPINBELL, // 0x046
- SPECIES_VICTREEBEL, // 0x047
- SPECIES_TENTACOOL, // 0x048
- SPECIES_TENTACRUEL, // 0x049
- SPECIES_GEODUDE, // 0x04a
- SPECIES_GRAVELER, // 0x04b
- SPECIES_GOLEM, // 0x04c
- SPECIES_PONYTA, // 0x04d
- SPECIES_RAPIDASH, // 0x04e
- SPECIES_SLOWPOKE, // 0x04f
- SPECIES_SLOWBRO, // 0x050
- SPECIES_MAGNEMITE, // 0x051
- SPECIES_MAGNETON, // 0x052
- SPECIES_FARFETCHD, // 0x053
- SPECIES_DODUO, // 0x054
- SPECIES_DODRIO, // 0x055
- SPECIES_SEEL, // 0x056
- SPECIES_DEWGONG, // 0x057
- SPECIES_GRIMER, // 0x058
- SPECIES_MUK, // 0x059
- SPECIES_SHELLDER, // 0x05a
- SPECIES_CLOYSTER, // 0x05b
- SPECIES_GASTLY, // 0x05c
- SPECIES_HAUNTER, // 0x05d
- SPECIES_GENGAR, // 0x05e
- SPECIES_ONIX, // 0x05f
- SPECIES_DROWZEE, // 0x060
- SPECIES_HYPNO, // 0x061
- SPECIES_KRABBY, // 0x062
- SPECIES_KINGLER, // 0x063
- SPECIES_VOLTORB, // 0x064
- SPECIES_ELECTRODE, // 0x065
- SPECIES_EXEGGCUTE, // 0x066
- SPECIES_EXEGGUTOR, // 0x067
- SPECIES_CUBONE, // 0x068
- SPECIES_MAROWAK, // 0x069
- SPECIES_HITMONLEE, // 0x06a
- SPECIES_HITMONCHAN, // 0x06b
- SPECIES_LICKITUNG, // 0x06c
- SPECIES_KOFFING, // 0x06d
- SPECIES_WEEZING, // 0x06e
- SPECIES_RHYHORN, // 0x06f
- SPECIES_RHYDON, // 0x070
- SPECIES_CHANSEY, // 0x071
- SPECIES_TANGELA, // 0x072
- SPECIES_KANGASKHAN, // 0x073
- SPECIES_HORSEA, // 0x074
- SPECIES_SEADRA, // 0x075
- SPECIES_GOLDEEN, // 0x076
- SPECIES_SEAKING, // 0x077
- SPECIES_STARYU, // 0x078
- SPECIES_STARMIE, // 0x079
- SPECIES_MR_MIME, // 0x07a
- SPECIES_SCYTHER, // 0x07b
- SPECIES_JYNX, // 0x07c
- SPECIES_ELECTABUZZ, // 0x07d
- SPECIES_MAGMAR, // 0x07e
- SPECIES_PINSIR, // 0x07f
- SPECIES_TAUROS, // 0x080
- SPECIES_MAGIKARP, // 0x081
- SPECIES_GYARADOS, // 0x082
- SPECIES_LAPRAS, // 0x083
- SPECIES_DITTO, // 0x084
- SPECIES_EEVEE, // 0x085
- SPECIES_VAPOREON, // 0x086
- SPECIES_JOLTEON, // 0x087
- SPECIES_FLAREON, // 0x088
- SPECIES_PORYGON, // 0x089
- SPECIES_OMANYTE, // 0x08a
- SPECIES_OMASTAR, // 0x08b
- SPECIES_KABUTO, // 0x08c
- SPECIES_KABUTOPS, // 0x08d
- SPECIES_AERODACTYL, // 0x08e
- SPECIES_SNORLAX, // 0x08f
- SPECIES_ARTICUNO, // 0x090
- SPECIES_ZAPDOS, // 0x091
- SPECIES_MOLTRES, // 0x092
- SPECIES_DRATINI, // 0x093
- SPECIES_DRAGONAIR, // 0x094
- SPECIES_DRAGONITE, // 0x095
- SPECIES_MEWTWO, // 0x096
- SPECIES_MEW, // 0x097
- SPECIES_CHIKORITA, // 0x098
- SPECIES_BAYLEEF, // 0x099
- SPECIES_MEGANIUM, // 0x09a
- SPECIES_CYNDAQUIL, // 0x09b
- SPECIES_QUILAVA, // 0x09c
- SPECIES_TYPHLOSION, // 0x09d
- SPECIES_TOTODILE, // 0x09e
- SPECIES_CROCONAW, // 0x09f
- SPECIES_FERALIGATR, // 0x0a0
- SPECIES_SENTRET, // 0x0a1
- SPECIES_FURRET, // 0x0a2
- SPECIES_HOOTHOOT, // 0x0a3
- SPECIES_NOCTOWL, // 0x0a4
- SPECIES_LEDYBA, // 0x0a5
- SPECIES_LEDIAN, // 0x0a6
- SPECIES_SPINARAK, // 0x0a7
- SPECIES_ARIADOS, // 0x0a8
- SPECIES_CROBAT, // 0x0a9
- SPECIES_CHINCHOU, // 0x0aa
- SPECIES_LANTURN, // 0x0ab
- SPECIES_PICHU, // 0x0ac
- SPECIES_CLEFFA, // 0x0ad
- SPECIES_IGGLYBUFF, // 0x0ae
- SPECIES_TOGEPI, // 0x0af
- SPECIES_TOGETIC, // 0x0b0
- SPECIES_NATU, // 0x0b1
- SPECIES_XATU, // 0x0b2
- SPECIES_MAREEP, // 0x0b3
- SPECIES_FLAAFFY, // 0x0b4
- SPECIES_AMPHAROS, // 0x0b5
- SPECIES_BELLOSSOM, // 0x0b6
- SPECIES_MARILL, // 0x0b7
- SPECIES_AZUMARILL, // 0x0b8
- SPECIES_SUDOWOODO, // 0x0b9
- SPECIES_POLITOED, // 0x0ba
- SPECIES_HOPPIP, // 0x0bb
- SPECIES_SKIPLOOM, // 0x0bc
- SPECIES_JUMPLUFF, // 0x0bd
- SPECIES_AIPOM, // 0x0be
- SPECIES_SUNKERN, // 0x0bf
- SPECIES_SUNFLORA, // 0x0c0
- SPECIES_YANMA, // 0x0c1
- SPECIES_WOOPER, // 0x0c2
- SPECIES_QUAGSIRE, // 0x0c3
- SPECIES_ESPEON, // 0x0c4
- SPECIES_UMBREON, // 0x0c5
- SPECIES_MURKROW, // 0x0c6
- SPECIES_SLOWKING, // 0x0c7
- SPECIES_MISDREAVUS, // 0x0c8
- SPECIES_UNOWN, // 0x0c9
- SPECIES_WOBBUFFET, // 0x0ca
- SPECIES_GIRAFARIG, // 0x0cb
- SPECIES_PINECO, // 0x0cc
- SPECIES_FORRETRESS, // 0x0cd
- SPECIES_DUNSPARCE, // 0x0ce
- SPECIES_GLIGAR, // 0x0cf
- SPECIES_STEELIX, // 0x0d0
- SPECIES_SNUBBULL, // 0x0d1
- SPECIES_GRANBULL, // 0x0d2
- SPECIES_QWILFISH, // 0x0d3
- SPECIES_SCIZOR, // 0x0d4
- SPECIES_SHUCKLE, // 0x0d5
- SPECIES_HERACROSS, // 0x0d6
- SPECIES_SNEASEL, // 0x0d7
- SPECIES_TEDDIURSA, // 0x0d8
- SPECIES_URSARING, // 0x0d9
- SPECIES_SLUGMA, // 0x0da
- SPECIES_MAGCARGO, // 0x0db
- SPECIES_SWINUB, // 0x0dc
- SPECIES_PILOSWINE, // 0x0dd
- SPECIES_CORSOLA, // 0x0de
- SPECIES_REMORAID, // 0x0df
- SPECIES_OCTILLERY, // 0x0e0
- SPECIES_DELIBIRD, // 0x0e1
- SPECIES_MANTINE, // 0x0e2
- SPECIES_SKARMORY, // 0x0e3
- SPECIES_HOUNDOUR, // 0x0e4
- SPECIES_HOUNDOOM, // 0x0e5
- SPECIES_KINGDRA, // 0x0e6
- SPECIES_PHANPY, // 0x0e7
- SPECIES_DONPHAN, // 0x0e8
- SPECIES_PORYGON2, // 0x0e9
- SPECIES_STANTLER, // 0x0ea
- SPECIES_SMEARGLE, // 0x0eb
- SPECIES_TYROGUE, // 0x0ec
- SPECIES_HITMONTOP, // 0x0ed
- SPECIES_SMOOCHUM, // 0x0ee
- SPECIES_ELEKID, // 0x0ef
- SPECIES_MAGBY, // 0x0f0
- SPECIES_MILTANK, // 0x0f1
- SPECIES_BLISSEY, // 0x0f2
- SPECIES_RAIKOU, // 0x0f3
- SPECIES_ENTEI, // 0x0f4
- SPECIES_SUICUNE, // 0x0f5
- SPECIES_LARVITAR, // 0x0f6
- SPECIES_PUPITAR, // 0x0f7
- SPECIES_TYRANITAR, // 0x0f8
- SPECIES_LUGIA, // 0x0f9
- SPECIES_HO_OH, // 0x0fa
- SPECIES_CELEBI, // 0x0fb
-
- SPECIES_OLD_UNOWN_B,
- SPECIES_OLD_UNOWN_C,
- SPECIES_OLD_UNOWN_D,
- SPECIES_OLD_UNOWN_E,
- SPECIES_OLD_UNOWN_F,
- SPECIES_OLD_UNOWN_G,
- SPECIES_OLD_UNOWN_H,
- SPECIES_OLD_UNOWN_I,
- SPECIES_OLD_UNOWN_J,
- SPECIES_OLD_UNOWN_K,
- SPECIES_OLD_UNOWN_L,
- SPECIES_OLD_UNOWN_M,
- SPECIES_OLD_UNOWN_N,
- SPECIES_OLD_UNOWN_O,
- SPECIES_OLD_UNOWN_P,
- SPECIES_OLD_UNOWN_Q,
- SPECIES_OLD_UNOWN_R,
- SPECIES_OLD_UNOWN_S,
- SPECIES_OLD_UNOWN_T,
- SPECIES_OLD_UNOWN_U,
- SPECIES_OLD_UNOWN_V,
- SPECIES_OLD_UNOWN_W,
- SPECIES_OLD_UNOWN_X,
- SPECIES_OLD_UNOWN_Y,
- SPECIES_OLD_UNOWN_Z,
-
- SPECIES_TREECKO, // 0x115
- SPECIES_GROVYLE, // 0x116
- SPECIES_SCEPTILE, // 0x117
- SPECIES_TORCHIC, // 0x118
- SPECIES_COMBUSKEN, // 0x119
- SPECIES_BLAZIKEN, // 0x11a
- SPECIES_MUDKIP, // 0x11b
- SPECIES_MARSHTOMP, // 0x11c
- SPECIES_SWAMPERT, // 0x11d
- SPECIES_POOCHYENA, // 0x11e
- SPECIES_MIGHTYENA, // 0x11f
- SPECIES_ZIGZAGOON, // 0x120
- SPECIES_LINOONE, // 0x121
- SPECIES_WURMPLE, // 0x122
- SPECIES_SILCOON, // 0x123
- SPECIES_BEAUTIFLY, // 0x124
- SPECIES_CASCOON, // 0x125
- SPECIES_DUSTOX, // 0x126
- SPECIES_LOTAD, // 0x127
- SPECIES_LOMBRE, // 0x128
- SPECIES_LUDICOLO, // 0x129
- SPECIES_SEEDOT, // 0x12a
- SPECIES_NUZLEAF, // 0x12b
- SPECIES_SHIFTRY, // 0x12c
- SPECIES_NINCADA, // 0x12d
- SPECIES_NINJASK, // 0x12e
- SPECIES_SHEDINJA, // 0x12f
- SPECIES_TAILLOW, // 0x130
- SPECIES_SWELLOW, // 0x131
- SPECIES_SHROOMISH, // 0x132
- SPECIES_BRELOOM, // 0x133
- SPECIES_SPINDA, // 0x134
- SPECIES_WINGULL, // 0x135
- SPECIES_PELIPPER, // 0x136
- SPECIES_SURSKIT, // 0x137
- SPECIES_MASQUERAIN, // 0x138
- SPECIES_WAILMER, // 0x139
- SPECIES_WAILORD, // 0x13a
- SPECIES_SKITTY, // 0x13b
- SPECIES_DELCATTY, // 0x13c
- SPECIES_KECLEON, // 0x13d
- SPECIES_BALTOY, // 0x13e
- SPECIES_CLAYDOL, // 0x13f
- SPECIES_NOSEPASS, // 0x140
- SPECIES_TORKOAL, // 0x141
- SPECIES_SABLEYE, // 0x142
- SPECIES_BARBOACH, // 0x143
- SPECIES_WHISCASH, // 0x144
- SPECIES_LUVDISC, // 0x145
- SPECIES_CORPHISH, // 0x146
- SPECIES_CRAWDAUNT, // 0x147
- SPECIES_FEEBAS, // 0x148
- SPECIES_MILOTIC, // 0x149
- SPECIES_CARVANHA, // 0x14a
- SPECIES_SHARPEDO, // 0x14b
- SPECIES_TRAPINCH, // 0x14c
- SPECIES_VIBRAVA, // 0x14d
- SPECIES_FLYGON, // 0x14e
- SPECIES_MAKUHITA, // 0x14f
- SPECIES_HARIYAMA, // 0x150
- SPECIES_ELECTRIKE, // 0x151
- SPECIES_MANECTRIC, // 0x152
- SPECIES_NUMEL, // 0x153
- SPECIES_CAMERUPT, // 0x154
- SPECIES_SPHEAL, // 0x155
- SPECIES_SEALEO, // 0x156
- SPECIES_WALREIN, // 0x157
- SPECIES_CACNEA, // 0x158
- SPECIES_CACTURNE, // 0x159
- SPECIES_SNORUNT, // 0x15a
- SPECIES_GLALIE, // 0x15b
- SPECIES_LUNATONE, // 0x15c
- SPECIES_SOLROCK, // 0x15d
- SPECIES_AZURILL, // 0x15e
- SPECIES_SPOINK, // 0x15f
- SPECIES_GRUMPIG, // 0x160
- SPECIES_PLUSLE, // 0x161
- SPECIES_MINUN, // 0x162
- SPECIES_MAWILE, // 0x163
- SPECIES_MEDITITE, // 0x164
- SPECIES_MEDICHAM, // 0x165
- SPECIES_SWABLU, // 0x166
- SPECIES_ALTARIA, // 0x167
- SPECIES_WYNAUT, // 0x168
- SPECIES_DUSKULL, // 0x169
- SPECIES_DUSCLOPS, // 0x16a
- SPECIES_ROSELIA, // 0x16b
- SPECIES_SLAKOTH, // 0x16c
- SPECIES_VIGOROTH, // 0x16d
- SPECIES_SLAKING, // 0x16e
- SPECIES_GULPIN, // 0x16f
- SPECIES_SWALOT, // 0x170
- SPECIES_TROPIUS, // 0x171
- SPECIES_WHISMUR, // 0x172
- SPECIES_LOUDRED, // 0x173
- SPECIES_EXPLOUD, // 0x174
- SPECIES_CLAMPERL, // 0x175
- SPECIES_HUNTAIL, // 0x176
- SPECIES_GOREBYSS, // 0x177
- SPECIES_ABSOL, // 0x178
- SPECIES_SHUPPET, // 0x179
- SPECIES_BANETTE, // 0x17a
- SPECIES_SEVIPER, // 0x17b
- SPECIES_ZANGOOSE, // 0x17c
- SPECIES_RELICANTH, // 0x17d
- SPECIES_ARON, // 0x17e
- SPECIES_LAIRON, // 0x17f
- SPECIES_AGGRON, // 0x180
- SPECIES_CASTFORM, // 0x181
- SPECIES_VOLBEAT, // 0x182
- SPECIES_ILLUMISE, // 0x183
- SPECIES_LILEEP, // 0x184
- SPECIES_CRADILY, // 0x185
- SPECIES_ANORITH, // 0x186
- SPECIES_ARMALDO, // 0x187
- SPECIES_RALTS, // 0x188
- SPECIES_KIRLIA, // 0x189
- SPECIES_GARDEVOIR, // 0x18a
- SPECIES_BAGON, // 0x18b
- SPECIES_SHELGON, // 0x18c
- SPECIES_SALAMENCE, // 0x18d
- SPECIES_BELDUM, // 0x18e
- SPECIES_METANG, // 0x18f
- SPECIES_METAGROSS, // 0x190
- SPECIES_REGIROCK, // 0x191
- SPECIES_REGICE, // 0x192
- SPECIES_REGISTEEL, // 0x193
- SPECIES_KYOGRE, // 0x194
- SPECIES_GROUDON, // 0x195
- SPECIES_RAYQUAZA, // 0x196
- SPECIES_LATIAS, // 0x197
- SPECIES_LATIOS, // 0x198
- SPECIES_JIRACHI, // 0x199
- SPECIES_DEOXYS, // 0x19a
- SPECIES_CHIMECHO, // 0x19b
- SPECIES_EGG, // 0x19c
-
- SPECIES_UNOWN_B,
- SPECIES_UNOWN_C,
- SPECIES_UNOWN_D,
- SPECIES_UNOWN_E,
- SPECIES_UNOWN_F,
- SPECIES_UNOWN_G,
- SPECIES_UNOWN_H,
- SPECIES_UNOWN_I,
- SPECIES_UNOWN_J,
- SPECIES_UNOWN_K,
- SPECIES_UNOWN_L,
- SPECIES_UNOWN_M,
- SPECIES_UNOWN_N,
- SPECIES_UNOWN_O,
- SPECIES_UNOWN_P,
- SPECIES_UNOWN_Q,
- SPECIES_UNOWN_R,
- SPECIES_UNOWN_S,
- SPECIES_UNOWN_T,
- SPECIES_UNOWN_U,
- SPECIES_UNOWN_V,
- SPECIES_UNOWN_W,
- SPECIES_UNOWN_X,
- SPECIES_UNOWN_Y,
- SPECIES_UNOWN_Z,
- SPECIES_UNOWN_EMARK,
- SPECIES_UNOWN_QMARK,
-};
-
-#define NUM_SPECIES SPECIES_EGG
-extern const u8 gSpeciesNames[][11];
-
-#endif // GUARD_SPECIES_H
diff --git a/include/vars.h b/include/vars.h
deleted file mode 100644
index 763b7379d..000000000
--- a/include/vars.h
+++ /dev/null
@@ -1,75 +0,0 @@
-#ifndef GUARD_VARS_H
-#define GUARD_VARS_H
-
-#define VAR_0x3F20 0x3F20
-
-#define VAR_0x4000 0x4000
-#define VAR_0x4001 0x4001
-#define VAR_0x4002 0x4002
-#define VAR_0x4003 0x4003
-#define VAR_0x4004 0x4004
-#define VAR_0x4005 0x4005
-#define VAR_0x4006 0x4006
-#define VAR_0x4007 0x4007
-#define VAR_0x4008 0x4008
-#define VAR_0x4009 0x4009
-#define VAR_0x400A 0x400A
-#define VAR_0x4010 0x4010
-#define VAR_0x4011 0x4011
-#define VAR_0x401F 0x401F
-#define VAR_RECYCLE_GOODS 0x4020
-#define VAR_REPEL_STEP_COUNT 0x4021
-#define VAR_ICE_STEP_COUNT 0x4022
-#define VAR_FIRST_POKE 0x4023
-#define VAR_MIRAGE_RND_H 0x4024
-#define VAR_MIRAGE_RND_L 0x4025
-#define VAR_SECRET_BASE_MAP 0x4026
-
-#define VAR_HAPPINESS_STEP_COUNTER 0x402A
-#define VAR_POISON_STEP_COUNTER 0x402B
-#define VAR_RESET_RTC_ENABLE 0x402C
-
-#define VAR_0x4037 0x4037
-#define VAR_ALTERING_CAVE_WILD_SET 0x403E
-#define VAR_DAYS 0x4040
-
-#define VAR_DEPT_STORE_FLOOR 0x4043
-#define VAR_STORAGE_UNKNOWN 0x4036
-#define VAR_POKELOT_PRIZE 0x4045
-#define VAR_NATIONAL_DEX 0x4046
-#define VAR_SEEDOT_SIZE_RECORD 0x4047
-#define VAR_ASH_GATHER_COUNT 0x4048
-#define VAR_BIRCH_STATE 0x4049
-#define VAR_CRUISE_STEP_COUNT 0x404A
-#define VAR_POKELOT_RND1 0x404B
-#define VAR_POKELOT_RND2 0x404C
-
-#define VAR_LOTAD_SIZE_RECORD 0x404F
-
-#define VAR_0x4054 0x4054
-
-#define VAR_0x4089 0x4089
-#define VAR_0x4095 0x4095
-#define VAR_0x4097 0x4097
-#define VAR_0x409a 0x409a
-#define VAR_PORTHOLE 0x40B4
-
-#define VAR_0x40BC 0x40BC
-#define VAR_0x40C2 0x40C2
-
-#define VAR_FRONTIER_FACILITY 0x40CF
-
-#define VAR_DAILY_SLOTS 0x40E6
-#define VAR_DAILY_WILDS 0x40E7
-#define VAR_DAILY_BLENDER 0x40E8
-#define VAR_DAILY_PLANTED_BERRIES 0x40E9
-#define VAR_DAILY_PICKED_BERRIES 0x40EA
-#define VAR_DAILY_ROULETTE 0x40EB
-#define VAR_0x40EC 0x40EC
-#define VAR_0x40ED 0x40ED
-#define VAR_0x40EE 0x40EE
-#define VAR_0x40EF 0x40EF
-#define VAR_0x40F0 0x40F0
-#define VAR_DAILY_BP 0x40F1
-
-#endif // GUARD_VARS_H
diff --git a/src/battle_2.c b/src/battle_2.c
index a021e83b0..52530f6b3 100644
--- a/src/battle_2.c
+++ b/src/battle_2.c
@@ -11,7 +11,7 @@
#include "palette.h"
#include "task.h"
#include "event_data.h"
-#include "species.h"
+#include "constants/species.h"
#include "berry.h"
#include "text.h"
#include "item.h"
@@ -26,7 +26,7 @@
#include "m4a.h"
#include "window.h"
#include "random.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "battle_message.h"
#include "sprite.h"
@@ -37,7 +37,7 @@
#include "battle_controllers.h"
#include "pokedex.h"
#include "constants/abilities.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "trainer_classes.h"
#include "evolution_scene.h"
#include "roamer.h"
diff --git a/src/battle_ai_script_commands.c b/src/battle_ai_script_commands.c
index c3fab44f3..44be0a4d9 100644
--- a/src/battle_ai_script_commands.c
+++ b/src/battle_ai_script_commands.c
@@ -2,12 +2,12 @@
#include "battle_ai_script_commands.h"
#include "pokemon.h"
#include "battle.h"
-#include "species.h"
+#include "constants/species.h"
#include "constants/abilities.h"
#include "random.h"
#include "item.h"
#include "constants/battle_move_effects.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "util.h"
#define AIScriptRead32(ptr) ((ptr)[0] | (ptr)[1] << 8 | (ptr)[2] << 16 | (ptr)[3] << 24)
diff --git a/src/battle_ai_switch_items.c b/src/battle_ai_switch_items.c
index 4177b82d2..b3fccb17f 100644
--- a/src/battle_ai_switch_items.c
+++ b/src/battle_ai_switch_items.c
@@ -2,9 +2,9 @@
#include "battle.h"
#include "battle_controllers.h"
#include "constants/abilities.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "pokemon.h"
-#include "species.h"
+#include "constants/species.h"
#include "random.h"
#include "util.h"
#include "constants/items.h"
diff --git a/src/battle_controller_link_opponent.c b/src/battle_controller_link_opponent.c
index 4795d2bd4..dd8582618 100644
--- a/src/battle_controller_link_opponent.c
+++ b/src/battle_controller_link_opponent.c
@@ -10,7 +10,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_link_partner.c b/src/battle_controller_link_partner.c
index fde364a55..9da468761 100644
--- a/src/battle_controller_link_partner.c
+++ b/src/battle_controller_link_partner.c
@@ -10,7 +10,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_opponent.c b/src/battle_controller_opponent.c
index 5c2730490..0862e72a7 100644
--- a/src/battle_controller_opponent.c
+++ b/src/battle_controller_opponent.c
@@ -12,9 +12,9 @@
#include "main.h"
#include "item.h"
#include "constants/items.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "window.h"
#include "m4a.h"
#include "palette.h"
diff --git a/src/battle_controller_player.c b/src/battle_controller_player.c
index 0c9ff211f..e497dbfe2 100644
--- a/src/battle_controller_player.c
+++ b/src/battle_controller_player.c
@@ -11,9 +11,9 @@
#include "main.h"
#include "item.h"
#include "constants/items.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "window.h"
#include "m4a.h"
#include "palette.h"
diff --git a/src/battle_controller_player_partner.c b/src/battle_controller_player_partner.c
index 3ce12fac7..eb57297da 100644
--- a/src/battle_controller_player_partner.c
+++ b/src/battle_controller_player_partner.c
@@ -9,7 +9,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_recorded_opponent.c b/src/battle_controller_recorded_opponent.c
index a57b2c576..8e2f31879 100644
--- a/src/battle_controller_recorded_opponent.c
+++ b/src/battle_controller_recorded_opponent.c
@@ -11,7 +11,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_recorded_player.c b/src/battle_controller_recorded_player.c
index 86558d25c..f558fde87 100644
--- a/src/battle_controller_recorded_player.c
+++ b/src/battle_controller_recorded_player.c
@@ -10,7 +10,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_safari.c b/src/battle_controller_safari.c
index 2ec14cab5..db4670523 100644
--- a/src/battle_controller_safari.c
+++ b/src/battle_controller_safari.c
@@ -8,7 +8,7 @@
#include "link.h"
#include "util.h"
#include "main.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "window.h"
#include "m4a.h"
diff --git a/src/battle_controller_wally.c b/src/battle_controller_wally.c
index 947836e34..446027944 100644
--- a/src/battle_controller_wally.c
+++ b/src/battle_controller_wally.c
@@ -11,9 +11,9 @@
#include "main.h"
#include "item.h"
#include "constants/items.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "window.h"
#include "m4a.h"
#include "palette.h"
diff --git a/src/battle_controllers.c b/src/battle_controllers.c
index a6e6a1b6d..c6d47e71e 100644
--- a/src/battle_controllers.c
+++ b/src/battle_controllers.c
@@ -6,7 +6,7 @@
#include "battle_ai_script_commands.h"
#include "battle_anim.h"
#include "pokemon.h"
-#include "species.h"
+#include "constants/species.h"
#include "recorded_battle.h"
#include "util.h"
#include "constants/abilities.h"
diff --git a/src/battle_dome_cards.c b/src/battle_dome_cards.c
index 9385417b4..d549856f2 100644
--- a/src/battle_dome_cards.c
+++ b/src/battle_dome_cards.c
@@ -4,7 +4,7 @@
#include "sprite.h"
#include "window.h"
#include "malloc.h"
-#include "species.h"
+#include "constants/species.h"
#include "palette.h"
#include "decompress.h"
#include "battle_dome_cards.h"
diff --git a/src/battle_gfx_sfx_util.c b/src/battle_gfx_sfx_util.c
index e9b31ae55..22be086f0 100644
--- a/src/battle_gfx_sfx_util.c
+++ b/src/battle_gfx_sfx_util.c
@@ -9,18 +9,18 @@
#include "random.h"
#include "util.h"
#include "pokemon.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "task.h"
#include "sprite.h"
#include "sound.h"
#include "m4a.h"
-#include "species.h"
+#include "constants/species.h"
#include "decompress.h"
#include "data2.h"
#include "palette.h"
#include "blend_palette.h"
#include "contest.h"
-#include "songs.h"
+#include "constants/songs.h"
extern u8 gBattleBufferA[BATTLE_BANKS_COUNT][0x200];
extern u8 gActiveBank;
diff --git a/src/battle_interface.c b/src/battle_interface.c
index 63813a424..95f1a1111 100644
--- a/src/battle_interface.c
+++ b/src/battle_interface.c
@@ -8,13 +8,13 @@
#include "string_util.h"
#include "text.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "decompress.h"
#include "task.h"
#include "util.h"
#include "gpu_regs.h"
#include "battle_message.h"
-#include "species.h"
+#include "constants/species.h"
#include "pokedex.h"
#include "palette.h"
#include "international_string_util.h"
diff --git a/src/battle_message.c b/src/battle_message.c
index ecfcc1228..ec1cfd626 100644
--- a/src/battle_message.c
+++ b/src/battle_message.c
@@ -2,7 +2,7 @@
#include "battle.h"
#include "battle_message.h"
#include "battle_string_ids.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "text.h"
#include "string_util.h"
#include "constants/items.h"
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c
index a7240783c..88d583c1f 100644
--- a/src/battle_script_commands.c
+++ b/src/battle_script_commands.c
@@ -4,7 +4,7 @@
#include "battle_message.h"
#include "battle_ai_script_commands.h"
#include "battle_scripts.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "constants/abilities.h"
#include "item.h"
#include "constants/items.h"
@@ -15,8 +15,8 @@
#include "random.h"
#include "battle_controllers.h"
#include "battle_interface.h"
-#include "species.h"
-#include "songs.h"
+#include "constants/species.h"
+#include "constants/songs.h"
#include "text.h"
#include "sound.h"
#include "pokedex.h"
diff --git a/src/battle_util.c b/src/battle_util.c
index 293915de7..1a624641d 100644
--- a/src/battle_util.c
+++ b/src/battle_util.c
@@ -1,10 +1,10 @@
#include "global.h"
#include "battle.h"
#include "constants/abilities.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "constants/hold_effects.h"
#include "pokemon.h"
-#include "species.h"
+#include "constants/species.h"
#include "item.h"
#include "constants/items.h"
#include "util.h"
diff --git a/src/berry_blender.c b/src/berry_blender.c
index 2d3c38810..b1d36e2d9 100644
--- a/src/berry_blender.c
+++ b/src/berry_blender.c
@@ -7,7 +7,7 @@
#include "task.h"
#include "sprite.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "m4a.h"
#include "bg.h"
#include "palette.h"
@@ -1068,7 +1068,7 @@ static void Blender_SetPlayerNamesLocal(u8 opponentsNum)
sBerryBlenderData->playersNo = 2;
StringCopy(gLinkPlayers[0].name, gSaveBlock2Ptr->playerName);
- if (!FlagGet(FLAG_340))
+ if (!FlagGet(FLAG_0x340))
StringCopy(gLinkPlayers[1].name, sBlenderOpponentsNames[BLENDER_MASTER]);
else
StringCopy(gLinkPlayers[1].name, sBlenderOpponentsNames[BLENDER_MISTER]);
@@ -1592,7 +1592,7 @@ static void sub_80808D4(void)
if (gSpecialVar_0x8004 == 1)
{
- if (!FlagGet(FLAG_340))
+ if (!FlagGet(FLAG_0x340))
sBerryBlenderData->field_120[0] = CreateTask(sub_8081224, 10);
else
sBerryBlenderData->field_120[0] = CreateTask(sUnknown_083399EC[0], 10);
diff --git a/src/braille_puzzles.c b/src/braille_puzzles.c
index c3b66f87a..d6924de9f 100755
--- a/src/braille_puzzles.c
+++ b/src/braille_puzzles.c
@@ -1,9 +1,9 @@
#include "global.h"
#include "event_data.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "script.h"
-#include "species.h"
+#include "constants/species.h"
#include "task.h"
#include "field_effect.h"
#include "constants/flags.h"
diff --git a/src/calculate_base_damage.c b/src/calculate_base_damage.c
index 868bf734a..d30599607 100644
--- a/src/calculate_base_damage.c
+++ b/src/calculate_base_damage.c
@@ -6,8 +6,8 @@
#include "item.h"
#include "constants/items.h"
#include "pokemon.h"
-#include "species.h"
-#include "moves.h"
+#include "constants/species.h"
+#include "constants/moves.h"
#include "constants/battle_move_effects.h"
extern u32 gBattleTypeFlags;
diff --git a/src/clear_save_data_screen.c b/src/clear_save_data_screen.c
index d5e173ee8..d00944ac1 100755
--- a/src/clear_save_data_screen.c
+++ b/src/clear_save_data_screen.c
@@ -9,7 +9,7 @@
#include "gpu_regs.h"
#include "bg.h"
#include "text_window.h"
-#include "songs.h"
+#include "constants/songs.h"
extern u8 gText_ClearAllSaveData[];
extern u8 gText_ClearingData[];
diff --git a/src/daycare.c b/src/daycare.c
index df03e3b91..ce9952531 100644
--- a/src/daycare.c
+++ b/src/daycare.c
@@ -2,14 +2,14 @@
#include "pokemon.h"
#include "daycare.h"
#include "string_util.h"
-#include "species.h"
+#include "constants/species.h"
#include "constants/items.h"
#include "mail.h"
#include "pokemon_storage_system.h"
#include "event_data.h"
#include "random.h"
#include "main.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "egg_hatch.h"
#include "text.h"
#include "menu.h"
diff --git a/src/decompress.c b/src/decompress.c
index e2ae6ce83..8e8827194 100644
--- a/src/decompress.c
+++ b/src/decompress.c
@@ -1,6 +1,6 @@
#include "global.h"
#include "decompress.h"
-#include "species.h"
+#include "constants/species.h"
#include "text.h"
#include "malloc.h"
#include "pokemon.h"
diff --git a/src/decoration.c b/src/decoration.c
index ce678e046..987e628c5 100644
--- a/src/decoration.c
+++ b/src/decoration.c
@@ -9,7 +9,7 @@
#include "task.h"
#include "main.h"
#include "palette.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "overworld.h"
#include "fieldmap.h"
#include "metatile_behavior.h"
diff --git a/src/egg_hatch.c b/src/egg_hatch.c
index 60deddf29..032607806 100644
--- a/src/egg_hatch.c
+++ b/src/egg_hatch.c
@@ -10,7 +10,7 @@
#include "main.h"
#include "event_data.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "text.h"
#include "text_window.h"
#include "string_util.h"
diff --git a/src/event_data.c b/src/event_data.c
index e3742a147..9f1432f17 100644
--- a/src/event_data.c
+++ b/src/event_data.c
@@ -44,7 +44,7 @@ void ClearTempFieldEventData(void)
FlagClear(FLAG_SYS_ENC_DOWN_ITEM);
FlagClear(FLAG_SYS_USE_STRENGTH);
FlagClear(FLAG_SYS_CTRL_OBJ_DELETE);
- FlagClear(FLAG_SYS_UNKNOWN_880);
+ FlagClear(FLAG_0x880);
}
// probably had different flag splits at one point.
diff --git a/src/evolution_graphics.c b/src/evolution_graphics.c
index 30aacec94..8d02eef91 100644
--- a/src/evolution_graphics.c
+++ b/src/evolution_graphics.c
@@ -6,7 +6,7 @@
#include "decompress.h"
#include "task.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "palette.h"
// this file's functions
diff --git a/src/evolution_scene.c b/src/evolution_scene.c
index 452035b54..c17921b74 100644
--- a/src/evolution_scene.c
+++ b/src/evolution_scene.c
@@ -16,9 +16,9 @@
#include "m4a.h"
#include "menu.h"
#include "pokedex.h"
-#include "species.h"
+#include "constants/species.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "overworld.h"
#include "battle_message.h"
#include "battle_string_ids.h"
@@ -52,6 +52,7 @@ extern u8 gBattleTerrain;
extern struct SpriteTemplate gUnknown_0202499C;
extern bool8 gAffineAnimsDisabled;
extern u16 gMoveToLearn;
+extern const u8 gSpeciesNames[][11];
extern u8 gBattleCommunication[];
#define sEvoCursorPos gBattleCommunication[1] // when learning a new move
diff --git a/src/field_poison.c b/src/field_poison.c
index d953ab29c..b83788210 100644
--- a/src/field_poison.c
+++ b/src/field_poison.c
@@ -1,7 +1,7 @@
#include "global.h"
#include "string_util.h"
#include "party_menu.h"
-#include "species.h"
+#include "constants/species.h"
#include "task.h"
#include "field_message_box.h"
#include "strings.h"
diff --git a/src/field_special_scene.c b/src/field_special_scene.c
index f92f342eb..d46ddeaa6 100755
--- a/src/field_special_scene.c
+++ b/src/field_special_scene.c
@@ -2,11 +2,11 @@
#include "task.h"
#include "sprite.h"
#include "field_map_obj.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "palette.h"
#include "script.h"
-#include "vars.h"
+#include "constants/vars.h"
#include "event_data.h"
#include "main.h"
diff --git a/src/hall_of_fame.c b/src/hall_of_fame.c
index c5394834b..52babe346 100644
--- a/src/hall_of_fame.c
+++ b/src/hall_of_fame.c
@@ -9,12 +9,12 @@
#include "gpu_regs.h"
#include "main.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "decompress.h"
#include "save.h"
#include "window.h"
#include "bg.h"
-#include "species.h"
+#include "constants/species.h"
#include "constants/game_stat.h"
#include "blend_palette.h"
#include "string_util.h"
@@ -58,6 +58,7 @@ extern struct MusicPlayerInfo gMPlay_BGM;
extern MainCallback gGameContinueCallback;
extern u32 gDamagedSaveSectors;
extern u8 gReservedSpritePaletteCount;
+extern const u8 gSpeciesNames[][11];
#define HALL_OF_FAME_MAX_TEAMS 50
diff --git a/src/lottery_corner.c b/src/lottery_corner.c
index a6019e691..2ded9c943 100644
--- a/src/lottery_corner.c
+++ b/src/lottery_corner.c
@@ -4,7 +4,7 @@
#include "pokemon.h"
#include "constants/items.h"
#include "random.h"
-#include "species.h"
+#include "constants/species.h"
#include "string_util.h"
#include "text.h"
diff --git a/src/mail.c b/src/mail.c
index f56e05c44..877035fb6 100644
--- a/src/mail.c
+++ b/src/mail.c
@@ -15,7 +15,7 @@
#include "gpu_regs.h"
#include "bg.h"
#include "pokemon_icon.h"
-#include "species.h"
+#include "constants/species.h"
#include "malloc.h"
#include "easy_chat.h"
#include "mail_data.h"
diff --git a/src/pokeball.c b/src/pokeball.c
index 728145791..127ba8e9d 100644
--- a/src/pokeball.c
+++ b/src/pokeball.c
@@ -6,12 +6,12 @@
#include "battle_anim.h"
#include "task.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "trig.h"
#include "main.h"
#include "m4a.h"
#include "decompress.h"
-#include "species.h"
+#include "constants/species.h"
#include "util.h"
#include "graphics.h"
diff --git a/src/pokemon_2.c b/src/pokemon_2.c
index e9bf14a41..a4d00112b 100644
--- a/src/pokemon_2.c
+++ b/src/pokemon_2.c
@@ -4,7 +4,7 @@
#include "event_data.h"
#include "random.h"
#include "sprite.h"
-#include "species.h"
+#include "constants/species.h"
#include "text.h"
#include "string_util.h"
diff --git a/src/pokemon_3.c b/src/pokemon_3.c
index b0ee4a7d9..a419dd46e 100644
--- a/src/pokemon_3.c
+++ b/src/pokemon_3.c
@@ -7,13 +7,13 @@
#include "rtc.h"
#include "item.h"
#include "battle.h"
-#include "species.h"
+#include "constants/species.h"
#include "link.h"
#include "constants/hold_effects.h"
#include "random.h"
#include "trainer_classes.h"
#include "trainer_ids.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "m4a.h"
#include "task.h"
diff --git a/src/pokemon_size_record.c b/src/pokemon_size_record.c
index ec0103bc7..fe3b3e8dd 100644
--- a/src/pokemon_size_record.c
+++ b/src/pokemon_size_record.c
@@ -1,7 +1,7 @@
#include "global.h"
#include "pokemon_size_record.h"
#include "event_data.h"
-#include "species.h"
+#include "constants/species.h"
#include "string_util.h"
#include "text.h"
#include "pokemon.h"
diff --git a/src/pokemon_storage_system.c b/src/pokemon_storage_system.c
index f82a52d38..bdf4427c7 100644
--- a/src/pokemon_storage_system.c
+++ b/src/pokemon_storage_system.c
@@ -1,7 +1,7 @@
#include "global.h"
#include "pokemon_storage_system.h"
#include "pokemon.h"
-#include "species.h"
+#include "constants/species.h"
#include "event_data.h"
#include "string_util.h"
#include "text.h"
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c
index 3e99fe375..b00979945 100755
--- a/src/pokemon_summary_screen.c
+++ b/src/pokemon_summary_screen.c
@@ -8,12 +8,12 @@
#include "m4a.h"
#include "main.h"
#include "malloc.h"
-#include "moves.h"
+#include "constants/moves.h"
#include "palette.h"
#include "pokemon.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
-#include "species.h"
+#include "constants/species.h"
#include "sprite.h"
#include "unk_text_util.h"
#include "string_util.h"
diff --git a/src/region_map.c b/src/region_map.c
index a3066b77e..b7fc625ca 100644
--- a/src/region_map.c
+++ b/src/region_map.c
@@ -17,7 +17,7 @@
#include "international_string_util.h"
#include "strings.h"
#include "text_window.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "m4a.h"
#include "field_effect.h"
#include "region_map.h"
diff --git a/src/reshow_battle_screen.c b/src/reshow_battle_screen.c
index 4ad1971fd..a034ca089 100644
--- a/src/reshow_battle_screen.c
+++ b/src/reshow_battle_screen.c
@@ -10,7 +10,7 @@
#include "battle_controllers.h"
#include "link.h"
#include "sprite.h"
-#include "species.h"
+#include "constants/species.h"
#include "battle_interface.h"
extern u16 gBattle_BG0_X;
diff --git a/src/roamer.c b/src/roamer.c
index bce85dffd..fbd25bfad 100644
--- a/src/roamer.c
+++ b/src/roamer.c
@@ -2,7 +2,7 @@
#include "roamer.h"
#include "pokemon.h"
#include "random.h"
-#include "species.h"
+#include "constants/species.h"
#include "event_data.h"
enum
diff --git a/src/secret_base.c b/src/secret_base.c
index 7a1f0158e..6d66e6576 100644
--- a/src/secret_base.c
+++ b/src/secret_base.c
@@ -12,7 +12,7 @@
#include "new_menu_helpers.h"
#include "menu_indicators.h"
#include "constants/maps.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "sound.h"
#include "overworld.h"
#include "fieldmap.h"
diff --git a/src/sound.c b/src/sound.c
index a95511ece..086fede67 100644
--- a/src/sound.c
+++ b/src/sound.c
@@ -5,7 +5,7 @@
#include "m4a.h"
#include "main.h"
#include "pokemon.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "task.h"
struct Fanfare
diff --git a/src/starter_choose.c b/src/starter_choose.c
index 6be362caf..82f8f75f6 100644
--- a/src/starter_choose.c
+++ b/src/starter_choose.c
@@ -12,7 +12,7 @@
#include "decompress.h"
#include "menu.h"
#include "sound.h"
-#include "songs.h"
+#include "constants/songs.h"
#include "event_data.h"
#include "pokedex.h"
#include "data2.h"
diff --git a/src/tv.c b/src/tv.c
index 282396c6f..1605be29c 100644
--- a/src/tv.c
+++ b/src/tv.c
@@ -14,8 +14,8 @@
#include "pokemon_storage_system.h"
#include "field_message_box.h"
#include "easy_chat.h"
-#include "species.h"
-#include "moves.h"
+#include "constants/species.h"
+#include "constants/moves.h"
#include "battle.h"
#include "battle_tower.h"
#include "contest.h"
@@ -38,6 +38,9 @@
#include "secret_base.h"
#include "tv.h"
+extern const u8 gSpeciesNames[][11];
+extern const u8 gMoveNames[][13];
+
// Static type declarations
#define rbernoulli(num, den) TV_BernoulliTrial(0xFFFF * (num) / (den))
diff --git a/src/wild_encounter.c b/src/wild_encounter.c
index 5c85ef971..705c4416c 100644
--- a/src/wild_encounter.c
+++ b/src/wild_encounter.c
@@ -1,7 +1,7 @@
#include "global.h"
#include "wild_encounter.h"
#include "pokemon.h"
-#include "species.h"
+#include "constants/species.h"
#include "metatile_behavior.h"
#include "fieldmap.h"
#include "random.h"