summaryrefslogtreecommitdiff
path: root/data/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'data/scripts')
-rw-r--r--data/scripts/bag_full.inc21
-rw-r--r--data/scripts/cable_club.inc1856
-rw-r--r--data/scripts/day_care.inc257
-rw-r--r--data/scripts/fame_checker.inc286
-rw-r--r--data/scripts/field_moves.inc306
-rw-r--r--data/scripts/flash.inc4
-rw-r--r--data/scripts/hole.inc36
-rw-r--r--data/scripts/item_ball_scripts.inc671
-rw-r--r--data/scripts/move_tutors.inc582
-rw-r--r--data/scripts/movement.inc82
-rw-r--r--data/scripts/mystery_event_club.inc181
-rw-r--r--data/scripts/obtain_item.inc247
-rw-r--r--data/scripts/pc.inc103
-rw-r--r--data/scripts/pkmn_center_nurse.inc71
-rw-r--r--data/scripts/pokedex_rating.inc86
-rw-r--r--data/scripts/pokemon_mansion.inc207
-rw-r--r--data/scripts/repel.inc6
-rw-r--r--data/scripts/route23.inc213
-rw-r--r--data/scripts/seagallop.inc207
-rw-r--r--data/scripts/set_gym_trainers.inc76
-rw-r--r--data/scripts/silphco_doors.inc564
-rw-r--r--data/scripts/static_pokemon.inc23
-rw-r--r--data/scripts/std_msgbox.inc63
-rw-r--r--data/scripts/surf.inc25
-rw-r--r--data/scripts/test.inc27
-rw-r--r--data/scripts/trainer_battle.inc158
-rw-r--r--data/scripts/trainer_tower.inc450
-rw-r--r--data/scripts/trainers.inc3041
28 files changed, 9849 insertions, 0 deletions
diff --git a/data/scripts/bag_full.inc b/data/scripts/bag_full.inc
new file mode 100644
index 000000000..4454b326a
--- /dev/null
+++ b/data/scripts/bag_full.inc
@@ -0,0 +1,21 @@
+EventScript_BagIsFull:: @ 81A6BF9
+ textcolor 3
+ msgbox Text_TooBadBagFull
+ release
+ end
+
+@ Unused
+EventScript_BagIsFullRet:: @ 81A6C05
+ msgbox Text_TooBadBagFull
+ return
+
+@ Unused
+EventScript_NoRoomForAnotherDecor:: @ 81A6C0E
+ msgbox Text_NoRoomForAnotherDecor
+ release
+ end
+
+@ Unused
+EventScript_NoRoomForAnotherDecorRet:: @ 81A6C18
+ msgbox Text_NoRoomForAnotherDecor
+ return
diff --git a/data/scripts/cable_club.inc b/data/scripts/cable_club.inc
new file mode 100644
index 000000000..f4d0ed6e1
--- /dev/null
+++ b/data/scripts/cable_club.inc
@@ -0,0 +1,1856 @@
+CableClub_OnTransition:: @ 81BB1B4
+ call CableClub_EventScript_HideOrShowMysteryGiftMan
+ end
+
+CableClub_EventScript_HideOrShowMysteryGiftMan:: @ 81BB1BA
+ specialvar VAR_RESULT, ValidateReceivedWonderCard
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_HideMysteryGiftMan
+ clearflag FLAG_HIDE_MG_DELIVERYMEN
+ return
+
+EventScript_HideMysteryGiftMan:: @ 81BB1CE
+ setflag FLAG_HIDE_MG_DELIVERYMEN
+ return
+
+CableClub_EventScript_MysteryGiftMan:: @ 81BB1D2
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ execram
+
+@ Unused
+EventScript_1BB1E4:: @ 81BB1E4
+ msgbox Text_ThankYouForAccessingMysteryGift, MSGBOX_NPC
+ end
+
+CableClub_OnWarp:: @ 81BB1ED
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_SINGLE_BATTLE, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_DOUBLE_BATTLE, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_MULTI_BATTLE, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_TRADE_CENTER, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_UNION_ROOM, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_BERRY_CRUSH, EventScript_CheckTurnAttendant
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_MINIGAME, EventScript_CheckTurnAttendant
+ .2byte 0
+
+EventScript_CheckTurnAttendant:: @ 81BB227
+ compare VAR_0x8007, 0
+ goto_if_eq EventScript_CheckTurnAttendantEnd
+ turnobject VAR_0x8007, DIR_WEST
+EventScript_CheckTurnAttendantEnd:
+ end
+
+CableClub_OnLoad:: @ 81BB237
+ compare VAR_CABLE_CLUB_STATE, USING_SINGLE_BATTLE
+ goto_if_eq EventScript_OnLoadFromColosseum
+ compare VAR_CABLE_CLUB_STATE, USING_DOUBLE_BATTLE
+ goto_if_eq EventScript_OnLoadFromColosseum
+ compare VAR_CABLE_CLUB_STATE, USING_MULTI_BATTLE
+ goto_if_eq EventScript_OnLoadFromColosseum
+ compare VAR_CABLE_CLUB_STATE, USING_TRADE_CENTER
+ goto_if_eq EventScript_OnLoadFromTradeCenter
+ compare VAR_CABLE_CLUB_STATE, USING_UNION_ROOM
+ goto_if_eq EventScript_OnLoadFromUnionRoom
+ compare VAR_CABLE_CLUB_STATE, USING_BERRY_CRUSH
+ goto_if_eq EventScript_OnLoadFromBerryCrush
+ compare VAR_CABLE_CLUB_STATE, USING_MINIGAME
+ goto_if_eq EventScript_OnLoadFromGameCorner
+ end
+
+EventScript_OnLoadFromColosseum:: @ 81BB285
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ end
+
+EventScript_OnLoadFromTradeCenter:: @ 81BB28B
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ end
+
+EventScript_OnLoadFromUnionRoom:: @ 81BB291
+ call CableClub_EventScript_OpenUnionRoomBarrier
+ end
+
+EventScript_OnLoadFromBerryCrush:: @ 81BB297
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ end
+
+EventScript_OnLoadFromGameCorner:: @ 81BB29D
+ call CableClub_EventScript_OpenGameCornerBarrier
+ end
+
+CableClub_OnFrame:: @ 81BB2A3
+ map_script_2 VAR_MAP_SCENE_POKEMON_CENTER_TEALA, 1, CableClub_EventScript_Tutorial
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_SINGLE_BATTLE, CableClub_EventScript_ExitLinkRoom
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_DOUBLE_BATTLE, CableClub_EventScript_ExitLinkRoom
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_MULTI_BATTLE, CableClub_EventScript_ExitLinkRoom
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_TRADE_CENTER, CableClub_EventScript_ExitTradeCenter
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_UNION_ROOM, CableClub_EventScript_ExitUnionRoom
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_BERRY_CRUSH, CableClub_EventScript_ExitLinkRoom
+ map_script_2 VAR_CABLE_CLUB_STATE, USING_MINIGAME, CableClub_EventScript_ExitMinigameRoom
+ .2byte 0
+
+CableClub_EventScript_ExitLinkRoom:: @ 81BB2E5
+ lockall
+ call CableClub_EventScript_CloseLinkAndExitLinkRoom
+ call CableClub_EventScript_CloseDirectCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ erasebox 0, 0, 29, 19
+ releaseall
+ end
+
+CableClub_EventScript_ExitMinigameRoom:: @ 81BB2FD
+ lockall
+ call CableClub_EventScript_CloseLinkAndExitLinkRoom
+ call CableClub_EventScript_CloseGameCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ erasebox 0, 0, 29, 19
+ releaseall
+ end
+
+CableClub_EventScript_CloseLinkAndExitLinkRoom:: @ 81BB315
+ special CloseLink
+ special HelpSystem_Enable
+ special sub_811390C
+ setvar VAR_CABLE_CLUB_STATE, 0
+ textcolor 1
+ compare VAR_0x8007, 0
+ goto_if_eq CableClub_EventScript_PlayerExitLinkRoom
+ applymovement VAR_0x8007, Movement_AttendantFaceLeft
+ waitmovement 0
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerExitLinkRoom
+ waitmovement 0
+ applymovement VAR_0x8007, Movement_AttendantFaceDown
+ waitmovement 0
+ return
+
+CableClub_EventScript_ExitTradeCenter:: @ 81BB34F
+ lockall
+ call CableClub_EventScript_PlayerExitTradeCenter
+ call CableClub_EventScript_CloseDirectCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ erasebox 0, 0, 29, 19
+ releaseall
+ end
+
+CableClub_EventScript_PlayerExitTradeCenter:: @ 81BB367
+ special CloseLink
+ special HelpSystem_Enable
+ special sub_811390C
+ setvar VAR_CABLE_CLUB_STATE, 0
+ textcolor 1
+ compare VAR_0x8007, 0
+ goto_if_eq CableClub_EventScript_PlayerExitLinkRoom
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerFaceAttendantRight
+ waitmovement 0
+ applymovement VAR_0x8007, Movement_AttendantFaceLeft
+ waitmovement 0
+ call CableClub_EventScript_TrainerCardDataOverwritten
+ return
+
+CableClub_EventScript_ExitUnionRoom:: @ 81BB39C
+ lockall
+ call CableClub_EventScript_PlayerExitUnionRoom
+ call CableClub_EventScript_CloseUnionRoomBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ erasebox 0, 0, 29, 19
+ releaseall
+ end
+
+CableClub_EventScript_PlayerExitUnionRoom:: @ 81BB3B4
+ special HelpSystem_Enable
+ special sub_811390C
+ setvar VAR_CABLE_CLUB_STATE, 0
+ textcolor 1
+ compare VAR_0x8007, 0
+ goto_if_eq CableClub_EventScript_PlayerExitLinkRoom
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerFaceAttendantRight
+ waitmovement 0
+ applymovement VAR_0x8007, Movement_AttendantFaceLeft
+ waitmovement 0
+ call CableClub_EventScript_TrainerCardDataOverwritten
+ return
+
+CableClub_EventScript_TrainerCardDataOverwritten:: @ 81BB3E6
+ message CableClub_Text_TrainerCardDataOverwritten
+ waitmessage
+ playse SE_PIN
+ message CableClub_Text_HopeToSeeYouAgain
+ waitmessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerExitLinkRoom
+ waitmovement 0
+ applymovement VAR_0x8007, Movement_AttendantFaceDown
+ waitmovement 0
+ return
+
+CableClub_EventScript_PlayerExitLinkRoom:: @ 81BB40A
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerExitLinkRoom
+ waitmovement 0
+ return
+
+CableClub_EventScript_Tutorial:: @ 81BB415
+ lockall
+ textcolor 1
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp
+ waitmovement 0
+ msgbox CableClub_Text_FirstTimeRightThisWay
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachCounter
+ waitmovement 0
+ delay 30
+ msgbox CableClub_Text_ExplainWirelessClubFirstTime
+ setvar VAR_MAP_SCENE_POKEMON_CENTER_TEALA, 2
+ releaseall
+ end
+
+Movement_PlayerApproachCounter: @ 81BB447
+ walk_up
+ walk_up
+ step_end
+
+CableClub_EventScript_WelcomeToCableClub:: @ 81BB44A
+ message CableClub_Text_WelcomeWhichCableClubService
+ waitmessage
+ delay 15
+ goto CableClub_EventScript_SelectCableClubRoom
+ end
+
+CableClub_EventScript_UnusedWelcomeToCableClub:: @ 81BB459
+ msgbox CableClub_Text_WhichService
+ goto CableClub_EventScript_SelectCableClubRoom
+ end
+
+CableClub_EventScript_SelectCableClubRoom:: @ 81BB467
+ setvar VAR_0x8004, 0
+ multichoice 0, 0, MULTICHOICE_TRADE_CENTER_COLOSSEUM, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_TradeCenter
+ case 1, CableClub_EventScript_Colosseum
+ case 2, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_Colosseum:: @ 81BB4A3
+ copyvar VAR_0x8007, VAR_LAST_TALKED
+ goto CableClub_EventScript_SelectBattleMode
+ end
+
+CableClub_EventScript_SelectBattleMode:: @ 81BB4AE
+ message CableClub_Text_PlayWhichBattleMode
+ waitmessage
+ multichoice 0, 0, MULTICHOICE_SINGLE_DOUBLE_MULTI_INFO_EXIT, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_SingleBattleMode
+ case 1, CableClub_EventScript_DoubleBattleMode
+ case 2, CableClub_EventScript_MultiBattleMode
+ case 3, CableClub_EventScript_BattleModeInfo
+ case 4, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_BattleModeInfo:: @ 81BB501
+ msgbox CableClub_Text_ExplainBattleModes
+ goto CableClub_EventScript_SelectBattleMode
+ end
+
+CableClub_EventScript_SingleBattleMode:: @ 81BB50F
+ setvar VAR_0x8004, USING_SINGLE_BATTLE
+ goto CableClub_EventScript_TryEnterColosseum
+ end
+
+CableClub_EventScript_DoubleBattleMode:: @ 81BB51A
+ special HasEnoughMonsForDoubleBattle
+ compare VAR_RESULT, PLAYER_HAS_TWO_USABLE_MONS
+ goto_if_ne CableClub_EventScript_NeedTwoMonsForDoubleBattle
+ setvar VAR_0x8004, USING_DOUBLE_BATTLE
+ goto CableClub_EventScript_TryEnterColosseum
+ end
+
+CableClub_EventScript_NeedTwoMonsForDoubleBattle:: @ 81BB533
+ msgbox CableClub_Text_NeedTwoMonsForDoubleBattle
+ goto CableClub_EventScript_SelectBattleMode
+ end
+
+CableClub_EventScript_MultiBattleMode:: @ 81BB541
+ setvar VAR_0x8004, USING_MULTI_BATTLE
+ goto CableClub_EventScript_TryEnterColosseum
+ end
+
+CableClub_EventScript_TryEnterColosseum:: @ 81BB54C
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortLink
+ message CableClub_Text_PleaseWaitBCancel
+ waitmessage
+ special HelpSystem_Disable
+ textcolor 3
+ special TryBattleLinkup
+ waitstate
+ call EventScript_1A6675
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterColosseum
+ compare VAR_RESULT, 2
+ goto_if_eq CableClub_EventScript_AbortLinkSomeoneNotReady
+ compare VAR_RESULT, 3
+ goto_if_eq CableClub_EventScript_AbortLinkDifferentSelections
+ compare VAR_RESULT, 4
+ goto_if_eq CableClub_EventScript_AbortLinkIncorrectNumberOfBattlers
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_AbortLink
+ compare VAR_RESULT, 6
+ goto_if_eq CableClub_EventScript_AbortLinkConnectionError
+ end
+
+CableClub_EventScript_EnterColosseum:: @ 81BB5B3
+ special HealPlayerParty
+ special SavePlayerParty
+ special LoadPlayerBag
+ copyvar VAR_CABLE_CLUB_STATE, VAR_0x8004
+ messageautoscroll CableClub_Text_PleaseEnter
+ waitmessage
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ delay 60
+ applymovement VAR_LAST_TALKED, Movement_AttendantFaceLeft
+ waitmovement 0
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachLinkRoomLeft
+ waitmovement 0
+ opendoor 9, 1
+ waitdooranim
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerEnterLinkRoom
+ waitmovement 0
+ hideobject OBJ_EVENT_ID_PLAYER, 0
+ closedoor 9, 1
+ waitdooranim
+ release
+ compare VAR_0x8004, USING_MULTI_BATTLE
+ goto_if_eq CableClub_EventScript_WarpTo4PColosseum
+ special SetCableClubWarp
+ warp MAP_BATTLE_COLOSSEUM_2P, 255, 6, 8
+ special DoCableClubWarp
+ waitstate
+ end
+
+@ Unused
+CableClub_EventScript_PlayerApproachLinkRoomRight:: @ 81BB621
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachLinkRoomRight
+ waitmovement 0
+ return
+
+CableClub_EventScript_WarpTo4PColosseum:: @ 81BB62C
+ special SetCableClubWarp
+ warp MAP_BATTLE_COLOSSEUM_4P, 255, 5, 8
+ special DoCableClubWarp
+ waitstate
+ end
+
+CableClub_EventScript_AbortLinkIncorrectNumberOfBattlers:: @ 81BB63C
+ switch VAR_0x8004
+ case USING_SINGLE_BATTLE, CableClub_EventScript_AbortLinkWrongNumberForSingleBattle
+ case USING_DOUBLE_BATTLE, CableClub_EventScript_AbortLinkWrongNumberForDoubleBattle
+ case USING_MULTI_BATTLE, CableClub_EventScript_AbortLinkNeedFourPlayers
+ goto CableClub_EventScript_AbortLinkIncorrectNumberOfParticipants
+ end
+
+CableClub_EventScript_AbortLinkNeedFourPlayers:: @ 81BB668
+ special CloseLink
+ msgbox CableClub_Text_NeedFourPlayers
+ goto CableClub_EventScript_ConfirmNumberAndRestart
+ end
+
+CableClub_EventScript_AbortLinkWrongNumberForDoubleBattle:: @ 81BB679
+ special CloseLink
+ msgbox CableClub_Text_CantDoubleBattleWithXPlayers
+ goto CableClub_EventScript_ConfirmNumberAndRestart
+ end
+
+CableClub_EventScript_AbortLinkWrongNumberForSingleBattle:: @ 81BB68A
+ special CloseLink
+ msgbox CableClub_Text_CantSingleBattleWithXPlayers
+ goto CableClub_EventScript_ConfirmNumberAndRestart
+ end
+
+CableClub_EventScript_ConfirmNumberAndRestart:: @ 81BB69B
+ special CloseLink @ Redundant
+ special HelpSystem_Enable
+ msgbox CableClub_Text_PleaseConfirmNumberAndRestart
+ release
+ end
+
+CableClub_EventScript_TradeCenter:: @ 81BB6AB
+ copyvar VAR_0x8007, VAR_LAST_TALKED
+ call CableClub_EventScript_CheckPartyTradeRequirements
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortLink
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortLink
+ message CableClub_Text_PleaseWaitBCancel
+ waitmessage
+ special HelpSystem_Disable
+ textcolor 3
+ special TryTradeLinkup
+ waitstate
+ call EventScript_1A6675
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterTradeCenter
+ compare VAR_RESULT, 2
+ goto_if_eq CableClub_EventScript_AbortLinkSomeoneNotReady
+ compare VAR_RESULT, 3
+ goto_if_eq CableClub_EventScript_AbortLinkDifferentSelections
+ compare VAR_RESULT, 4
+ goto_if_eq CableClub_EventScript_AbortLinkIncorrectNumberOfParticipants
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_AbortLink
+ compare VAR_RESULT, 6
+ goto_if_eq CableClub_EventScript_AbortLinkConnectionError
+ compare VAR_RESULT, 7
+ goto_if_eq CableClub_EventScript_AbortLinkPlayerNotReady
+ compare VAR_RESULT, 9
+ goto_if_eq CableClub_EventScript_AbortLinkOtherTrainerNotReady
+ end
+
+CableClub_EventScript_EnterTradeCenter:: @ 81BB73D
+ setvar VAR_0x8004, USING_TRADE_CENTER
+ copyvar VAR_CABLE_CLUB_STATE, VAR_0x8004
+ messageautoscroll CableClub_Text_PleaseEnter
+ waitmessage
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ delay 60
+ applymovement VAR_LAST_TALKED, Movement_AttendantFaceLeft
+ waitmovement 0
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachLinkRoomLeft
+ waitmovement 0
+ opendoor 9, 1
+ waitdooranim
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerEnterLinkRoom
+ waitmovement 0
+ hideobject OBJ_EVENT_ID_PLAYER, 0
+ closedoor 9, 1
+ waitdooranim
+ release
+ special SetCableClubWarp
+ setwarp MAP_TRADE_CENTER, 255, 5, 8
+ special DoCableClubWarp
+ waitstate
+ end
+
+CableClub_EventScript_CheckPartyTradeRequirements:: @ 81BB79C
+ specialvar VAR_RESULT, CalculatePlayerPartyCount
+ compare VAR_RESULT, 2
+ goto_if_lt CableClub_EventScript_NeedTwoMonsToTrade
+ specialvar VAR_RESULT, GetNameOfEnigmaBerryInPlayerParty
+ compare VAR_RESULT, TRUE
+ goto_if_eq CableClub_EventScript_CantTradeEnigmaBerry
+ setvar VAR_RESULT, TRUE
+ return
+
+CableClub_EventScript_NeedTwoMonsToTrade:: @ 81BB7C2
+ msgbox CableClub_Text_NeedTwoMonsToTrade
+ setvar VAR_RESULT, FALSE
+ return
+
+CableClub_EventScript_CantTradeEnigmaBerry:: @ 81BB7D0
+ msgbox CableClub_Text_CantTradeEnigmaBerry
+ setvar VAR_RESULT, FALSE
+ return
+
+@ Record Corner is nopped in FRLG
+CableClub_EventScript_RecordCorner:: @ 81BB7DE
+ end
+
+CableClub_EventScript_AbortLinkPlayerNotReady:: @ 81BB7DF
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_NotSetUpForFarAwayRegion
+ release
+ end
+
+CableClub_EventScript_AbortLinkOtherTrainerNotReady:: @ 81BB7EF
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_OtherTrainerNotReady
+ release
+ end
+
+CableClub_EventScript_AbortLinkConnectionError:: @ 81BB7FF
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_LinkErrorPleaseReset
+ release
+ end
+
+CableClub_EventScript_AbortLinkSomeoneNotReady:: @ 81BB80F
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_SomeoneIsNotReadyToLink
+ release
+ end
+
+CableClub_EventScript_AbortLinkDifferentSelections:: @ 81BB81F
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_PlayersMadeDifferentSelections
+ release
+ end
+
+CableClub_EventScript_AbortLink:: @ 81BB82F
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_PleaseVisitAgain
+ release
+ end
+
+CableClub_EventScript_AbortMinigame:: @ 81BB83F
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_ComeAgain
+ release
+ end
+
+@ Unused
+CableClub_EventScript_CableClubWarp:: @ 81BB84F
+ special SetCableClubWarp
+ special DoCableClubWarp
+ waitstate
+ end
+
+CableClub_EventScript_AbortLinkIncorrectNumberOfParticipants:: @ 81BB857
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_IncorrectNumberOfParticipants
+ release
+ end
+
+CableClub_EventScript_AbortLinkPlayerHasBadEgg:: @ 81BB867
+ special CloseLink
+ special HelpSystem_Enable
+ msgbox CableClub_Text_YouHaveAMonThatCantBeTaken
+ release
+ end
+
+CableClub_EventScript_WirelessClubAdjustements:: @ 81BB877
+ msgbox Text_WirelessClubUndergoingAdjustments
+ release
+ end
+
+CableClub_EventScript_NotReadyYet:: @ 81BB881
+ msgbox Text_AppearsToBeUndergoingAdjustments
+ releaseall
+ end
+
+Movement_AttendantFaceDown:: @ 81BB88B
+ face_down
+ step_end
+
+@ Unused
+Movement_AttendantFaceRight:: @ 81BB88D
+ face_right
+ step_end
+
+Movement_AttendantFaceLeft:: @ 81BB88F
+ face_left
+ step_end
+
+Movement_PlayerExitLinkRoom:: @ 81BB891
+ walk_down
+ walk_down
+ step_end
+
+Movement_PlayerApproachLinkRoomRight:: @ 81BB894
+ walk_right
+ walk_up
+ walk_up
+ step_end
+
+Movement_PlayerApproachLinkRoomLeft:: @ 81BB898
+ walk_left
+ walk_up
+ walk_up
+ step_end
+
+Movement_PlayerEnterLinkRoom:: @ 81BB89C
+ walk_up
+ step_end
+
+@ Unused
+Movement_PlayerFaceAttendantLeft:: @ 81BB89E
+ face_left
+ step_end
+
+Movement_PlayerFaceAttendantRight:: @ 81BB8A0
+ face_right
+ step_end
+
+Movement_PlayerEnterMinigameRoom:: @ 81BB8A2
+ walk_left
+ walk_up
+ walk_up
+ walk_up
+ step_end
+
+CableClub_EventScript_ShowBattleRecords:: @ 81BB8A7
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ fadescreen FADE_TO_BLACK
+ setvar VAR_0x8004, 0
+ special Special_BattleRecords
+ waitstate
+ releaseall
+ end
+
+BattleColosseum2P_EventScript_PlayerSpot0:: @ 81BB8C3
+ setvar VAR_0x8005, 0
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum2P_EventScript_PlayerSpot1:: @ 81BB8CF
+ setvar VAR_0x8005, 1
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum4P_EventScript_PlayerSpot0:: @ 81BB8DB
+ fadescreen FADE_TO_BLACK
+ special ChooseHalfPartyForBattle
+ waitstate
+ compare VAR_RESULT, 0
+ goto_if_eq BattleColosseum4P_EventScript_CancelSpotTrigger
+ setvar VAR_0x8005, 0
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum4P_EventScript_PlayerSpot1:: @ 81BB8F8
+ fadescreen FADE_TO_BLACK
+ special ChooseHalfPartyForBattle
+ waitstate
+ compare VAR_RESULT, 0
+ goto_if_eq BattleColosseum4P_EventScript_CancelSpotTrigger
+ setvar VAR_0x8005, 1
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum4P_EventScript_PlayerSpot2:: @ 81BB915
+ fadescreen FADE_TO_BLACK
+ special ChooseHalfPartyForBattle
+ waitstate
+ compare VAR_RESULT, 0
+ goto_if_eq BattleColosseum4P_EventScript_CancelSpotTrigger
+ setvar VAR_0x8005, 2
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum4P_EventScript_PlayerSpot3:: @ 81BB932
+ fadescreen FADE_TO_BLACK
+ special ChooseHalfPartyForBattle
+ waitstate
+ compare VAR_RESULT, 0
+ goto_if_eq BattleColosseum4P_EventScript_CancelSpotTrigger
+ setvar VAR_0x8005, 3
+ textcolor 3
+ special EnterColosseumPlayerSpot
+ waitstate
+ end
+
+BattleColosseum4P_EventScript_CancelSpotTrigger:: @ 81BB94F
+ end
+
+TradeCenter_EventScript_Chair0:: @ 81BB950
+ setvar VAR_0x8005, 0
+ textcolor 3
+ special EnterTradeSeat
+ waitstate
+ end
+
+TradeCenter_EventScript_Chair1:: @ 81BB95C
+ setvar VAR_0x8005, 1
+ textcolor 3
+ special EnterTradeSeat
+ waitstate
+ end
+
+@ Unused
+TradeCenter_EventScript_Chair2:: @ 81BB968
+ setvar VAR_0x8005, 2
+ textcolor 3
+ special EnterTradeSeat
+ waitstate
+ end
+
+@ Unused
+TradeCenter_EventScript_Chair3:: @ 81BB974
+ setvar VAR_0x8005, 3
+ textcolor 3
+ special EnterTradeSeat
+ waitstate
+ end
+
+@ Nop in FRLG
+RecordCenter_EventScript_Spot:: @ 81BB980
+ end
+
+CableClub_EventScript_ReadTrainerCard:: @ 81BB981
+ textcolor 3
+ msgbox Text_LookedAtPlayersTrainerCard
+ fadescreen FADE_TO_BLACK
+ special Script_ShowLinkTrainerCard
+ waitstate
+ end
+
+CableClub_EventScript_ReadTrainerCardColored:: @ 81BB992
+ textcolor 3
+ msgbox Text_LookedAtPlayersTrainerCardColored
+ fadescreen FADE_TO_BLACK
+ special Script_ShowLinkTrainerCard
+ waitstate
+ end
+
+CableClub_EventScript_TooBusyToNotice:: @ 81BB9A3
+ textcolor 3
+ msgbox Text_TrainerTooBusyToNotice
+ closemessage
+ end
+
+BattleColosseum2P_EventScript_Attendant:: @ 81BB9AF
+ textcolor 3
+ special Script_FacePlayer
+ msgbox Text_TakeSeatStartBattle
+ special Script_ClearHeldMovement
+ closemessage
+ end
+
+TradeCenter_EventScript_Attendant:: @ 81BB9C1
+ textcolor 3
+ special Script_FacePlayer
+ msgbox Text_TakeSeatStartTrade
+ special Script_ClearHeldMovement
+ closemessage
+ end
+
+@ Nop in FRLG
+RecordCenter_EventScript_Attendant:: @ 81BB9D3
+ end
+
+TradeCenter_ConfirmLeaveRoom:: @ 81BB9D4
+ textcolor 3
+ msgbox Text_TerminateLinkIfYouLeaveRoom, MSGBOX_YESNO
+ compare VAR_RESULT, YES
+ goto_if_eq TradeCenter_TerminateLink
+ erasebox 0, 0, 29, 19
+ releaseall
+ end
+
+TradeCenter_TerminateLink:: @ 81BB9F0
+ textcolor 3
+ messageautoscroll Text_TerminateLinkConfirmation
+ waitmessage
+ special sub_8081770
+ end
+
+CableClub_EventScript_DoLinkRoomExit:: @ 81BB9FC
+ special CleanupLinkRoomState
+ special ReturnFromLinkRoom
+ waitstate
+ end
+
+CableClub_EventScript_UnionRoomAttendant:: @ 81BBA04
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ lock
+ faceplayer
+ goto_if_unset FLAG_SYS_POKEDEX_GET, CableClub_EventScript_WirelessClubAdjustements
+ specialvar VAR_RESULT, Special_BadEggInParty
+ compare VAR_RESULT, TRUE
+ goto_if_eq CableClub_EventScript_AbortLinkPlayerHasBadEgg
+ copyvar VAR_0x8007, VAR_LAST_TALKED
+ specialvar VAR_RESULT, IsWirelessAdapterConnected
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_UnionRoomAdapterNotConnected
+ message CableClub_Text_WelcomeUnionRoomEnter
+ waitmessage
+ goto CableClub_EventScript_AskEnterUnionRoom
+ end
+
+CableClub_EventScript_AskEnterUnionRoom:: @ 81BBA51
+ multichoice 18, 6, MULTICHOICE_YES_NO_INFO, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_EnterUnionRoom
+ case 1, CableClub_EventScript_AbortLink
+ case 2, CableClub_EventScript_UnionRoomInfo
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_UnionRoomInfo:: @ 81BBA88
+ message CableClub_Text_UnionRoomInfo
+ waitmessage
+ goto CableClub_EventScript_AskEnterUnionRoom
+ end
+
+CableClub_EventScript_EnterUnionRoom:: @ 81BBA94
+ call CableClub_EventScript_CheckPartyUnionRoomRequirements
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_AbortLink
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortLink
+ msgbox CableClub_Text_EnjoyUnionRoom
+ closemessage
+ special HealPlayerParty
+ setvar VAR_0x8004, USING_UNION_ROOM
+ copyvar VAR_CABLE_CLUB_STATE, VAR_0x8004
+ special HelpSystem_Disable
+ call CableClub_EventScript_OpenUnionRoomBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ delay 60
+ applymovement VAR_LAST_TALKED, Movement_AttendantFaceLeft
+ waitmovement 0
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachLinkRoomLeft
+ waitmovement 0
+ opendoor 5, 1
+ waitdooranim
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerEnterLinkRoom
+ waitmovement 0
+ hideobject OBJ_EVENT_ID_PLAYER, 0
+ closedoor 5, 1
+ waitdooranim
+ special Script_ResetUnionRoomTrade
+ special SetCableClubWarp
+ warpteleport2 MAP_UNION_ROOM, 255, 7, 11
+ waitstate
+ special UnionRoomSpecial
+ waitstate
+ end
+
+CableClub_EventScript_CheckPartyUnionRoomRequirements:: @ 81BBB1E
+ specialvar VAR_RESULT, CountPartyNonEggMons
+ compare VAR_RESULT, 2
+ goto_if_lt CableClub_EventScript_NeedTwoMonsForUnionRoom
+ specialvar VAR_RESULT, GetNameOfEnigmaBerryInPlayerParty
+ compare VAR_RESULT, TRUE
+ goto_if_eq CableClub_EventScript_NoEnigmaBerryInUnionRoom
+ setvar VAR_RESULT, TRUE
+ return
+
+CableClub_EventScript_NeedTwoMonsForUnionRoom:: @ 81BBB44
+ msgbox CableClub_Text_NeedTwoMonsForUnionRoom
+ goto EventScript_SetResultFalse
+ end
+
+CableClub_EventScript_NoEnigmaBerryInUnionRoom:: @ 81BBB52
+ msgbox CableClub_Text_NoEnigmaBerryInUnionRoom
+ goto EventScript_SetResultFalse
+ end
+
+CableClub_EventScript_UnionRoomAdapterNotConnected:: @ 81BBB60
+ msgbox CableClub_Text_UnionRoomAdapterNotConnected
+ release
+ return
+
+CableClub_EventScript_WirelessClubAttendant:: @ 81BBB6A
+ lock
+ faceplayer
+ goto_if_unset FLAG_SYS_POKEDEX_GET, CableClub_EventScript_WirelessClubAdjustements
+ msgbox CableClub_Text_AskAboutLinking, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq CableClub_EventScript_DontAskAboutLinking
+ msgbox CableClub_Text_ExplainWirelessClub
+ release
+ return
+
+CableClub_EventScript_DontAskAboutLinking:: @ 81BBB92
+ msgbox CableClub_Text_HopeYouEnjoyWirelessSystem
+ release
+ return
+
+CableClub_EventScript_DirectCornerAttendant:: @ 81BBB9C
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ lock
+ faceplayer
+ goto_if_unset FLAG_SYS_POKEDEX_GET, CableClub_EventScript_WirelessClubAdjustements
+ specialvar VAR_RESULT, Special_BadEggInParty
+ compare VAR_RESULT, TRUE
+ goto_if_eq CableClub_EventScript_AbortLinkPlayerHasBadEgg
+ specialvar VAR_RESULT, IsWirelessAdapterConnected
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_WelcomeToCableClub
+ message CableClub_Text_WelcomeWhichDirectCornerRoom
+ waitmessage
+ delay 15
+ goto CableClub_EventScript_DirectCornerSelectService
+ end
+
+CableClub_EventScript_DirectCornerSelectService:: @ 81BBBE7
+ goto_if_unset FLAG_GOT_POWDER_JAR, CableClub_EventScript_DirectCornerNoBerry
+ multichoice 0, 0, MULTICHOICE_TRADE_COLOSSEUM_CRUSH, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_WirelessTrade
+ case 1, CableClub_EventScript_WirelessBattleSelect
+ case 2, CableClub_EventScript_WirelessBerryCrush
+ case 3, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_DirectCornerNoBerry:: @ 81BBC32
+ multichoice 0, 0, MULTICHOICE_TRADE_COLOSSEUM_2, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_WirelessTrade
+ case 1, CableClub_EventScript_WirelessBattleSelect
+ case 2, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_WirelessTrade:: @ 81BBC69
+ msgbox CableClub_Text_TradePokemon, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq CableClub_EventScript_AbortLink
+ call CableClub_EventScript_CheckPartyTradeRequirements
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_AbortLink
+ setvar VAR_0x8004, LINK_GROUP_TRADE
+ goto CableClub_EventScript_SaveAndChooseLinkLeader
+ end
+
+CableClub_EventScript_WirelessBattleSelect:: @ 81BBC97
+ message CableClub_Text_PlayWhichBattleMode
+ waitmessage
+ multichoice 0, 0, MULTICHOICE_SINGLE_DOUBLE_MULTI_INFO_EXIT, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_WirelessSingleBattle
+ case 1, CableClub_EventScript_WirelessDoubleBattle
+ case 2, CableClub_EventScript_WirelessMultiBattle
+ case 3, CableClub_EventScript_WirelessBattleInfo
+ case 4, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_WirelessSingleBattle:: @ 81BBCEA
+ setvar VAR_0x8004, LINK_GROUP_SINGLE_BATTLE
+ goto CableClub_EventScript_SaveAndChooseLinkLeader
+ end
+
+CableClub_EventScript_WirelessDoubleBattle:: @ 81BBCF5
+ special HasEnoughMonsForDoubleBattle
+ compare VAR_RESULT, PLAYER_HAS_TWO_USABLE_MONS
+ goto_if_ne CableClub_EventScript_TwoMonsNeededForWirelessDoubleBattle
+ setvar VAR_0x8004, LINK_GROUP_DOUBLE_BATTLE
+ goto CableClub_EventScript_SaveAndChooseLinkLeader
+ end
+
+CableClub_EventScript_TwoMonsNeededForWirelessDoubleBattle:: @ 81BBD0E
+ msgbox CableClub_Text_NeedTwoMonsForDoubleBattle
+ goto CableClub_EventScript_WirelessBattleSelect
+ end
+
+CableClub_EventScript_WirelessMultiBattle:: @ 81BBD1C
+ setvar VAR_0x8004, LINK_GROUP_MULTI_BATTLE
+ goto CableClub_EventScript_SaveAndChooseLinkLeader
+ end
+
+CableClub_EventScript_WirelessBattleInfo:: @ 81BBD27
+ msgbox CableClub_Text_ExplainBattleModes
+ goto CableClub_EventScript_WirelessBattleSelect
+ end
+
+CableClub_EventScript_WirelessBerryCrush:: @ 81BBD35
+ msgbox CableClub_Text_UseBerryCrush, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq CableClub_EventScript_AbortLink
+ special CheckHasAtLeastOneBerry
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_NeedBerryForBerryCrush
+ setvar VAR_0x8004, LINK_GROUP_BERRY_CRUSH
+ goto CableClub_EventScript_SaveAndChooseLinkLeader
+ end
+
+CableClub_EventScript_NeedBerryForBerryCrush:: @ 81BBD61
+ msgbox CableClub_Text_NeedBerryForBerryCrush
+ goto CableClub_EventScript_DirectCornerSelectService
+ end
+
+CableClub_EventScript_SaveAndChooseLinkLeader:: @ 81BBD6F
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortLink
+ switch VAR_0x8004
+ case LINK_GROUP_TRADE, CableClub_EventScript_ChooseLinkLeaderFrom2
+ case LINK_GROUP_SINGLE_BATTLE, CableClub_EventScript_ChooseLinkLeaderFrom2
+ case LINK_GROUP_DOUBLE_BATTLE, CableClub_EventScript_ChooseLinkLeaderFrom2
+ case LINK_GROUP_MULTI_BATTLE, CableClub_EventScript_ChooseLinkLeaderFrom4
+ case LINK_GROUP_BERRY_CRUSH, CableClub_EventScript_ChooseLinkLeader
+ end
+
+CableClub_EventScript_ChooseLinkLeaderFrom2:: @ 81BBDBC
+ textcolor 3
+ message CableClub_Text_ChooseGroupLeaderOfTwo
+ waitmessage
+ call EventScript_1A6675
+ multichoice 13, 6, MULTICHOICE_JOIN_OR_LEAD, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_TryJoinGroup2Players
+ case 1, CableClub_EventScript_TryLeadGroup2Players
+ case 2, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_TryLeadGroup2Players:: @ 81BBE00
+ call CableClub_EventScript_TryBecomeLinkLeader
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderFrom2
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryLeadGroup2Players
+ release
+ return
+
+CableClub_EventScript_TryJoinGroup2Players:: @ 81BBE28
+ call CableClub_EventScript_TryJoinLinkGroup
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderFrom2
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryJoinGroup2Players
+ release
+ return
+
+CableClub_EventScript_ChooseLinkLeaderFrom4:: @ 81BBE50
+ textcolor 3
+ message CableClub_Text_ChooseGroupLeaderOfFour
+ waitmessage
+ call EventScript_1A6675
+ multichoice 13, 6, MULTICHOICE_JOIN_OR_LEAD, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_TryJoinGroup4Players
+ case 1, CableClub_EventScript_TryLeadGroup4Players
+ case 2, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_TryLeadGroup4Players:: @ 81BBE94
+ call CableClub_EventScript_TryBecomeLinkLeader
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderFrom4
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryLeadGroup4Players
+ release
+ return
+
+CableClub_EventScript_TryJoinGroup4Players:: @ 81BBEBC
+ call CableClub_EventScript_TryJoinLinkGroup
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderFrom4
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryJoinGroup4Players
+ release
+ return
+
+CableClub_EventScript_ChooseLinkLeader:: @ 81BBEE4
+ textcolor 3
+ message CableClub_Text_ChooseGroupLeader
+ waitmessage
+ call EventScript_1A6675
+ multichoice 13, 6, MULTICHOICE_JOIN_OR_LEAD, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_TryJoinGroupXPlayers
+ case 1, CableClub_EventScript_TryLeadGroupXPlayers
+ case 2, CableClub_EventScript_AbortLink
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortLink
+ end
+
+CableClub_EventScript_TryLeadGroupXPlayers:: @ 81BBF28
+ call CableClub_EventScript_TryBecomeLinkLeader
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeader
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryLeadGroupXPlayers
+ release
+ return
+
+CableClub_EventScript_TryJoinGroupXPlayers:: @ 81BBF50
+ call CableClub_EventScript_TryJoinLinkGroup
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterWirelessLinkRoom
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeader
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryJoinGroupXPlayers
+ release
+ return
+
+CableClub_EventScript_TryBecomeLinkLeader:: @ 81BBF78
+ special HelpSystem_Disable
+ special TryBecomeLinkLeader
+ waitstate
+ return
+
+CableClub_EventScript_TryJoinLinkGroup:: @ 81BBF80
+ special HelpSystem_Disable
+ special TryJoinLinkGroup
+ waitstate
+ return
+
+CableClub_EventScript_EnterWirelessLinkRoom:: @ 81BBF88
+ messageautoscroll CableClub_Text_DirectYouToYourRoom
+ waitmessage
+ delay 60
+ closemessage
+ copyvar VAR_0x8007, VAR_LAST_TALKED
+ call CableClub_EventScript_OpenDirectCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ delay 60
+ applymovement VAR_LAST_TALKED, Movement_AttendantFaceLeft
+ waitmovement 0
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerApproachLinkRoomLeft
+ waitmovement 0
+ opendoor 9, 1
+ waitdooranim
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerEnterLinkRoom
+ waitmovement 0
+ hideobject OBJ_EVENT_ID_PLAYER, 0
+ closedoor 9, 1
+ waitdooranim
+ release
+ waitstate
+ end
+
+CableClub_EventScript_81BBFD8:: @ 81BBFD8
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ goto_if_unset FLAG_SYS_POKEDEX_GET, CableClub_EventScript_NotReadyYet
+ specialvar VAR_RESULT, IsWirelessAdapterConnected
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_AdapterNotConnected
+ special HelpSystem_Disable
+ fadescreen FADE_TO_BLACK
+ special sub_814F1D4
+ waitstate
+ msgbox CableClub_Text_ParticipantsStepUpToCounter
+ special HelpSystem_Enable
+ releaseall
+ end
+
+CableClub_EventScript_AdapterNotConnected:: @ 81BC016
+ msgbox CableClub_Text_AdapterNotConnected
+ releaseall
+ end
+
+CableClub_EventScript_OpenUnionRoomBarrier:: @ 81BC020
+ setmetatile 5, 3, 709, 0
+ return
+
+CableClub_EventScript_CloseUnionRoomBarrier:: @ 81BC02A
+ setmetatile 5, 3, 761, 1
+ return
+
+CableClub_EventScript_OpenDirectCornerBarrier:: @ 81BC034
+ setmetatile 9, 3, 709, 0
+ return
+
+CableClub_EventScript_CloseDirectCornerBarrier:: @ 81BC03E
+ setmetatile 9, 3, 761, 1
+ return
+
+CableClub_EventScript_OpenGameCornerBarrier:: @ 81BC048
+ setmetatile 5, 3, 737, 0
+ return
+
+CableClub_EventScript_CloseGameCornerBarrier:: @ 81BC052
+ setmetatile 5, 3, 759, 1
+ return
+
+CableClub_OnResume:: @ 81BC05C
+ special InitUnionRoom
+ end
+
+JoyfulGameCorner_EventScript_InfoMan2:: @ 81BC060
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ lock
+ faceplayer
+ message Text_DescribeWhichGame
+ waitmessage
+ multichoice 0, 0, MULTICHOICE_POKEJUMP_DODRIO, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_PokemonJumpInfo
+ case 1, CableClub_EventScript_DodrioBerryPickingInfo
+ case 2, CableClub_EventScript_MinigameInfoExit
+ case SCR_MENU_CANCEL, CableClub_EventScript_MinigameInfoExit
+ end
+
+CableClub_EventScript_PokemonJumpInfo:: @ 81BC0B0
+ msgbox Text_PokemonJumpInfo
+ release
+ end
+
+CableClub_EventScript_DodrioBerryPickingInfo:: @ 81BC0BA
+ msgbox Text_DodrioBerryPickingInfo
+ release
+ end
+
+CableClub_EventScript_MinigameInfoExit:: @ 81BC0C4
+ msgbox Text_TalkToManToPlay
+ release
+ end
+
+JoyfulGameCorner_EventScript_MinigameAttendant:: @ 81BC0CE
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ lock
+ faceplayer
+ message Text_WelcomeCanYouWait
+ waitmessage
+ specialvar VAR_RESULT, IsWirelessAdapterConnected
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_AdapterNotConnectedMinigame
+ delay 60
+ special HelpSystem_Disable
+ message Text_PlayWhichGame
+ waitmessage
+ multichoice 0, 0, MULTICHOICE_POKEJUMP_DODRIO, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_PlayPokemonJump
+ case 1, CableClub_EventScript_PlayDodrioBerryPicking
+ case 2, CableClub_EventScript_AbortMinigame
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortMinigame
+ end
+
+CableClub_EventScript_PlayPokemonJump:: @ 81BC13A
+ setvar VAR_0x8005, 0
+ special IsPokemonJumpSpeciesInParty
+ compare VAR_RESULT, FALSE
+ goto_if_eq CableClub_EventScript_NoEligiblePkmn
+ msgbox Text_EnterWhichPokemon
+ setvar VAR_0x8005, 0
+ special ChooseMonForWirelessMinigame
+ waitstate
+ compare VAR_0x8004, PARTY_SIZE
+ goto_if_ge CableClub_EventScript_AbortMinigame
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortMinigame
+ setvar VAR_0x8004, LINK_GROUP_POKEMON_JUMP
+ goto CableClub_EventScript_ChooseLinkLeaderMinigame
+ end
+
+CableClub_EventScript_PlayDodrioBerryPicking:: @ 81BC184
+ setvar VAR_0x8005, 1
+ special IsDodrioInParty
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_NoEligiblePkmn
+ msgbox Text_EnterWhichPokemon
+ setvar VAR_0x8005, 1
+ special ChooseMonForWirelessMinigame
+ waitstate
+ compare VAR_0x8004, PARTY_SIZE
+ goto_if_ge CableClub_EventScript_AbortMinigame
+ call EventScript_AskSaveGame
+ compare VAR_RESULT, 0
+ goto_if_eq CableClub_EventScript_AbortMinigame
+ setvar VAR_0x8004, LINK_GROUP_BERRY_PICKING
+ goto CableClub_EventScript_ChooseLinkLeaderMinigame
+ end
+
+CableClub_EventScript_ChooseLinkLeaderMinigame:: @ 81BC1CE
+ textcolor 3
+ message CableClub_Text_ChooseGroupLeader
+ waitmessage
+ call EventScript_1A6675
+ multichoice 13, 6, MULTICHOICE_JOIN_OR_LEAD, FALSE
+ switch VAR_RESULT
+ case 0, CableClub_EventScript_TryJoinMinigameLinkGroup
+ case 1, CableClub_EventScript_TryBecomeMinigameLinkLeader
+ case 2, CableClub_EventScript_AbortMinigame
+ case SCR_MENU_CANCEL, CableClub_EventScript_AbortMinigame
+ end
+
+CableClub_EventScript_TryBecomeMinigameLinkLeader:: @ 81BC212
+ call CableClub_EventScript_TryBecomeLinkLeader
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterMinigame
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderMinigame
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryBecomeMinigameLinkLeader
+ release
+ return
+
+CableClub_EventScript_TryJoinMinigameLinkGroup:: @ 81BC23A
+ call CableClub_EventScript_TryJoinLinkGroup
+ compare VAR_RESULT, 1
+ goto_if_eq CableClub_EventScript_EnterMinigame
+ compare VAR_RESULT, 5
+ goto_if_eq CableClub_EventScript_ChooseLinkLeaderMinigame
+ compare VAR_RESULT, 8
+ goto_if_eq CableClub_EventScript_TryJoinMinigameLinkGroup
+ release
+ return
+
+CableClub_EventScript_EnterMinigame:: @ 81BC262
+ messageautoscroll Text_AllGoodToGo
+ waitmessage
+ delay 120
+ closemessage
+ copyvar VAR_0x8007, VAR_LAST_TALKED
+ call CableClub_EventScript_OpenGameCornerBarrier
+ special DrawWholeMapView
+ playse SE_TK_KASYA
+ delay 60
+ applymovement VAR_LAST_TALKED, Movement_AttendantFaceLeft
+ waitmovement 0
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_PlayerEnterMinigameRoom
+ waitmovement 0
+ hideobject OBJ_EVENT_ID_PLAYER, 0
+ release
+ waitstate
+ end
+
+CableClub_EventScript_AdapterNotConnectedMinigame:: @ 81BC29C
+ msgbox Text_AdapterNotConnectedMinigame
+ release
+ end
+
+CableClub_EventScript_NoEligiblePkmn:: @ 81BC2A6
+ msgbox EventScript_ExplainPokemonJumpRequirements, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq CableClub_EventScript_AbortMinigame
+ compare VAR_0x8005, 0
+ call_if_eq CableClub_EventScript_ExplainPokemonJumpRequirements
+ compare VAR_0x8005, 1
+ call_if_eq CableClub_EventScript_ExplainDodrioBerryPickingRequirements
+ goto CableClub_EventScript_AbortMinigame
+ end
+
+CableClub_EventScript_ExplainPokemonJumpRequirements:: @ 81BC2D5
+ msgbox Text_ShortJumpingPokemonAllowed
+ return
+
+CableClub_EventScript_ExplainDodrioBerryPickingRequirements:: @ 81BC2DE
+ msgbox Text_OnlyDodrioAllowed
+ return
+
+TwoIsland_JoyfulGameCorner_EventScript_ShowPokemonJumpRecords:: @ 81BC2E7
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ special ShowPokemonJumpRecords
+ waitstate
+ releaseall
+ end
+
+TwoIsland_JoyfulGameCorner_EventScript_ShowDodrioBerryPickingRecords:: @ 81BC2FC
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ special ShowDodrioBerryPickingRecords
+ waitstate
+ releaseall
+ end
+
+CableClub_Text_WelcomeWhichCableClubService:: @ 81BC311
+ .string "Welcome to the POKéMON CABLE\n"
+ .string "CLUB.\p"
+ .string "Which of our services do you wish\n"
+ .string "to use?$"
+
+CableClub_Text_WhichService:: @ 81BC35E
+ .string "Which of our services do you wish\n"
+ .string "to use?$"
+
+CableClub_Text_TradeMonsUsingLinkCable:: @ 81BC388
+ .string "Trade POKéMON with another player\n"
+ .string "using a GBA Game Link cable.$"
+
+CableClub_Text_BattleUsingLinkCable:: @ 81BC3C7
+ .string "You may battle another TRAINER\n"
+ .string "using a GBA Game Link cable.$"
+
+@ Unused, translated in Emerald
+CableClub_Text_CloseThisMenu:: @ 81BC403
+ .string "おわります$"
+
+CableClub_Text_NeedTwoMonsForDoubleBattle:: @ 81BC409
+ .string "For a DOUBLE BATTLE, you must\n"
+ .string "have at least two POKéMON.$"
+
+CableClub_Text_NeedTwoMonsToTrade:: @ 81BC442
+ .string "For trading, you must have at\n"
+ .string "least two POKéMON with you.$"
+
+CableClub_Text_CantTradeEnigmaBerry:: @ 81BC47C
+ .string "A POKéMON holding the {STR_VAR_1}\n"
+ .string "BERRY can't be traded.$"
+
+CableClub_Text_PleaseWaitBCancel:: @ 81BC4AC
+ .string "Please wait.\n"
+ .string "… … B Button: Cancel$"
+
+CableClub_Text_WhenAllPlayersReadyAConfirmBCancel:: @ 81BC4CE
+ .string "When all players are ready…\n"
+ .string "A Button: Confirm\l"
+ .string "B Button: Cancel$"
+
+CableClub_Text_StartLinkWithXPlayersAConfirmBCancel:: @ 81BC50D
+ .string "Start link with {STR_VAR_1} players.\n"
+ .string "A Button: Confirm\l"
+ .string "B Button: Cancel$"
+
+CableClub_Text_AwaitingLinkupBCancel:: @ 81BC54C
+ .string "Awaiting linkup…\n"
+ .string "… … B Button: Cancel$"
+
+@ Unused, translated in Emerald
+CableClub_Text_OkayToSaveProgress:: @ 81BC572
+ .string "はじめる まえに レポートを\n"
+ .string "かきますが よろしいですか?$"
+
+CableClub_Text_PleaseEnter:: @ 81BC590
+ .string "Please enter.$"
+
+CableClub_Text_DirectYouToYourRoom:: @ 81BC59E
+ .string "I'll direct you to your room now.$"
+
+CableClub_Text_SomeoneIsNotReadyToLink:: @ 81BC5C0
+ .string "Someone is not ready to link.\p"
+ .string "Please come back after everyone\n"
+ .string "has made preparations.$"
+
+CableClub_Text_LinkErrorPleaseReset:: @ 81BC615
+ .string "Sorry, we have a link error…\n"
+ .string "Please reset and try again.$"
+
+CableClub_Text_PlayersMadeDifferentSelections:: @ 81BC64E
+ .string "The link partners appear to have\n"
+ .string "made different selections.$"
+
+CableClub_Text_PleaseVisitAgain:: @ 81BC68A
+ .string "Please do visit again.$"
+
+CableClub_Text_IncorrectNumberOfParticipants:: @ 81BC6A1
+ .string "The number of participants is\n"
+ .string "incorrect.$"
+
+CableClub_Text_CantSingleBattleWithXPlayers:: @ 81BC6CA
+ .string "The SINGLE BATTLE Mode can't be\n"
+ .string "played by {STR_VAR_1} players.$"
+
+CableClub_Text_CantDoubleBattleWithXPlayers:: @ 81BC700
+ .string "The DOUBLE BATTLE Mode can't be\n"
+ .string "played by {STR_VAR_1} players.$"
+
+CableClub_Text_NeedFourPlayers:: @ 81BC736
+ .string "There must be four players to play\n"
+ .string "this Battle Mode.$"
+
+CableClub_Text_PleaseConfirmNumberAndRestart:: @ 81BC76B
+ .string "Please confirm the number of\n"
+ .string "players and start again.$"
+
+Text_TerminateLinkIfYouLeaveRoom:: @ 81BC7A1
+ .string "The link will be terminated if you\n"
+ .string "leave the room. Is that okay?$"
+
+Text_TerminateLinkConfirmation:: @ 81BC7E2
+ .string "Terminating link…\n"
+ .string "You will be escorted out of\l"
+ .string "the room. Please wait.$"
+
+Text_TrainerTooBusyToNotice:: @ 81BC827
+ .string "This TRAINER is too busy to\n"
+ .string "notice…$"
+
+Text_LookedAtPlayersTrainerCard:: @ 81BC84B
+ .string "Score! Got to look at {STR_VAR_1}'s\n"
+ .string "TRAINER CARD!$"
+
+Text_LookedAtPlayersTrainerCardColored:: @ 81BC874
+ .string "Score! Got to look at {STR_VAR_1}'s\n"
+ .string "TRAINER CARD!\p"
+ .string "It's a {STR_VAR_2} card!$"
+
+Text_TakeSeatStartBattle:: @ 81BC8AD
+ .string "Please take your seat and start\n"
+ .string "your battle.$"
+
+Text_TakeSeatStartTrade:: @ 81BC8DA
+ .string "Please take your seat and start\n"
+ .string "your trade.$"
+
+@ Unused, leftover from RS
+RecordCorner_Text_ThanksForComing:: @ 81BC906
+ .string "ごりよう ありがとう ございました$"
+
+CableClub_Text_TrainerCardDataOverwritten:: @ 81BC918
+ .string "The TRAINER CARD data will\n"
+ .string "be overwritten.$"
+
+CableClub_Text_HopeToSeeYouAgain:: @ 81BC943
+ .string "I hope to see you again!$"
+
+CableClub_Text_NotSetUpForFarAwayRegion:: @ 81BC95C
+ .string "I'm awfully sorry.\p"
+ .string "We're not set up to conduct trades\n"
+ .string "with TRAINERS far away in another\l"
+ .string "region yet…$"
+
+CableClub_Text_OtherTrainerNotReady:: @ 81BC9C0
+ .string "The other TRAINER is not ready.$"
+
+CableClub_Text_YouHaveAMonThatCantBeTaken:: @ 81BC9E0
+ .string "You have at least one POKéMON\n"
+ .string "that can't be taken.$"
+
+CableClub_Text_AdapterNotConnected:: @ 81BCA13
+ .string "The Wireless Adapter is not\n"
+ .string "connected properly.$"
+
+CableClub_Text_ParticipantsStepUpToCounter:: @ 81BCA43
+ .string "Participants are asked to step up\n"
+ .string "to the reception counter.$"
+
+@ Unused, translated in Emerald
+CableClub_Text_Hello:: @ 81BCA7F
+ .string "こんにちは!$"
+
+@ Unused, translated in Emerald
+CableClub_Text_PleaseWait:: @ 81BCA86
+ .string "しょうしょう おまちください$"
+
+CableClub_Text_YouMayTradeHere:: @ 81BCA95
+ .string "You may trade your POKéMON here\n"
+ .string "with another TRAINER.$"
+
+CableClub_Text_YouMayBattleHere:: @ 81BCACB
+ .string "You may battle with your friends\n"
+ .string "here.$"
+
+CableClub_Text_CanMakeBerryPowder:: @ 81BCAF2
+ .string "Two to five TRAINERS can make\n"
+ .string "BERRY POWDER together.$"
+
+@ Unused, Record Mix nopped
+CableClub_Text_CanMixRecords:: @ 81BCB27
+ .string "ワイヤレス クラブでの\n"
+ .string "あそびかたを せつめいします$"
+
+CableClub_Text_CancelSelectedItem:: @ 81BCB42
+ .string "Cancels the selected MENU item.$"
+
+@ Unused, translated in Emerald
+CableClub_Text_WhichBattleMode:: @ 81BCB62
+ .string "どちらの しょうぶに しますか?$"
+
+@ Unused, translated in Emerald
+CableClub_Text_ReturnsToPreviousStep:: @ 81BCB73
+ .string "ひとつ まえに もどります$"
+
+CableClub_Text_NeedBerryForBerryCrush:: @ 81BCB81
+ .string "To use the BERRY CRUSH service,\n"
+ .string "you must have at least one BERRY.$"
+
+CableClub_Text_NeedTwoMonsForUnionRoom:: @ 81BCBC3
+ .string "To enter the UNION ROOM, you must\n"
+ .string "have at least two POKéMON.$"
+
+CableClub_Text_NoEnigmaBerryInUnionRoom:: @ 81BCC00
+ .string "No POKéMON holding the {STR_VAR_1}\n"
+ .string "BERRY may enter the UNION ROOM.$"
+
+CableClub_Text_UnionRoomAdapterNotConnected:: @ 81BCC3A
+ .string "This is the POKéMON WIRELESS CLUB\n"
+ .string "UNION ROOM.\p"
+ .string "Unfortunately, your Wireless\n"
+ .string "Adapter is not connected properly.\p"
+ .string "Please do come again.$"
+
+@ Unused, translated in Emerald
+CableClub_Text_OhExcuseMe:: @ 81BCCBE
+ .string "あ‥‥\n"
+ .string "おきゃくさま!$"
+
+Text_PlayerIsPlayingRightNowGoForIt:: @ 81BCCCA
+ .string "It appears as if {STR_VAR_1} is playing\n"
+ .string "right now.\l"
+ .string "Go for it!$"
+
+Text_DescribeWhichGame:: @ 81BCCFF
+ .string "I can explain game rules to you,\n"
+ .string "if you'd like.\p"
+ .string "Which game should I describe?$"
+
+Text_PokemonJumpInfo:: @ 81BCD4D
+ .string "“POKéMON JUMP”\p"
+ .string "Make your POKéMON skip the\n"
+ .string "VINE WHIP rope with the A Button.\p"
+ .string "Only mini POKéMON around 28 inches\n"
+ .string "or less may participate.\p"
+ .string "POKéMON that only swim, burrow, or\n"
+ .string "fly are not good at jumping.\p"
+ .string "As a result, those POKéMON may not\n"
+ .string "participate.\p"
+ .string "Good things happen if everyone\n"
+ .string "jumps in time.$"
+
+Text_DodrioBerryPickingInfo:: @ 81BCE73
+ .string "“DODRIO BERRY-PICKING”\p"
+ .string "Command DODRIO's three heads to\n"
+ .string "catch falling BERRIES.\p"
+ .string "Press right, up, or left on the\n"
+ .string "{PLUS} Control Pad to move the heads.\p"
+ .string "To play this game, you must have\n"
+ .string "a DODRIO.$"
+
+Text_TalkToManToPlay:: @ 81BCF2E
+ .string "If you want to play a game,\n"
+ .string "please tell the man beside me.$"
+
+Text_WelcomeCanYouWait:: @ 81BCF69
+ .string "Hi, welcome!\n"
+ .string "You can play games over the\l"
+ .string "Wireless Communication System.\p"
+ .string "Can you wait just a little bit?$"
+
+CableClub_Text_ComeAgain:: @ 81BCFD1
+ .string "All right, come again!$"
+
+Text_AdapterNotConnectedMinigame:: @ 81BCFE8
+ .string "The Wireless Adapter isn't\n"
+ .string "connected.\p"
+ .string "Come back when it's hooked up!$"
+
+Text_PlayWhichGame:: @ 81BD02D
+ .string "All right, which game did you want\n"
+ .string "to play?$"
+
+Text_EnterWhichPokemon:: @ 81BD059
+ .string "Which POKéMON would you like to\n"
+ .string "enter?$"
+
+Text_AllGoodToGo:: @ 81BD080
+ .string "Okay, you're all good to go.\n"
+ .string "Don't let the others beat you!$"
+
+@ Unused, translated in Emerald
+Text_LeavingDoComeAgain:: @ 81BD0BC
+ .string "きょうは けえるのか?\n"
+ .string "またこいよ!$"
+
+EventScript_ExplainPokemonJumpRequirements:: @ 81BD0CF
+ .string "It doesn't look like you have any\n"
+ .string "POKéMON that you can enter…\p"
+ .string "Would you like me to explain what\n"
+ .string "kinds of POKéMON can enter?$"
+
+Text_ShortJumpingPokemonAllowed:: @ 81BD14B
+ .string "“POKéMON JUMP” is open to POKéMON\n"
+ .string "around 28 inches or less.\p"
+ .string "What you can't enter are those\n"
+ .string "POKéMON that can't jump.\p"
+ .string "You know, like POKéMON that only\n"
+ .string "swim, burrow, or fly.\p"
+ .string "That's all you need to know.$"
+
+Text_OnlyDodrioAllowed:: @ 81BD213
+ .string "“DODRIO BERRY-PICKING”…\n"
+ .string "Well, the name says it all.\p"
+ .string "You have to have a DODRIO to play\n"
+ .string "this game.$"
+
+@ Unused, translated in Emerald
+Text_RetryFromStartPlease:: @ 81BD274
+ .string "もういちど はじめから\n"
+ .string "やりなおして みて くれ$"
+
+CableClub_Text_WelcomeWhichDirectCornerRoom:: @ 81BD28D
+ .string "Welcome to the POKéMON WIRELESS\n"
+ .string "CLUB DIRECT CORNER.\p"
+ .string "You may interact directly with\n"
+ .string "your friends here.\p"
+ .string "Which room would you like to\n"
+ .string "enter?$"
+
+CableClub_Text_TradePokemon:: @ 81BD317
+ .string "Would you like to trade POKéMON?$"
+
+CableClub_Text_PlayWhichBattleMode:: @ 81BD338
+ .string "Which Battle Mode would you like\n"
+ .string "to play?$"
+
+CableClub_Text_UseBerryCrush:: @ 81BD362
+ .string "Would you like to use the\n"
+ .string "BERRY CRUSH System?$"
+
+CableClub_Text_ExplainBattleModes:: @ 81BD390
+ .string "There are three Battle Modes.\p"
+ .string "SINGLE BATTLE is for two TRAINERS\n"
+ .string "with one or more POKéMON each.\p"
+ .string "Each TRAINER can have one POKéMON\n"
+ .string "in battle at a time.\p"
+ .string "DOUBLE BATTLE is for two TRAINERS\n"
+ .string "with two or more POKéMON each.\p"
+ .string "Each TRAINER will send out two\n"
+ .string "POKéMON in battle at a time.\p"
+ .string "MULTI BATTLE is for four TRAINERS\n"
+ .string "with one or more POKéMON each.\p"
+ .string "Each TRAINER can have one POKéMON\n"
+ .string "in battle at a time.$"
+
+CableClub_Text_ChooseGroupLeaderOfTwo:: @ 81BD51B
+ .string "Please decide which of you two\n"
+ .string "will become the LEADER.\p"
+ .string "The other player must then choose\n"
+ .string "“JOIN GROUP.”$"
+
+CableClub_Text_ChooseGroupLeaderOfFour:: @ 81BD582
+ .string "Please decide which of you four\n"
+ .string "will become the GROUP LEADER.\p"
+ .string "The other players must then choose\n"
+ .string "“JOIN GROUP.”$"
+
+CableClub_Text_ChooseGroupLeader:: @ 81BD5F1
+ .string "Please decide which of you will\n"
+ .string "become the GROUP LEADER.\p"
+ .string "The other players must then choose\n"
+ .string "“JOIN GROUP.”$"
+
+CableClub_Text_WelcomeUnionRoomEnter:: @ 81BD65B
+ .string "Welcome to the POKéMON WIRELESS\n"
+ .string "CLUB UNION ROOM.\p"
+ .string "You may interact directly with\n"
+ .string "other TRAINERS here, some of\l"
+ .string "whom you may not even know.\p"
+ .string "Would you like to enter the ROOM?$"
+
+CableClub_Text_UnionRoomInfo:: @ 81BD706
+ .string "The TRAINERS in the UNION ROOM\n"
+ .string "will be those players around you\l"
+ .string "who have also entered the ROOM.\p"
+ .string "You may do all sorts of things\n"
+ .string "here, such as exchanging greetings.\p"
+ .string "You may enter two POKéMON up to\n"
+ .string "Lv. 30 for a one-on-one battle.\p"
+ .string "You may take part in a chat with\n"
+ .string "two to five people.\p"
+ .string "Or, you may register a POKéMON for\n"
+ .string "trade.\p"
+ .string "Would you like to enter the ROOM?$"
+
+CableClub_Text_EnjoyUnionRoom:: @ 81BD86A
+ .string "I hope you enjoy your time in\n"
+ .string "the UNION ROOM.$"
+
+CableClub_Text_FirstTimeRightThisWay:: @ 81BD898
+ .string "Hello!\n"
+ .string "My name is TEALA.\p"
+ .string "This must be your first time\n"
+ .string "up here.\p"
+ .string "I'll show you how the Wireless\n"
+ .string "Communication System works.\p"
+ .string "First, I need to show you this\n"
+ .string "floor of our POKéMON CENTER.\p"
+ .string "Right this way, please.$"
+
+CableClub_Text_ExplainWirelessClubFirstTime:: @ 81BD966
+ .string "On the top floor, there are two\n"
+ .string "rooms.\p"
+ .string "First, the room on the left.\n"
+ .string "It's the UNION ROOM.\p"
+ .string "You may link up with TRAINERS\n"
+ .string "around you who have also entered\l"
+ .string "the UNION ROOM.\p"
+ .string "With them, you may do things like\n"
+ .string "chat, battle, and trade.\p"
+ .string "Second, the room on the right is\n"
+ .string "the DIRECT CORNER.\p"
+ .string "You may trade or battle POKéMON\n"
+ .string "with your friends in this room.\p"
+ .string "If the Wireless Adapter isn't\n"
+ .string "connected, you may still link up\l"
+ .string "using a GBA Game Link cable.\p"
+ .string "If that is the case, you must go\n"
+ .string "to the DIRECT CORNER.\p"
+ .string "I hope you enjoy the Wireless \n"
+ .string "Communication System.$"
+
+CableClub_Text_AskAboutLinking:: @ 81BDB85
+ .string "Hello, {PLAYER}!\p"
+ .string "It's me, TEALA, the POKéMON\n"
+ .string "CENTER 2F attendant.\p"
+ .string "Is there something you needed to\n"
+ .string "ask me about linking?$"
+
+CableClub_Text_ExplainWirelessClub:: @ 81BDBF8
+ .string "Let me explain how the POKéMON\n"
+ .string "WIRELESS CLUB works.\p"
+ .string "On this, the top floor, there are\n"
+ .string "two rooms.\p"
+ .string "First, the room on the left.\n"
+ .string "It's the UNION ROOM.\p"
+ .string "You may link up with TRAINERS\n"
+ .string "around you who have also entered\l"
+ .string "the UNION ROOM.\p"
+ .string "With them, you may do things like\n"
+ .string "chat, battle, and trade.\p"
+ .string "Second, the room on the right is\n"
+ .string "the DIRECT CORNER.\p"
+ .string "You may trade or battle POKéMON\n"
+ .string "with your friends in this room.\p"
+ .string "Sometimes, you may not be able to\n"
+ .string "find your friends in the UNION ROOM\l"
+ .string "or the DIRECT CORNER.\p"
+ .string "In that case, please move closer\n"
+ .string "to your friends.\p"
+ .string "If the Wireless Adapter isn't\n"
+ .string "connected, you may still link up\l"
+ .string "using a GBA Game Link cable.\p"
+ .string "If that is the case, you must go\n"
+ .string "to the DIRECT CORNER.\p"
+ .string "I hope you enjoy the Wireless \n"
+ .string "Communication System.$"
+
+CableClub_Text_HopeYouEnjoyWirelessSystem:: @ 81BDEDF
+ .string "I hope you enjoy the Wireless\n"
+ .string "Communication System.$"
diff --git a/data/scripts/day_care.inc b/data/scripts/day_care.inc
new file mode 100644
index 000000000..e96f52e20
--- /dev/null
+++ b/data/scripts/day_care.inc
@@ -0,0 +1,257 @@
+Route5_PokemonDayCare_EventScript_1BF398:: @ 81BF398
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lock
+ faceplayer
+ showmoneybox 0, 0, 0
+ specialvar VAR_RESULT, IsThereMonInRoute5Daycare
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1BF46E
+ msgbox Text_19DD66, MSGBOX_YESNO
+ compare VAR_RESULT, YES
+ goto_if_eq EventScript_1BF3DD
+ msgbox Text_19DDB2
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF3DD:: @ 81BF3DD
+ specialvar VAR_RESULT, CountPartyNonEggMons
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1BF452
+ msgbox Text_19DDBE
+ fadescreen FADE_TO_BLACK
+ hidemoneybox 0, 0
+ special ChooseSendDaycareMon
+ waitstate
+ showmoneybox 0, 0, 0
+ compare VAR_0x8004, 6
+ goto_if_ge EventScript_1BF444
+ specialvar VAR_RESULT, CountPartyAliveNonEggMons_IgnoreVar0x8004Slot
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_1BF460
+ specialvar VAR_0x8005, GetSelectedMonNickAndSpecies
+ msgbox Text_19DDF9
+ waitse
+ playmoncry VAR_0x8005, 0
+ msgbox Text_19DE24
+ waitmoncry
+ special PutMonInRoute5Daycare
+ incrementgamestat GAME_STAT_USED_DAYCARE
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF444:: @ 81BF444
+ msgbox Text_19DDDC
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF452:: @ 81BF452
+ msgbox Text_19DEF5
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF460:: @ 81BF460
+ msgbox Text_19DF1D
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF46E:: @ 81BF46E
+ setvar VAR_0x8004, 0
+ specialvar VAR_RESULT, GetNumLevelsGainedForRoute5DaycareMon
+ compare VAR_RESULT, 0
+ call_if_ne EventScript_1BF4AA
+ compare VAR_RESULT, 0
+ call_if_eq EventScript_1BF4B3
+ special GetCostToWithdrawRoute5DaycareMon
+ msgbox Text_19DE80, MSGBOX_YESNO
+ compare VAR_RESULT, YES
+ goto_if_eq EventScript_1BF4BC
+ goto EventScript_1BF444
+ end
+
+EventScript_1BF4AA:: @ 81BF4AA
+ msgbox Text_19DF56
+ return
+
+EventScript_1BF4B3:: @ 81BF4B3
+ msgbox Text_19DE3C
+ return
+
+EventScript_1BF4BC:: @ 81BF4BC
+ specialvar VAR_RESULT, CalculatePlayerPartyCount
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_1BF533
+ specialvar VAR_RESULT, IsEnoughForCostInVar0x8005
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1BF4EA
+ msgbox Text_19E001
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF4EA:: @ 81BF4EA
+ setvar VAR_0x8004, 0
+ specialvar VAR_RESULT, TakePokemonFromRoute5Daycare
+ special SubtractMoneyFromVar0x8005
+ updatemoneybox 0, 0, 0
+ copyvar VAR_0x8008, VAR_RESULT
+ getpartysize
+ subvar VAR_RESULT, 1
+ getpartymonname 0, VAR_RESULT
+ copyvar VAR_RESULT, VAR_0x8008
+ msgbox Text_19DEAF
+ textcolor 3
+ waitse
+ playmoncry VAR_RESULT, 0
+ msgbox Text_19DECF
+ call EventScript_1A6675
+ waitmoncry
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF533:: @ 81BF533
+ msgbox Text_19DFC2
+ goto EventScript_1BF541
+ end
+
+EventScript_1BF541:: @ 81BF541
+ hidemoneybox 0, 0
+ release
+ end
+
+EventScript_81BF546:: @ 81BF546
+ lockall
+ msgbox Text_1BFB5A
+ special EggHatch
+ waitstate
+ releaseall
+ end
+
+gUnknown_81BF555:: @ 81BF555
+ .string "I'm the DAY-CARE MAN.\p"
+ .string "I help take care of the precious\n"
+ .string "POKéMON of TRAINERS.\p"
+ .string "If you'd like me to raise your\n"
+ .string "POKéMON, have a word with my wife.$"
+
+gUnknown_81BF5E3:: @ 81BF5E3
+ .string "Ah, it's you!\p"
+ .string "We were raising your POKéMON, and\n"
+ .string "my goodness, were we surprised!\p"
+ .string "Your POKéMON had an EGG!\p"
+ .string "We don't know how it got there,\n"
+ .string "but your POKéMON had it.\p"
+ .string "You do want it, yes?$"
+
+gUnknown_81BF69A:: @ 81BF69A
+ .string "Ah, it's you! Good to see you.\n"
+ .string "Your {STR_VAR_1}'s doing fine.$"
+
+gUnknown_81BF6CF:: @ 81BF6CF
+ .string "Well then, I'll keep it.\n"
+ .string "Thanks!$"
+
+gUnknown_81BF6F0:: @ 81BF6F0
+ .string "You have no room for it…\n"
+ .string "Come back when you've made room.$"
+
+Text_1BF72A:: @ 81BF72A
+ .string "{PLAYER} received the EGG from\n"
+ .string "the DAY-CARE MAN.$"
+
+gUnknown_81BF755:: @ 81BF755
+ .string "Take good care of it.$"
+
+Text_1BF76B:: @ 81BF76B
+ .string "ポケモンを ひきとりたい ときは\n"
+ .string "ばさんに いって おくれ$"
+
+gUnknown_81BF789:: @ 81BF789
+ .string "Ah, it's you! Your {STR_VAR_1} and\n"
+ .string "{STR_VAR_2} are doing fine.$"
+
+gUnknown_81BF7B6:: @ 81BF7B6
+ .string "I really will keep it.\n"
+ .string "You do want this, yes?$"
+
+gUnknown_81BF7E4:: @ 81BF7E4
+ .string "I'm the DAY-CARE LADY.\p"
+ .string "We can raise POKéMON for you.\p"
+ .string "Would you like us to raise one?$"
+
+gUnknown_81BF839:: @ 81BF839
+ .string "Which POKéMON should we raise for\n"
+ .string "you?$"
+
+gUnknown_81BF860:: @ 81BF860
+ .string "Fine, we'll raise your {STR_VAR_1}\n"
+ .string "for a while.\p"
+ .string "Come back for it later.$"
+
+gUnknown_81BF89F:: @ 81BF89F
+ .string "We can raise two of your POKéMON.\p"
+ .string "Would you like us to raise one\n"
+ .string "more POKéMON for you?$"
+
+gUnknown_81BF8F6:: @ 81BF8F6
+ .string "My husband was looking for you.$"
+
+gUnknown_81BF916:: @ 81BF916
+ .string "Oh, fine, then.\n"
+ .string "Come again.$"
+
+gUnknown_81BF932:: @ 81BF932
+ .string "You don't have enough money…$"
+
+gUnknown_81BF94F:: @ 81BF94F
+ .string "Will you take back the other one,\n"
+ .string "too?$"
+
+gUnknown_81BF976:: @ 81BF976
+ .string "Fine.\n"
+ .string "Come again.$"
+
+gUnknown_81BF988:: @ 81BF988
+ .string "Ah, it's you!\n"
+ .string "Good to see you.\p"
+ .string "Your POKéMON can only be doing\n"
+ .string "good!$"
+
+gUnknown_81BF9CC:: @ 81BF9CC
+ .string "By level, your {STR_VAR_1} has\n"
+ .string "grown by {STR_VAR_2}.$"
+
+gUnknown_81BF9EF:: @ 81BF9EF
+ .string "Your POKéMON party is full.\n"
+ .string "Make room, then come see me.$"
+
+Text_1BFA28:: @ 81BFA28
+ .string "どっちの ポケモンを ひきとるかい?$"
+
+gUnknown_81BFA3B:: @ 81BFA3B
+ .string "If you want your {STR_VAR_1} back,\n"
+ .string "it will cost ¥{STR_VAR_2}.$"
+
+gUnknown_81BFA67:: @ 81BFA67
+ .string "Perfect!\n"
+ .string "Here's your POKéMON.$"
+
+gUnknown_81BFA85:: @ 81BFA85
+ .string "{PLAYER} took back {STR_VAR_1} from\n"
+ .string "the DAY-CARE LADY.$"
+
+gUnknown_81BFAAD:: @ 81BFAAD
+ .string "Oh? But you have just one\n"
+ .string "POKéMON.\p"
+ .string "Come back another time.$"
+
+gUnknown_81BFAE8:: @ 81BFAE8
+ .string "Will you take your POKéMON back?$"
+
+gUnknown_81BFB09:: @ 81BFB09
+ .string "If you leave me that POKéMON,\n"
+ .string "what will you battle with?\p"
+ .string "Come back another time.$"
+
+Text_1BFB5A:: @ 81BFB5A
+ .string "Huh?$"
diff --git a/data/scripts/fame_checker.inc b/data/scripts/fame_checker.inc
new file mode 100644
index 000000000..88e1fa1f5
--- /dev/null
+++ b/data/scripts/fame_checker.inc
@@ -0,0 +1,286 @@
+ViridianCity_House2_EventScript_1ACD65:: @ 81ACD65
+ lock
+ faceplayer
+ famechecker FAMECHECKER_OAK, 3
+ famechecker FAMECHECKER_DAISY, 3
+ textcolor 3
+ msgbox gUnknown_81B1AB9
+ release
+ end
+
+EventScript_1ACD8D:: @ 81ACD8D
+ lock
+ faceplayer
+ famechecker FAMECHECKER_DAISY, 1
+ famechecker FAMECHECKER_OAK, 4
+ textcolor 3
+ msgbox gUnknown_81B1AB9
+ release
+ end
+
+EventScript_1ACDB5:: @ 81ACDB5
+ lock
+ faceplayer
+ famechecker FAMECHECKER_DAISY, 4
+ textcolor 3
+ msgbox gUnknown_81B1AB9
+ release
+ end
+
+FourIsland_PokemonCenter_1F_EventScript_1ACDD0:: @ 81ACDD0
+ lockall
+ famechecker FAMECHECKER_DAISY, 5
+ textcolor 3
+ msgbox gUnknown_81B1B3D
+ releaseall
+ end
+
+Route4_EventScript_1ACDEA:: @ 81ACDEA
+ lock
+ faceplayer
+ famechecker FAMECHECKER_BROCK, 3
+ msgbox Text_183D26
+ release
+ end
+
+MtMoon_1F_EventScript_1ACE03:: @ 81ACE03
+ lock
+ faceplayer
+ famechecker FAMECHECKER_BROCK, 4
+ msgbox Text_172B00
+ release
+ end
+
+PewterCity_Museum_1F_EventScript_1ACE1C:: @ 81ACE1C
+ lockall
+ famechecker FAMECHECKER_BROCK, 5
+ textcolor 3
+ msgbox gUnknown_81B146A
+ releaseall
+ end
+
+Route20_EventScript_1ACE36:: @ 81ACE36
+ lock
+ faceplayer
+ famechecker FAMECHECKER_MISTY, 3
+ msgbox Text_1882E1
+ release
+ end
+
+Route25_EventScript_1ACE4F:: @ 81ACE4F
+ lock
+ faceplayer
+ famechecker FAMECHECKER_MISTY, 4
+ msgbox Text_189569
+ release
+ end
+
+CeruleanCity_PokemonCenter_1F_EventScript_1ACE68:: @ 81ACE68
+ lock
+ faceplayer
+ famechecker FAMECHECKER_MISTY, 5
+ textcolor 3
+ msgbox gUnknown_81B14E8
+ release
+ end
+
+VermilionCity_PokemonCenter_1F_EventScript_1ACE83:: @ 81ACE83
+ lockall
+ famechecker FAMECHECKER_LTSURGE, 5
+ textcolor 3
+ msgbox gUnknown_81B1558
+ releaseall
+ end
+
+CeladonCity_Condominiums_2F_EventScript_1ACE9D:: @ 81ACE9D
+ lock
+ faceplayer
+ famechecker FAMECHECKER_ERIKA, 5
+ textcolor 3
+ msgbox gUnknown_81B161B
+ release
+ end
+
+FuchsiaCity_Building1_EventScript_1ACEB8:: @ 81ACEB8
+ lock
+ faceplayer
+ famechecker FAMECHECKER_KOGA, 4
+ textcolor 3
+ msgbox gUnknown_81B16A8
+ release
+ end
+
+SafariZone_Building3_EventScript_1ACED3:: @ 81ACED3
+ lock
+ faceplayer
+ famechecker FAMECHECKER_KOGA, 5
+ msgbox Text_177C47
+ release
+ end
+
+SaffronCity_PokemonCenter_1F_EventScript_1ACEEC:: @ 81ACEEC
+ lock
+ faceplayer
+ famechecker FAMECHECKER_SABRINA, 4
+ textcolor 3
+ msgbox gUnknown_81B1753
+ release
+ end
+
+CinnabarIsland_Gym_EventScript_1ACF07:: @ 81ACF07
+ lockall
+ famechecker FAMECHECKER_BLAINE, 4
+ famechecker FAMECHECKER_MRFUJI, 4
+ msgbox Text_199E8A
+ releaseall
+ end
+
+FiveIsland_ResortGorgeous_House_EventScript_1ACF2C:: @ 81ACF2C
+ lockall
+ famechecker FAMECHECKER_BLAINE, 5
+ textcolor 3
+ msgbox gUnknown_81B17E9
+ releaseall
+ end
+
+FourIsland_Mart_EventScript_1ACF46:: @ 81ACF46
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LORELEI, 2
+ msgbox Text_1A3A60
+ release
+ end
+
+FiveIsland_PokemonCenter_1F_EventScript_1ACF5F:: @ 81ACF5F
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LORELEI, 3
+ textcolor 3
+ msgbox gUnknown_81B187F
+ release
+ end
+
+SaffronCity_PokemonTrainerFanClub_EventScript_1ACF7A:: @ 81ACF7A
+ lock
+ faceplayer
+ famechecker FAMECHECKER_BRUNO, 2
+ textcolor 3
+ msgbox gUnknown_81B1913
+ release
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACF95:: @ 81ACF95
+ lock
+ faceplayer
+ famechecker FAMECHECKER_BRUNO, 5
+ msgbox Text_18CF4D
+ release
+ end
+
+IndigoPlateau_PokemonCenter_1F_EventScript_1ACFAE:: @ 81ACFAE
+ lock
+ faceplayer
+ famechecker FAMECHECKER_AGATHA, 1
+ famechecker FAMECHECKER_AGATHA, 2
+ msgbox Text_19A9E7
+ release
+ end
+
+SevenIsland_PokemonCenter_1F_EventScript_1ACFD4:: @ 81ACFD4
+ lock
+ faceplayer
+ famechecker FAMECHECKER_AGATHA, 3
+ textcolor 3
+ msgbox gUnknown_81B19A8
+ release
+ end
+
+SixIsland_Mart_EventScript_1ACFEF:: @ 81ACFEF
+ lock
+ faceplayer
+ famechecker FAMECHECKER_AGATHA, 5
+ msgbox Text_1A41CA
+ release
+ end
+
+EventScript_1AD008:: @ 81AD008
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 0
+ msgbox gFameCheckerFlavorText_Lance0
+ release
+ end
+
+EventScript_1AD021:: @ 81AD021
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 1
+ msgbox Text_181569
+ release
+ end
+
+SaffronCity_EventScript_1AD03A:: @ 81AD03A
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 2
+ msgbox Text_181569
+ release
+ end
+
+CeladonCity_DepartmentStore_2F_EventScript_1AD053:: @ 81AD053
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 3
+ msgbox Text_19566B
+ release
+ end
+
+IndigoPlateau_PokemonCenter_1F_EventScript_1AD06C:: @ 81AD06C
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 4
+ textcolor 3
+ msgbox gUnknown_81B1A31
+ release
+ end
+
+IndigoPlateau_PokemonCenter_1F_EventScript_1AD087:: @ 81AD087
+ lock
+ faceplayer
+ famechecker FAMECHECKER_LANCE, 5
+ msgbox Text_19AB16
+ release
+ end
+
+LavenderTown_PokemonCenter_1F_EventScript_1AD0A0:: @ 81AD0A0
+ lock
+ faceplayer
+ famechecker FAMECHECKER_MRFUJI, 3
+ msgbox Text_19358E
+ release
+ end
+
+CinnabarIsland_PokemonCenter_1F_EventScript_1AD0B9:: @ 81AD0B9
+ lock
+ faceplayer
+ famechecker FAMECHECKER_MRFUJI, 5
+ textcolor 3
+ msgbox gUnknown_81B1BD1
+ release
+ end
+
+SilphCo_5F_EventScript_1AD0D4:: @ 81AD0D4
+ lock
+ faceplayer
+ famechecker FAMECHECKER_GIOVANNI, 1
+ msgbox Text_175E99
+ release
+ end
+
+SilphCo_8F_EventScript_1AD0ED:: @ 81AD0ED
+ lock
+ faceplayer
+ famechecker FAMECHECKER_GIOVANNI, 2
+ msgbox Text_176ACB
+ release
+ end
diff --git a/data/scripts/field_moves.inc b/data/scripts/field_moves.inc
new file mode 100644
index 000000000..b5efb263a
--- /dev/null
+++ b/data/scripts/field_moves.inc
@@ -0,0 +1,306 @@
+EventScript_InteractWithCutTreeObject:: @ 81BDF13
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ goto_if_unset FLAG_BADGE02_GET, EventScript_CantCutTree
+ checkpartymove MOVE_CUT
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_CantCutTree
+ setfieldeffectarg 0, VAR_RESULT
+ getpartymonname 0, VAR_RESULT
+ getmovename 1, MOVE_CUT
+ msgbox Text_CutTreeDown, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DontCutTree
+ msgbox Text_MonUsedMove
+ closemessage
+ dofieldeffect FLDEFF_USE_CUT_ON_TREE
+ waitstate
+ goto EventScript_CutTree
+ end
+
+EventScript_FldEffCut:: @ 81BDF6B
+ lockall
+ dofieldeffect FLDEFF_USE_CUT_ON_TREE
+ waitstate
+ goto EventScript_CutTree
+ end
+
+EventScript_CutTree:: @ 81BDF76
+ applymovement VAR_LAST_TALKED, Movement_CutTree
+ waitmovement 0
+ removeobject VAR_LAST_TALKED
+ releaseall
+ end
+
+Movement_CutTree:: @ 81BDF85
+ cut_tree
+ step_end
+
+EventScript_CantCutTree:: @ 81BDF87
+ msgbox Text_TreeCanBeCutDown, MSGBOX_SIGN
+ releaseall
+ end
+
+EventScript_DontCutTree:: @ 81BDF91
+ closemessage
+ releaseall
+ end
+
+Text_CutTreeDown:: @ 81BDF94
+ .string "This tree looks like it can be CUT\n"
+ .string "down!\p"
+ .string "Would you like to CUT it?$"
+
+Text_MonUsedMove:: @ 81BDFD7
+ .string "{STR_VAR_1} used {STR_VAR_2}!$"
+
+Text_TreeCanBeCutDown:: @ 81BDFE3
+ .string "This tree looks like it can be CUT\n"
+ .string "down!$"
+
+EventScript_InteractWithRockSmashRockObject:: @ 81BE00C
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ goto_if_unset FLAG_BADGE06_GET, EventScript_CantSmashRock
+ checkpartymove MOVE_ROCK_SMASH
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_CantSmashRock
+ setfieldeffectarg 0, VAR_RESULT
+ getpartymonname 0, VAR_RESULT
+ getmovename 1, MOVE_ROCK_SMASH
+ msgbox Text_UseRockSmash, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DontSmashRock
+ msgbox Text_MonUsedMove
+ closemessage
+ dofieldeffect FLDEFF_USE_ROCK_SMASH
+ waitstate
+ goto EventScript_UseRockSmash
+ end
+
+EventScript_FldEffRockSmash:: @ 81BE064
+ lockall
+ dofieldeffect FLDEFF_USE_ROCK_SMASH
+ waitstate
+ goto EventScript_UseRockSmash
+ end
+
+EventScript_UseRockSmash:: @ 81BE06F
+ applymovement VAR_LAST_TALKED, Movement_BreakRock
+ waitmovement 0
+ removeobject VAR_LAST_TALKED
+ special ScrSpecial_RockSmashWildEncounter
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_RockSmashNoEncounter
+ waitstate
+ releaseall
+ end
+
+EventScript_RockSmashNoEncounter:: @ 81BE08D
+ releaseall
+ end
+
+Movement_BreakRock:: @ 81BE08F
+ rock_smash_break
+ step_end
+
+EventScript_CantSmashRock:: @ 81BE091
+ msgbox Text_MonMaySmashRock, MSGBOX_SIGN
+ end
+
+EventScript_DontSmashRock:: @ 81BE09A
+ closemessage
+ releaseall
+ end
+
+Text_UseRockSmash:: @ 81BE09D
+ .string "This rock appears to be breakable.\n"
+ .string "Would you like to use ROCK SMASH?$"
+
+Text_MonMaySmashRock:: @ 81BE0E2
+ .string "It's a rugged rock, but a POKéMON\n"
+ .string "may be able to smash it.$"
+
+EventScript_InteractWithStrengthBoulderObject:: @ 81BE11D
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ goto_if_unset FLAG_BADGE04_GET, EventScript_CantMoveBoulder
+ goto_if_set FLAG_SYS_STRENGTH_ACTIVE, EventScript_AlreadyUsedStrength
+ checkpartymove MOVE_STRENGTH
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_CantMoveBoulder
+ setfieldeffectarg 0, VAR_RESULT
+ msgbox Text_UseStrength, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DontUseStrength
+ closemessage
+ dofieldeffect FLDEFF_USE_STRENGTH
+ waitstate
+ goto EventScript_UseStrength
+ end
+
+EventScript_FldEffStrength:: @ 81BE16E
+ lockall
+ dofieldeffect FLDEFF_USE_STRENGTH
+ waitstate
+ goto EventScript_UseStrength
+ end
+
+EventScript_UseStrength:: @ 81BE179
+ setflag FLAG_SYS_STRENGTH_ACTIVE
+ msgbox Text_MonUsedStrengthCanMoveBoulders, MSGBOX_SIGN
+ end
+
+EventScript_CantMoveBoulder:: @ 81BE185
+ msgbox Text_MonMayPushBoulder, MSGBOX_SIGN
+ end
+
+EventScript_AlreadyUsedStrength:: @ 81BE18E
+ msgbox Text_StrengthMadeMovingBouldersPossible, MSGBOX_SIGN
+ end
+
+EventScript_DontUseStrength:: @ 81BE197
+ closemessage
+ releaseall
+ end
+
+Text_UseStrength:: @ 81BE19A
+ .string "It's a big boulder, but a POKéMON\n"
+ .string "may be able to push it aside.\p"
+ .string "Would you like to use STRENGTH?$"
+
+Text_MonUsedStrengthCanMoveBoulders:: @ 81BE1FA
+ .string "{STR_VAR_1} used STRENGTH!\p"
+ .string "{STR_VAR_1}'s STRENGTH made it\n"
+ .string "possible to move boulders around!$"
+
+Text_MonMayPushBoulder:: @ 81BE244
+ .string "It's a big boulder, but a POKéMON\n"
+ .string "may be able to push it aside.$"
+
+Text_StrengthMadeMovingBouldersPossible:: @ 81BE284
+ .string "STRENGTH made it possible to move\n"
+ .string "boulders around.$"
+
+EventScript_InteractWithWaterfall:: @ 81BE2B7
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ checkpartymove MOVE_WATERFALL
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_WaterCrashingDown
+ getpartymonname 0, VAR_RESULT
+ setfieldeffectarg 0, VAR_RESULT
+ msgbox Text_UseWaterfall, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_EndWaterfall
+ msgbox Text_MonUsedWaterfall
+ dofieldeffect FLDEFF_USE_WATERFALL
+ goto EventScript_EndWaterfall
+
+EventScript_81BE2FF:: @ 81BE2FF
+ lockall
+EventScript_WaterCrashingDown:
+ msgbox Text_WallOfWaterCrashingDown
+EventScript_EndWaterfall:
+ releaseall
+ end
+
+Text_WallOfWaterCrashingDown:: @ 81BE30A
+ .string "A wall of water is crashing down\n"
+ .string "with a mighty roar.$"
+
+Text_UseWaterfall:: @ 81BE33F
+ .string "It's a large waterfall.\n"
+ .string "Would you like to use WATERFALL?$"
+
+Text_MonUsedWaterfall:: @ 81BE378
+ .string "{STR_VAR_1} used WATERFALL.$"
+
+@ Unused leftover from R/S
+EventScript_InteractWithDeepWater:: @ 81BE38B
+ lockall
+ checkpartymove MOVE_DIVE
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_MayGoUnderwater
+ getpartymonname 0, VAR_RESULT
+ setfieldeffectarg 0, VAR_RESULT
+ setfieldeffectarg 1, 1
+ msgbox Text_SeaIsDeepUseDive, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_EndDive
+ msgbox Text_MonUsedDive
+ dofieldeffect FLDEFF_USE_DIVE
+ goto EventScript_EndDive
+
+EventScript_CantDive:: @ 81BE3C9
+ lockall
+EventScript_MayGoUnderwater:
+ msgbox Text_MonMayGoUnderwater
+EventScript_EndDive:
+ releaseall
+ end
+
+EventScript_TrySurface:: @ 81BE3D4
+ lockall
+ checkpartymove MOVE_DIVE
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_CantSurface
+ getpartymonname 0, VAR_RESULT
+ setfieldeffectarg 0, VAR_RESULT
+ setfieldeffectarg 1, 1
+ msgbox Text_LightFilteringUseDive, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_EndSurface
+ msgbox Text_MonUsedDive
+ dofieldeffect FLDEFF_USE_DIVE
+ goto EventScript_EndSurface
+
+EventScript_CantSurface:: @ 81BE412
+ lockall
+ msgbox Text_MonMaySurface
+ goto EventScript_EndSurface
+
+EventScript_ObstacleCantSurface:: @ 81BE420
+ lockall
+ msgbox Text_DiveCantBeUsedHere
+EventScript_EndSurface:
+ releaseall
+ end
+
+Text_MonMayGoUnderwater:: @ 81BE42B
+ .string "The sea is deep here. A POKéMON\n"
+ .string "may be able to go underwater.$"
+
+Text_SeaIsDeepUseDive:: @ 81BE469
+ .string "The sea is deep here.\n"
+ .string "Would you like to use DIVE?$"
+
+Text_MonUsedDive:: @ 81BE49B
+ .string "{STR_VAR_1} used DIVE.$"
+
+Text_MonMaySurface:: @ 81BE4A9
+ .string "Light is filtering down from above.\n"
+ .string "A POKéMON may be able to surface.$"
+
+Text_LightFilteringUseDive:: @ 81BE4EF
+ .string "Light is filtering down from above.\n"
+ .string "Would you like to use DIVE?$"
+
+Text_DiveCantBeUsedHere:: @ 81BE52F
+ .string "There is an obstacle above.\n"
+ .string "DIVE can't be used here.$"
+
+EventScript_FailSweetScent:: @ 81BE564
+ msgbox Text_LooksLikeNothingHere, MSGBOX_SIGN
+ end
+
+Text_LooksLikeNothingHere:: @ 81BE56D
+ .string "Looks like there's nothing here…$"
diff --git a/data/scripts/flash.inc b/data/scripts/flash.inc
new file mode 100644
index 000000000..1e9eeedac
--- /dev/null
+++ b/data/scripts/flash.inc
@@ -0,0 +1,4 @@
+EventScript_FldEffFlash:: @ 81BFB5F
+ animateflash 0
+ setflashradius 0
+ end
diff --git a/data/scripts/hole.inc b/data/scripts/hole.inc
new file mode 100644
index 000000000..98900f04a
--- /dev/null
+++ b/data/scripts/hole.inc
@@ -0,0 +1,36 @@
+@ Unused
+EventScript_CheckFallDownHole:: @ 81C1338
+ map_script_2 VAR_ICE_STEP_COUNT, 0, EventScript_FallDownHole
+ .2byte 0
+
+@ Unused
+EventScript_FixCrackedGround::
+ copyvar VAR_ICE_STEP_COUNT, 1
+ end
+
+EventScript_FallDownHole:: @ 81C1348
+ lockall
+ delay 20
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_SetInvisible
+ waitmovement 0
+ playse SE_RU_HYUU
+ delay 60
+ warphole 0xFFFF
+ waitstate
+ end
+
+@ TODO: EventScript_FallDownHoleMtPyre in pokeemerald, needs generic name
+EventScript_1C1361:: @ 81C1361
+ lockall
+ delay 20
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_SetInvisible
+ waitmovement 0
+ playse SE_RU_HYUU
+ delay 60
+ special DoFallWarp
+ waitstate
+ end
+
+Movement_SetInvisible: @ 81C137A
+ set_invisible
+ step_end
diff --git a/data/scripts/item_ball_scripts.inc b/data/scripts/item_ball_scripts.inc
new file mode 100644
index 000000000..ed8aef9d4
--- /dev/null
+++ b/data/scripts/item_ball_scripts.inc
@@ -0,0 +1,671 @@
+Route2_EventScript_ItemEther:: @ 81BE58E
+ finditem ITEM_ETHER
+ end
+
+Route2_EventScript_ItemParalyzeHeal:: @ 81BE59B
+ finditem ITEM_PARALYZE_HEAL
+ end
+
+ViridianForest_EventScript_ItemPokeBall:: @ 81BE5A8
+ finditem ITEM_POKE_BALL
+ end
+
+ViridianForest_EventScript_ItemAntidote:: @ 81BE5B5
+ finditem ITEM_ANTIDOTE
+ end
+
+ViridianForest_EventScript_ItemPotion:: @ 81BE5C2
+ finditem ITEM_POTION
+ end
+
+MtMoon_1F_EventScript_ItemParalyzeHeal:: @ 81BE5CF
+ finditem ITEM_PARALYZE_HEAL
+ end
+
+MtMoon_1F_EventScript_ItemTM09:: @ 81BE5DC
+ finditem ITEM_TM09
+ end
+
+MtMoon_1F_EventScript_ItemPotion:: @ 81BE5E9
+ finditem ITEM_POTION
+ end
+
+MtMoon_1F_EventScript_ItemRareCandy:: @ 81BE5F6
+ finditem ITEM_RARE_CANDY
+ end
+
+MtMoon_1F_EventScript_ItemEscapeRope:: @ 81BE603
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+MtMoon_1F_EventScript_ItemMoonStone:: @ 81BE610
+ finditem ITEM_MOON_STONE
+ end
+
+MtMoon_B2F_EventScript_ItemStarPiece:: @ 81BE61D
+ finditem ITEM_STAR_PIECE
+ end
+
+MtMoon_B2F_EventScript_ItemTM46:: @ 81BE62A
+ finditem ITEM_TM46
+ end
+
+Route4_EventScript_ItemTM05:: @ 81BE637
+ finditem ITEM_TM05
+ end
+
+Route24_EventScript_ItemTM45:: @ 81BE644
+ finditem ITEM_TM45
+ end
+
+Route25_EventScript_ItemTM43:: @ 81BE651
+ finditem ITEM_TM43
+ end
+
+SSAnne_1F_Room2_EventScript_ItemTM31:: @ 81BE65E
+ finditem ITEM_TM31
+ end
+
+SSAnne_2F_Room2_EventScript_ItemStardust:: @ 81BE66B
+ finditem ITEM_STARDUST
+ end
+
+SSAnne_2F_Room4_EventScript_ItemXAttack:: @ 81BE678
+ finditem ITEM_X_ATTACK
+ end
+
+SSAnne_B1F_Room2_EventScript_ItemTM44:: @ 81BE685
+ finditem ITEM_TM44
+ end
+
+SSAnne_B1F_Room3_EventScript_ItemEther:: @ 81BE692
+ finditem ITEM_ETHER
+ end
+
+SSAnne_B1F_Room5_EventScript_ItemSuperPotion:: @ 81BE69F
+ finditem ITEM_SUPER_POTION
+ end
+
+SSAnne_Kitchen_EventScript_ItemGreatBall:: @ 81BE6AC
+ finditem ITEM_GREAT_BALL
+ end
+
+Route9_EventScript_ItemTM40:: @ 81BE6B9
+ finditem ITEM_TM40
+ end
+
+RocketHideout_B1F_EventScript_ItemEscapeRope:: @ 81BE6C6
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+RocketHideout_B1F_EventScript_ItemHyperPotion:: @ 81BE6D3
+ finditem ITEM_HYPER_POTION
+ end
+
+RocketHideout_B2F_EventScript_ItemXSpeed:: @ 81BE6E0
+ finditem ITEM_X_SPEED
+ end
+
+RocketHideout_B2F_EventScript_ItemMoonStone:: @ 81BE6ED
+ finditem ITEM_MOON_STONE
+ end
+
+RocketHideout_B2F_EventScript_ItemTM12:: @ 81BE6FA
+ finditem ITEM_TM12
+ end
+
+RocketHideout_B2F_EventScript_ItemSuperPotion:: @ 81BE707
+ finditem ITEM_SUPER_POTION
+ end
+
+RocketHideout_B3F_EventScript_ItemRareCandy:: @ 81BE714
+ finditem ITEM_RARE_CANDY
+ end
+
+RocketHideout_B3F_EventScript_ItemTM21:: @ 81BE721
+ finditem ITEM_TM21
+ end
+
+RocketHideout_B4F_EventScript_ItemTM49:: @ 81BE72E
+ finditem ITEM_TM49
+ end
+
+RocketHideout_B4F_EventScript_ItemMaxEther:: @ 81BE73B
+ finditem ITEM_MAX_ETHER
+ end
+
+RocketHideout_B4F_EventScript_ItemCalcium:: @ 81BE748
+ finditem ITEM_CALCIUM
+ end
+
+PokemonTower_3F_EventScript_ItemEscapeRope:: @ 81BE755
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+PokemonTower_4F_EventScript_ItemElixir:: @ 81BE762
+ finditem ITEM_ELIXIR
+ end
+
+PokemonTower_4F_EventScript_ItemAwakening:: @ 81BE76F
+ finditem ITEM_AWAKENING
+ end
+
+PokemonTower_4F_EventScript_ItemGreatBall:: @ 81BE77C
+ finditem ITEM_GREAT_BALL
+ end
+
+PokemonTower_5F_EventScript_ItemNugget:: @ 81BE789
+ finditem ITEM_NUGGET
+ end
+
+PokemonTower_6F_EventScript_ItemRareCandy:: @ 81BE796
+ finditem ITEM_RARE_CANDY
+ end
+
+PokemonTower_6F_EventScript_ItemXAccuracy:: @ 81BE7A3
+ finditem ITEM_X_ACCURACY
+ end
+
+Route12_EventScript_ItemTM48:: @ 81BE7B0
+ finditem ITEM_TM48
+ end
+
+Route12_EventScript_ItemIron:: @ 81BE7BD
+ finditem ITEM_IRON
+ end
+
+Route15_EventScript_ItemTM18:: @ 81BE7CA
+ finditem ITEM_TM18
+ end
+
+SafariZone_Center_EventScript_ItemNugget:: @ 81BE7D7
+ finditem ITEM_NUGGET
+ end
+
+SafariZone_East_EventScript_ItemMaxPotion:: @ 81BE7E4
+ finditem ITEM_MAX_POTION
+ end
+
+SafariZone_East_EventScript_ItemFullRestore:: @ 81BE7F1
+ finditem ITEM_FULL_RESTORE
+ end
+
+SafariZone_East_EventScript_ItemTM11:: @ 81BE7FE
+ finditem ITEM_TM11
+ end
+
+SafariZone_East_EventScript_ItemLeafStone:: @ 81BE80B
+ finditem ITEM_LEAF_STONE
+ end
+
+SafariZone_North_EventScript_ItemProtein:: @ 81BE818
+ finditem ITEM_PROTEIN
+ end
+
+SafariZone_North_EventScript_ItemTM47:: @ 81BE825
+ finditem ITEM_TM47
+ end
+
+SafariZone_West_EventScript_ItemTM32:: @ 81BE832
+ finditem ITEM_TM32
+ end
+
+SafariZone_West_EventScript_ItemGoldTeeth:: @ 81BE83F
+ finditem ITEM_GOLD_TEETH
+ end
+
+SafariZone_West_EventScript_ItemMaxPotion:: @ 81BE84C
+ finditem ITEM_MAX_POTION
+ end
+
+SafariZone_West_EventScript_ItemMaxRevive:: @ 81BE859
+ finditem ITEM_MAX_REVIVE
+ end
+
+SilphCo_3F_EventScript_ItemHyperPotion:: @ 81BE866
+ finditem ITEM_HYPER_POTION
+ end
+
+SilphCo_4F_EventScript_ItemMaxRevive:: @ 81BE873
+ finditem ITEM_MAX_REVIVE
+ end
+
+SilphCo_4F_EventScript_ItemEscapeRope:: @ 81BE880
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+SilphCo_4F_EventScript_ItemFullHeal:: @ 81BE88D
+ finditem ITEM_FULL_HEAL
+ end
+
+SilphCo_5F_EventScript_ItemProtein:: @ 81BE89A
+ finditem ITEM_PROTEIN
+ end
+
+SilphCo_5F_EventScript_ItemTM01:: @ 81BE8A7
+ finditem ITEM_TM01
+ end
+
+SilphCo_5F_EventScript_ItemCardKey:: @ 81BE8B4
+ finditem ITEM_CARD_KEY
+ end
+
+SilphCo_6F_EventScript_ItemHPUp:: @ 81BE8C1
+ finditem ITEM_HP_UP
+ end
+
+SilphCo_6F_EventScript_ItemXSpecial:: @ 81BE8CE
+ finditem ITEM_X_SPECIAL
+ end
+
+SilphCo_7F_EventScript_ItemCalcium:: @ 81BE8DB
+ finditem ITEM_CALCIUM
+ end
+
+SilphCo_7F_EventScript_ItemTM08:: @ 81BE8E8
+ finditem ITEM_TM08
+ end
+
+SilphCo_10F_EventScript_ItemCarbos:: @ 81BE8F5
+ finditem ITEM_CARBOS
+ end
+
+SilphCo_10F_EventScript_ItemUltraBall:: @ 81BE902
+ finditem ITEM_ULTRA_BALL
+ end
+
+SilphCo_10F_EventScript_ItemRareCandy:: @ 81BE90F
+ finditem ITEM_RARE_CANDY
+ end
+
+PowerPlant_EventScript_ItemMaxPotion:: @ 81BE91C
+ finditem ITEM_MAX_POTION
+ end
+
+PowerPlant_EventScript_ItemTM17:: @ 81BE929
+ finditem ITEM_TM17
+ end
+
+PowerPlant_EventScript_ItemTM25:: @ 81BE936
+ finditem ITEM_TM25
+ end
+
+PowerPlant_EventScript_ItemThunderStone:: @ 81BE943
+ finditem ITEM_THUNDER_STONE
+ end
+
+PowerPlant_EventScript_ItemElixir:: @ 81BE950
+ finditem ITEM_ELIXIR
+ end
+
+PokemonMansion_1F_EventScript_ItemCarbos:: @ 81BE95D
+ finditem ITEM_CARBOS
+ end
+
+PokemonMansion_1F_EventScript_ItemEscapeRope:: @ 81BE96A
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+PokemonMansion_2F_EventScript_ItemCalcium:: @ 81BE977
+ finditem ITEM_CALCIUM
+ end
+
+PokemonMansion_3F_EventScript_ItemMaxPotion:: @ 81BE984
+ finditem ITEM_MAX_POTION
+ end
+
+PokemonMansion_3F_EventScript_ItemIron:: @ 81BE991
+ finditem ITEM_IRON
+ end
+
+PokemonMansion_B1F_EventScript_ItemTM14:: @ 81BE99E
+ finditem ITEM_TM14
+ end
+
+PokemonMansion_B1F_EventScript_ItemFullRestore:: @ 81BE9AB
+ finditem ITEM_FULL_RESTORE
+ end
+
+PokemonMansion_B1F_EventScript_ItemTM22:: @ 81BE9B8
+ finditem ITEM_TM22
+ end
+
+PokemonMansion_B1F_EventScript_ItemSecretKey:: @ 81BE9C5
+ finditem ITEM_SECRET_KEY
+ end
+
+VictoryRoad_1F_EventScript_ItemRareCandy:: @ 81BE9D2
+ finditem ITEM_RARE_CANDY
+ end
+
+VictoryRoad_1F_EventScript_ItemTM02:: @ 81BE9DF
+ finditem ITEM_TM02
+ end
+
+VictoryRoad_2F_EventScript_ItemGuardSpec:: @ 81BE9EC
+ finditem ITEM_GUARD_SPEC
+ end
+
+VictoryRoad_2F_EventScript_ItemTM07:: @ 81BE9F9
+ finditem ITEM_TM07
+ end
+
+VictoryRoad_2F_EventScript_ItemFullHeal:: @ 81BEA06
+ finditem ITEM_FULL_HEAL
+ end
+
+VictoryRoad_2F_EventScript_ItemTM37:: @ 81BEA13
+ finditem ITEM_TM37
+ end
+
+VictoryRoad_3F_EventScript_ItemMaxRevive:: @ 81BEA20
+ finditem ITEM_MAX_REVIVE
+ end
+
+VictoryRoad_3F_EventScript_ItemTM50:: @ 81BEA2D
+ finditem ITEM_TM50
+ end
+
+CeruleanCave_1F_EventScript_ItemMaxElixir:: @ 81BEA3A
+ finditem ITEM_MAX_ELIXIR
+ end
+
+CeruleanCave_1F_EventScript_ItemNugget:: @ 81BEA47
+ finditem ITEM_NUGGET
+ end
+
+CeruleanCave_1F_EventScript_ItemFullRestore:: @ 81BEA54
+ finditem ITEM_FULL_RESTORE
+ end
+
+CeruleanCave_2F_EventScript_ItemFullRestore:: @ 81BEA61
+ finditem ITEM_FULL_RESTORE
+ end
+
+CeruleanCave_2F_EventScript_ItemPPUp:: @ 81BEA6E
+ finditem ITEM_PP_UP
+ end
+
+CeruleanCave_2F_EventScript_ItemUltraBall:: @ 81BEA7B
+ finditem ITEM_ULTRA_BALL
+ end
+
+CeruleanCave_B1F_EventScript_ItemMaxRevive:: @ 81BEA88
+ finditem ITEM_MAX_REVIVE
+ end
+
+CeruleanCave_B1F_EventScript_ItemUltraBall:: @ 81BEA95
+ finditem ITEM_ULTRA_BALL
+ end
+
+FuchsiaCity_Building1_EventScript_ItemRareCandy:: @ 81BEAA2
+ finditem ITEM_RARE_CANDY
+ end
+
+TwoIsland_EventScript_ItemRevive:: @ 81BEAAF
+ finditem ITEM_REVIVE
+ end
+
+ThreeIsland_EventScript_ItemZinc:: @ 81BEABC
+ finditem ITEM_ZINC
+ end
+
+ViridianForest_EventScript_ItemPotion2:: @ 81BEAC9
+ finditem ITEM_POTION
+ end
+
+MtMoon_B2F_EventScript_ItemRevive:: @ 81BEAD6
+ finditem ITEM_REVIVE
+ end
+
+MtMoon_B2F_EventScript_ItemAntidote:: @ 81BEAE3
+ finditem ITEM_ANTIDOTE
+ end
+
+Route11_EventScript_ItemXDefend:: @ 81BEAF0
+ finditem ITEM_X_DEFEND
+ end
+
+Route9_EventScript_ItemBurnHeal:: @ 81BEAFD
+ finditem ITEM_BURN_HEAL
+ end
+
+RockTunnel_1F_EventScript_ItemRepel:: @ 81BEB0A
+ finditem ITEM_REPEL
+ end
+
+RockTunnel_1F_EventScript_ItemPearl:: @ 81BEB17
+ finditem ITEM_PEARL
+ end
+
+RockTunnel_1F_EventScript_ItemEscapeRope:: @ 81BEB24
+ finditem ITEM_ESCAPE_ROPE
+ end
+
+RockTunnel_B1F_EventScript_ItemRevive:: @ 81BEB31
+ finditem ITEM_REVIVE
+ end
+
+RockTunnel_B1F_EventScript_ItemMaxEther:: @ 81BEB3E
+ finditem ITEM_MAX_ETHER
+ end
+
+SilphCo_8F_EventScript_ItemIron:: @ 81BEB4B
+ finditem ITEM_IRON
+ end
+
+SilphCo_11F_EventScript_ItemZinc:: @ 81BEB58
+ finditem ITEM_ZINC
+ end
+
+PokemonMansion_1F_EventScript_ItemProtein:: @ 81BEB65
+ finditem ITEM_PROTEIN
+ end
+
+PokemonMansion_2F_EventScript_ItemZinc:: @ 81BEB72
+ finditem ITEM_ZINC
+ end
+
+PokemonMansion_2F_EventScript_ItemHPUp:: @ 81BEB7F
+ finditem ITEM_HP_UP
+ end
+
+ViridianCity_EventScript_ItemPotion:: @ 81BEB8C
+ finditem ITEM_POTION
+ end
+
+Route11_EventScript_ItemGreatBall:: @ 81BEB99
+ finditem ITEM_GREAT_BALL
+ end
+
+Route11_EventScript_ItemAwakening:: @ 81BEBA6
+ finditem ITEM_AWAKENING
+ end
+
+PokemonTower_5F_EventScript_ItemCleanseTag:: @ 81BEBB3
+ finditem ITEM_CLEANSE_TAG
+ end
+
+CeladonCity_EventScript_ItemEther:: @ 81BEBC0
+ finditem ITEM_ETHER
+ end
+
+RocketHideout_B3F_EventScript_ItemBlackGlasses:: @ 81BEBCD
+ finditem ITEM_BLACK_GLASSES
+ end
+
+SafariZone_North_EventScript_ItemQuickClaw:: @ 81BEBDA
+ finditem ITEM_QUICK_CLAW
+ end
+
+SeafoamIslands_1F_EventScript_ItemIceHeal:: @ 81BEBE7
+ finditem ITEM_ICE_HEAL
+ end
+
+SeafoamIslands_B1F_EventScript_ItemWaterStone:: @ 81BEBF4
+ finditem ITEM_WATER_STONE
+ end
+
+SeafoamIslands_B1F_EventScript_ItemRevive:: @ 81BEC01
+ finditem ITEM_REVIVE
+ end
+
+SeafoamIslands_B2F_EventScript_ItemBigPearl:: @ 81BEC0E
+ finditem ITEM_BIG_PEARL
+ end
+
+SeafoamIslands_B4F_EventScript_ItemUltraBall:: @ 81BEC1B
+ finditem ITEM_ULTRA_BALL
+ end
+
+FourIsland_EventScript_ItemStarPiece:: @ 81BEC28
+ finditem ITEM_STAR_PIECE
+ end
+
+FourIsland_EventScript_ItemStardust:: @ 81BEC35
+ finditem ITEM_STARDUST
+ end
+
+OneIsland_KindleRoad_EventScript_ItemEther:: @ 81BEC42
+ finditem ITEM_ETHER
+ end
+
+OneIsland_KindleRoad_EventScript_ItemMaxRepel:: @ 81BEC4F
+ finditem ITEM_MAX_REPEL
+ end
+
+OneIsland_KindleRoad_EventScript_ItemCarbos:: @ 81BEC5C
+ finditem ITEM_CARBOS
+ end
+
+FiveIsland_Meadow_EventScript_ItemMaxPotion:: @ 81BEC69
+ finditem ITEM_MAX_POTION
+ end
+
+FiveIsland_Meadow_EventScript_ItemPPUp:: @ 81BEC76
+ finditem ITEM_PP_UP
+ end
+
+FiveIsland_MemorialPillar_EventScript_ItemMetalCoat:: @ 81BEC83
+ finditem ITEM_METAL_COAT
+ end
+
+SixIsland_OutcastIsland_EventScript_ItemPPUp:: @ 81BEC90
+ finditem ITEM_PP_UP
+ end
+
+SixIsland_WaterPath_EventScript_ItemElixir:: @ 81BEC9D
+ finditem ITEM_ELIXIR
+ end
+
+SixIsland_WaterPath_EventScript_ItemDragonScale:: @ 81BECAA
+ finditem ITEM_DRAGON_SCALE
+ end
+
+SixIsland_RuinValley_EventScript_ItemFullRestore:: @ 81BECB7
+ finditem ITEM_FULL_RESTORE
+ end
+
+SixIsland_RuinValley_EventScript_ItemHPUp:: @ 81BECC4
+ finditem ITEM_HP_UP
+ end
+
+SixIsland_RuinValley_EventScript_ItemSunStone:: @ 81BECD1
+ finditem ITEM_SUN_STONE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_ItemKingsRock:: @ 81BECDE
+ finditem ITEM_KINGS_ROCK
+ end
+
+SevenIsland_SevaultCanyon_EventScript_ItemMaxElixir:: @ 81BECEB
+ finditem ITEM_MAX_ELIXIR
+ end
+
+SevenIsland_SevaultCanyon_EventScript_ItemNugget:: @ 81BECF8
+ finditem ITEM_NUGGET
+ end
+
+ThreeIsland_BerryForest_EventScript_ItemMaxEther:: @ 81BED05
+ finditem ITEM_MAX_ETHER
+ end
+
+ThreeIsland_BerryForest_EventScript_ItemFullHeal:: @ 81BED12
+ finditem ITEM_FULL_HEAL
+ end
+
+ThreeIsland_BerryForest_EventScript_ItemMaxElixir:: @ 81BED1F
+ finditem ITEM_MAX_ELIXIR
+ end
+
+MtEmber_Exterior_EventScript_ItemUltraBall:: @ 81BED2C
+ finditem ITEM_ULTRA_BALL
+ end
+
+MtEmber_Exterior_EventScript_ItemFireStone:: @ 81BED39
+ finditem ITEM_FIRE_STONE
+ end
+
+MtEmber_Exterior_EventScript_ItemDireHit:: @ 81BED46
+ finditem ITEM_DIRE_HIT
+ end
+
+FourIsland_IcefallCave_1F_EventScript_ItemUltraBall:: @ 81BED53
+ finditem ITEM_ULTRA_BALL
+ end
+
+FourIsland_IcefallCave_1F_EventScript_ItemHM07:: @ 81BED60
+ finditem ITEM_HM07
+ end
+
+FourIsland_IcefallCave_B1F_EventScript_ItemFullRestore:: @ 81BED6D
+ finditem ITEM_FULL_RESTORE
+ end
+
+FourIsland_IcefallCave_B1F_EventScript_ItemNeverMeltIce:: @ 81BED7A
+ finditem ITEM_NEVER_MELT_ICE
+ end
+
+FiveIsland_RocketWarehouse_EventScript_ItemBigPearl:: @ 81BED87
+ finditem ITEM_BIG_PEARL
+ end
+
+FiveIsland_RocketWarehouse_EventScript_ItemTM36:: @ 81BED94
+ finditem ITEM_TM36
+ end
+
+FiveIsland_RocketWarehouse_EventScript_ItemPearl:: @ 81BEDA1
+ finditem ITEM_PEARL
+ end
+
+FiveIsland_RocketWarehouse_EventScript_ItemUpGrade:: @ 81BEDAE
+ finditem ITEM_UP_GRADE
+ end
+
+FiveIsland_LostCave_Room10_EventScript_ItemSilkScarf:: @ 81BEDBB
+ finditem ITEM_SILK_SCARF
+ end
+
+FiveIsland_LostCave_Room11_EventScript_ItemLaxIncense:: @ 81BEDC8
+ finditem ITEM_LAX_INCENSE
+ end
+
+FiveIsland_LostCave_Room12_EventScript_ItemSeaIncense:: @ 81BEDD5
+ finditem ITEM_SEA_INCENSE
+ end
+
+FiveIsland_LostCave_Room13_EventScript_ItemMaxRevive:: @ 81BEDE2
+ finditem ITEM_MAX_REVIVE
+ end
+
+FiveIsland_LostCave_Room14_EventScript_ItemRareCandy:: @ 81BEDEF
+ finditem ITEM_RARE_CANDY
+ end
+
+SevenIsland_SevaultCanyon_House_EventScript_ItemLuckyPunch:: @ 81BEDFC
+ finditem ITEM_LUCKY_PUNCH
+ end
+
+SilphCo_4F_EventScript_ItemTM41:: @ 81BEE09
+ finditem ITEM_TM41
+ end
diff --git a/data/scripts/move_tutors.inc b/data/scripts/move_tutors.inc
new file mode 100644
index 000000000..702889e5d
--- /dev/null
+++ b/data/scripts/move_tutors.inc
@@ -0,0 +1,582 @@
+VictoryRoad_2F_EventScript_DoubleEdgeTutor:: @ 81C47AE
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_DOUBLE_EDGE, EventScript_DoubleEdgeTaught
+ msgbox Text_DoubleEdgeTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DoubleEdgeDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DoubleEdgeDeclined
+ msgbox Text_DoubleEdgeWhichMon
+ setvar VAR_0x8005, MOVETUTOR_DOUBLE_EDGE
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_DoubleEdgeDeclined
+ setflag FLAG_TUTOR_DOUBLE_EDGE
+ goto EventScript_DoubleEdgeTaught
+ end
+
+EventScript_DoubleEdgeDeclined:: @ 81C4802
+ msgbox Text_DoubleEdgeDeclined
+ release
+ end
+
+EventScript_DoubleEdgeTaught:: @ 81C480C
+ msgbox Text_DoubleEdgeTaught
+ release
+ end
+
+EventScript_ThunderWaveTutor:: @ 81C4816
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_THUNDER_WAVE, EventScript_ThunderWaveTaught
+ msgbox Text_ThunderWaveTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_ThunderWaveDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_ThunderWaveDeclined
+ msgbox Text_ThunderWaveWhichMon
+ setvar VAR_0x8005, MOVETUTOR_THUNDER_WAVE
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_ThunderWaveDeclined
+ setflag FLAG_TUTOR_THUNDER_WAVE
+ goto EventScript_ThunderWaveTaught
+ end
+
+EventScript_ThunderWaveDeclined:: @ 81C486A
+ msgbox Text_ThunderWaveDeclined
+ release
+ end
+
+EventScript_ThunderWaveTaught:: @ 81C4874
+ msgbox Text_ThunderWaveTaught
+ release
+ end
+
+RockTunnel_B1F_EventScript_RockSlideTutor:: @ 81C487E
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_ROCK_SLIDE, EventScript_RockSlideTaught
+ msgbox Text_RockSlideTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_RockSlideDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_RockSlideDeclined
+ msgbox Text_RockSlideWhichMon
+ setvar VAR_0x8005, MOVETUTOR_ROCK_SLIDE
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_RockSlideDeclined
+ setflag FLAG_TUTOR_ROCK_SLIDE
+ goto EventScript_RockSlideTaught
+ end
+
+EventScript_RockSlideDeclined:: @ 81C48D2
+ msgbox Text_RockSlideDeclined
+ release
+ end
+
+EventScript_RockSlideTaught:: @ 81C48DC
+ msgbox Text_RockSlideTaught
+ release
+ end
+
+MtEmber_Exterior_EventScript_ExplosionTutor:: @ 81C48E6
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_EXPLOSION, EventScript_ExplosionTaught
+ msgbox Text_ExplosionTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_ExplosionDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_ExplosionDeclined
+ msgbox Text_ExplosionWhichMon
+ setvar VAR_0x8005, MOVETUTOR_EXPLOSION
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_ExplosionDeclined
+ setflag FLAG_TUTOR_EXPLOSION
+ goto EventScript_ExplosionTaught
+ end
+
+EventScript_ExplosionDeclined:: @ 81C493A
+ msgbox Text_ExplosionDeclined
+ release
+ end
+
+EventScript_ExplosionTaught:: @ 81C4944
+ msgbox Text_ExplosionTaught
+ release
+ end
+
+Route4_EventScript_MegaPunchTutor:: @ 81C494E
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_MEGA_PUNCH, EventScript_MegaPunchTaught
+ msgbox Text_MegaPunchTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MegaPunchDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MegaPunchDeclined
+ msgbox Text_MegaPunchWhichMon
+ setvar VAR_0x8005, MOVETUTOR_MEGA_PUNCH
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_MegaPunchDeclined
+ setflag FLAG_TUTOR_MEGA_PUNCH
+ goto EventScript_MegaPunchTaught
+ end
+
+EventScript_MegaPunchDeclined:: @ 81C49A2
+ msgbox Text_MegaPunchDeclined
+ release
+ end
+
+EventScript_MegaPunchTaught:: @ 81C49AC
+ msgbox Text_MegaPunchTaught
+ release
+ end
+
+Route4_EventScript_MegaKickTutor:: @ 81C49B6
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_MEGA_KICK, EventScript_MegaKickTaught
+ msgbox Text_MegaKickTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MegaKickDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MegaKickDeclined
+ msgbox Text_MegaKickWhichMon
+ setvar VAR_0x8005, MOVETUTOR_MEGA_KICK
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_MegaKickDeclined
+ setflag FLAG_TUTOR_MEGA_KICK
+ goto EventScript_MegaKickTaught
+ end
+
+EventScript_MegaKickDeclined:: @ 81C4A0A
+ msgbox Text_MegaKickDeclined
+ release
+ end
+
+EventScript_MegaKickTaught:: @ 81C4A14
+ msgbox Text_MegaKickTaught
+ release
+ end
+
+EventScript_DreamEaterTutor:: @ 81C4A1E
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_DREAM_EATER, EventScript_DreamEaterTaught
+ msgbox Text_DreamEaterTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DreamEaterDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_DreamEaterDeclined
+ msgbox Text_DreamEaterWhichMon
+ setvar VAR_0x8005, MOVETUTOR_DREAM_EATER
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_DreamEaterDeclined
+ setflag FLAG_TUTOR_DREAM_EATER
+ goto EventScript_DreamEaterTaught
+ end
+
+EventScript_DreamEaterDeclined:: @ 81C4A72
+ msgbox Text_DreamEaterDeclined
+ release
+ end
+
+EventScript_DreamEaterTaught:: @ 81C4A7C
+ msgbox Text_DreamEaterTaught
+ release
+ end
+
+EventScript_SoftboiledTutor:: @ 81C4A86
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_SOFT_BOILED, EventScript_SoftboiledTaught
+ msgbox Text_SoftboiledTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SoftboiledDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SoftboiledDeclined
+ msgbox Text_SoftboiledWhichMon
+ setvar VAR_0x8005, MOVETUTOR_SOFT_BOILED
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_SoftboiledDeclined
+ setflag FLAG_TUTOR_SOFT_BOILED
+ goto EventScript_SoftboiledTaught
+ end
+
+EventScript_SoftboiledDeclined:: @ 81C4ADA
+ msgbox Text_SoftboiledDeclined
+ release
+ end
+
+EventScript_SoftboiledTaught:: @ 81C4AE4
+ msgbox Text_SoftboiledTaught
+ release
+ end
+
+FuchsiaCity_EventScript_SubstituteTutor:: @ 81C4AEE
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_SUBSTITUTE, EventScript_SubstituteTaught
+ msgbox Text_SubstituteTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SubstituteDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SubstituteDeclined
+ msgbox Text_SubstituteWhichMon
+ setvar VAR_0x8005, MOVETUTOR_SUBSTITUTE
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_SubstituteDeclined
+ setflag FLAG_TUTOR_SUBSTITUTE
+ goto EventScript_SubstituteTaught
+ end
+
+EventScript_SubstituteDeclined:: @ 81C4B42
+ msgbox Text_SubstituteDeclined
+ release
+ end
+
+EventScript_SubstituteTaught:: @ 81C4B4C
+ msgbox Text_SubstituteTaught
+ release
+ end
+
+SevenIsland_EventScript_SwordsDanceTutor:: @ 81C4B56
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_SWORDS_DANCE, EventScript_SwordsDanceTaught
+ msgbox Text_SwordsDanceTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SwordsDanceDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SwordsDanceDeclined
+ msgbox Text_SwordsDanceWhichMon
+ setvar VAR_0x8005, MOVETUTOR_SWORDS_DANCE
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_SwordsDanceDeclined
+ setflag FLAG_TUTOR_SWORDS_DANCE
+ goto EventScript_SwordsDanceTaught
+ end
+
+EventScript_SwordsDanceDeclined:: @ 81C4BAA
+ msgbox Text_SwordsDanceDeclined
+ release
+ end
+
+EventScript_SwordsDanceTaught:: @ 81C4BB4
+ msgbox Text_SwordsDanceTaught
+ release
+ end
+
+PewterCity_Museum_1F_EventScript_SeismicTossTutor:: @ 81C4BBE
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_SEISMIC_TOSS, EventScript_SeismicTossTaught
+ msgbox Text_SeismicTossTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SeismicTossDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_SeismicTossDeclined
+ msgbox Text_SeismicTossWhichMon
+ setvar VAR_0x8005, MOVETUTOR_SEISMIC_TOSS
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_SeismicTossDeclined
+ setflag FLAG_TUTOR_SEISMIC_TOSS
+ goto EventScript_SeismicTossTaught
+ end
+
+EventScript_SeismicTossDeclined:: @ 81C4C12
+ msgbox Text_SeismicTossDeclined
+ release
+ end
+
+EventScript_SeismicTossTaught:: @ 81C4C1C
+ msgbox Text_SeismicTossTaught
+ release
+ end
+
+EventScript_CounterTutor:: @ 81C4C26
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_COUNTER, EventScript_CounterTaught
+ msgbox Text_CounterTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_CounterDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_CounterDeclined
+ msgbox Text_CounterWhichMon
+ setvar VAR_0x8005, MOVETUTOR_COUNTER
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_CounterDeclined
+ setflag FLAG_TUTOR_COUNTER
+ goto EventScript_CounterTaught
+ end
+
+EventScript_CounterDeclined:: @ 81C4C7A
+ msgbox Text_CounterDeclined
+ release
+ end
+
+EventScript_CounterTaught:: @ 81C4C84
+ msgbox Text_CounterTaught
+ release
+ end
+
+EventScript_MetronomeTutor:: @ 81C4C8E
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_METRONOME, EventScript_MetronomeTaught
+ msgbox Text_MetronomeTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MetronomeDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MetronomeDeclined
+ msgbox Text_MetronomeWhichMon
+ setvar VAR_0x8005, MOVETUTOR_METRONOME
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_MetronomeDeclined
+ setflag FLAG_TUTOR_METRONOME
+ goto EventScript_MetronomeTaught
+ end
+
+EventScript_MetronomeDeclined:: @ 81C4CE2
+ msgbox Text_MetronomeDeclined
+ release
+ end
+
+EventScript_MetronomeTaught:: @ 81C4CEC
+ msgbox Text_MetronomeTaught
+ release
+ end
+
+EventScript_MimicTutor:: @ 81C4CF6
+ goto_if_set FLAG_TUTOR_MIMIC, EventScript_MimicTaught
+ msgbox Text_MimicTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MimicDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_MimicDeclined
+ msgbox Text_MimicWhichMon
+ setvar VAR_0x8005, MOVETUTOR_MIMIC
+ call EventScript_ChooseMoveTutorMon
+ lock
+ faceplayer
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_MimicDeclined
+ removeitem ITEM_POKE_DOLL, 1
+ setflag FLAG_TUTOR_MIMIC
+ goto EventScript_MimicTaught
+ end
+
+EventScript_MimicDeclined:: @ 81C4D4F
+ msgbox Text_MimicDeclined
+ release
+ end
+
+EventScript_MimicTaught:: @ 81C4D59
+ checkplayergender
+ compare VAR_RESULT, MALE
+ call_if_eq EventScript_MimicTaughtMale
+ compare VAR_RESULT, FEMALE
+ call_if_eq EventScript_MimicTaughtFemale
+ release
+ end
+
+EventScript_MimicTaughtMale:: @ 81C4D72
+ msgbox Text_MimicTaughtMale
+ return
+
+EventScript_MimicTaughtFemale:: @ 81C4D7B
+ msgbox Text_MimicTaughtFemale
+ return
+
+FourIsland_House1_EventScript_BodySlamTutor:: @ 81C4D84
+ lock
+ faceplayer
+ goto_if_set FLAG_TUTOR_BODY_SLAM, EventScript_BodySlamTaught
+ msgbox Text_BodySlamTeach, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_BodySlamDeclined
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_BodySlamDeclined
+ msgbox Text_BodySlamWhichMon
+ setvar VAR_0x8005, MOVETUTOR_BODY_SLAM
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_BodySlamDeclined
+ setflag FLAG_TUTOR_BODY_SLAM
+ goto EventScript_BodySlamTaught
+ end
+
+EventScript_BodySlamDeclined:: @ 81C4DD8
+ msgbox Text_BodySlamDeclined
+ release
+ end
+
+EventScript_BodySlamTaught:: @ 81C4DE2
+ msgbox Text_BodySlamTaught
+ release
+ end
+
+TwoIsland_CapeBrink_House_EventScript_StarterTutor:: @ 81C4DEC
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ lock
+ faceplayer
+ goto_if_set FLAG_LEARNED_ALL_MOVES_AT_CAPE_BRINK, CapeBrinkTutor_EventScript_TaughtAllMoves
+ goto_if_set FLAG_TEMP_2, CapeBrinkTutor_EventScript_MoveJustTaught
+ getfirstpartymonname 0
+ msgbox Text_UltimateMoveThatMon
+ specialvar VAR_RESULT, Special_CapeBrinkGetMoveToTeachLeadPokemon
+ compare VAR_RESULT, FALSE
+ goto_if_eq CapeBrinkTutor_EventScript_NoLeadStarter
+ copyvar VAR_0x8009, VAR_0x8005
+ compare VAR_FACING, DIR_NORTH
+ call_if_eq CapeBrinkTutor_EventScript_JumpInPlaceDown
+ compare VAR_FACING, DIR_SOUTH
+ call_if_eq CapeBrinkTutor_EventScript_JumpInPlaceUp
+ compare VAR_FACING, DIR_EAST
+ call_if_eq CapeBrinkTutor_EventScript_JumpInPlaceLeft
+ compare VAR_FACING, DIR_WEST
+ call_if_eq CapeBrinkTutor_EventScript_JumpInPlaceRight
+ msgbox Text_AllowMeToTeachMonUltimateMove, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq CapeBrinkTutor_EventScript_DeclineMove
+ call EventScript_CanOnlyBeLearnedOnce
+ compare VAR_RESULT, NO
+ goto_if_eq CapeBrinkTutor_EventScript_DeclineMove
+ msgbox Text_LetMeConferUltimateMove
+ closemessage
+ fadescreen FADE_TO_BLACK
+ goto CapeBrinkTutor_EventScript_ChooseMon
+
+@ Unused
+CapeBrinkTutor_EventScript_FadeTaughtMove:: @ 81C4E8F
+ fadescreen FADE_FROM_BLACK
+ goto CapeBrinkTutor_EventScript_TaughtMove
+ end
+
+CapeBrinkTutor_EventScript_MoveJustTaught:: @ 81C4E97
+ msgbox Text_MakeBestUseOfMove
+ release
+ end
+
+CapeBrinkTutor_EventScript_TaughtAllMoves:: @ 81C4EA1
+ msgbox Text_FeelRejuvenated
+ release
+ end
+
+CapeBrinkTutor_EventScript_TaughtMove:: @ 81C4EAB
+ copyvar VAR_0x8005, VAR_0x8009
+ specialvar VAR_RESULT, Special_HasLearnedAllMovesFromCapeBrinkTutor
+ compare VAR_RESULT, TRUE
+ goto_if_eq CapeBrinkTutor_EventScript_LearnedAllMoves
+ msgbox Text_TaughtMove
+ setflag FLAG_TEMP_2
+ release
+ end
+
+CapeBrinkTutor_EventScript_LearnedAllMoves:: @ 81C4ECD
+ msgbox Text_PassedOnEverythingIKnow
+ setflag FLAG_LEARNED_ALL_MOVES_AT_CAPE_BRINK
+ release
+ end
+
+CapeBrinkTutor_EventScript_ChooseMon:: @ 81C4EDA
+ call EventScript_ChooseMoveTutorMon
+ compare VAR_RESULT, FALSE
+ goto_if_eq CapeBrinkTutor_EventScript_DeclineMove
+ goto CapeBrinkTutor_EventScript_TaughtMove
+ end
+
+CapeBrinkTutor_EventScript_JumpInPlaceDown:: @ 81C4EF0
+ applymovement 1, Movement_JumpInPlaceDown
+ waitmovement 0
+ return
+
+CapeBrinkTutor_EventScript_JumpInPlaceUp:: @ 81C4EFB
+ applymovement 1, Movement_JumpInPlaceUp
+ waitmovement 0
+ return
+
+CapeBrinkTutor_EventScript_JumpInPlaceLeft:: @ 81C4F06
+ applymovement 1, Movement_JumpInPlaceLeft
+ waitmovement 0
+ return
+
+CapeBrinkTutor_EventScript_JumpInPlaceRight:: @ 81C4F11
+ applymovement 1, Movement_JumpInPlaceRight
+ waitmovement 0
+ return
+
+CapeBrinkTutor_EventScript_DeclineMove:: @ 81C4F1C
+ msgbox Text_YouRejectIt
+ release
+ end
+
+CapeBrinkTutor_EventScript_NoLeadStarter:: @ 81C4F26
+ msgbox Text_JustMistaken
+ release
+ end
+
+EventScript_ChooseMoveTutorMon:: @ 81C4F30
+ special ChooseMonForMoveTutor
+ waitstate
+ lock
+ faceplayer
+ return
+
+EventScript_CanOnlyBeLearnedOnce:: @ 81C4F37
+ textcolor 3
+ special sub_80699BC
+ signmsg
+ msgbox Text_MoveCanOnlyBeLearnedOnce, MSGBOX_YESNO
+ normalmsg
+ call EventScript_1A6675
+ return
+
+Movement_JumpInPlaceDown: @ 81C4F4C
+ jump_in_place_down
+ step_end
+
+Movement_JumpInPlaceUp: @ 81C4F4E
+ jump_in_place_up
+ step_end
+
+Movement_JumpInPlaceLeft: @ 81C4F50
+ jump_in_place_left
+ step_end
+
+Movement_JumpInPlaceRight: @ 81C4F52
+ jump_in_place_right
+ step_end
diff --git a/data/scripts/movement.inc b/data/scripts/movement.inc
new file mode 100644
index 000000000..6a411d811
--- /dev/null
+++ b/data/scripts/movement.inc
@@ -0,0 +1,82 @@
+Movement_QuestionMark:: @ 81A75D9
+ emote_question_mark
+ step_end
+
+Movement_ExclamationMark:: @ 81A75DB
+ emote_exclamation_mark
+ step_end
+
+Movement_Delay48:: @ 81A75DD
+ delay_16
+ delay_16
+ delay_16
+ step_end
+
+Movement_FacePlayer:: @ 81A75E1
+ face_player
+ step_end
+
+@ Unused
+Movement_FaceAwayPlayer:: @ 81A75E3
+ face_away_player
+ step_end
+
+Movement_FaceOriginalDirection:: @ 81A75E5
+ face_original_direction
+ step_end
+
+Movement_WalkInPlaceFastestLeft:: @ 81A75E7
+ walk_in_place_fastest_left
+ step_end
+
+Movement_WalkInPlaceFastestUp:: @ 81A75E9
+ walk_in_place_fastest_up
+ step_end
+
+Movement_WalkInPlaceFastestRight:: @ 81A75EB
+ walk_in_place_fastest_right
+ step_end
+
+Movement_WalkInPlaceFastestDown:: @ 81A75ED
+ walk_in_place_fastest_down
+ step_end
+
+Movement_FaceRight:: @ 81A75EF
+ face_right
+ step_end
+
+Movement_FaceDown:: @ 81A75F1
+ face_down
+ step_end
+
+Movement_WalkUp5:: @ 81A75F3
+ walk_up
+ walk_up
+ walk_up
+ walk_up
+ walk_up
+ step_end
+
+@ Unused
+Movement_WalkUp4:: @ 81A75F9
+ walk_up
+ walk_up
+ walk_up
+ walk_up
+ step_end
+
+Movement_Delay32:: @ 81A75FE
+ delay_16
+ delay_16
+ step_end
+
+@ Unused
+Movement_WalkUp:: @ 81A7601
+ walk_up
+ step_end
+
+@ Unused
+Movement_WalkUp2:: @ 81A7603
+ walk_up
+ walk_up
+ step_end
diff --git a/data/scripts/mystery_event_club.inc b/data/scripts/mystery_event_club.inc
new file mode 100644
index 000000000..b409a8af9
--- /dev/null
+++ b/data/scripts/mystery_event_club.inc
@@ -0,0 +1,181 @@
+.equ GAVE_PROFILE, VAR_TEMP_1
+
+MysteryEventClub_EventScript_Man:: @ 81BEE16
+ lock
+ faceplayer
+ compare GAVE_PROFILE, TRUE
+ goto_if_eq EventScript_AlreadyGaveProfile
+ goto_if_set FLAG_SYS_SET_TRAINER_CARD_PROFILE, EventScript_GivenProfileBefore
+ msgbox Text_IdLoveToHearYourProfile
+ goto EventScript_AskForProfile
+ end
+
+EventScript_AlreadyGaveProfile: @ 81BEE3A
+ msgbox Text_TellMoreNextTime
+ release
+ end
+
+EventScript_AskForProfile: @ 81BEE44
+ message Text_TellMeWhatsYourProfile
+ waitmessage
+ multichoice 18, 6, MULTICHOICE_YES_NO_INFO_2, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_AcceptGiveProfile
+ case 1, EventScript_DeclineGiveProfile
+ case 2, EventScript_ProfileInfo
+ case SCR_MENU_CANCEL, EventScript_DeclineGiveProfile
+ end
+
+EventScript_ProfileInfo: @ 81BEE81
+ msgbox Text_ExplainProfile
+ goto EventScript_AskForProfile
+ end
+
+EventScript_AcceptGiveProfile: @ 81BEE8F
+ msgbox Text_WhatsYourProfile
+ closemessage
+ goto EventScript_GiveProfile
+ end
+
+EventScript_CancelGiveProfile: @ 81BEE9E
+ msgbox Text_DecidedNotTo
+ release
+ end
+
+EventScript_GaveProfile: @ 81BEEA8
+ setvar GAVE_PROFILE, TRUE
+ setvar VAR_0x8004, 0
+ special Special_BufferEasyChatMessage
+ waitmessage
+ delay 80
+ msgbox Text_ProfileSaysSomethingAboutYou
+ release
+ end
+
+EventScript_DeclineGiveProfile: @ 81BEEC3
+ msgbox Text_DontBeLikeThat
+ release
+ end
+
+EventScript_GivenProfileBefore: @ 81BEECD
+ msgbox Text_HiWeMeetAgain
+ goto EventScript_AskForNewProfile
+ end
+
+EventScript_AskForNewProfile: @ 81BEEDB
+ message Text_ChangeYourProfile
+ waitmessage
+ multichoice 18, 6, MULTICHOICE_YES_NO_INFO_2, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_AcceptGiveNewProfile
+ case 1, EventScript_DeclineGiveNewProfile
+ case 2, EventScript_ProfileInfo2
+ case SCR_MENU_CANCEL, EventScript_DeclineGiveNewProfile
+ end
+
+EventScript_ProfileInfo2: @ 81BEF18
+ msgbox Text_ExplainProfile
+ goto EventScript_AskForNewProfile
+ end
+
+EventScript_AcceptGiveNewProfile: @ 81BEF26
+ msgbox Text_WhatAreYouLikeNow
+ closemessage
+ goto EventScript_GiveProfile
+ end
+
+EventScript_DeclineGiveNewProfile: @ 81BEF35
+ msgbox Text_LikeProfileWayItIs
+ release
+ end
+
+EventScript_GaveSpecialProfile: @ 81BEF3F
+ setvar GAVE_PROFILE, TRUE
+ setvar VAR_0x8004, 0
+ special Special_BufferEasyChatMessage
+ waitmessage
+ delay 80
+ msgbox Text_HeardThatBefore
+ release
+ end
+
+EventScript_GiveProfile: @ 81BEF5A
+ setvar VAR_0x8004, 0
+ call EventScript_1A6AC0
+ lock
+ faceplayer
+ compare VAR_0x8004, 0
+ goto_if_eq EventScript_GaveSpecialProfile
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_CancelGiveProfile
+ compare VAR_RESULT, TRUE
+ goto_if_eq EventScript_GaveProfile
+ end
+
+Text_IdLoveToHearYourProfile: @ 81BEF88
+ .string "Hi, glad to meet you!\p"
+ .string "…That's unfriendly of you.\n"
+ .string "How about saying hi back?\p"
+ .string "So, come on, tell me about\n"
+ .string "yourself.\p"
+ .string "I'd love to hear your profile!$"
+
+Text_TellMeWhatsYourProfile: @ 81BF017
+ .string "Tell me something good about\n"
+ .string "yourself. What's your profile?$"
+
+Text_ExplainProfile: @ 81BF053
+ .string "A profile is written using four\n"
+ .string "words or phrases.\p"
+ .string "There're plenty of words to choose\n"
+ .string "from for your profile.\p"
+ .string "The words and phrases are placed\n"
+ .string "in several convenient groups.\p"
+ .string "First, choose a group, then choose\n"
+ .string "a word or phrase.\p"
+ .string "…It's easier than it sounds.\n"
+ .string "Why don't you try it?$"
+
+Text_WhatsYourProfile: @ 81BF166
+ .string "What's your profile?$"
+
+Text_DontBeLikeThat: @ 81BF17B
+ .string "Aww… Don't be like that.\n"
+ .string "You can tell me your profile.$"
+
+Text_DecidedNotTo: @ 81BF1B2
+ .string "Oh, you've decided not to?\n"
+ .string "You're fickle, aren't you?$"
+
+Text_HiWeMeetAgain: @ 81BF1E8
+ .string "Hi!\n"
+ .string "We meet again!$"
+
+Text_ChangeYourProfile: @ 81BF1FB
+ .string "Would you like to change your\n"
+ .string "profile?$"
+
+Text_WhatAreYouLikeNow: @ 81BF222
+ .string "What are you like now?\n"
+ .string "I'd really like to know.$"
+
+Text_LikeProfileWayItIs: @ 81BF252
+ .string "Okay, you like your profile the\n"
+ .string "way it is.\p"
+ .string "I think so, too.$"
+
+Text_ProfileSaysSomethingAboutYou: @ 81BF28E
+ .string "Hmhm…\p"
+ .string "Your profile really says something\n"
+ .string "about who you are.\p"
+ .string "Now that I know you better, it \n"
+ .string "makes us better friends than ever!$"
+
+Text_HeardThatBefore: @ 81BF30D
+ .string "Oh, I've heard that before…\p"
+ .string "My cousin, who lives far away,\n"
+ .string "always used to say that, I think.$"
+
+Text_TellMoreNextTime: @ 81BF36A
+ .string "Please tell me more about\n"
+ .string "yourself next time!$"
diff --git a/data/scripts/obtain_item.inc b/data/scripts/obtain_item.inc
new file mode 100644
index 000000000..71a0b7e21
--- /dev/null
+++ b/data/scripts/obtain_item.inc
@@ -0,0 +1,247 @@
+EventScript_1A666F:: @ 81A666F
+ copyvar VAR_MON_BOX_POS, VAR_MON_BOX_ID
+ return
+
+EventScript_1A6675:: @ 81A6675
+ copyvar VAR_MON_BOX_ID, VAR_MON_BOX_POS
+ return
+
+Std_ObtainItem:: @ 81A667B
+ copyvar VAR_MON_BOX_POS, VAR_MON_BOX_ID
+ textcolor 3
+ additem VAR_0x8000, VAR_0x8001
+ copyvar VAR_0x8007, VAR_RESULT
+ call EventScript_ObtainItemMessage
+ copyvar VAR_MON_BOX_ID, VAR_MON_BOX_POS
+ return
+
+EventScript_ObtainItemMessage:: @ 81A6697
+ bufferitemnameplural 1, VAR_0x8000, VAR_0x8001
+ checkitemtype VAR_0x8000
+ call EventScript_BufferPocketNameTryFanfare
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_ObtainedItem
+ compare VAR_0x8007, FALSE
+ call_if_eq EventScript_NoRoomForItem
+ return
+
+EventScript_BufferPocketNameTryFanfare:: @ 81A66BC
+ switch VAR_RESULT
+ case POCKET_ITEMS, EventScript_BufferItemsPocket
+ case POCKET_KEY_ITEMS, EventScript_BufferKeyItemsPocket
+ case POCKET_POKE_BALLS, EventScript_BufferPokeBallsPocket
+ case POCKET_TM_CASE, EventScript_BufferTMCase
+ case POCKET_BERRY_POUCH, EventScript_BufferBerryPouch
+ end
+
+EventScript_BufferItemsPocket:: @ 81A66F9
+ getstdstring 2, 24
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PlayFanfareObtainedItem
+ return
+
+EventScript_BufferKeyItemsPocket:: @ 81A6709
+ getstdstring 2, 25
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PlayFanfareObtainedItem
+ return
+
+EventScript_BufferPokeBallsPocket:: @ 81A6719
+ getstdstring 2, 26
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PlayFanfareObtainedItem
+ return
+
+EventScript_BufferTMCase:: @ 81A6729
+ getstdstring 2, 27
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PlayFanfareObtainedTMHM
+ return
+
+EventScript_BufferBerryPouch:: @ 81A6739
+ getstdstring 2, 28
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PlayFanfareObtainedItem
+ return
+
+EventScript_ObtainedItem:: @ 81A6749
+ message Text_ObtainedTheX
+ waitfanfare
+ waitmessage
+ msgbox Text_PutItemAway
+ setvar VAR_RESULT, 1
+ return
+
+EventScript_NoRoomForItem:: @ 81A675E
+ setvar VAR_RESULT, FALSE
+ return
+
+EventScript_PlayFanfareObtainedItem:: @ 81A6764
+ playfanfare MUS_FANFA1
+ return
+
+EventScript_PlayFanfareObtainedTMHM:: @ 81A6768
+ playfanfare MUS_FANFA1
+ return
+
+Std_ObtainDecoration:: @ 81A676C
+ adddecor VAR_0x8000
+ copyvar VAR_0x8007, VAR_RESULT
+ call EventScript_ObtainDecorMessage
+ return
+
+EventScript_ObtainDecorMessage:: @ 81A677A
+ getdecorname 1, VAR_0x8000
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_ObtainedDecor
+ compare VAR_0x8007, FALSE
+ call_if_eq EventScript_NoRoomForDecor
+ return
+
+EventScript_ObtainedDecor:: @ 81A6795
+ playfanfare MUS_FANFA4
+ message Text_ObtainedTheDecor
+ waitfanfare
+ waitmessage
+ msgbox Text_DecorTransferredToPC
+ setvar VAR_RESULT, TRUE
+ return
+
+EventScript_NoRoomForDecor:: @ 81A67AD
+ setvar VAR_RESULT, FALSE
+ return
+
+Std_FindItem:: @ 81A67B3
+ lock
+ faceplayer
+ waitse
+ copyvar VAR_0x8004, VAR_0x8000
+ copyvar VAR_0x8005, VAR_0x8001
+ checkitemspace VAR_0x8000, VAR_0x8001
+ copyvar VAR_0x8007, VAR_RESULT
+ getitemname 1, VAR_0x8000
+ checkitemtype VAR_0x8000
+ call EventScript_BufferPocketNameTryFanfare
+ compare VAR_0x8007, TRUE
+ call_if_eq EventScript_PickUpItem
+ compare VAR_0x8007, FALSE
+ call_if_eq EventScript_NoRoomToPickUpItem
+ release
+ return
+
+EventScript_PickUpItem:: @ 81A67EE
+ removeobject VAR_LAST_TALKED
+ additem VAR_0x8004, VAR_0x8005
+ specialvar VAR_RESULT, Special_ItemIsTM_GetMoveName
+ copyvar VAR_0x8008, VAR_RESULT
+ compare VAR_0x8008, TRUE
+ call_if_eq EventScript_FoundTMHM
+ compare VAR_0x8008, FALSE
+ call_if_eq EventScript_FoundItem
+ waitfanfare
+ waitmessage
+ msgbox Text_PutItemAway
+ return
+
+EventScript_FoundTMHM:: @ 81A6821
+ message Text_FoundTMHMContainsMove
+ return
+
+EventScript_FoundItem:: @ 81A6827
+ message Text_FoundOneItem
+ return
+
+EventScript_NoRoomToPickUpItem:: @ 81A682D
+ msgbox Text_ObtainedTheX
+ msgbox Text_TooBadBagFull
+ setvar VAR_RESULT, FALSE
+ return
+
+EventScript_FoundHiddenItem:: @ 81A6843
+ lockall
+ textcolor 3
+ waitse
+ compare VAR_0x8005, 0
+ goto_if_eq EventScript_TryPickUpHiddenCoins
+ call EventScript_TryPickUpHiddenItem
+ compare VAR_0x8007, TRUE
+ goto_if_eq EventScript_PickedUpHiddenItem
+ compare VAR_0x8007, FALSE
+ goto_if_eq EventScript_NoRoomForHiddenItem
+ end
+
+EventScript_TryPickUpHiddenItem::
+ additem VAR_0x8005, VAR_0x8006
+ copyvar VAR_0x8007, VAR_RESULT
+ getitemname 1, VAR_0x8005
+ checkitemtype VAR_0x8005
+ call EventScript_BufferPocketNameTryFanfare
+ return
+
+EventScript_PickedUpHiddenItem::
+ compare VAR_0x8006, 1
+ call_if_eq EventScript_FoundSingleItem
+ compare VAR_0x8006, 1
+ call_if_ne EventScript_FoundMultipleItems
+ waitfanfare
+ waitmessage
+ msgbox Text_PutItemAway
+ special Special_SetHiddenItemFlag
+ releaseall
+ end
+
+EventScript_FoundSingleItem::
+ message Text_FoundOneItem
+ return
+
+EventScript_FoundCoins::
+ getnumberstring 0, VAR_0x8006
+ message Text_FoundXCoins
+ return
+
+EventScript_FoundMultipleItems::
+ getnumberstring 0, VAR_0x8006
+ message Text_FoundXItems
+ return
+
+EventScript_NoRoomForHiddenItem::
+ msgbox Text_FoundOneItem
+ msgbox Text_TooBadBagFull
+ setvar VAR_RESULT, 0
+ releaseall
+ end
+
+EventScript_TryPickUpHiddenCoins::
+ goto_if_unset FLAG_GOT_COIN_CASE, EventScript_NoCaseForHiddenCoins
+ checkcoins VAR_RESULT
+ specialvar VAR_RESULT, Special_CheckAddCoins
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_HiddenCoinsButCaseIsFull
+ givecoins VAR_0x8006
+ getstdstring 1, 0x17
+ call EventScript_PlayFanfareObtainedItem
+ call EventScript_FoundCoins
+ waitfanfare
+ waitmessage
+ msgbox Text_PutCoinsAwayInCoinCase
+ special Special_SetHiddenItemFlag
+ releaseall
+ end
+
+EventScript_HiddenCoinsButCaseIsFull::
+ getnumberstring 0, VAR_0x8006
+ getstdstring 1, 0x17
+ msgbox Text_FoundXCoins
+ msgbox Text_CoinCaseIsFull
+ setvar VAR_RESULT, 0
+ releaseall
+ end
+
+EventScript_NoCaseForHiddenCoins::
+ getnumberstring 0, VAR_0x8006
+ getstdstring 1, 0x17
+ msgbox Text_FoundXCoins
+ msgbox Text_NothingToPutThemIn
+ setvar VAR_RESULT, 0
+ releaseall
+ end
diff --git a/data/scripts/pc.inc b/data/scripts/pc.inc
new file mode 100644
index 000000000..ff61d2e2e
--- /dev/null
+++ b/data/scripts/pc.inc
@@ -0,0 +1,103 @@
+EventScript_PC:: @ 81A6955
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ lockall
+ goto_if_set FLAG_SYS_PC_STORAGE_DISABLED, EventScript_PCDisabled
+ setvar VAR_0x8004, 27
+ special Special_SetSomeVariable
+ setvar VAR_0x8004, 0
+ special Special_AnimatePcTurnOn
+ playse SE_PC_ON
+ msgbox Text_BootedUpPC
+ goto EventScript_PCMainMenu
+ end
+
+EventScript_PCDisabled:: @ 81A698E
+ msgbox Text_UsualPCServicesUnavailable
+ releaseall
+ end
+
+EventScript_PCMainMenu:: @ 81A6998
+ message Text_AccessWhichPC
+ waitmessage
+ special ScrSpecial_CreatePCMenu
+ waitstate
+ goto EventScript_ChoosePCMenu
+ end
+
+EventScript_ChoosePCMenu:: @ 81A69A8
+ switch VAR_RESULT
+ case 0, EventScript_AccessPokemonStorage
+ case 1, EventScript_AccessPlayersPC
+ case 2, EventScript_AccessProfOaksPC
+ case 3, EventScript_AccessHallOfFame
+ case 4, EventScript_TurnOffPC
+ case SCR_MENU_CANCEL, EventScript_TurnOffPC
+ end
+
+EventScript_AccessPlayersPC:: @ 81A69F0
+ playse SE_PC_LOGIN
+ msgbox Text_AccessedPlayersPC
+ special PlayerPC
+ waitstate
+ goto EventScript_PCMainMenu
+ end
+
+EventScript_AccessPokemonStorage:: @ 81A6A05
+ playse SE_PC_LOGIN
+ call_if_unset FLAG_SYS_NOT_SOMEONES_PC, EventScript_AccessSomeonesPC
+ call_if_set FLAG_SYS_NOT_SOMEONES_PC, EventScript_AccessBillsPC
+ msgbox Text_OpenedPkmnStorage
+ special ShowPokemonStorageSystem
+ waitstate
+ setvar VAR_0x8004, 27
+ special Special_SetSomeVariable
+ goto EventScript_PCMainMenu
+ end
+
+EventScript_AccessSomeonesPC:: @ 81A6A34
+ msgbox Text_AccessedSomeonesPC
+ return
+
+EventScript_AccessBillsPC:: @ 81A6A3D
+ msgbox Text_AccessedBillsPC
+ return
+
+EventScript_TurnOffPC:: @ 81A6A46
+ setvar VAR_0x8004, 0
+ playse SE_PC_OFF
+ special Special_AnimatePcTurnOff
+ special sub_812B35C
+ releaseall
+ end
+
+EventScript_AccessHallOfFame:: @ 81A6A56
+ goto_if_unset FLAG_SYS_GAME_CLEAR, EventScript_TurnOffPC
+ playse SE_PC_LOGIN
+ setvar VAR_0x8004, 31
+ special HelpSystem_BackupSomeVariable
+ special Special_SetSomeVariable
+ special HallOfFamePCBeginFade
+ waitstate
+ special HelpSystem_RestoreSomeVariable
+ goto EventScript_ChoosePCMenu
+ end
+
+EventScript_AccessProfOaksPC:: @ 81A6A7A
+ goto_if_unset FLAG_SYS_POKEDEX_GET, EventScript_TurnOffPC
+ playse SE_PC_LOGIN
+ msgbox Text_AccessedProfOaksPC
+ msgbox Text_HavePokedexRated, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_ExitOaksPC
+ setflag FLAG_OAKS_RATING_IS_VIA_PC
+ call ProfOak_EventScript_RatePokedex
+ clearflag FLAG_OAKS_RATING_IS_VIA_PC
+ goto EventScript_ExitOaksPC
+ end
+
+EventScript_ExitOaksPC:: @ 81A6AB2
+ msgbox Text_ClosedLinkToProfOaksPC
+ goto EventScript_PCMainMenu
+ end
diff --git a/data/scripts/pkmn_center_nurse.inc b/data/scripts/pkmn_center_nurse.inc
new file mode 100644
index 000000000..cfa96774d
--- /dev/null
+++ b/data/scripts/pkmn_center_nurse.inc
@@ -0,0 +1,71 @@
+EventScript_PkmnCenterNurse:: @ 81A6578
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ message Text_WelcomeWantToHealPkmn
+ waitmessage
+ multichoice 19, 8, MULTICHOICE_YES_NO, FALSE | (TRUE << 1)
+ switch VAR_RESULT
+ case 0, EventScript_PkmnCenterNurse_HealPkmn
+ case 1 EventScript_PkmnCenterNurse_Goodbye
+ case SCR_MENU_CANCEL, EventScript_PkmnCenterNurse_Goodbye
+ end
+
+EventScript_PkmnCenterNurse_HealPkmn:: @ 81A65B8
+ incrementgamestat GAME_STAT_USED_POKECENTER
+ message Text_TakeYourPkmnForFewSeconds
+ waitmessage
+ call EventScript_PkmnCenterNurse_TakeAndHealPkmn
+ special sub_80CC524
+ goto EventScript_PkmnCenterNurse_CheckTrainerTowerAndUnionRoom
+ end
+
+EventScript_PkmnCenterNurse_TakeAndHealPkmn:: @ 81A65CE
+ applymovement VAR_LAST_TALKED, Movement_WalkInPlaceFastestLeft
+ waitmovement 0
+ dofieldeffect FLDEFF_POKECENTER_HEAL
+ waitfieldeffect FLDEFF_POKECENTER_HEAL
+ applymovement VAR_LAST_TALKED, Movement_WalkInPlaceFastestDown
+ waitmovement 0
+ special HealPlayerParty
+ return
+
+EventScript_PkmnCenterNurse_CheckTrainerTowerAndUnionRoom:: @ 81A65EC
+ specialvar VAR_RESULT, Special_PlayerIsNotInTrainerTowerLobby
+ compare VAR_RESULT, FALSE
+ goto_if_eq EventScript_PkmnCenterNurse_ReturnPkmn
+ specialvar VAR_RESULT, BufferUnionRoomPlayerName
+ copyvar VAR_0x8008, VAR_RESULT
+ compare VAR_0x8008, 0
+ goto_if_eq EventScript_PkmnCenterNurse_ReturnPkmn
+ compare VAR_0x8008, 1
+ goto_if_eq EventScript_PkmnCenterNurse_PlayerWaitingInUionRoom
+ end
+
+EventScript_PkmnCenterNurse_ReturnPkmn:: @ 81A661D
+ message Text_RestoredPkmnToFullHealth
+ waitmessage
+ applymovement VAR_LAST_TALKED, Movement_Bow
+ waitmovement 0
+ msgbox Text_WeHopeToSeeYouAgain
+ return
+
+EventScript_PkmnCenterNurse_PlayerWaitingInUionRoom:: @ 81A6636
+ goto_if_set FLAG_SYS_INFORMED_OF_LOCAL_WIRELESS_PLAYER, EventScript_PkmnCenterNurse_ReturnPkmn
+ msgbox Text_RestoredPkmnToFullHealth
+ setflag FLAG_SYS_INFORMED_OF_LOCAL_WIRELESS_PLAYER
+ message Text_PlayerIsPlayingRightNowGoForIt
+ waitmessage
+ applymovement VAR_LAST_TALKED, Movement_Bow
+ waitmovement 0
+ msgbox Text_WeHopeToSeeYouAgain
+ return
+
+EventScript_PkmnCenterNurse_Goodbye:: @ 81A6663
+ msgbox Text_WeHopeToSeeYouAgain
+ return
+
+Movement_Bow:: @ 81A666C
+ nurse_joy_bow
+ delay_4
+ step_end
diff --git a/data/scripts/pokedex_rating.inc b/data/scripts/pokedex_rating.inc
new file mode 100644
index 000000000..c9d836aee
--- /dev/null
+++ b/data/scripts/pokedex_rating.inc
@@ -0,0 +1,86 @@
+ProfOak_EventScript_RatePokedexInPerson:: @ 81A737B
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ call_if_set FLAG_OAK_SAW_DEX_COMPLETION, ProfOak_EventScript_DexCompleteIntro
+ call_if_unset FLAG_OAK_SAW_DEX_COMPLETION, ProfOak_EventScript_NormalIntro
+ call ProfOak_EventScript_RatePokedex
+ return
+
+ProfOak_EventScript_DexCompleteIntro:: @ 81A73A4
+ msgbox Text_LoveSeeingYourPokedex
+ return
+
+ProfOak_EventScript_NormalIntro:: @ 81A73AD
+ msgbox Text_HowIsPokedexComingAlong
+ return
+
+ProfOak_EventScript_ShowRatingMsg:: @ 81A73B6
+ copyvar VAR_0x8004, VAR_0x8009
+ special Special_GetProfOaksRatingMessage
+ waitmessage
+ compare VAR_RESULT, FALSE
+ call_if_eq ProfOak_EventScript_RatingFanfare
+ compare VAR_RESULT, TRUE
+ call_if_eq ProfOak_EventScript_DexCompleteFanfare
+ waitfanfare
+ waitbuttonpress
+ return
+
+ProfOak_EventScript_RatingFanfare:: @ 81A73D8
+ playfanfare MUS_FAN2
+ return
+
+ProfOak_EventScript_DexCompleteFanfare:: @ 81A73DC
+ playfanfare MUS_FANFA5
+ return
+
+ProfOak_EventScript_RatePokedex:: @ 81A73E0
+ setvar VAR_0x8004, 31
+ special HelpSystem_BackupSomeVariable
+ special Special_SetSomeVariable
+ setvar VAR_0x8004, 0
+ specialvar VAR_RESULT, Special_GetPokedexCount
+ copyvar VAR_0x8008, VAR_0x8005
+ copyvar VAR_0x8009, VAR_0x8006
+ copyvar VAR_0x800A, VAR_RESULT
+ getnumberstring 0, VAR_0x8008 @ Num Kanto Seen
+ getnumberstring 1, VAR_0x8009 @ Num Kanto Caught
+ msgbox Text_YouveSeenXAndOwnedYMons
+ call_if_unset FLAG_OAKS_RATING_IS_VIA_PC, ProfOak_EventScript_SetTextColor
+ call ProfOak_EventScript_ShowRatingMsg
+ compare VAR_0x800A, FALSE
+ goto_if_eq ProfOak_EventScript_EndRatePokedex @ National Dex not enabled
+ setvar VAR_0x8004, 1
+ specialvar VAR_RESULT, Special_GetPokedexCount
+ copyvar VAR_0x8008, VAR_0x8005
+ copyvar VAR_0x8009, VAR_0x8006
+ getnumberstring 0, VAR_0x8008 @ Num National Seen
+ getnumberstring 1, VAR_0x8009 @ Num National Caught
+ msgbox Text_AndNationalDexSeenXOwnedY
+ specialvar VAR_RESULT, HasAllMons
+ compare VAR_RESULT, FALSE
+ goto_if_eq ProfOak_EventScript_DexIncomplete
+ compare VAR_RESULT, TRUE
+ goto_if_eq ProfOak_EventScript_DexComplete
+ end
+
+ProfOak_EventScript_SetTextColor:: @ 81A746D
+ textcolor 0
+ return
+
+ProfOak_EventScript_DexIncomplete:: @ 81A7470
+ msgbox Text_LookForwardToFilledNationalDex
+ goto ProfOak_EventScript_EndRatePokedex
+ end
+
+ProfOak_EventScript_DexComplete:: @ 81A747E
+ setflag FLAG_OAK_SAW_DEX_COMPLETION
+ msgbox Text_YouveCompletedDex
+ goto ProfOak_EventScript_EndRatePokedex
+ end
+
+ProfOak_EventScript_EndRatePokedex:: @ 81A748F
+ special HelpSystem_RestoreSomeVariable
+ return
diff --git a/data/scripts/pokemon_mansion.inc b/data/scripts/pokemon_mansion.inc
new file mode 100644
index 000000000..cb0931600
--- /dev/null
+++ b/data/scripts/pokemon_mansion.inc
@@ -0,0 +1,207 @@
+EventScript_1A7AE2:: @ 81A7AE2
+ msgbox Text_177460, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_1A7B70
+ msgbox Text_17747B
+ goto_if_set FLAG_POKEMON_MANSION_SWITCH_STATE, EventScript_1A7B3B
+ setflag FLAG_POKEMON_MANSION_SWITCH_STATE
+ switch VAR_0x8004
+ case 0, EventScript_1A7B7A
+ case 1, EventScript_1A7D3E
+ case 2, EventScript_1A7E72
+ case 3, EventScript_1A7F4C
+ end
+
+EventScript_1A7B3B:: @ 81A7B3B
+ clearflag FLAG_POKEMON_MANSION_SWITCH_STATE
+ switch VAR_0x8004
+ case 0, EventScript_1A7C5C
+ case 1, EventScript_1A7DD8
+ case 2, EventScript_1A7EDF
+ case 3, EventScript_1A8025
+ end
+
+EventScript_1A7B70:: @ 81A7B70
+ msgbox Text_177489
+ releaseall
+ end
+
+EventScript_1A7B7A:: @ 81A7B7A
+ setmetatile 22, 10, 645, 0
+ setmetatile 23, 10, 644, 0
+ setmetatile 24, 10, 644, 0
+ setmetatile 22, 11, 645, 0
+ setmetatile 23, 11, 644, 0
+ setmetatile 24, 11, 644, 0
+ setmetatile 27, 25, 645, 0
+ setmetatile 28, 25, 644, 0
+ setmetatile 29, 25, 644, 0
+ setmetatile 27, 26, 645, 0
+ setmetatile 28, 26, 644, 0
+ setmetatile 29, 26, 644, 0
+ setmetatile 32, 25, 645, 0
+ setmetatile 33, 25, 644, 0
+ setmetatile 34, 25, 644, 0
+ setmetatile 32, 26, 645, 0
+ setmetatile 33, 26, 644, 0
+ setmetatile 34, 26, 644, 0
+ setmetatile 31, 18, 760, 1
+ setmetatile 32, 18, 761, 1
+ setmetatile 33, 18, 762, 1
+ setmetatile 31, 19, 768, 1
+ setmetatile 32, 19, 769, 1
+ setmetatile 33, 19, 770, 1
+ setmetatile 5, 4, 845, 0
+ return
+
+EventScript_1A7C5C:: @ 81A7C5C
+ setmetatile 22, 10, 760, 1
+ setmetatile 23, 10, 761, 1
+ setmetatile 24, 10, 762, 1
+ setmetatile 22, 11, 768, 1
+ setmetatile 23, 11, 769, 1
+ setmetatile 24, 11, 770, 1
+ setmetatile 27, 25, 760, 1
+ setmetatile 28, 25, 761, 1
+ setmetatile 29, 25, 762, 1
+ setmetatile 27, 26, 768, 1
+ setmetatile 28, 26, 769, 1
+ setmetatile 29, 26, 770, 1
+ setmetatile 32, 25, 760, 1
+ setmetatile 33, 25, 761, 1
+ setmetatile 34, 25, 762, 1
+ setmetatile 32, 26, 768, 1
+ setmetatile 33, 26, 769, 1
+ setmetatile 34, 26, 770, 1
+ setmetatile 31, 18, 645, 0
+ setmetatile 32, 18, 644, 0
+ setmetatile 33, 18, 644, 0
+ setmetatile 31, 19, 645, 0
+ setmetatile 32, 19, 644, 0
+ setmetatile 33, 19, 644, 0
+ setmetatile 5, 4, 788, 0
+ return
+
+EventScript_1A7D3E:: @ 81A7D3E
+ setmetatile 24, 14, 645, 0
+ setmetatile 25, 14, 644, 0
+ setmetatile 26, 14, 644, 0
+ setmetatile 24, 15, 645, 0
+ setmetatile 25, 15, 644, 0
+ setmetatile 26, 15, 644, 0
+ setmetatile 10, 28, 677, 1
+ setmetatile 10, 29, 685, 1
+ setmetatile 10, 30, 645, 0
+ setmetatile 10, 31, 644, 0
+ setmetatile 10, 32, 693, 0
+ setmetatile 12, 4, 848, 1
+ setmetatile 12, 5, 856, 1
+ setmetatile 12, 6, 864, 1
+ setmetatile 12, 7, 872, 1
+ setmetatile 12, 8, 880, 1
+ setmetatile 2, 15, 845, 0
+ return
+
+EventScript_1A7DD8:: @ 81A7DD8
+ setmetatile 24, 14, 760, 1
+ setmetatile 25, 14, 761, 1
+ setmetatile 26, 14, 762, 1
+ setmetatile 24, 15, 768, 1
+ setmetatile 25, 15, 769, 1
+ setmetatile 26, 15, 770, 1
+ setmetatile 10, 28, 848, 1
+ setmetatile 10, 29, 856, 1
+ setmetatile 10, 30, 864, 1
+ setmetatile 10, 31, 872, 1
+ setmetatile 10, 32, 880, 1
+ setmetatile 12, 4, 677, 1
+ setmetatile 12, 5, 685, 1
+ setmetatile 12, 6, 645, 0
+ setmetatile 12, 7, 644, 0
+ setmetatile 12, 8, 693, 0
+ setmetatile 2, 15, 788, 0
+ return
+
+EventScript_1A7E72:: @ 81A7E72
+ setmetatile 17, 11, 645, 0
+ setmetatile 18, 11, 644, 0
+ setmetatile 19, 11, 644, 0
+ setmetatile 17, 12, 645, 0
+ setmetatile 18, 12, 644, 0
+ setmetatile 19, 12, 644, 0
+ setmetatile 21, 4, 848, 1
+ setmetatile 21, 5, 856, 1
+ setmetatile 21, 6, 864, 1
+ setmetatile 21, 7, 872, 1
+ setmetatile 21, 8, 880, 1
+ setmetatile 12, 4, 845, 0
+ return
+
+EventScript_1A7EDF:: @ 81A7EDF
+ setmetatile 17, 11, 760, 1
+ setmetatile 18, 11, 761, 1
+ setmetatile 19, 11, 762, 1
+ setmetatile 17, 12, 768, 1
+ setmetatile 18, 12, 769, 1
+ setmetatile 19, 12, 770, 1
+ setmetatile 21, 4, 677, 1
+ setmetatile 21, 5, 685, 1
+ setmetatile 21, 6, 645, 0
+ setmetatile 21, 7, 644, 0
+ setmetatile 21, 8, 693, 0
+ setmetatile 12, 4, 788, 0
+ return
+
+EventScript_1A7F4C:: @ 81A7F4C
+ setmetatile 33, 20, 760, 1
+ setmetatile 34, 20, 761, 1
+ setmetatile 35, 20, 762, 1
+ setmetatile 33, 21, 852, 1
+ setmetatile 34, 21, 853, 1
+ setmetatile 35, 21, 854, 1
+ setmetatile 16, 26, 848, 1
+ setmetatile 16, 27, 856, 1
+ setmetatile 16, 28, 866, 1
+ setmetatile 16, 29, 874, 1
+ setmetatile 16, 30, 882, 1
+ setmetatile 12, 8, 677, 1
+ setmetatile 12, 9, 685, 1
+ setmetatile 12, 10, 647, 0
+ setmetatile 12, 11, 646, 0
+ setmetatile 12, 12, 688, 0
+ setmetatile 20, 22, 647, 0
+ setmetatile 21, 22, 646, 0
+ setmetatile 22, 22, 646, 0
+ setmetatile 20, 23, 647, 0
+ setmetatile 21, 23, 646, 0
+ setmetatile 22, 23, 646, 0
+ setmetatile 24, 28, 847, 0
+ setmetatile 27, 4, 847, 0
+ return
+
+EventScript_1A8025:: @ 81A8025
+ setmetatile 33, 20, 647, 0
+ setmetatile 34, 20, 646, 0
+ setmetatile 35, 20, 646, 0
+ setmetatile 33, 21, 647, 0
+ setmetatile 34, 21, 646, 0
+ setmetatile 35, 21, 646, 0
+ setmetatile 16, 26, 677, 1
+ setmetatile 16, 27, 685, 1
+ setmetatile 16, 28, 647, 0
+ setmetatile 16, 29, 646, 0
+ setmetatile 16, 30, 688, 0
+ setmetatile 12, 8, 848, 1
+ setmetatile 12, 9, 856, 1
+ setmetatile 12, 10, 866, 1
+ setmetatile 12, 11, 874, 1
+ setmetatile 12, 12, 882, 1
+ setmetatile 20, 22, 760, 1
+ setmetatile 21, 22, 761, 1
+ setmetatile 22, 22, 762, 1
+ setmetatile 20, 23, 852, 1
+ setmetatile 21, 23, 853, 1
+ setmetatile 22, 23, 854, 1
+ setmetatile 24, 28, 790, 0
+ setmetatile 27, 4, 790, 0
+ return
diff --git a/data/scripts/repel.inc b/data/scripts/repel.inc
new file mode 100644
index 000000000..db2ec60ec
--- /dev/null
+++ b/data/scripts/repel.inc
@@ -0,0 +1,6 @@
+EventScript_RepelWoreOff:: @ 81BFB65
+ msgbox Text_RepelWoreOff, MSGBOX_SIGN
+ end
+
+Text_RepelWoreOff:: @ 81BFB6E
+ .string "REPEL's effect wore off…$"
diff --git a/data/scripts/route23.inc b/data/scripts/route23.inc
new file mode 100644
index 000000000..682fa7b1d
--- /dev/null
+++ b/data/scripts/route23.inc
@@ -0,0 +1,213 @@
+EventScript_1A77C9:: @ 81A77C9
+ msgbox Text_OnlySkilledTrainersAllowedThrough
+ playse SE_BOO
+ msgbox Text_CantLetYouPass
+ release
+ end
+
+EventScript_1A77DE:: @ 81A77DE
+ message Text_OnlyPassWithBadgeDontHaveYet
+ waitmessage
+ playse SE_BOO
+ waitbuttonpress
+ closemessage
+ waitse
+ release
+ end
+
+EventScript_1A77EC:: @ 81A77EC
+ message Text_OhThatsBadgeGoRightAhead
+ waitmessage
+ playfanfare MUS_FANFA1
+ waitfanfare
+ waitbuttonpress
+ release
+ end
+
+EventScript_1A77F9:: @ 81A77F9
+ msgbox Text_OnlyPassWithBadgeOhGoAhead
+ release
+ end
+
+EventScript_1A7803:: @ 81A7803
+ compare VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ goto_if_ge EventScript_1A77EC
+ switch VAR_TEMP_1
+ case 1, EventScript_1A78D5
+ case 2, EventScript_1A78E4
+ case 3, EventScript_1A78F3
+ case 4, EventScript_1A7902
+ case 5, EventScript_1A7911
+ case 6, EventScript_1A7920
+ case 7, EventScript_1A792F
+ case 8, EventScript_1A793E
+ end
+
+EventScript_1A786C:: @ 81A786C
+ compare VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ goto_if_ge EventScript_1A77F9
+ switch VAR_TEMP_1
+ case 1, EventScript_1A78D5
+ case 2, EventScript_1A78E4
+ case 3, EventScript_1A78F3
+ case 4, EventScript_1A7902
+ case 5, EventScript_1A7911
+ case 6, EventScript_1A7920
+ case 7, EventScript_1A792F
+ case 8, EventScript_1A793E
+ end
+
+EventScript_1A78D5:: @ 81A78D5
+ goto_if_set FLAG_BADGE01_GET, EventScript_1A794D
+ goto EventScript_1A77C9
+ end
+
+EventScript_1A78E4:: @ 81A78E4
+ goto_if_set FLAG_BADGE02_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A78F3:: @ 81A78F3
+ goto_if_set FLAG_BADGE03_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A7902:: @ 81A7902
+ goto_if_set FLAG_BADGE04_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A7911:: @ 81A7911
+ goto_if_set FLAG_BADGE05_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A7920:: @ 81A7920
+ goto_if_set FLAG_BADGE06_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A792F:: @ 81A792F
+ goto_if_set FLAG_BADGE07_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A793E:: @ 81A793E
+ goto_if_set FLAG_BADGE08_GET, EventScript_1A795F
+ goto EventScript_1A77DE
+ end
+
+EventScript_1A794D:: @ 81A794D
+ message Text_OhThatsBadgeGoRightAhead
+ waitmessage
+ playfanfare MUS_FANFA1
+ waitfanfare
+ waitbuttonpress
+ copyvar VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ release
+ end
+
+EventScript_1A795F:: @ 81A795F
+ msgbox Text_OnlyPassWithBadgeOhGoAhead
+ copyvar VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ release
+ end
+
+EventScript_1A796E:: @ 81A796E
+ textcolor 0
+ applymovement VAR_0x8009, Movement_WalkInPlaceFastestLeft
+ waitmovement 0
+ switch VAR_TEMP_1
+ case 1, EventScript_1A79D8
+ case 2, EventScript_1A79E7
+ case 3, EventScript_1A79F6
+ case 4, EventScript_1A7A05
+ case 5, EventScript_1A7A14
+ case 6, EventScript_1A7A23
+ case 7, EventScript_1A7A32
+ case 8, EventScript_1A7A41
+ end
+
+EventScript_1A79D8:: @ 81A79D8
+ goto_if_set FLAG_BADGE01_GET, EventScript_1A7A96
+ goto EventScript_1A7A50
+ end
+
+EventScript_1A79E7:: @ 81A79E7
+ goto_if_set FLAG_BADGE02_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A79F6:: @ 81A79F6
+ goto_if_set FLAG_BADGE03_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A05:: @ 81A7A05
+ goto_if_set FLAG_BADGE04_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A14:: @ 81A7A14
+ goto_if_set FLAG_BADGE05_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A23:: @ 81A7A23
+ goto_if_set FLAG_BADGE06_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A32:: @ 81A7A32
+ goto_if_set FLAG_BADGE07_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A41:: @ 81A7A41
+ goto_if_set FLAG_BADGE08_GET, EventScript_1A7AA8
+ goto EventScript_1A7A77
+ end
+
+EventScript_1A7A50:: @ 81A7A50
+ msgbox Text_OnlySkilledTrainersAllowedThrough
+ playse SE_BOO
+ msgbox Text_CantLetYouPass
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_1A7AB7
+ applymovement VAR_0x8009, Movement_WalkInPlaceFastestDown
+ waitmovement 0
+ releaseall
+ end
+
+EventScript_1A7A77:: @ 81A7A77
+ message Text_OnlyPassWithBadgeDontHaveYet
+ waitmessage
+ playse SE_BOO
+ waitbuttonpress
+ closemessage
+ waitse
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_1A7AB7
+ applymovement VAR_0x8009, Movement_WalkInPlaceFastestDown
+ waitmovement 0
+ releaseall
+ end
+
+EventScript_1A7A96:: @ 81A7A96
+ message Text_OhThatsBadgeGoRightAhead
+ waitmessage
+ playfanfare MUS_FANFA1
+ waitfanfare
+ waitbuttonpress
+ copyvar VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ releaseall
+ end
+
+EventScript_1A7AA8:: @ 81A7AA8
+ msgbox Text_OnlyPassWithBadgeOhGoAhead
+ copyvar VAR_MAP_SCENE_ROUTE23, VAR_TEMP_1
+ releaseall
+ end
+
+Movement_1A7AB7:: @ 81A7AB7
+ walk_down
+ step_end
diff --git a/data/scripts/seagallop.inc b/data/scripts/seagallop.inc
new file mode 100644
index 000000000..c14cda778
--- /dev/null
+++ b/data/scripts/seagallop.inc
@@ -0,0 +1,207 @@
+EventScript_1A8EC5:: @ 81A8EC5
+ compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
+ goto_if_ge EventScript_1A911E
+ compare VAR_MAP_SCENE_CINNABAR_ISLAND, 4
+ goto_if_ge EventScript_1A8F12
+ multichoice 19, 6, MULTICHOICE_ISLAND_23, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FF9
+ case 1, EventScript_1A9004
+ case 2, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A8F12:: @ 81A8F12
+ multichoice 19, 5, MULTICHOICE_SEAGALLOP_V23, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FE3
+ case 1, EventScript_1A8FF9
+ case 2, EventScript_1A9004
+ case 3, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A8F54:: @ 81A8F54
+ compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
+ goto_if_ge EventScript_1A911E
+ compare VAR_MAP_SCENE_CINNABAR_ISLAND, 4
+ goto_if_ge EventScript_1A8FA1
+ multichoice 19, 6, MULTICHOICE_ISLAND_13, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FEE
+ case 1, EventScript_1A9004
+ case 2, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A8FA1:: @ 81A8FA1
+ multichoice 19, 5, MULTICHOICE_SEAGALLOP_V13, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FE3
+ case 1, EventScript_1A8FEE
+ case 2, EventScript_1A9004
+ case 3, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A8FE3:: @ 81A8FE3
+ setvar VAR_0x8006, SEAGALLOP_VERMILION_CITY
+ goto EventScript_1A909E
+ end
+
+EventScript_1A8FEE:: @ 81A8FEE
+ setvar VAR_0x8006, SEAGALLOP_ONE_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A8FF9:: @ 81A8FF9
+ setvar VAR_0x8006, SEAGALLOP_TWO_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A9004:: @ 81A9004
+ setvar VAR_0x8006, SEAGALLOP_THREE_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A900F:: @ 81A900F
+ compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
+ goto_if_ge EventScript_1A911E
+ compare VAR_MAP_SCENE_CINNABAR_ISLAND, 4
+ goto_if_ge EventScript_1A905C
+ multichoice 19, 6, MULTICHOICE_ISLAND_12, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FEE
+ case 1, EventScript_1A8FF9
+ case 2, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A905C:: @ 81A905C
+ multichoice 19, 5, MULTICHOICE_SEAGALLOP_V12, FALSE
+ switch VAR_RESULT
+ case 0, EventScript_1A8FE3
+ case 1, EventScript_1A8FEE
+ case 2, EventScript_1A8FF9
+ case 3, EventScript_CancelSail
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A909E:: @ 81A909E
+ specialvar VAR_RESULT, sub_8147500
+ getnumberstring 0, VAR_RESULT
+ compare VAR_0x8004, SEAGALLOP_VERMILION_CITY
+ goto_if_eq EventScript_1A90BE
+ compare VAR_0x8004, SEAGALLOP_VERMILION_CITY
+ goto_if_ne EventScript_1A90CC
+ end
+
+EventScript_1A90BE:: @ 81A90BE
+ msgbox Text_17FB67
+ goto EventScript_1A90DA
+ end
+
+EventScript_1A90CC:: @ 81A90CC
+ msgbox Text_1A641B
+ goto EventScript_1A90DA
+ end
+
+EventScript_1A90DA:: @ 81A90DA
+ closemessage
+ delay 20
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A7AE0
+ special sub_8112364
+ fadescreen FADE_TO_BLACK
+ special ScrSpecial_SeagallopFerry
+ waitstate
+ end
+
+EventScript_CancelSail:: @ 81A90F6
+ specialvar VAR_RESULT, sub_8147594
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9108
+ release
+ end
+
+EventScript_1A9108:: @ 81A9108
+ closemessage
+ applymovement 6, Movement_FaceOriginalDirection
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_1A911C
+ waitmovement 0
+ releaseall
+ end
+
+Movement_1A911C:: @ 81A911C
+ walk_up
+ step_end
+
+EventScript_1A911E:: @ 81A911E
+ setvar VAR_0x8005, 0
+ special Special_DrawSeagallopDestinationMenu
+ waitstate
+ specialvar VAR_0x8006, Special_GetSelectedSeagallopDestination
+ switch VAR_0x8006
+ case SEAGALLOP_VERMILION_CITY, EventScript_SailToVermilionCity
+ case SEAGALLOP_ONE_ISLAND, EventScript_1A91E0
+ case SEAGALLOP_TWO_ISLAND, EventScript_1A91EB
+ case SEAGALLOP_THREE_ISLAND, EventScript_1A91F6
+ case SEAGALLOP_FOUR_ISLAND, EventScript_1A9201
+ case SEAGALLOP_MORE, EventScript_1A917F
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_1A917F:: @ 81A917F
+ setvar VAR_0x8005, 1
+ special Special_DrawSeagallopDestinationMenu
+ waitstate
+ specialvar VAR_0x8006, Special_GetSelectedSeagallopDestination
+ switch VAR_0x8006
+ case SEAGALLOP_FOUR_ISLAND, EventScript_1A9201
+ case SEAGALLOP_FIVE_ISLAND, EventScript_1A920C
+ case SEAGALLOP_SIX_ISLAND, EventScript_1A9217
+ case SEAGALLOP_SEVEN_ISLAND, EventScript_1A9222
+ case SEAGALLOP_MORE, EventScript_1A911E
+ case SCR_MENU_CANCEL, EventScript_CancelSail
+ end
+
+EventScript_SailToVermilionCity:: @ 81A91D5
+ setvar VAR_0x8006, SEAGALLOP_VERMILION_CITY
+ goto EventScript_1A909E
+ end
+
+EventScript_1A91E0:: @ 81A91E0
+ setvar VAR_0x8006, SEAGALLOP_ONE_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A91EB:: @ 81A91EB
+ setvar VAR_0x8006, SEAGALLOP_TWO_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A91F6:: @ 81A91F6
+ setvar VAR_0x8006, SEAGALLOP_THREE_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A9201:: @ 81A9201
+ setvar VAR_0x8006, SEAGALLOP_FOUR_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A920C:: @ 81A920C
+ setvar VAR_0x8006, SEAGALLOP_FIVE_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A9217:: @ 81A9217
+ setvar VAR_0x8006, SEAGALLOP_SIX_ISLAND
+ goto EventScript_1A909E
+ end
+
+EventScript_1A9222:: @ 81A9222
+ setvar VAR_0x8006, SEAGALLOP_SEVEN_ISLAND
+ goto EventScript_1A909E
+ end
diff --git a/data/scripts/set_gym_trainers.inc b/data/scripts/set_gym_trainers.inc
new file mode 100644
index 000000000..d90fb1e81
--- /dev/null
+++ b/data/scripts/set_gym_trainers.inc
@@ -0,0 +1,76 @@
+EventScript_SetGymTrainers:: @ 81A6B18
+ switch VAR_0x8008
+ case 1, EventScript_SetPewterGymTrainers
+ case 2, EventScript_SetCeruleanGymTrainers
+ case 3, EventScript_SetVermilionGymTrainers
+ case 4, EventScript_SetCeladonGymTrainers
+ case 5, EventScript_SetFuchsiaGymTrainers
+ case 6, EventScript_SetSaffronGymTrainers
+ case 7, EventScript_SetCinnabarGymTrainers
+ case 8, EventScript_SetViridianGymTrainers
+ end
+
+EventScript_SetPewterGymTrainers:: @ 81A6B76
+ settrainerflag TRAINER_CAMPER_LIAM
+ return
+
+EventScript_SetCeruleanGymTrainers:: @ 81A6B7A
+ settrainerflag TRAINER_PICNICKER_DIANA
+ settrainerflag TRAINER_SWIMMER_MALE_LUIS
+ return
+
+EventScript_SetVermilionGymTrainers:: @ 81A6B81
+ settrainerflag TRAINER_SAILOR_DWAYNE
+ settrainerflag TRAINER_ENGINEER_BAILY
+ settrainerflag TRAINER_GENTLEMAN_TUCKER
+ return
+
+EventScript_SetCeladonGymTrainers:: @ 81A6B8B
+ settrainerflag TRAINER_LASS_KAY
+ settrainerflag TRAINER_LASS_LISA
+ settrainerflag TRAINER_PICNICKER_TINA
+ settrainerflag TRAINER_BEAUTY_BRIDGET
+ settrainerflag TRAINER_BEAUTY_TAMIA
+ settrainerflag TRAINER_BEAUTY_LORI
+ settrainerflag TRAINER_COOLTRAINER_MARY
+ return
+
+EventScript_SetFuchsiaGymTrainers:: @ 81A6BA1
+ settrainerflag TRAINER_TAMER_PHIL
+ settrainerflag TRAINER_TAMER_EDGAR
+ settrainerflag TRAINER_JUGGLER_KIRK
+ settrainerflag TRAINER_JUGGLER_SHAWN
+ settrainerflag TRAINER_JUGGLER_KAYDEN
+ settrainerflag TRAINER_JUGGLER_NATE
+ return
+
+EventScript_SetSaffronGymTrainers:: @ 81A6BB4
+ settrainerflag TRAINER_PSYCHIC_JOHAN
+ settrainerflag TRAINER_PSYCHIC_TYRON
+ settrainerflag TRAINER_PSYCHIC_CAMERON
+ settrainerflag TRAINER_PSYCHIC_PRESTON
+ settrainerflag TRAINER_CHANNELER_AMANDA
+ settrainerflag TRAINER_CHANNELER_STACY
+ settrainerflag TRAINER_CHANNELER_TASHA
+ return
+
+EventScript_SetCinnabarGymTrainers:: @ 81A6BCA
+ settrainerflag TRAINER_SUPER_NERD_ERIK
+ settrainerflag TRAINER_SUPER_NERD_AVERY
+ settrainerflag TRAINER_SUPER_NERD_DEREK
+ settrainerflag TRAINER_SUPER_NERD_ZAC
+ settrainerflag TRAINER_BURGLAR_QUINN
+ settrainerflag TRAINER_BURGLAR_RAMON
+ settrainerflag TRAINER_BURGLAR_DUSTY
+ return
+
+EventScript_SetViridianGymTrainers:: @ 81A6BE0
+ settrainerflag TRAINER_TAMER_JASON
+ settrainerflag TRAINER_TAMER_COLE
+ settrainerflag TRAINER_BLACK_BELT_ATSUSHI
+ settrainerflag TRAINER_BLACK_BELT_KIYO
+ settrainerflag TRAINER_BLACK_BELT_TAKASHI
+ settrainerflag TRAINER_COOLTRAINER_SAMUEL
+ settrainerflag TRAINER_COOLTRAINER_YUJI
+ settrainerflag TRAINER_COOLTRAINER_WARREN
+ return
diff --git a/data/scripts/silphco_doors.inc b/data/scripts/silphco_doors.inc
new file mode 100644
index 000000000..5abeb2316
--- /dev/null
+++ b/data/scripts/silphco_doors.inc
@@ -0,0 +1,564 @@
+EventScript_NeedCardKey:: @ 81A8135
+ msgbox Text_ItNeedsCardKey
+ releaseall
+ end
+
+EventScript_DoorUnlocked:: @ 81A813F
+ msgbox Text_TheDoorIsOpen
+ releaseall
+ end
+
+EventScript_Close2FDoor1:: @ 81A8149
+ setmetatile 5, 8, 944, 1
+ setmetatile 6, 8, 945, 1
+ setmetatile 5, 9, 952, 1
+ setmetatile 6, 9, 953, 1
+ setmetatile 6, 10, 821, 0
+ return
+
+EventScript_Close2FDoor2:: @ 81A8177
+ setmetatile 5, 15, 944, 1
+ setmetatile 6, 15, 945, 1
+ setmetatile 5, 16, 952, 1
+ setmetatile 6, 16, 953, 1
+ setmetatile 6, 17, 821, 0
+ return
+
+EventScript_Close3FDoor1:: @ 81A81A5
+ setmetatile 9, 11, 960, 1
+ setmetatile 10, 11, 961, 1
+ setmetatile 9, 12, 962, 1
+ setmetatile 10, 12, 963, 1
+ setmetatile 9, 13, 964, 1
+ setmetatile 10, 13, 965, 1
+ return
+
+EventScript_Close3FDoor2:: @ 81A81DC
+ setmetatile 20, 11, 960, 1
+ setmetatile 21, 11, 961, 1
+ setmetatile 20, 12, 962, 1
+ setmetatile 21, 12, 963, 1
+ setmetatile 20, 13, 964, 1
+ setmetatile 21, 13, 965, 1
+ return
+
+EventScript_Close4FDoor1:: @ 81A8213
+ setmetatile 3, 16, 944, 1
+ setmetatile 4, 16, 945, 1
+ setmetatile 3, 17, 952, 1
+ setmetatile 4, 17, 953, 1
+ setmetatile 4, 18, 821, 0
+ return
+
+EventScript_Close4FDoor2:: @ 81A8241
+ setmetatile 14, 11, 944, 1
+ setmetatile 15, 11, 945, 1
+ setmetatile 14, 12, 952, 1
+ setmetatile 15, 12, 953, 1
+ setmetatile 15, 13, 821, 0
+ return
+
+EventScript_Close5FDoor1:: @ 81A826F
+ setmetatile 7, 8, 960, 1
+ setmetatile 8, 8, 961, 1
+ setmetatile 7, 9, 962, 1
+ setmetatile 8, 9, 963, 1
+ setmetatile 7, 10, 964, 1
+ setmetatile 8, 10, 965, 1
+ return
+
+EventScript_Close5FDoor2:: @ 81A82A6
+ setmetatile 7, 17, 960, 1
+ setmetatile 8, 17, 961, 1
+ setmetatile 7, 18, 962, 1
+ setmetatile 8, 18, 963, 1
+ setmetatile 7, 19, 964, 1
+ setmetatile 8, 19, 965, 1
+ return
+
+EventScript_Close5FDoor3:: @ 81A82DD
+ setmetatile 18, 12, 960, 1
+ setmetatile 19, 12, 961, 1
+ setmetatile 18, 13, 962, 1
+ setmetatile 19, 13, 963, 1
+ setmetatile 18, 14, 964, 1
+ setmetatile 19, 14, 965, 1
+ return
+
+EventScript_Close6FDoor:: @ 81A8314
+ setmetatile 5, 14, 960, 1
+ setmetatile 6, 14, 961, 1
+ setmetatile 5, 15, 962, 1
+ setmetatile 6, 15, 963, 1
+ setmetatile 5, 16, 964, 1
+ setmetatile 6, 16, 965, 1
+ return
+
+EventScript_Close7FDoor1:: @ 81A834B
+ setmetatile 11, 8, 944, 1
+ setmetatile 12, 8, 945, 1
+ setmetatile 11, 9, 952, 1
+ setmetatile 12, 9, 953, 1
+ setmetatile 12, 10, 821, 0
+ return
+
+EventScript_Close7FDoor2:: @ 81A8379
+ setmetatile 24, 7, 944, 1
+ setmetatile 25, 7, 945, 1
+ setmetatile 24, 8, 952, 1
+ setmetatile 25, 8, 953, 1
+ setmetatile 25, 9, 821, 0
+ return
+
+EventScript_Close7FDoor3:: @ 81A83A7
+ setmetatile 25, 13, 944, 1
+ setmetatile 26, 13, 945, 1
+ setmetatile 25, 14, 952, 1
+ setmetatile 26, 14, 953, 1
+ setmetatile 26, 15, 821, 0
+ return
+
+EventScript_Close8FDoor:: @ 81A83D5
+ setmetatile 5, 9, 960, 1
+ setmetatile 6, 9, 961, 1
+ setmetatile 5, 10, 962, 1
+ setmetatile 6, 10, 963, 1
+ setmetatile 5, 11, 964, 1
+ setmetatile 6, 11, 965, 1
+ return
+
+EventScript_Close9FDoor1:: @ 81A840C
+ setmetatile 2, 9, 960, 1
+ setmetatile 3, 9, 961, 1
+ setmetatile 2, 10, 962, 1
+ setmetatile 3, 10, 963, 1
+ setmetatile 2, 11, 964, 1
+ setmetatile 3, 11, 965, 1
+ return
+
+EventScript_Close9FDoor2:: @ 81A8443
+ setmetatile 12, 15, 960, 1
+ setmetatile 13, 15, 961, 1
+ setmetatile 12, 16, 962, 1
+ setmetatile 13, 16, 963, 1
+ setmetatile 12, 17, 964, 1
+ setmetatile 13, 17, 965, 1
+ return
+
+EventScript_Close9FDoor3:: @ 81A847A
+ setmetatile 21, 6, 944, 1
+ setmetatile 22, 6, 945, 1
+ setmetatile 21, 7, 952, 1
+ setmetatile 22, 7, 953, 1
+ setmetatile 22, 8, 821, 0
+ return
+
+EventScript_Close9FDoor4:: @ 81A84A8
+ setmetatile 21, 12, 944, 1
+ setmetatile 22, 12, 945, 1
+ setmetatile 21, 13, 952, 1
+ setmetatile 22, 13, 953, 1
+ setmetatile 22, 14, 821, 0
+ return
+
+EventScript_Close10FDoor:: @ 81A84D6
+ setmetatile 12, 11, 944, 1
+ setmetatile 13, 11, 945, 1
+ setmetatile 12, 12, 952, 1
+ setmetatile 13, 12, 953, 1
+ setmetatile 13, 13, 821, 0
+ return
+
+EventScript_Close11FDoor:: @ 81A8504
+ setmetatile 5, 16, 944, 1
+ setmetatile 6, 16, 945, 1
+ setmetatile 5, 17, 952, 1
+ setmetatile 6, 17, 953, 1
+ setmetatile 6, 18, 821, 0
+ return
+
+EventScript_Open2FDoor1:: @ 81A8532
+ setmetatile 5, 8, 821, 0
+ setmetatile 6, 8, 820, 0
+ setmetatile 5, 9, 821, 0
+ setmetatile 6, 9, 820, 0
+ setmetatile 6, 10, 820, 0
+ return
+
+EventScript_Open2FDoor2:: @ 81A8560
+ setmetatile 5, 15, 821, 0
+ setmetatile 6, 15, 820, 0
+ setmetatile 5, 16, 821, 0
+ setmetatile 6, 16, 820, 0
+ setmetatile 6, 17, 820, 0
+ return
+
+EventScript_Open3FDoor1:: @ 81A858E
+ setmetatile 9, 11, 839, 1
+ setmetatile 10, 11, 838, 1
+ setmetatile 9, 12, 821, 0
+ setmetatile 10, 12, 821, 0
+ setmetatile 9, 13, 825, 0
+ setmetatile 10, 13, 826, 0
+ return
+
+EventScript_Open3FDoor2:: @ 81A85C5
+ setmetatile 20, 11, 839, 1
+ setmetatile 21, 11, 838, 1
+ setmetatile 20, 12, 821, 0
+ setmetatile 21, 12, 821, 0
+ setmetatile 20, 13, 825, 0
+ setmetatile 21, 13, 826, 0
+ return
+
+EventScript_Open4FDoor1:: @ 81A85FC
+ setmetatile 3, 16, 821, 0
+ setmetatile 4, 16, 820, 0
+ setmetatile 3, 17, 821, 0
+ setmetatile 4, 17, 820, 0
+ setmetatile 4, 18, 820, 0
+ return
+
+EventScript_Open4FDoor2:: @ 81A862A
+ setmetatile 14, 11, 821, 0
+ setmetatile 15, 11, 820, 0
+ setmetatile 14, 12, 821, 0
+ setmetatile 15, 12, 820, 0
+ setmetatile 15, 13, 820, 0
+ return
+
+EventScript_Open5FDoor1:: @ 81A8658
+ setmetatile 7, 8, 839, 1
+ setmetatile 8, 8, 838, 1
+ setmetatile 7, 9, 821, 0
+ setmetatile 8, 9, 821, 0
+ setmetatile 7, 10, 825, 0
+ setmetatile 8, 10, 826, 0
+ return
+
+EventScript_Open5FDoor2:: @ 81A868F
+ setmetatile 7, 17, 839, 1
+ setmetatile 8, 17, 838, 1
+ setmetatile 7, 18, 821, 0
+ setmetatile 8, 18, 821, 0
+ setmetatile 7, 19, 825, 0
+ setmetatile 8, 19, 826, 0
+ return
+
+EventScript_Open5FDoor3:: @ 81A86C6
+ setmetatile 18, 12, 839, 1
+ setmetatile 19, 12, 838, 1
+ setmetatile 18, 13, 821, 0
+ setmetatile 19, 13, 821, 0
+ setmetatile 18, 14, 825, 0
+ setmetatile 19, 14, 826, 0
+ return
+
+EventScript_Open6FDoor:: @ 81A86FD
+ setmetatile 5, 14, 839, 1
+ setmetatile 6, 14, 838, 1
+ setmetatile 5, 15, 821, 0
+ setmetatile 6, 15, 821, 0
+ setmetatile 5, 16, 825, 0
+ setmetatile 6, 16, 826, 0
+ return
+
+EventScript_Open7FDoor1:: @ 81A8734
+ setmetatile 11, 8, 821, 0
+ setmetatile 12, 8, 820, 0
+ setmetatile 11, 9, 821, 0
+ setmetatile 12, 9, 820, 0
+ setmetatile 12, 10, 820, 0
+ return
+
+EventScript_Open7FDoor2:: @ 81A8762
+ setmetatile 24, 7, 821, 0
+ setmetatile 25, 7, 820, 0
+ setmetatile 24, 8, 821, 0
+ setmetatile 25, 8, 820, 0
+ setmetatile 25, 9, 820, 0
+ return
+
+EventScript_Open7FDoor3:: @ 81A8790
+ setmetatile 25, 13, 821, 0
+ setmetatile 26, 13, 820, 0
+ setmetatile 25, 14, 821, 0
+ setmetatile 26, 14, 820, 0
+ setmetatile 26, 15, 820, 0
+ return
+
+EventScript_Open8FDoor:: @ 81A87BE
+ setmetatile 5, 9, 839, 1
+ setmetatile 6, 9, 838, 1
+ setmetatile 5, 10, 821, 0
+ setmetatile 6, 10, 821, 0
+ setmetatile 5, 11, 825, 0
+ setmetatile 6, 11, 826, 0
+ return
+
+EventScript_Open9FDoor1:: @ 81A87F5
+ setmetatile 2, 9, 839, 1
+ setmetatile 3, 9, 838, 1
+ setmetatile 2, 10, 821, 0
+ setmetatile 3, 10, 821, 0
+ setmetatile 2, 11, 825, 0
+ setmetatile 3, 11, 826, 0
+ return
+
+EventScript_Open9FDoor2:: @ 81A882C
+ setmetatile 12, 15, 839, 1
+ setmetatile 13, 15, 838, 1
+ setmetatile 12, 16, 821, 0
+ setmetatile 13, 16, 821, 0
+ setmetatile 12, 17, 825, 0
+ setmetatile 13, 17, 826, 0
+ return
+
+EventScript_Open9FDoor3:: @ 81A8863
+ setmetatile 21, 6, 821, 0
+ setmetatile 22, 6, 820, 0
+ setmetatile 21, 7, 821, 0
+ setmetatile 22, 7, 820, 0
+ setmetatile 22, 8, 820, 0
+ return
+
+EventScript_Open9FDoor4:: @ 81A8891
+ setmetatile 21, 12, 821, 0
+ setmetatile 22, 12, 820, 0
+ setmetatile 21, 13, 821, 0
+ setmetatile 22, 13, 820, 0
+ setmetatile 22, 14, 820, 0
+ return
+
+EventScript_Open10FDoor:: @ 81A88BF
+ setmetatile 12, 11, 821, 0
+ setmetatile 13, 11, 820, 0
+ setmetatile 12, 12, 821, 0
+ setmetatile 13, 12, 820, 0
+ setmetatile 13, 13, 820, 0
+ return
+
+EventScript_Open11FDoor:: @ 81A88ED
+ setmetatile 5, 16, 821, 0
+ setmetatile 6, 16, 820, 0
+ setmetatile 5, 17, 821, 0
+ setmetatile 6, 17, 820, 0
+ setmetatile 6, 18, 820, 0
+ return
+
+SilphCo_2F_EventScript_Door1:: @ 81A891B
+ lockall
+ setvar VAR_TEMP_1, 1
+ setvar VAR_0x8004, 634
+ goto_if_set FLAG_SILPH_2F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_2F_EventScript_Door2:: @ 81A8935
+ lockall
+ setvar VAR_TEMP_1, 2
+ setvar VAR_0x8004, 635
+ goto_if_set FLAG_SILPH_2F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_3F_EventScript_Door1:: @ 81A894F
+ lockall
+ setvar VAR_TEMP_1, 3
+ setvar VAR_0x8004, 636
+ goto_if_set FLAG_SILPH_3F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_3F_EventScript_Door2:: @ 81A8969
+ lockall
+ setvar VAR_TEMP_1, 4
+ setvar VAR_0x8004, 637
+ goto_if_set FLAG_SILPH_3F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_4F_EventScript_Door1:: @ 81A8983
+ lockall
+ setvar VAR_TEMP_1, 5
+ setvar VAR_0x8004, 638
+ goto_if_set FLAG_SILPH_4F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_4F_EventScript_Door2:: @ 81A899D
+ lockall
+ setvar VAR_TEMP_1, 6
+ setvar VAR_0x8004, 639
+ goto_if_set FLAG_SILPH_4F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_5F_EventScript_Door1:: @ 81A89B7
+ lockall
+ setvar VAR_TEMP_1, 7
+ setvar VAR_0x8004, 640
+ goto_if_set FLAG_SILPH_5F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_5F_EventScript_Door2:: @ 81A89D1
+ lockall
+ setvar VAR_TEMP_1, 8
+ setvar VAR_0x8004, 641
+ goto_if_set FLAG_SILPH_5F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_5F_EventScript_Door3:: @ 81A89EB
+ lockall
+ setvar VAR_TEMP_1, 9
+ setvar VAR_0x8004, 642
+ goto_if_set FLAG_SILPH_5F_DOOR_3, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_6F_EventScript_Door:: @ 81A8A05
+ lockall
+ setvar VAR_TEMP_1, 10
+ setvar VAR_0x8004, 643
+ goto_if_set FLAG_SILPH_6F_DOOR, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_7F_EventScript_Door1:: @ 81A8A1F
+ lockall
+ setvar VAR_TEMP_1, 11
+ setvar VAR_0x8004, 644
+ goto_if_set FLAG_SILPH_7F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_7F_EventScript_Door2:: @ 81A8A39
+ lockall
+ setvar VAR_TEMP_1, 12
+ setvar VAR_0x8004, 645
+ goto_if_set FLAG_SILPH_7F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_7F_EventScript_Door3:: @ 81A8A53
+ lockall
+ setvar VAR_TEMP_1, 13
+ setvar VAR_0x8004, 646
+ goto_if_set FLAG_SILPH_7F_DOOR_3, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_8F_EventScript_Door:: @ 81A8A6D
+ lockall
+ setvar VAR_TEMP_1, 14
+ setvar VAR_0x8004, 647
+ goto_if_set FLAG_SILPH_8F_DOOR, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_9F_EventScript_Door1:: @ 81A8A87
+ lockall
+ setvar VAR_TEMP_1, 15
+ setvar VAR_0x8004, 648
+ goto_if_set FLAG_SILPH_9F_DOOR_1, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_9F_EventScript_Door2:: @ 81A8AA1
+ lockall
+ setvar VAR_TEMP_1, 16
+ setvar VAR_0x8004, 649
+ goto_if_set FLAG_SILPH_9F_DOOR_2, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_9F_EventScript_Door3:: @ 81A8ABB
+ lockall
+ setvar VAR_TEMP_1, 17
+ setvar VAR_0x8004, 650
+ goto_if_set FLAG_SILPH_9F_DOOR_3, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_9F_EventScript_Door4:: @ 81A8AD5
+ lockall
+ setvar VAR_TEMP_1, 18
+ setvar VAR_0x8004, 651
+ goto_if_set FLAG_SILPH_9F_DOOR_4, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_10F_EventScript_Door:: @ 81A8AEF
+ lockall
+ setvar VAR_TEMP_1, 19
+ setvar VAR_0x8004, 652
+ goto_if_set FLAG_SILPH_10F_DOOR, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+SilphCo_11F_EventScript_Door:: @ 81A8B09
+ lockall
+ setvar VAR_TEMP_1, 20
+ setvar VAR_0x8004, 653
+ goto_if_set FLAG_SILPH_11F_DOOR, EventScript_DoorUnlocked
+ goto EventScript_TryUnlockDoor
+ end
+
+EventScript_TryUnlockDoor:: @ 81A8B23
+ goto_if_set FLAG_HIDE_SILPH_CO_5F_CARD_KEY, EventScript_OpenDoor
+ goto EventScript_NeedCardKey
+ end
+
+EventScript_OpenDoor:: @ 81A8B32
+ playfanfare MUS_FANFA1
+ msgbox Text_CardKeyOpenedDoor
+ waitfanfare
+ compare VAR_TEMP_1, 1
+ call_if_eq EventScript_Open2FDoor1
+ compare VAR_TEMP_1, 2
+ call_if_eq EventScript_Open2FDoor2
+ compare VAR_TEMP_1, 3
+ call_if_eq EventScript_Open3FDoor1
+ compare VAR_TEMP_1, 4
+ call_if_eq EventScript_Open3FDoor2
+ compare VAR_TEMP_1, 5
+ call_if_eq EventScript_Open4FDoor1
+ compare VAR_TEMP_1, 6
+ call_if_eq EventScript_Open4FDoor2
+ compare VAR_TEMP_1, 7
+ call_if_eq EventScript_Open5FDoor1
+ compare VAR_TEMP_1, 8
+ call_if_eq EventScript_Open5FDoor2
+ compare VAR_TEMP_1, 9
+ call_if_eq EventScript_Open5FDoor3
+ compare VAR_TEMP_1, 10
+ call_if_eq EventScript_Open6FDoor
+ compare VAR_TEMP_1, 11
+ call_if_eq EventScript_Open7FDoor1
+ compare VAR_TEMP_1, 12
+ call_if_eq EventScript_Open7FDoor2
+ compare VAR_TEMP_1, 13
+ call_if_eq EventScript_Open7FDoor3
+ compare VAR_TEMP_1, 14
+ call_if_eq EventScript_Open8FDoor
+ compare VAR_TEMP_1, 15
+ call_if_eq EventScript_Open9FDoor1
+ compare VAR_TEMP_1, 16
+ call_if_eq EventScript_Open9FDoor2
+ compare VAR_TEMP_1, 17
+ call_if_eq EventScript_Open9FDoor3
+ compare VAR_TEMP_1, 18
+ call_if_eq EventScript_Open9FDoor4
+ compare VAR_TEMP_1, 19
+ call_if_eq EventScript_Open10FDoor
+ compare VAR_TEMP_1, 20
+ call_if_eq EventScript_Open11FDoor
+ waitse
+ playse SE_KI_GASYAN
+ special DrawWholeMapView
+ waitse
+ special Special_SetHiddenItemFlag
+ releaseall
+ end
diff --git a/data/scripts/static_pokemon.inc b/data/scripts/static_pokemon.inc
new file mode 100644
index 000000000..5334688a3
--- /dev/null
+++ b/data/scripts/static_pokemon.inc
@@ -0,0 +1,23 @@
+EventScript_RemoveStaticMon:: @ 81A922D
+ fadescreen FADE_TO_BLACK
+ removeobject VAR_LAST_TALKED
+ fadescreen FADE_FROM_BLACK
+ release
+ end
+
+EventScript_MonFlewAway:: @ 81A9236
+ fadescreen FADE_TO_BLACK
+ removeobject VAR_LAST_TALKED
+ fadescreen FADE_FROM_BLACK
+ getspeciesname 0, VAR_0x8004
+ msgbox Text_MonFlewAway
+ release
+ end
+
+EventScript_AwakenSnorlax:: @ 81A924B
+ message Text_PlayedPokeFlute
+ waitmessage
+ playfanfare MUS_POKEFUE
+ waitfanfare
+ msgbox Text_SnorlaxWokeUp
+ return
diff --git a/data/scripts/std_msgbox.inc b/data/scripts/std_msgbox.inc
new file mode 100644
index 000000000..d1605976e
--- /dev/null
+++ b/data/scripts/std_msgbox.inc
@@ -0,0 +1,63 @@
+Std_MsgboxNPC:: @ 81A4E3F
+ lock
+ faceplayer
+ message 0x0
+ waitmessage
+ waitbuttonpress
+ release
+ return
+
+Std_MsgboxSign:: @ 81A4E4A
+ lockall
+ message 0x0
+ waitmessage
+ waitbuttonpress
+ releaseall
+ return
+
+Std_MsgboxDefault:: @ 81A4E54
+ message 0x0
+ waitmessage
+ waitbuttonpress
+ return
+
+Std_MsgboxYesNo:: @ 81A4E5C
+ message 0x0
+ waitmessage
+ yesnobox 20, 8
+ return
+
+Std_ReceivedItem:: @ 81A4E66
+ textcolor 3
+ compare VAR_0x8002, MUS_FANFA1
+ call_if_eq EventScript_ReceivedItemFanfare1
+ compare VAR_0x8002, MUS_FAN5
+ call_if_eq EventScript_ReceivedItemFanfare2
+ message 0x0
+ waitmessage
+ waitfanfare
+ compare VAR_0x8002, MUS_FANFA1
+ call_if_eq EventScript_ReceivedItemWaitFanfare
+ putitemaway VAR_0x8000, VAR_0x8001
+ call EventScript_1A6675
+ return
+
+EventScript_ReceivedItemFanfare1:: @ 81A4EA2
+ playfanfare MUS_FANFA1
+ return
+
+EventScript_ReceivedItemFanfare2:: @ 81A4EA6
+ playfanfare MUS_FAN5
+ return
+
+EventScript_ReceivedItemWaitFanfare:: @ 81A4EAA
+ delay 50
+ return
+
+EventScript_UnusedReturn:: @ 81A4EAE
+ return
+
+EventScript_AskSaveGame:: @ 81A4EAF
+ special Field_AskSaveTheGame
+ waitstate
+ return
diff --git a/data/scripts/surf.inc b/data/scripts/surf.inc
new file mode 100644
index 000000000..456cad9e9
--- /dev/null
+++ b/data/scripts/surf.inc
@@ -0,0 +1,25 @@
+EventScript_UseSurf:: @ 81A6AC8
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_UseSurfEnd
+ checkpartymove MOVE_SURF
+ compare VAR_RESULT, PARTY_SIZE
+ goto_if_eq EventScript_UseSurfEnd
+ getpartymonname 0, VAR_RESULT
+ setfieldeffectarg 0, VAR_RESULT
+ lockall
+ msgbox Text_WantToSurf, MSGBOX_YESNO
+ compare VAR_RESULT, NO
+ goto_if_eq EventScript_UseSurfRelease
+ msgbox Text_UsedSurf
+ dofieldeffect FLDEFF_USE_SURF
+EventScript_UseSurfRelease:@ 81A6B0B
+ releaseall
+EventScript_UseSurfEnd: @ 81A6B0C
+ end
+
+EventScript_CurrentTooFast:: @ 81A6B0D
+ lockall
+ msgbox Text_CurrentTooFast
+ releaseall
+ end
diff --git a/data/scripts/test.inc b/data/scripts/test.inc
new file mode 100644
index 000000000..55578f159
--- /dev/null
+++ b/data/scripts/test.inc
@@ -0,0 +1,27 @@
+EventScript_1C5550:: @ 81C5552
+ msgbox Text_1C556D, MSGBOX_NPC
+ end
+
+EventScript_1C555B:: @ 81C555B
+ msgbox Text_1C558D, MSGBOX_SIGN
+ end
+
+EventScript_1C5564:: @ 81C5564
+ msgbox Text_1C55A4, MSGBOX_SIGN
+ end
+
+Text_1C556D:: @ 81C556D
+ .string "テストよう メッセージです!\n"
+ .string "ポケモンの せかいへ ようこそ!$"
+
+Text_1C558D:: @ 81C558D
+ .string "テストよう メッセージです!\n"
+ .string "かんばん です$"
+
+Text_1C55A4:: @ 81C55A4
+ .string "テストよう メッセージです!\n"
+ .string "ざひょう チェックの イベントです$"
+
+ .align 2
+Text_1C55C8:: @ 81C55C8
+ .string "$"
diff --git a/data/scripts/trainer_battle.inc b/data/scripts/trainer_battle.inc
new file mode 100644
index 000000000..f16e30ada
--- /dev/null
+++ b/data/scripts/trainer_battle.inc
@@ -0,0 +1,158 @@
+gUnknown_81A4EB4:: @ 81A4EB4
+ lock
+ special PlayTrainerEncounterMusic
+ special ScrSpecial_EndTrainerApproach
+ waitstate
+ goto EventScript_1A4FC7
+
+EventScript_TryDoNormalTrainerBattle:: @ 81A4EC1
+ lock
+ faceplayer
+ applymovement VAR_LAST_TALKED, Movement_1A4FC5
+ waitmovement 0
+ specialvar VAR_RESULT, ScrSpecial_HasTrainerBeenFought
+ compare VAR_RESULT, 0
+ goto_if_ne EventScript_1A4EE8
+ special PlayTrainerEncounterMusic
+ special SetUpTrainerMovement
+ goto EventScript_1A4FC7
+
+EventScript_1A4EE8:: @ 81A4EE8
+ ontrainerbattleend
+
+EventScript_TryDoDoubleTrainerBattle:: @ 81A4EE9
+ lock
+ faceplayer
+ call EventScript_1A4FBA
+ specialvar VAR_RESULT, ScrSpecial_HasTrainerBeenFought
+ compare VAR_RESULT, 0
+ goto_if_ne EventScript_1A4F20
+ special HasEnoughMonsForDoubleBattle
+ compare VAR_RESULT, PLAYER_HAS_TWO_USABLE_MONS
+ goto_if_ne EventScript_1A4F19
+ special PlayTrainerEncounterMusic
+ special SetUpTrainerMovement
+ goto EventScript_1A4FC7
+
+EventScript_1A4F19:: @ 81A4F19
+ special ScrSpecial_ShowTrainerNonBattlingSpeech
+ waitmessage
+ waitbuttonpress
+ release
+ end
+
+EventScript_1A4F20:: @ 81A4F20
+ ontrainerbattleend
+
+EventScript_DoTrainerBattle:: @ 81A4F21
+ applymovement VAR_LAST_TALKED, Movement_1A4FC5
+ waitmovement 0
+ special PlayTrainerEncounterMusic
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A501A
+ battlebegin
+ ontrainerbattleend
+
+EventScript_TryDoRematchBattle:: @ 81A4F3E
+ call EventScript_1A4FBA
+ specialvar VAR_RESULT, ScrSpecial_GetTrainerEyeRematchFlag
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_1A4F72
+ special PlayTrainerEncounterMusic
+ special SetUpTrainerMovement
+ special ScrSpecial_ShowTrainerIntroSpeech
+ waitmessage
+ waitbuttonpress
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A4FB8
+ special ScrSpecial_StartTrainerEyeRematch
+ waitstate
+ releaseall
+ end
+
+EventScript_1A4F72:: @ 81A4F72
+ ontrainerbattleend
+
+EventScript_TryDoDoubleRematchBattle:: @ 81A4F73
+ specialvar VAR_RESULT, ScrSpecial_GetTrainerEyeRematchFlag
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_1A4FB0
+ special HasEnoughMonsForDoubleBattle
+ compare VAR_RESULT, PLAYER_HAS_TWO_USABLE_MONS
+ goto_if_ne EventScript_1A4FB1
+ special PlayTrainerEncounterMusic
+ special SetUpTrainerMovement
+ special ScrSpecial_ShowTrainerIntroSpeech
+ waitmessage
+ waitbuttonpress
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A4FB8
+ special ScrSpecial_StartTrainerEyeRematch
+ waitstate
+ releaseall
+ end
+
+EventScript_1A4FB0:: @ 81A4FB0
+ ontrainerbattleend
+
+EventScript_1A4FB1:: @ 81A4FB1
+ special ScrSpecial_ShowTrainerNonBattlingSpeech
+ waitmessage
+ waitbuttonpress
+ release
+ end
+
+EventScript_1A4FB8:: @ 81A4FB8
+ releaseall
+ end
+
+EventScript_1A4FBA:: @ 81A4FBA
+ applymovement VAR_LAST_TALKED, Movement_1A4FC5
+ waitmovement 0
+ return
+
+Movement_1A4FC5:: @ 81A4FC5
+ step_67
+ step_end
+
+EventScript_1A4FC7:: @ 81A4FC7
+ special ScrSpecial_ShowTrainerIntroSpeech
+ waitmessage
+ waitbuttonpress
+ special sub_8110AB4
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A501A
+ battlebegin
+ specialvar VAR_RESULT, ScrSpecial_GetTrainerBattleMode
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_1A5017
+ compare VAR_RESULT, 2
+ goto_if_eq EventScript_1A5019
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A5019
+ compare VAR_RESULT, 6
+ goto_if_eq EventScript_1A5019
+ compare VAR_RESULT, 8
+ goto_if_eq EventScript_1A5019
+
+EventScript_1A5017:: @ 81A5017
+ releaseall
+ end
+
+EventScript_1A5019:: @ 81A5019
+ ontrainerbattleendgoto
+
+EventScript_1A501A:: @ 81A501A
+ special SetBattledTrainerFlag
+ releaseall
+ end
+
+Std_MsgboxAutoclose:: @ 81A501F
+ message 0x0
+ waitmessage
+ waitbuttonpress
+ release
+ return
diff --git a/data/scripts/trainer_tower.inc b/data/scripts/trainer_tower.inc
new file mode 100644
index 000000000..dd85dc53a
--- /dev/null
+++ b/data/scripts/trainer_tower.inc
@@ -0,0 +1,450 @@
+SevenIsland_TrainerTower_1F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_2F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_3F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_4F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_5F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_6F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_7F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_8F_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_Elevator_MapScript1_1C4F54:: @ 81C4F54
+SevenIsland_TrainerTower_Roof_MapScript1_1C4F54:: @ 81C4F54
+ setvar VAR_TEMP_2, 0
+ setvar VAR_0x8004, 10
+ special sub_815D9E8
+ end
+
+SevenIsland_TrainerTower_1F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_2F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_3F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_4F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_5F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_6F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_7F_MapScript2_1C4F62:: @ 81C4F62
+SevenIsland_TrainerTower_8F_MapScript2_1C4F62:: @ 81C4F62
+ setvar VAR_0x8004, 0
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C4FA7
+ case 1, EventScript_1C4FC5
+ case 2, EventScript_1C5019
+ setflag FLAG_TEMP_2
+ setflag FLAG_TEMP_3
+ setflag FLAG_TEMP_4
+ setflag FLAG_TEMP_5
+ setvar VAR_TEMP_E, 1
+ setvar VAR_TEMP_F, 1
+ end
+
+EventScript_1C4FA7:: @ 81C4FA7
+ setflag FLAG_TEMP_2
+ setflag FLAG_TEMP_4
+ setflag FLAG_TEMP_5
+ setvar VAR_TEMP_F, 1
+ setobjectxyperm 3, 15, 13
+ setobjectmovementtype 3, 9
+ goto EventScript_1C5042
+
+EventScript_1C4FC5:: @ 81C4FC5
+ setflag FLAG_TEMP_3
+ setflag FLAG_TEMP_4
+ setvar VAR_TEMP_E, 1
+ setvar VAR_0x8004, 5
+ special sub_815D9E8
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1C4FFE
+ setobjectxyperm 2, 10, 12
+ setobjectmovementtype 2, 9
+ setobjectxyperm 5, 10, 13
+ setobjectmovementtype 5, 9
+ goto EventScript_1C5042
+
+EventScript_1C4FFE:: @ 81C4FFE
+ setobjectxyperm 2, 10, 12
+ setobjectmovementtype 2, 8
+ setobjectxyperm 5, 11, 12
+ setobjectmovementtype 5, 8
+ goto EventScript_1C5042
+
+EventScript_1C5019:: @ 81C5019
+ setflag FLAG_TEMP_5
+ setvar VAR_TEMP_F, 1
+ setobjectxyperm 2, 10, 10
+ setobjectmovementtype 2, 8
+ setobjectxyperm 3, 14, 13
+ setobjectmovementtype 3, 9
+ setobjectxyperm 4, 10, 16
+ setobjectmovementtype 4, 7
+EventScript_1C5042:
+ setflag FLAG_TEMP_6
+ end
+
+SevenIsland_TrainerTower_1F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_2F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_3F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_4F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_5F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_6F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_7F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_8F_MapScript3_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_Elevator_MapScript2_1C5046:: @ 81C5046
+SevenIsland_TrainerTower_Roof_MapScript2_1C5046:: @ 81C5046
+ map_script_2 VAR_TEMP_2, 0, EventScript_1C5050
+ .2byte 0
+
+EventScript_1C5050:: @ 81C5050
+ setvar VAR_TEMP_2, 1
+ setvar VAR_0x8004, 5
+ special sub_815D9E8
+ compare VAR_RESULT, 0
+ goto_if_eq EventScript_1C5072
+ setvar VAR_TEMP_E, 1
+ setvar VAR_TEMP_F, 1
+EventScript_1C5072:
+ setvar VAR_0x8004, 18
+ special sub_815D9E8
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1C5086
+ end
+
+EventScript_1C5086:: @ 81C5086
+ warp MAP_SEVEN_ISLAND_TRAINER_TOWER_LOBBY, 255, 9, 7
+ waitstate
+EventScript_1C508F::
+ setvar VAR_0x8004, 3
+ setvar VAR_0x8005, 0
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C50C2
+ case 1, EventScript_1C510D
+ case 2, EventScript_1C515C
+EventScript_1C50C2:
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 3, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 3, Movement_Delay48
+ waitmovement 0
+ setvar VAR_TEMP_E, 1
+ applymovement 3, Movement_1C5541
+ waitmovement 0
+ setvar VAR_0x8004, 1
+ setvar VAR_0x8005, 2
+ setvar VAR_0x8006, 0
+ special sub_815D9E8
+ msgbox gStringVar4
+ closemessage
+ goto EventScript_1C5219
+
+EventScript_1C510D:: @ 81C510D
+ setvar VAR_0x8004, 1
+ setvar VAR_0x8005, 2
+ copyvar VAR_0x8006, VAR_TEMP_3
+ special sub_815D9E8
+ msgbox gStringVar4
+ setvar VAR_0x8004, 1
+ setvar VAR_0x8005, 2
+ addvar VAR_TEMP_3, 1
+ compare VAR_TEMP_3, 1
+ goto_if_eq EventScript_1C5146
+ setvar VAR_TEMP_3, 0
+EventScript_1C5146:
+ copyvar VAR_0x8006, VAR_TEMP_3
+ special sub_815D9E8
+ msgbox gStringVar4
+ closemessage
+ goto EventScript_1C5219
+
+EventScript_1C515C:: @ 81C515C
+ switch VAR_TEMP_1
+ case 0, EventScript_1C5182
+ case 1, EventScript_1C51AD
+ case 2, EventScript_1C51D8
+EventScript_1C5182:
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 4, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 4, Movement_Delay48
+ waitmovement 0
+ applymovement 4, Movement_1C5546
+ waitmovement 0
+ goto EventScript_1C51FE
+
+EventScript_1C51AD:: @ 81C51AD
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 2, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 2, Movement_Delay48
+ waitmovement 0
+ applymovement 2, Movement_1C5549
+ waitmovement 0
+ goto EventScript_1C51FE
+
+EventScript_1C51D8:: @ 81C51D8
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 3, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 3, Movement_Delay48
+ waitmovement 0
+ applymovement 3, Movement_1C5542
+ waitmovement 0
+EventScript_1C51FE:
+ setvar VAR_0x8004, 1
+ setvar VAR_0x8005, 2
+ copyvar VAR_0x8006, VAR_TEMP_1
+ special sub_815D9E8
+ msgbox gStringVar4
+ closemessage
+EventScript_1C5219:
+ setvar VAR_0x8004, 2
+ setvar VAR_0x8005, 0
+ special sub_815D9E8
+ waitstate
+ switch VAR_RESULT
+ case 1, EventScript_1C524D
+ case 2, EventScript_1C52E0
+ case 3, EventScript_1C52E0
+EventScript_1C524D:
+ setvar VAR_0x8004, 3
+ setvar VAR_0x8005, 0
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C52D7
+ case 1, EventScript_1C52BA
+ case 2, EventScript_1C5280
+EventScript_1C5280:
+ switch VAR_TEMP_1
+ case 0, EventScript_1C52A6
+ case 1, EventScript_1C52B0
+ case 2, EventScript_1C52D0
+EventScript_1C52A6:
+ addvar VAR_TEMP_1, 1
+ goto EventScript_1C515C
+
+EventScript_1C52B0:: @ 81C52B0
+ addvar VAR_TEMP_1, 1
+ goto EventScript_1C515C
+
+EventScript_1C52BA:: @ 81C52BA
+ applymovement 5, Movement_1C554C
+ waitmovement 0
+ applymovement 2, Movement_1C5550
+ goto EventScript_1C52D7
+
+EventScript_1C52D0:: @ 81C52D0
+ applymovement 3, Movement_1C554D
+EventScript_1C52D7:
+ setvar VAR_0x8004, 4
+ special sub_815D9E8
+ end
+
+EventScript_1C52E0:: @ 81C52E0
+ special HealPlayerParty
+ setvar VAR_0x8004, 11
+ special sub_815D9E8
+ warp MAP_SEVEN_ISLAND_TRAINER_TOWER_LOBBY, 255, 9, 7
+ waitstate
+
+EventScript_1C52F4:: @ 81C52F4
+ setvar VAR_0x8004, 3
+ setvar VAR_0x8005, 0
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C5327
+ case 1, EventScript_1C5327
+ case 2, EventScript_1C5331
+EventScript_1C5327:
+ setvar VAR_0x8006, 0
+ goto EventScript_1C5391
+
+EventScript_1C5331:: @ 81C5331
+ setvar VAR_0x8006, 1
+ goto EventScript_1C5391
+
+EventScript_1C533B:: @ 81C533B
+ setvar VAR_0x8004, 3
+ setvar VAR_0x8005, 0
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C536E
+ case 1, EventScript_1C536E
+ case 2, EventScript_1C5378
+EventScript_1C536E:
+ setvar VAR_0x8006, 0
+ goto EventScript_1C5391
+
+EventScript_1C5378:: @ 81C5378
+ setvar VAR_0x8006, 2
+ goto EventScript_1C5391
+
+EventScript_1C5382:: @ 81C5382
+ setvar VAR_0x8006, 0
+ goto EventScript_1C5391
+
+EventScript_1C538C:: @ 81C538C
+ setvar VAR_0x8006, 1
+EventScript_1C5391:
+ setvar VAR_0x8004, 1
+ setvar VAR_0x8005, 5
+ special sub_815D9E8
+ lock
+ faceplayer
+ msgbox gStringVar4
+ release
+ return
+
+EventScript_1C53AA:: @ 81C53AA
+ lock
+ faceplayer
+ setvar VAR_0x8004, 7
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C53DA
+ case 1, EventScript_1C53E2
+ case 2, EventScript_1C5492
+EventScript_1C53DA:
+ msgbox Text_17CA5A
+EventScript_1C53E2:
+ setvar VAR_0x8004, 8
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C5410
+ case 1, EventScript_1C543A
+ case 2, EventScript_1C544F
+EventScript_1C5410:
+ msgbox Text_17CB09
+ textcolor 3
+ playfanfare MUS_FANFA1
+ message Text_ObtainedTheX
+ waitfanfare
+ waitmessage
+ getstdstring 2, 24
+ msgbox Text_PutItemAway
+ call EventScript_1A6675
+ goto EventScript_1C544F
+
+EventScript_1C543A:: @ 81C543A
+ msgbox Text_17CB09
+ msgbox Text_BagIsFull
+ goto EventScript_1C544F
+
+EventScript_1C544F:: @ 81C544F
+ setvar VAR_0x8004, 9
+ special sub_815D9E8
+ switch VAR_RESULT
+ case 0, EventScript_1C547D
+ case 1, EventScript_1C548A
+ case 2, EventScript_1C5492
+EventScript_1C547D:
+ msgbox Text_17CB1A
+ goto EventScript_1C5492
+
+EventScript_1C548A:: @ 81C548A
+ msgbox Text_17CBC0
+EventScript_1C5492:
+ msgbox Text_17CBF5
+ release
+ return
+
+EventScript_1C549C:: @ 81C549C
+ lockall
+ setvar VAR_0x8004, 13
+ special sub_815D9E8
+ msgbox Text_17CC56
+ releaseall
+ end
+
+SevenIsland_TrainerTower_2F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_4F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_6F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_8F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_5F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_7F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_3F_EventScript_1C54AF:: @ 81C54AF
+SevenIsland_TrainerTower_1F_EventScript_1C54AF:: @ 81C54AF
+ goto EventScript_1C508F
+
+SevenIsland_TrainerTower_2F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_4F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_6F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_8F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_5F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_7F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_3F_EventScript_1C54B4:: @ 81C54B4
+SevenIsland_TrainerTower_1F_EventScript_1C54B4:: @ 81C54B4
+ setvar VAR_TEMP_3, 0
+ setvar VAR_0x8004, 16
+ special sub_815D9E8
+ compare VAR_RESULT, 0
+ goto_if_ne EventScript_1C5528
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 2, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 2, Movement_Delay48
+ goto EventScript_1C551B
+
+SevenIsland_TrainerTower_2F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_4F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_6F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_8F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_5F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_7F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_3F_EventScript_1C54EA:: @ 81C54EA
+SevenIsland_TrainerTower_1F_EventScript_1C54EA:: @ 81C54EA
+ setvar VAR_TEMP_3, 1
+ setvar VAR_0x8004, 16
+ special sub_815D9E8
+ compare VAR_RESULT, 0
+ goto_if_ne EventScript_1C5528
+ setvar VAR_0x8004, 19
+ special sub_815D9E8
+ applymovement 5, Movement_ExclamationMark
+ waitmovement 0
+ applymovement 5, Movement_Delay48
+EventScript_1C551B:
+ waitmovement 0
+ setvar VAR_TEMP_F, 1
+ goto EventScript_1C508F
+
+EventScript_1C5528:: @ 81C5528
+ lockall
+ playse SE_PINPON
+ msgbox Text_17CC73
+ closemessage
+ applymovement OBJ_EVENT_ID_PLAYER, Movement_1C5544
+ waitmovement 0
+ releaseall
+ end
+
+Movement_1C5541:
+ walk_left
+Movement_1C5542:: @ 81C5542
+ walk_left
+ walk_left
+Movement_1C5544:
+ walk_left
+ step_end
+
+Movement_1C5546:: @ 81C5546
+ walk_up
+ walk_up
+ step_end
+
+Movement_1C5549:: @ 81C5549
+ walk_down
+ walk_down
+ step_end
+
+Movement_1C554C:: @ 81C554C
+ walk_right
+Movement_1C554D:
+ walk_up
+ face_down
+ step_end
+
+Movement_1C5550:: @ 81C5550
+ face_down
+ step_end
diff --git a/data/scripts/trainers.inc b/data/scripts/trainers.inc
new file mode 100644
index 000000000..d08364a6a
--- /dev/null
+++ b/data/scripts/trainers.inc
@@ -0,0 +1,3041 @@
+Route3_EventScript_1A93C9:: @ 81A93C9
+ trainerbattle_single TRAINER_YOUNGSTER_BEN, Text_183560, Text_1835A0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A93F0
+ msgbox Text_1835B4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A93F0:: @ 81A93F0
+ trainerbattle_rematch TRAINER_YOUNGSTER_BEN, Text_1C149D, Text_1835A0
+ msgbox Text_1835B4, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A9407:: @ 81A9407
+ trainerbattle_single TRAINER_YOUNGSTER_CALVIN, Text_183786, Text_1837BD
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A942E
+ msgbox Text_1837CF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A942E:: @ 81A942E
+ trainerbattle_rematch TRAINER_YOUNGSTER_CALVIN, Text_1C1588, Text_1837BD
+ msgbox Text_1837CF, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A9445:: @ 81A9445
+ trainerbattle_single TRAINER_BUG_CATCHER_COLTON, Text_1834E6, Text_183509
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A946C
+ msgbox Text_18351C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A946C:: @ 81A946C
+ trainerbattle_rematch TRAINER_BUG_CATCHER_COLTON, Text_1C147A, Text_183509
+ msgbox Text_18351C, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A9483:: @ 81A9483
+ trainerbattle_single TRAINER_BUG_CATCHER_GREG, Text_183682, Text_1836B3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A94AA
+ msgbox Text_1836D9, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A94AA:: @ 81A94AA
+ trainerbattle_rematch TRAINER_BUG_CATCHER_GREG, Text_1C1521, Text_1836B3
+ msgbox Text_1836D9, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A94C1:: @ 81A94C1
+ trainerbattle_single TRAINER_BUG_CATCHER_JAMES, Text_183807, Text_183837
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A94E8
+ msgbox Text_183849, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A94E8:: @ 81A94E8
+ trainerbattle_rematch TRAINER_BUG_CATCHER_JAMES, Text_1C15C5, Text_183837
+ msgbox Text_183849, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A94FF:: @ 81A94FF
+ trainerbattle_single TRAINER_LASS_JANICE, Text_183616, Text_18363F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9526
+ msgbox Text_18364C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9526:: @ 81A9526
+ trainerbattle_rematch TRAINER_LASS_JANICE, Text_1C14F3, Text_18363F
+ msgbox Text_18364C, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A953D:: @ 81A953D
+ trainerbattle_single TRAINER_LASS_SALLY, Text_18371B, Text_183746
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9564
+ msgbox Text_18374F, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9564:: @ 81A9564
+ trainerbattle_rematch TRAINER_LASS_SALLY, Text_1C155D, Text_183746
+ msgbox Text_18374F, MSGBOX_AUTOCLOSE
+ end
+
+Route3_EventScript_1A957B:: @ 81A957B
+ trainerbattle_single TRAINER_LASS_ROBIN, Text_18387A, Text_183891
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A95A2
+ msgbox Text_18389C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A95A2:: @ 81A95A2
+ trainerbattle_rematch TRAINER_LASS_ROBIN, Text_1C15F9, Text_183891
+ msgbox Text_18389C, MSGBOX_AUTOCLOSE
+ end
+
+Route4_EventScript_1A95B9:: @ 81A95B9
+ trainerbattle_single TRAINER_LASS_CRISSY, Text_183906, Text_183938
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A95E0
+ msgbox Text_183957, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A95E0:: @ 81A95E0
+ trainerbattle_rematch TRAINER_LASS_CRISSY, Text_1C160F, Text_183938
+ msgbox Text_183957, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A95F7:: @ 81A95F7
+ trainerbattle_single TRAINER_YOUNGSTER_TIMMY, Text_188F76, Text_188F95
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A961E
+ msgbox Text_188FA7, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A961E:: @ 81A961E
+ trainerbattle_rematch TRAINER_YOUNGSTER_TIMMY, Text_1C3657, Text_188F95
+ msgbox Text_188FA7, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A9635:: @ 81A9635
+ trainerbattle_single TRAINER_BUG_CATCHER_CALE, Text_18901B, Text_18908C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A965C
+ msgbox Text_18909E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A965C:: @ 81A965C
+ trainerbattle_rematch TRAINER_BUG_CATCHER_CALE, Text_1C36DA, Text_18908C
+ msgbox Text_18909E, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A9673:: @ 81A9673
+ trainerbattle_single TRAINER_LASS_RELI, Text_188F2C, Text_188F46
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A969A
+ msgbox Text_188F53, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A969A:: @ 81A969A
+ trainerbattle_rematch TRAINER_LASS_RELI, Text_1C3624, Text_188F46
+ msgbox Text_188F53, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A96B1:: @ 81A96B1
+ trainerbattle_single TRAINER_LASS_ALI, Text_188FC9, Text_188FE7
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A96D8
+ msgbox Text_188FF9, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A96D8:: @ 81A96D8
+ trainerbattle_rematch TRAINER_LASS_ALI, Text_1C3685, Text_188FE7
+ msgbox Text_188FF9, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A96EF:: @ 81A96EF
+ trainerbattle_single TRAINER_CAMPER_SHANE, Text_188E74, Text_188E94
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9716
+ msgbox Text_188EA3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9716:: @ 81A9716
+ trainerbattle_rematch TRAINER_CAMPER_SHANE, Text_1C35EE, Text_188E94
+ msgbox Text_188EA3, MSGBOX_AUTOCLOSE
+ end
+
+Route24_EventScript_1A972D:: @ 81A972D
+ trainerbattle_single TRAINER_CAMPER_ETHAN, Text_188ED9, Text_188EFA
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9754
+ msgbox Text_188F0A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9754:: @ 81A9754
+ trainerbattle_rematch TRAINER_CAMPER_ETHAN, Text_1C360E, Text_188EFA
+ msgbox Text_188F0A, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A976B:: @ 81A976B
+ trainerbattle_single TRAINER_YOUNGSTER_JOEY, Text_1890C0, Text_1890E6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9792
+ msgbox Text_1890F5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9792:: @ 81A9792
+ trainerbattle_rematch TRAINER_YOUNGSTER_JOEY, Text_1C33E7, Text_1890E6
+ msgbox Text_1890F5, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A97A9:: @ 81A97A9
+ trainerbattle_single TRAINER_YOUNGSTER_DAN, Text_189165, Text_1891A6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A97D0
+ msgbox Text_1891B3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A97D0:: @ 81A97D0
+ trainerbattle_rematch TRAINER_YOUNGSTER_DAN, Text_1C3404, Text_1891A6
+ msgbox Text_1891B3, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A97E7:: @ 81A97E7
+ trainerbattle_single TRAINER_YOUNGSTER_CHAD, Text_1892A9, Text_1892D9
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A980E
+ msgbox Text_1892EF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A980E:: @ 81A980E
+ trainerbattle_rematch TRAINER_YOUNGSTER_CHAD, Text_1C34D4, Text_1892D9
+ msgbox Text_1892EF, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A9825:: @ 81A9825
+ trainerbattle_single TRAINER_PICNICKER_KELSEY, Text_189247, Text_189261
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A984C
+ msgbox Text_189281, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A984C:: @ 81A984C
+ trainerbattle_rematch TRAINER_PICNICKER_KELSEY, Text_1C349C, Text_189261
+ msgbox Text_189281, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A9863:: @ 81A9863
+ trainerbattle_single TRAINER_LASS_HALEY, Text_189333, Text_189364
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A988A
+ msgbox Text_189378, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A988A:: @ 81A988A
+ trainerbattle_rematch TRAINER_LASS_HALEY, Text_1C350A, Text_189364
+ msgbox Text_189378, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A98A1:: @ 81A98A1
+ trainerbattle_single TRAINER_HIKER_FRANKLIN, Text_1893A7, Text_1893EA
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A98C8
+ msgbox Text_1893FB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A98C8:: @ 81A98C8
+ trainerbattle_rematch TRAINER_HIKER_FRANKLIN, Text_1C353B, Text_1893EA
+ msgbox Text_1893FB, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A98DF:: @ 81A98DF
+ trainerbattle_single TRAINER_HIKER_NOB, Text_189423, Text_189459
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9906
+ msgbox Text_18947E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9906:: @ 81A9906
+ trainerbattle_rematch TRAINER_HIKER_NOB, Text_1C357E, Text_189459
+ msgbox Text_18947E, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A991D:: @ 81A991D
+ trainerbattle_single TRAINER_HIKER_WAYNE, Text_1894DE, Text_18950A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9944
+ msgbox Text_18951C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9944:: @ 81A9944
+ trainerbattle_rematch TRAINER_HIKER_WAYNE, Text_1C35BC, Text_18950A
+ msgbox Text_18951C, MSGBOX_AUTOCLOSE
+ end
+
+Route25_EventScript_1A995B:: @ 81A995B
+ trainerbattle_single TRAINER_CAMPER_FLINT, Text_1891EB, Text_189212
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9982
+ msgbox Text_18921D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9982:: @ 81A9982
+ trainerbattle_rematch TRAINER_CAMPER_FLINT, Text_1C3445, Text_189212
+ msgbox Text_18921D, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A9999:: @ 81A9999
+ trainerbattle_single TRAINER_BUG_CATCHER_KEIGO, Text_183E9F, Text_183EC0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A99C0
+ msgbox Text_183ED4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A99C0:: @ 81A99C0
+ trainerbattle_rematch TRAINER_BUG_CATCHER_KEIGO, Text_1C16E2, Text_183EC0
+ msgbox Text_183ED4, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A99D7:: @ 81A99D7
+ trainerbattle_single TRAINER_BUG_CATCHER_ELIJAH, Text_183FF0, Text_18401A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A99FE
+ msgbox Text_18402B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A99FE:: @ 81A99FE
+ trainerbattle_rematch TRAINER_BUG_CATCHER_ELIJAH, Text_1C176B, Text_18401A
+ msgbox Text_18402B, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A9A15:: @ 81A9A15
+ trainerbattle_single TRAINER_CAMPER_RICKY, Text_183E04, Text_183E2A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9A3C
+ msgbox Text_183E3C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9A3C:: @ 81A9A3C
+ trainerbattle_rematch TRAINER_CAMPER_RICKY, Text_1C163C, Text_183E2A
+ msgbox Text_183E3C, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A9A53:: @ 81A9A53
+ trainerbattle_single TRAINER_CAMPER_JEFF, Text_183F07, Text_183F24
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9A7A
+ msgbox Text_183F51, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9A7A:: @ 81A9A7A
+ trainerbattle_rematch TRAINER_CAMPER_JEFF, Text_1C1723, Text_183F24
+ msgbox Text_183F51, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A9A91:: @ 81A9A91
+ trainerbattle_single TRAINER_PICNICKER_NANCY, Text_183E4E, Text_183E79
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9AB8
+ msgbox Text_183E8D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9AB8:: @ 81A9AB8
+ trainerbattle_rematch TRAINER_PICNICKER_NANCY, Text_1C166D, Text_183E79
+ msgbox Text_183E8D, MSGBOX_AUTOCLOSE
+ end
+
+Route6_EventScript_1A9ACF:: @ 81A9ACF
+ trainerbattle_single TRAINER_PICNICKER_ISABELLE, Text_183F90, Text_183FAB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9AF6
+ msgbox Text_183FC4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9AF6:: @ 81A9AF6
+ trainerbattle_rematch TRAINER_PICNICKER_ISABELLE, Text_1C1746, Text_183FAB
+ msgbox Text_183FC4, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9B0D:: @ 81A9B0D
+ trainerbattle_single TRAINER_YOUNGSTER_EDDIE, Text_184FBD, Text_184FD8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9B34
+ msgbox Text_184FEF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9B34:: @ 81A9B34
+ trainerbattle_rematch TRAINER_YOUNGSTER_EDDIE, Text_1C1DB5, Text_184FD8
+ msgbox Text_184FEF, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9B4B:: @ 81A9B4B
+ trainerbattle_single TRAINER_YOUNGSTER_DILLON, Text_18506A, Text_18509B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9B72
+ msgbox Text_1850CF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9B72:: @ 81A9B72
+ trainerbattle_rematch TRAINER_YOUNGSTER_DILLON, Text_1C1E1F, Text_18509B
+ msgbox Text_1850CF, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9B89:: @ 81A9B89
+ trainerbattle_single TRAINER_YOUNGSTER_YASU, Text_18517B, Text_1851AC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9BB0
+ msgbox Text_1851D2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9BB0:: @ 81A9BB0
+ trainerbattle_rematch TRAINER_YOUNGSTER_YASU, Text_1C1EE2, Text_1851AC
+ msgbox Text_1851D2, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9BC7:: @ 81A9BC7
+ trainerbattle_single TRAINER_YOUNGSTER_DAVE, Text_185285, Text_1852C1
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9BEE
+ msgbox Text_1852E3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9BEE:: @ 81A9BEE
+ trainerbattle_rematch TRAINER_YOUNGSTER_DAVE, Text_1C1F40, Text_1852C1
+ msgbox Text_1852E3, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9C05:: @ 81A9C05
+ trainerbattle_single TRAINER_ENGINEER_BRAXTON, Text_185011, Text_185037
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9C2C
+ msgbox Text_18504A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9C2C:: @ 81A9C2C
+ trainerbattle_rematch TRAINER_ENGINEER_BRAXTON, Text_1C1DE1, Text_185037
+ msgbox Text_18504A, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9C43:: @ 81A9C43
+ trainerbattle_single TRAINER_ENGINEER_BERNIE, Text_185236, Text_185250
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9C6A
+ msgbox Text_185266, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9C6A:: @ 81A9C6A
+ trainerbattle_rematch TRAINER_ENGINEER_BERNIE, Text_1C1F1D, Text_185250
+ msgbox Text_185266, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9C81:: @ 81A9C81
+ trainerbattle_single TRAINER_GAMER_HUGO, Text_184F01, Text_184F15
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9CA8
+ msgbox Text_184F2E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9CA8:: @ 81A9CA8
+ trainerbattle_rematch TRAINER_GAMER_HUGO, Text_1C1D50, Text_184F15
+ msgbox Text_184F2E, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9CBF:: @ 81A9CBF
+ trainerbattle_single TRAINER_GAMER_JASPER, Text_184F5D, Text_184F7E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9CE6
+ msgbox Text_184F8E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9CE6:: @ 81A9CE6
+ trainerbattle_rematch TRAINER_GAMER_JASPER, Text_1C1D79, Text_184F7E
+ msgbox Text_184F8E, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9CFD:: @ 81A9CFD
+ trainerbattle_single TRAINER_GAMER_DIRK, Text_1850E9, Text_185105
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9D24
+ msgbox Text_185114, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9D24:: @ 81A9D24
+ trainerbattle_rematch TRAINER_GAMER_DIRK, Text_1C1E57, Text_185105
+ msgbox Text_185114, MSGBOX_AUTOCLOSE
+ end
+
+Route11_EventScript_1A9D3B:: @ 81A9D3B
+ trainerbattle_single TRAINER_GAMER_DARIAN, Text_185135, Text_18514E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9D62
+ msgbox Text_185161, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9D62:: @ 81A9D62
+ trainerbattle_rematch TRAINER_GAMER_DARIAN, Text_1C1E9F, Text_18514E
+ msgbox Text_185161, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9D79:: @ 81A9D79
+ trainerbattle_single TRAINER_BUG_CATCHER_BRENT, Text_184A2F, Text_184A6A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9DA0
+ msgbox Text_184A8C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9DA0:: @ 81A9DA0
+ trainerbattle_rematch TRAINER_BUG_CATCHER_BRENT, Text_1C1B83, Text_184A6A
+ msgbox Text_184A8C, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9DB7:: @ 81A9DB7
+ trainerbattle_single TRAINER_BUG_CATCHER_CONNER, Text_184B18, Text_184B32
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9DDE
+ msgbox Text_184B3B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9DDE:: @ 81A9DDE
+ trainerbattle_rematch TRAINER_BUG_CATCHER_CONNER, Text_1C1BDC, Text_184B32
+ msgbox Text_184B3B, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9DF5:: @ 81A9DF5
+ trainerbattle_single TRAINER_CAMPER_CHRIS, Text_184844, Text_18487E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9E1C
+ msgbox Text_184890, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9E1C:: @ 81A9E1C
+ trainerbattle_rematch TRAINER_CAMPER_CHRIS, Text_1C1A5D, Text_18487E
+ msgbox Text_184890, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9E33:: @ 81A9E33
+ trainerbattle_single TRAINER_CAMPER_DREW, Text_18489E, Text_1848CC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9E5A
+ msgbox Text_1848DE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9E5A:: @ 81A9E5A
+ trainerbattle_rematch TRAINER_CAMPER_DREW, Text_1C1A9B, Text_1848CC
+ msgbox Text_1848DE, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9E71:: @ 81A9E71
+ trainerbattle_single TRAINER_PICNICKER_ALICIA, Text_1847B7, Text_1847DF
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9E98
+ msgbox Text_1847F0, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9E98:: @ 81A9E98
+ trainerbattle_rematch TRAINER_PICNICKER_ALICIA, Text_1C1A2E, Text_1847DF
+ msgbox Text_1847F0, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9EAF:: @ 81A9EAF
+ trainerbattle_single TRAINER_PICNICKER_CAITLIN, Text_1848FF, Text_18491C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9ED6
+ msgbox Text_184931, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9ED6:: @ 81A9ED6
+ trainerbattle_rematch TRAINER_PICNICKER_CAITLIN, Text_1C1AFB, Text_18491C
+ msgbox Text_184931, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9EED:: @ 81A9EED
+ trainerbattle_single TRAINER_HIKER_ALAN, Text_184ABE, Text_184AD5
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9F14
+ msgbox Text_184AF1, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9F14:: @ 81A9F14
+ trainerbattle_rematch TRAINER_HIKER_ALAN, Text_1C1BBE, Text_184AD5
+ msgbox Text_184AF1, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9F2B:: @ 81A9F2B
+ trainerbattle_single TRAINER_HIKER_BRICE, Text_1849DF, Text_184A04
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9F52
+ msgbox Text_184A11, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9F52:: @ 81A9F52
+ trainerbattle_rematch TRAINER_HIKER_BRICE, Text_1C1B5E, Text_184A04
+ msgbox Text_184A11, MSGBOX_AUTOCLOSE
+ end
+
+Route9_EventScript_1A9F69:: @ 81A9F69
+ trainerbattle_single TRAINER_HIKER_JEREMY, Text_18495E, Text_18497F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9F90
+ msgbox Text_1849B0, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9F90:: @ 81A9F90
+ trainerbattle_rematch TRAINER_HIKER_JEREMY, Text_1C1B37, Text_18497F
+ msgbox Text_1849B0, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1A9FA7:: @ 81A9FA7
+ trainerbattle_single TRAINER_PICNICKER_HEIDI, Text_184CF1, Text_184D31
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1A9FCE
+ msgbox Text_184D4D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1A9FCE:: @ 81A9FCE
+ trainerbattle_rematch TRAINER_PICNICKER_HEIDI, Text_1C1C9A, Text_184D31
+ msgbox Text_184D4D, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1A9FE5:: @ 81A9FE5
+ trainerbattle_single TRAINER_PICNICKER_CAROL, Text_184E04, Text_184E3B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA00C
+ msgbox Text_184E5E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA00C:: @ 81AA00C
+ trainerbattle_rematch TRAINER_PICNICKER_CAROL, Text_1C1D14, Text_184E3B
+ msgbox Text_184E5E, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1AA023:: @ 81AA023
+ trainerbattle_single TRAINER_POKEMANIAC_MARK, Text_184B8A, Text_184BE5
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA04A
+ msgbox Text_184BFB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA04A:: @ 81AA04A
+ trainerbattle_rematch TRAINER_POKEMANIAC_MARK, Text_1C1BFA, Text_184BE5
+ msgbox Text_184BFB, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1AA061:: @ 81AA061
+ trainerbattle_single TRAINER_POKEMANIAC_HERMAN, Text_184C86, Text_184CA7
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA088
+ msgbox Text_184CBB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA088:: @ 81AA088
+ trainerbattle_rematch TRAINER_POKEMANIAC_HERMAN, Text_1C1C76, Text_184CA7
+ msgbox Text_184CBB, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1AA09F:: @ 81AA09F
+ trainerbattle_single TRAINER_HIKER_CLARK, Text_184C1D, Text_184C2D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA0C6
+ msgbox Text_184C60, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA0C6:: @ 81AA0C6
+ trainerbattle_rematch TRAINER_HIKER_CLARK, Text_1C1C4F, Text_184C2D
+ msgbox Text_184C60, MSGBOX_AUTOCLOSE
+ end
+
+Route10_EventScript_1AA0DD:: @ 81AA0DD
+ trainerbattle_single TRAINER_HIKER_TRENT, Text_184DAA, Text_184DCE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA104
+ msgbox Text_184DE4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA104:: @ 81AA104
+ trainerbattle_rematch TRAINER_HIKER_TRENT, Text_1C1CD3, Text_184DCE
+ msgbox Text_184DE4, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA11B:: @ 81AA11B
+ trainerbattle_single TRAINER_LASS_PAIGE, Text_1841ED, Text_184210
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA142
+ msgbox Text_18421B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA142:: @ 81AA142
+ trainerbattle_rematch TRAINER_LASS_PAIGE, Text_1C1834, Text_184210
+ msgbox Text_18421B, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA159:: @ 81AA159
+ trainerbattle_single TRAINER_LASS_ANDREA, Text_184321, Text_184346
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA180
+ msgbox Text_184350, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA180:: @ 81AA180
+ trainerbattle_rematch TRAINER_LASS_ANDREA, Text_1C18AA, Text_184346
+ msgbox Text_184350, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA197:: @ 81AA197
+ trainerbattle_single TRAINER_LASS_MEGAN, Text_18437A, Text_1843A6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA1BE
+ msgbox Text_1843D2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA1BE:: @ 81AA1BE
+ trainerbattle_rematch TRAINER_LASS_MEGAN, Text_1C18DC, Text_1843A6
+ msgbox Text_1843D2, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA1D5:: @ 81AA1D5
+ trainerbattle_single TRAINER_LASS_JULIA, Text_1844AC, Text_1844D6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA1FC
+ msgbox Text_1844FD, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA1FC:: @ 81AA1FC
+ trainerbattle_rematch TRAINER_LASS_JULIA, Text_1C1955, Text_1844D6
+ msgbox Text_1844FD, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA213:: @ 81AA213
+ trainerbattle_single TRAINER_SUPER_NERD_AIDAN, Text_1840C5, Text_184100
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA23A
+ msgbox Text_18410E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA23A:: @ 81AA23A
+ trainerbattle_rematch TRAINER_SUPER_NERD_AIDAN, Text_1C1793, Text_184100
+ msgbox Text_18410E, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA251:: @ 81AA251
+ trainerbattle_single TRAINER_SUPER_NERD_GLENN, Text_18417C, Text_1841B6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA278
+ msgbox Text_1841C8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA278:: @ 81AA278
+ trainerbattle_rematch TRAINER_SUPER_NERD_GLENN, Text_1C17F1, Text_1841B6
+ msgbox Text_1841C8, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA28F:: @ 81AA28F
+ trainerbattle_single TRAINER_SUPER_NERD_LESLIE, Text_184257, Text_18427A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA2B6
+ msgbox Text_1842B3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA2B6:: @ 81AA2B6
+ trainerbattle_rematch TRAINER_SUPER_NERD_LESLIE, Text_1C1873, Text_18427A
+ msgbox Text_1842B3, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA2CD:: @ 81AA2CD
+ trainerbattle_single TRAINER_GAMER_STAN, Text_18412F, Text_18414D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA2F4
+ msgbox Text_184162, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA2F4:: @ 81AA2F4
+ trainerbattle_rematch TRAINER_GAMER_STAN, Text_1C17CD, Text_18414D
+ msgbox Text_184162, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA30B:: @ 81AA30B
+ trainerbattle_single TRAINER_GAMER_RICH, Text_184432, Text_18444F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA332
+ msgbox Text_184466, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA332:: @ 81AA332
+ trainerbattle_rematch TRAINER_GAMER_RICH, Text_1C191F, Text_18444F
+ msgbox Text_184466, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA349:: @ 81AA349
+ trainerbattle_double TRAINER_TWINS_ELI_ANNE, Text_1845A4, Text_1845D0, Text_184616
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA374
+ msgbox Text_1845F2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA374:: @ 81AA374
+ trainerbattle_rematch_double TRAINER_TWINS_ELI_ANNE, Text_1C19E5, Text_1845D0, Text_184616
+ msgbox Text_1845F2, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA38F:: @ 81AA38F
+ trainerbattle_double TRAINER_TWINS_ELI_ANNE, Text_18464A, Text_184675, Text_1846AF
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA3BA
+ msgbox Text_18468B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA3BA:: @ 81AA3BA
+ trainerbattle_rematch_double TRAINER_TWINS_ELI_ANNE, Text_1C1A0D, Text_184675, Text_1846AF
+ msgbox Text_18468B, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA3D5:: @ 81AA3D5
+ trainerbattle_single TRAINER_BIKER_RICARDO, Text_1846E2, Text_1846FC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA3FC
+ msgbox Text_184719, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA3FC:: @ 81AA3FC
+ trainerbattle_rematch TRAINER_BIKER_RICARDO, Text_1C199C, Text_1846FC
+ msgbox Text_184719, MSGBOX_AUTOCLOSE
+ end
+
+Route8_EventScript_1AA413:: @ 81AA413
+ trainerbattle_single TRAINER_BIKER_JAREN, Text_184742, Text_184767
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA43A
+ msgbox Text_18477A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA43A:: @ 81AA43A
+ trainerbattle_rematch TRAINER_BIKER_JAREN, Text_1C19BC, Text_184767
+ msgbox Text_18477A, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA451:: @ 81AA451
+ trainerbattle_single TRAINER_FISHERMAN_NED, Text_185402, Text_18541B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA478
+ msgbox Text_185432, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA478:: @ 81AA478
+ trainerbattle_rematch TRAINER_FISHERMAN_NED, Text_1C1F9D, Text_18541B
+ msgbox Text_185432, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA48F:: @ 81AA48F
+ trainerbattle_single TRAINER_FISHERMAN_CHIP, Text_18544E, Text_185475
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA4B6
+ msgbox Text_185488, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA4B6:: @ 81AA4B6
+ trainerbattle_rematch TRAINER_FISHERMAN_CHIP, Text_1C1FD8, Text_185475
+ msgbox Text_185488, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA4CD:: @ 81AA4CD
+ trainerbattle_single TRAINER_FISHERMAN_HANK, Text_1855E1, Text_185606
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA4F4
+ msgbox Text_185616, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA4F4:: @ 81AA4F4
+ trainerbattle_rematch TRAINER_FISHERMAN_HANK, Text_1C209C, Text_185606
+ msgbox Text_185616, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA50B:: @ 81AA50B
+ trainerbattle_single TRAINER_FISHERMAN_ELLIOT, Text_185682, Text_1856D0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA532
+ msgbox Text_1856DF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA532:: @ 81AA532
+ trainerbattle_rematch TRAINER_FISHERMAN_ELLIOT, Text_1C20D4, Text_1856D0
+ msgbox Text_1856DF, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA549:: @ 81AA549
+ trainerbattle_single TRAINER_FISHERMAN_ANDREW, Text_18570E, Text_185744
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA570
+ msgbox Text_18574D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA570:: @ 81AA570
+ trainerbattle_rematch TRAINER_FISHERMAN_ANDREW, Text_1C2134, Text_185744
+ msgbox Text_18574D, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA587:: @ 81AA587
+ trainerbattle_single TRAINER_ROCKER_LUCA, Text_185547, Text_18559B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA5AE
+ msgbox Text_1855A6, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA5AE:: @ 81AA5AE
+ trainerbattle_rematch TRAINER_ROCKER_LUCA, Text_1C203B, Text_18559B
+ msgbox Text_1855A6, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA5C5:: @ 81AA5C5
+ trainerbattle_single TRAINER_CAMPER_JUSTIN, Text_1854B9, Text_1854ED
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA5EC
+ msgbox Text_1854F2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA5EC:: @ 81AA5EC
+ trainerbattle_rematch TRAINER_CAMPER_JUSTIN, Text_1C2008, Text_1854ED
+ msgbox Text_1854F2, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA603:: @ 81AA603
+ trainerbattle_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1857C5, Text_1857F1, Text_185842
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA62E
+ msgbox Text_18581F, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA62E:: @ 81AA62E
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1C216B, Text_1857F1, Text_185842
+ msgbox Text_18581F, MSGBOX_AUTOCLOSE
+ end
+
+Route12_EventScript_1AA649:: @ 81AA649
+ trainerbattle_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1858A6, Text_1858D0, Text_185908
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA674
+ msgbox Text_1858E2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA674:: @ 81AA674
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_GIA_JES, Text_1C219B, Text_1858D0, Text_185908
+ msgbox Text_1858E2, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA68F:: @ 81AA68F
+ trainerbattle_single TRAINER_BIKER_JARED, Text_185D05, Text_185D1D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA6B6
+ msgbox Text_185D33, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA6B6:: @ 81AA6B6
+ trainerbattle_rematch TRAINER_BIKER_JARED, Text_1C236B, Text_185D1D
+ msgbox Text_185D33, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA6CD:: @ 81AA6CD
+ trainerbattle_single TRAINER_BEAUTY_LOLA, Text_185BFC, Text_185C1F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA6F4
+ msgbox Text_185C35, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA6F4:: @ 81AA6F4
+ trainerbattle_rematch TRAINER_BEAUTY_LOLA, Text_1C2306, Text_185C1F
+ msgbox Text_185C35, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA70B:: @ 81AA70B
+ trainerbattle_single TRAINER_BEAUTY_SHEILA, Text_185C69, Text_185C95
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA732
+ msgbox Text_185CA8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA732:: @ 81AA732
+ trainerbattle_rematch TRAINER_BEAUTY_SHEILA, Text_1C2340, Text_185C95
+ msgbox Text_185CA8, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA749:: @ 81AA749
+ trainerbattle_single TRAINER_BIRD_KEEPER_SEBASTIAN, Text_185955, Text_18597E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA770
+ msgbox Text_1859A2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA770:: @ 81AA770
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_SEBASTIAN, Text_1C21EE, Text_18597E
+ msgbox Text_1859A2, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA787:: @ 81AA787
+ trainerbattle_single TRAINER_BIRD_KEEPER_PERRY, Text_185B8F, Text_185BCA
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA7AE
+ msgbox Text_185BDB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA7AE:: @ 81AA7AE
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_PERRY, Text_1C22CA, Text_185BCA
+ msgbox Text_185BDB, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA7C5:: @ 81AA7C5
+ trainerbattle_single TRAINER_BIRD_KEEPER_ROBERT, Text_185D3D, Text_185D7B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA7EC
+ msgbox Text_185D89, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA7EC:: @ 81AA7EC
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_ROBERT, Text_1C2383, Text_185D7B
+ msgbox Text_185D89, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA803:: @ 81AA803
+ trainerbattle_single TRAINER_PICNICKER_ALMA, Text_185B12, Text_185B48
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA82A
+ msgbox Text_185B67, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA82A:: @ 81AA82A
+ trainerbattle_rematch TRAINER_PICNICKER_ALMA, Text_1C2299, Text_185B48
+ msgbox Text_185B67, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA841:: @ 81AA841
+ trainerbattle_single TRAINER_PICNICKER_SUSIE, Text_1859CF, Text_1859EC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA868
+ msgbox Text_1859F9, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA868:: @ 81AA868
+ trainerbattle_rematch TRAINER_PICNICKER_SUSIE, Text_1C220C, Text_1859EC
+ msgbox Text_1859F9, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA87F:: @ 81AA87F
+ trainerbattle_single TRAINER_PICNICKER_VALERIE, Text_185A37, Text_185A56
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA8A6
+ msgbox Text_185A62, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA8A6:: @ 81AA8A6
+ trainerbattle_rematch TRAINER_PICNICKER_VALERIE, Text_1C223C, Text_185A56
+ msgbox Text_185A62, MSGBOX_AUTOCLOSE
+ end
+
+Route13_EventScript_1AA8BD:: @ 81AA8BD
+ trainerbattle_single TRAINER_PICNICKER_GWEN, Text_185A91, Text_185AC1
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA8E4
+ msgbox Text_185ADE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA8E4:: @ 81AA8E4
+ trainerbattle_rematch TRAINER_PICNICKER_GWEN, Text_1C225B, Text_185AC1
+ msgbox Text_185ADE, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AA8FB:: @ 81AA8FB
+ trainerbattle_single TRAINER_BIKER_MALIK, Text_186344, Text_186362
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA922
+ msgbox Text_18636E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA922:: @ 81AA922
+ trainerbattle_rematch TRAINER_BIKER_MALIK, Text_1C25D6, Text_186362
+ msgbox Text_18636E, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AA939:: @ 81AA939
+ trainerbattle_single TRAINER_BIKER_LUKAS, Text_1861F7, Text_186223
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA960
+ msgbox Text_186239, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA960:: @ 81AA960
+ trainerbattle_rematch TRAINER_BIKER_LUKAS, Text_1C2531, Text_186223
+ msgbox Text_186239, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AA977:: @ 81AA977
+ trainerbattle_single TRAINER_BIKER_ISAAC, Text_186263, Text_186291
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA99E
+ msgbox Text_18629D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA99E:: @ 81AA99E
+ trainerbattle_rematch TRAINER_BIKER_ISAAC, Text_1C2572, Text_186291
+ msgbox Text_18629D, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AA9B5:: @ 81AA9B5
+ trainerbattle_single TRAINER_BIKER_GERALD, Text_1862BD, Text_1862EF
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AA9DC
+ msgbox Text_1862F8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AA9DC:: @ 81AA9DC
+ trainerbattle_rematch TRAINER_BIKER_GERALD, Text_1C259E, Text_1862EF
+ msgbox Text_1862F8, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AA9F3:: @ 81AA9F3
+ trainerbattle_single TRAINER_BIRD_KEEPER_DONALD, Text_1860D9, Text_18610A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAA1A
+ msgbox Text_18611D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAA1A:: @ 81AAA1A
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_DONALD, Text_1C24CB, Text_18610A
+ msgbox Text_18611D, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAA31:: @ 81AAA31
+ trainerbattle_single TRAINER_BIRD_KEEPER_BENNY, Text_18618E, Text_1861B3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAA58
+ msgbox Text_1861BE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAA58:: @ 81AAA58
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_BENNY, Text_1C2505, Text_1861B3
+ msgbox Text_1861BE, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAA6F:: @ 81AAA6F
+ trainerbattle_single TRAINER_BIRD_KEEPER_CARTER, Text_185E4D, Text_185E81
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAA96
+ msgbox Text_185E9C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAA96:: @ 81AAA96
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_CARTER, Text_1C23C1, Text_185E81
+ msgbox Text_185E9C, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAAAD:: @ 81AAAAD
+ trainerbattle_single TRAINER_BIRD_KEEPER_MITCH, Text_185EDF, Text_185F0B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAAD4
+ msgbox Text_185F1A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAAD4:: @ 81AAAD4
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_MITCH, Text_1C23EF, Text_185F0B
+ msgbox Text_185F1A, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAAEB:: @ 81AAAEB
+ trainerbattle_single TRAINER_BIRD_KEEPER_BECK, Text_185F46, Text_185FAE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAB12
+ msgbox Text_185FBB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAB12:: @ 81AAB12
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_BECK, Text_1C2425, Text_185FAE
+ msgbox Text_185FBB, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAB29:: @ 81AAB29
+ trainerbattle_single TRAINER_BIRD_KEEPER_MARLON, Text_186021, Text_18607C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAB50
+ msgbox Text_186091, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAB50:: @ 81AAB50
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_MARLON, Text_1C2461, Text_18607C
+ msgbox Text_186091, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AAB67:: @ 81AAB67
+ trainerbattle_double TRAINER_TWINS_KIRI_JAN, Text_1863B7, Text_1863EA, Text_18642E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAB92
+ msgbox Text_18640D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAB92:: @ 81AAB92
+ trainerbattle_rematch_double TRAINER_TWINS_KIRI_JAN, Text_1C25FB, Text_1863EA, Text_18642E
+ msgbox Text_18640D, MSGBOX_AUTOCLOSE
+ end
+
+Route14_EventScript_1AABAD:: @ 81AABAD
+ trainerbattle_double TRAINER_TWINS_KIRI_JAN, Text_18645B, Text_186487, Text_1864D3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AABD8
+ msgbox Text_18649C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AABD8:: @ 81AABD8
+ trainerbattle_rematch_double TRAINER_TWINS_KIRI_JAN, Text_1C261B, Text_186487, Text_1864D3
+ msgbox Text_18649C, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AABF3:: @ 81AABF3
+ trainerbattle_single TRAINER_BIKER_ERNEST, Text_1868B6, Text_1868E8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAC1A
+ msgbox Text_1868F1, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAC1A:: @ 81AAC1A
+ trainerbattle_rematch TRAINER_BIKER_ERNEST, Text_1C27E7, Text_1868E8
+ msgbox Text_1868F1, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAC31:: @ 81AAC31
+ trainerbattle_single TRAINER_BIKER_ALEX, Text_186936, Text_186968
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAC58
+ msgbox Text_18697C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAC58:: @ 81AAC58
+ trainerbattle_rematch TRAINER_BIKER_ALEX, Text_1C2814, Text_186968
+ msgbox Text_18697C, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAC6F:: @ 81AAC6F
+ trainerbattle_single TRAINER_BEAUTY_GRACE, Text_18678B, Text_1867C1
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAC96
+ msgbox Text_1867DA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAC96:: @ 81AAC96
+ trainerbattle_rematch TRAINER_BEAUTY_GRACE, Text_1C2753, Text_1867C1
+ msgbox Text_1867DA, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AACAD:: @ 81AACAD
+ trainerbattle_single TRAINER_BEAUTY_OLIVIA, Text_18680C, Text_186841
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AACD4
+ msgbox Text_18686F, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AACD4:: @ 81AACD4
+ trainerbattle_rematch TRAINER_BEAUTY_OLIVIA, Text_1C279D, Text_186841
+ msgbox Text_18686F, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AACEB:: @ 81AACEB
+ trainerbattle_single TRAINER_BIRD_KEEPER_EDWIN, Text_18664F, Text_18667A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAD12
+ msgbox Text_18668D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAD12:: @ 81AAD12
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_EDWIN, Text_1C26D3, Text_18667A
+ msgbox Text_18668D, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAD29:: @ 81AAD29
+ trainerbattle_single TRAINER_BIRD_KEEPER_CHESTER, Text_1866D1, Text_186707
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAD50
+ msgbox Text_18671A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAD50:: @ 81AAD50
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_CHESTER, Text_1C2717, Text_186707
+ msgbox Text_18671A, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAD67:: @ 81AAD67
+ trainerbattle_single TRAINER_PICNICKER_YAZMIN, Text_186A22, Text_186A40
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAD8E
+ msgbox Text_186A55, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAD8E:: @ 81AAD8E
+ trainerbattle_rematch TRAINER_PICNICKER_YAZMIN, Text_1C287D, Text_186A40
+ msgbox Text_186A55, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AADA5:: @ 81AADA5
+ trainerbattle_single TRAINER_PICNICKER_KINDRA, Text_18650B, Text_186549
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AADCC
+ msgbox Text_18655A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AADCC:: @ 81AADCC
+ trainerbattle_rematch TRAINER_PICNICKER_KINDRA, Text_1C2650, Text_186549
+ msgbox Text_18655A, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AADE3:: @ 81AADE3
+ trainerbattle_single TRAINER_PICNICKER_BECKY, Text_1865D3, Text_186612
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAE0A
+ msgbox Text_18661D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAE0A:: @ 81AAE0A
+ trainerbattle_rematch TRAINER_PICNICKER_BECKY, Text_1C268D, Text_186612
+ msgbox Text_18661D, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAE21:: @ 81AAE21
+ trainerbattle_single TRAINER_PICNICKER_CELIA, Text_1869BA, Text_1869E6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAE48
+ msgbox Text_1869F4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAE48:: @ 81AAE48
+ trainerbattle_rematch TRAINER_PICNICKER_CELIA, Text_1C2846, Text_1869E6
+ msgbox Text_1869F4, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAE5F:: @ 81AAE5F
+ trainerbattle_double TRAINER_CRUSH_KIN_RON_MYA, Text_186A95, Text_186ACB, Text_186B46
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAE8A
+ msgbox Text_186B0A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAE8A:: @ 81AAE8A
+ trainerbattle_rematch_double TRAINER_CRUSH_KIN_RON_MYA, Text_1C28A1, Text_186ACB, Text_186B46
+ msgbox Text_186B0A, MSGBOX_AUTOCLOSE
+ end
+
+Route15_EventScript_1AAEA5:: @ 81AAEA5
+ trainerbattle_double TRAINER_CRUSH_KIN_RON_MYA, Text_186B89, Text_186BB1, Text_186BFE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAED0
+ msgbox Text_186BD2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAED0:: @ 81AAED0
+ trainerbattle_rematch_double TRAINER_CRUSH_KIN_RON_MYA, Text_1C28EC, Text_186BB1, Text_186BFE
+ msgbox Text_186BD2, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AAEEB:: @ 81AAEEB
+ trainerbattle_single TRAINER_BIKER_LAO, Text_186C4D, Text_186C5F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAF12
+ msgbox Text_186C75, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAF12:: @ 81AAF12
+ trainerbattle_rematch TRAINER_BIKER_LAO, Text_1C2913, Text_186C5F
+ msgbox Text_186C75, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AAF29:: @ 81AAF29
+ trainerbattle_single TRAINER_BIKER_HIDEO, Text_186D39, Text_186D52
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAF50
+ msgbox Text_186D5A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAF50:: @ 81AAF50
+ trainerbattle_rematch TRAINER_BIKER_HIDEO, Text_1C297B, Text_186D52
+ msgbox Text_186D5A, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AAF67:: @ 81AAF67
+ trainerbattle_single TRAINER_BIKER_RUBEN, Text_186E86, Text_186EB4
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAF8E
+ msgbox Text_186EC7, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAF8E:: @ 81AAF8E
+ trainerbattle_rematch TRAINER_BIKER_RUBEN, Text_1C29EB, Text_186EB4
+ msgbox Text_186EC7, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AAFA5:: @ 81AAFA5
+ trainerbattle_single TRAINER_CUE_BALL_KOJI, Text_186CA2, Text_186CBB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AAFCC
+ msgbox Text_186CC5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AAFCC:: @ 81AAFCC
+ trainerbattle_rematch TRAINER_CUE_BALL_KOJI, Text_1C2925, Text_186CBB
+ msgbox Text_186CC5, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AAFE3:: @ 81AAFE3
+ trainerbattle_single TRAINER_CUE_BALL_LUKE, Text_186CE5, Text_186D06
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB00A
+ msgbox Text_186D16, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB00A:: @ 81AB00A
+ trainerbattle_rematch TRAINER_CUE_BALL_LUKE, Text_1C2944, Text_186D06
+ msgbox Text_186D16, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AB021:: @ 81AB021
+ trainerbattle_single TRAINER_CUE_BALL_CAMRON, Text_186DD9, Text_186E0D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB048
+ msgbox Text_186E1C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB048:: @ 81AB048
+ trainerbattle_rematch TRAINER_CUE_BALL_CAMRON, Text_1C29B0, Text_186E0D
+ msgbox Text_186E1C, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AB05F:: @ 81AB05F
+ trainerbattle_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_186FBD, Text_186FFA, Text_187057
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB08A
+ msgbox Text_187027, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB08A:: @ 81AB08A
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_1C2A19, Text_186FFA, Text_187057
+ msgbox Text_187027, MSGBOX_AUTOCLOSE
+ end
+
+Route16_EventScript_1AB0A5:: @ 81AB0A5
+ trainerbattle_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_187097, Text_1870CC, Text_187120
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB0D0
+ msgbox Text_1870F9, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB0D0:: @ 81AB0D0
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_LEA_JED, Text_1C2A53, Text_1870CC, Text_187120
+ msgbox Text_1870F9, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB0EB:: @ 81AB0EB
+ trainerbattle_single TRAINER_BIKER_BILLY, Text_1872BD, Text_1872E3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB112
+ msgbox Text_1872EB, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB112:: @ 81AB112
+ trainerbattle_rematch TRAINER_BIKER_BILLY, Text_1C2B06, Text_1872E3
+ msgbox Text_1872EB, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB129:: @ 81AB129
+ trainerbattle_single TRAINER_BIKER_NIKOLAS, Text_18730A, Text_187325
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB150
+ msgbox Text_187333, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB150:: @ 81AB150
+ trainerbattle_rematch TRAINER_BIKER_NIKOLAS, Text_1C2B2C, Text_187325
+ msgbox Text_187333, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB167:: @ 81AB167
+ trainerbattle_single TRAINER_BIKER_JAXON, Text_187456, Text_187472
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB18E
+ msgbox Text_187479, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB18E:: @ 81AB18E
+ trainerbattle_rematch TRAINER_BIKER_JAXON, Text_1C2BE6, Text_187472
+ msgbox Text_187479, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB1A5:: @ 81AB1A5
+ trainerbattle_single TRAINER_BIKER_WILLIAM, Text_18749B, Text_1874B6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB1CC
+ msgbox Text_1874C9, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB1CC:: @ 81AB1CC
+ trainerbattle_rematch TRAINER_BIKER_WILLIAM, Text_1C2C10, Text_1874B6
+ msgbox Text_1874C9, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB1E3:: @ 81AB1E3
+ trainerbattle_single TRAINER_CUE_BALL_RAUL, Text_18717E, Text_1871AE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB20A
+ msgbox Text_1871BA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB20A:: @ 81AB20A
+ trainerbattle_rematch TRAINER_CUE_BALL_RAUL, Text_1C2A88, Text_1871AE
+ msgbox Text_1871BA, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB221:: @ 81AB221
+ trainerbattle_single TRAINER_CUE_BALL_ISAIAH, Text_187228, Text_187254
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB248
+ msgbox Text_18725A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB248:: @ 81AB248
+ trainerbattle_rematch TRAINER_CUE_BALL_ISAIAH, Text_1C2AC4, Text_187254
+ msgbox Text_18725A, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB25F:: @ 81AB25F
+ trainerbattle_single TRAINER_CUE_BALL_ZEEK, Text_187362, Text_187395
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB286
+ msgbox Text_18739F, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB286:: @ 81AB286
+ trainerbattle_rematch TRAINER_CUE_BALL_ZEEK, Text_1C2B5E, Text_187395
+ msgbox Text_18739F, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB29D:: @ 81AB29D
+ trainerbattle_single TRAINER_CUE_BALL_JAMAL, Text_1873D1, Text_1873EB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB2C4
+ msgbox Text_1873FF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB2C4:: @ 81AB2C4
+ trainerbattle_rematch TRAINER_CUE_BALL_JAMAL, Text_1C2B9C, Text_1873EB
+ msgbox Text_1873FF, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB2DB:: @ 81AB2DB
+ trainerbattle_single TRAINER_CUE_BALL_COREY, Text_18741D, Text_187429
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB302
+ msgbox Text_187432, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB302:: @ 81AB302
+ trainerbattle_rematch TRAINER_CUE_BALL_COREY, Text_1C2BDA, Text_187429
+ msgbox Text_187432, MSGBOX_AUTOCLOSE
+ end
+
+Route17_EventScript_1AB319:: @ 81AB319
+ trainerbattle_single TRAINER_BIKER_VIRGIL, Text_18727D, Text_187295
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB340
+ msgbox Text_1872A5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB340:: @ 81AB340
+ trainerbattle_rematch TRAINER_BIKER_VIRGIL, Text_1C2AF0, Text_187295
+ msgbox Text_1872A5, MSGBOX_AUTOCLOSE
+ end
+
+Route18_EventScript_1AB357:: @ 81AB357
+ trainerbattle_single TRAINER_BIRD_KEEPER_WILTON, Text_187640, Text_187672
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB37E
+ msgbox Text_187677, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB37E:: @ 81AB37E
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_WILTON, Text_1C2C2B, Text_187672
+ msgbox Text_187677, MSGBOX_AUTOCLOSE
+ end
+
+Route18_EventScript_1AB395:: @ 81AB395
+ trainerbattle_single TRAINER_BIRD_KEEPER_RAMIRO, Text_18768C, Text_1876B3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB3BC
+ msgbox Text_1876C5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB3BC:: @ 81AB3BC
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_RAMIRO, Text_1C2C7B, Text_1876B3
+ msgbox Text_1876C5, MSGBOX_AUTOCLOSE
+ end
+
+Route18_EventScript_1AB3D3:: @ 81AB3D3
+ trainerbattle_single TRAINER_BIRD_KEEPER_JACOB, Text_187704, Text_187726
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB3FA
+ msgbox Text_18772C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB3FA:: @ 81AB3FA
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_JACOB, Text_1C2CA8, Text_187726
+ msgbox Text_18772C, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB411:: @ 81AB411
+ trainerbattle_single TRAINER_SWIMMER_MALE_RICHARD, Text_1877A3, Text_1877DF
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB438
+ msgbox Text_1877EE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB438:: @ 81AB438
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_RICHARD, Text_1C2CEE, Text_1877DF
+ msgbox Text_1877EE, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB44F:: @ 81AB44F
+ trainerbattle_single TRAINER_SWIMMER_MALE_REECE, Text_187811, Text_18783E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB476
+ msgbox Text_187852, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB476:: @ 81AB476
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_REECE, Text_1C2D19, Text_18783E
+ msgbox Text_187852, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB48D:: @ 81AB48D
+ trainerbattle_single TRAINER_SWIMMER_MALE_MATTHEW, Text_187884, Text_1878A5
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB4B4
+ msgbox Text_1878B1, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB4B4:: @ 81AB4B4
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_MATTHEW, Text_1C2D4B, Text_1878A5
+ msgbox Text_1878B1, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB4CB:: @ 81AB4CB
+ trainerbattle_single TRAINER_SWIMMER_MALE_DOUGLAS, Text_1878DD, Text_1878F8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB4F2
+ msgbox Text_1878FE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB4F2:: @ 81AB4F2
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_DOUGLAS, Text_1C2D7D, Text_1878F8
+ msgbox Text_1878FE, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB509:: @ 81AB509
+ trainerbattle_single TRAINER_SWIMMER_MALE_DAVID, Text_187925, Text_187955
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB530
+ msgbox Text_18795B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB530:: @ 81AB530
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_DAVID, Text_1C2DA7, Text_187955
+ msgbox Text_18795B, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB547:: @ 81AB547
+ trainerbattle_single TRAINER_SWIMMER_MALE_TONY, Text_187985, Text_1879C3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB56E
+ msgbox Text_1879D3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB56E:: @ 81AB56E
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_TONY, Text_1C2DE9, Text_1879C3
+ msgbox Text_1879D3, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB585:: @ 81AB585
+ trainerbattle_single TRAINER_SWIMMER_MALE_AXLE, Text_187AFA, Text_187B25
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB5AC
+ msgbox Text_187B35, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB5AC:: @ 81AB5AC
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_AXLE, Text_1C2EC0, Text_187B25
+ msgbox Text_187B35, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB5C3:: @ 81AB5C3
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_ANYA, Text_187A11, Text_187A44
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB5EA
+ msgbox Text_187A50, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB5EA:: @ 81AB5EA
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ANYA, Text_1C2E4A, Text_187A44
+ msgbox Text_187A50, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB601:: @ 81AB601
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_ALICE, Text_187A9E, Text_187AC1
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB628
+ msgbox Text_187ACA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB628:: @ 81AB628
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ALICE, Text_1C2E9D, Text_187AC1
+ msgbox Text_187ACA, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB63F:: @ 81AB63F
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_CONNIE, Text_187B5D, Text_187B85
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB666
+ msgbox Text_187B94, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB666:: @ 81AB666
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_CONNIE, Text_1C2EFC, Text_187B85
+ msgbox Text_187B94, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB67D:: @ 81AB67D
+ trainerbattle_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_187C32, Text_187C6F, Text_187CF2
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB6A8
+ msgbox Text_187C9E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB6A8:: @ 81AB6A8
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_1C2F41, Text_187C6F, Text_187CF2
+ msgbox Text_187C9E, MSGBOX_AUTOCLOSE
+ end
+
+Route19_EventScript_1AB6C3:: @ 81AB6C3
+ trainerbattle_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_187D45, Text_187D7E, Text_187DE8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB6EE
+ msgbox Text_187DAD, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB6EE:: @ 81AB6EE
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIA_LUC, Text_1C2FAE, Text_187D7E, Text_187DE8
+ msgbox Text_187DAD, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB709:: @ 81AB709
+ trainerbattle_single TRAINER_SWIMMER_MALE_BARRY, Text_187E40, Text_187E7B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB730
+ msgbox Text_187E83, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB730:: @ 81AB730
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_BARRY, Text_1C2FF3, Text_187E7B
+ msgbox Text_187E83, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB747:: @ 81AB747
+ trainerbattle_single TRAINER_SWIMMER_MALE_DEAN, Text_187FDB, Text_187FF7
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB76E
+ msgbox Text_187FFE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB76E:: @ 81AB76E
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_DEAN, Text_1C30B0, Text_187FF7
+ msgbox Text_187FFE, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB785:: @ 81AB785
+ trainerbattle_single TRAINER_SWIMMER_MALE_DARRIN, Text_18802E, Text_18805C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB7AC
+ msgbox Text_18806D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB7AC:: @ 81AB7AC
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_DARRIN, Text_1C30ED, Text_18805C
+ msgbox Text_18806D, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB7C3:: @ 81AB7C3
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_TIFFANY, Text_187F24, Text_187F5A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB7EA
+ msgbox Text_187F61, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB7EA:: @ 81AB7EA
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_TIFFANY, Text_1C305F, Text_187F5A
+ msgbox Text_187F61, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB801:: @ 81AB801
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_NORA, Text_1880F8, Text_188119
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB828
+ msgbox Text_188139, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB828:: @ 81AB828
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_NORA, Text_1C3149, Text_188119
+ msgbox Text_188139, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB83F:: @ 81AB83F
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_MELISSA, Text_188218, Text_18825C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB866
+ msgbox Text_18827B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB866:: @ 81AB866
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MELISSA, Text_1C31C4, Text_18825C
+ msgbox Text_18827B, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB87D:: @ 81AB87D
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_SHIRLEY, Text_187EBB, Text_187EED
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB8A4
+ msgbox Text_187EF6, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB8A4:: @ 81AB8A4
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_SHIRLEY, Text_1C302E, Text_187EED
+ msgbox Text_187EF6, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB8BB:: @ 81AB8BB
+ trainerbattle_single TRAINER_BIRD_KEEPER_ROGER, Text_18808E, Text_1880AB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB8E2
+ msgbox Text_1880C8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB8E2:: @ 81AB8E2
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_ROGER, Text_1C312C, Text_1880AB
+ msgbox Text_1880C8, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB8F9:: @ 81AB8F9
+ trainerbattle_single TRAINER_PICNICKER_MISSY, Text_188165, Text_1881A3
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB920
+ msgbox Text_1881B8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB920:: @ 81AB920
+ trainerbattle_rematch TRAINER_PICNICKER_MISSY, Text_1C3185, Text_1881A3
+ msgbox Text_1881B8, MSGBOX_AUTOCLOSE
+ end
+
+Route20_EventScript_1AB937:: @ 81AB937
+ trainerbattle_single TRAINER_PICNICKER_IRENE, Text_187F78, Text_187F92
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB95E
+ msgbox Text_187FA3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB95E:: @ 81AB95E
+ trainerbattle_rematch TRAINER_PICNICKER_IRENE, Text_1C3095, Text_187F92
+ msgbox Text_187FA3, MSGBOX_AUTOCLOSE
+ end
+
+Route21_North_EventScript_1AB975:: @ 81AB975
+ trainerbattle_single TRAINER_FISHERMAN_RONALD, Text_18835A, Text_188383
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB99C
+ msgbox Text_188389, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB99C:: @ 81AB99C
+ trainerbattle_rematch TRAINER_FISHERMAN_RONALD, Text_1C3208, Text_188383
+ msgbox Text_188389, MSGBOX_AUTOCLOSE
+ end
+
+Route21_South_EventScript_1AB9B3:: @ 81AB9B3
+ trainerbattle_single TRAINER_FISHERMAN_CLAUDE, Text_1885D8, Text_1885F8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AB9DA
+ msgbox Text_188632, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AB9DA:: @ 81AB9DA
+ trainerbattle_rematch TRAINER_FISHERMAN_CLAUDE, Text_1C331D, Text_1885F8
+ msgbox Text_188632, MSGBOX_AUTOCLOSE
+ end
+
+Route21_North_EventScript_1AB9F1:: @ 81AB9F1
+ trainerbattle_single TRAINER_FISHERMAN_WADE, Text_1883C6, Text_1883E9
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABA18
+ msgbox Text_18841D, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABA18:: @ 81ABA18
+ trainerbattle_rematch TRAINER_FISHERMAN_WADE, Text_1C3231, Text_1883E9
+ msgbox Text_18841D, MSGBOX_AUTOCLOSE
+ end
+
+Route21_South_EventScript_1ABA2F:: @ 81ABA2F
+ trainerbattle_single TRAINER_FISHERMAN_NOLAN, Text_18868C, Text_1886AE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABA56
+ msgbox Text_1886C5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABA56:: @ 81ABA56
+ trainerbattle_rematch TRAINER_FISHERMAN_NOLAN, Text_1C3356, Text_1886AE
+ msgbox Text_1886C5, MSGBOX_AUTOCLOSE
+ end
+
+Route21_North_EventScript_1ABA6D:: @ 81ABA6D
+ trainerbattle_single TRAINER_SWIMMER_MALE_SPENCER, Text_18843C, Text_18845F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABA94
+ msgbox Text_188465, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABA94:: @ 81ABA94
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_SPENCER, Text_1C3264, Text_18845F
+ msgbox Text_188465, MSGBOX_AUTOCLOSE
+ end
+
+Route21_South_EventScript_1ABAAB:: @ 81ABAAB
+ trainerbattle_single TRAINER_SWIMMER_MALE_JACK, Text_1884D4, Text_1884F0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABAD2
+ msgbox Text_1884FF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABAD2:: @ 81ABAD2
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_JACK, Text_1C3298, Text_1884F0
+ msgbox Text_1884FF, MSGBOX_AUTOCLOSE
+ end
+
+Route21_South_EventScript_1ABAE9:: @ 81ABAE9
+ trainerbattle_single TRAINER_SWIMMER_MALE_JEROME, Text_18851F, Text_188543
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABB10
+ msgbox Text_188555, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABB10:: @ 81ABB10
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_JEROME, Text_1C32D3, Text_188543
+ msgbox Text_188555, MSGBOX_AUTOCLOSE
+ end
+
+Route21_South_EventScript_1ABB27:: @ 81ABB27
+ trainerbattle_single TRAINER_SWIMMER_MALE_ROLAND, Text_188592, Text_1885B2
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABB4E
+ msgbox Text_1885BF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABB4E:: @ 81ABB4E
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_ROLAND, Text_1C32FD, Text_1885B2
+ msgbox Text_1885BF, MSGBOX_AUTOCLOSE
+ end
+
+Route21_North_EventScript_1ABB65:: @ 81ABB65
+ trainerbattle_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1886E2, Text_188712, Text_18875E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABB90
+ msgbox Text_188734, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABB90:: @ 81ABB90
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1C3378, Text_188712, Text_18875E
+ msgbox Text_188734, MSGBOX_AUTOCLOSE
+ end
+
+Route21_North_EventScript_1ABBAB:: @ 81ABBAB
+ trainerbattle_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1887B4, Text_1887F1, Text_188850
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABBD6
+ msgbox Text_188812, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABBD6:: @ 81ABBD6
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_LIL_IAN, Text_1C33AE, Text_1887F1, Text_188850
+ msgbox Text_188812, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABBF1:: @ 81ABBF1
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_MARIA, Text_18961F, Text_18964D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABC18
+ msgbox Text_189657, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABC18:: @ 81ABC18
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MARIA, Text_1C37B5, Text_18964D
+ msgbox Text_189657, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABC2F:: @ 81ABC2F
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_18968C, Text_1896AC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABC56
+ msgbox Text_1896C1, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABC56:: @ 81ABC56
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_1C37E7, Text_1896AC
+ msgbox Text_1896C1, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABC6D:: @ 81ABC6D
+ trainerbattle_single TRAINER_SWIMMER_MALE_FINN, Text_1896F9, Text_189728
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABC94
+ msgbox Text_189740, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABC94:: @ 81ABC94
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_FINN, Text_1C3807, Text_189728
+ msgbox Text_189740, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABCAB:: @ 81ABCAB
+ trainerbattle_single TRAINER_SWIMMER_MALE_GARRETT, Text_189767, Text_1897A4
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABCD2
+ msgbox Text_1897C5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABCD2:: @ 81ABCD2
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_GARRETT, Text_1C3835, Text_1897A4
+ msgbox Text_1897C5, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABCE9:: @ 81ABCE9
+ trainerbattle_single TRAINER_FISHERMAN_TOMMY, Text_1897FF, Text_189833
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABD10
+ msgbox Text_18984B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABD10:: @ 81ABD10
+ trainerbattle_rematch TRAINER_FISHERMAN_TOMMY, Text_1C386A, Text_189833
+ msgbox Text_18984B, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABD27:: @ 81ABD27
+ trainerbattle_single TRAINER_CRUSH_GIRL_SHARON, Text_189883, Text_1898AB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABD4E
+ msgbox Text_1898C4, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABD4E:: @ 81ABD4E
+ trainerbattle_rematch TRAINER_CRUSH_GIRL_SHARON, Text_1C389F, Text_1898AB
+ msgbox Text_1898C4, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABD65:: @ 81ABD65
+ trainerbattle_single TRAINER_CRUSH_GIRL_TANYA, Text_1898F0, Text_18991B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABD8C
+ msgbox Text_18992C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABD8C:: @ 81ABD8C
+ trainerbattle_rematch TRAINER_CRUSH_GIRL_TANYA, Text_1C38CA, Text_18991B
+ msgbox Text_18992C, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABDA3:: @ 81ABDA3
+ trainerbattle_single TRAINER_BLACK_BELT_SHEA, Text_189950, Text_18998C
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABDCA
+ msgbox Text_189998, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABDCA:: @ 81ABDCA
+ trainerbattle_rematch TRAINER_BLACK_BELT_SHEA, Text_1C38FA, Text_18998C
+ msgbox Text_189998, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABDE1:: @ 81ABDE1
+ trainerbattle_single TRAINER_BLACK_BELT_HUGH, Text_1899CE, Text_189A0A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABE08
+ msgbox Text_189A13, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABE08:: @ 81ABE08
+ trainerbattle_rematch TRAINER_BLACK_BELT_HUGH, Text_1C3943, Text_189A0A
+ msgbox Text_189A13, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABE1F:: @ 81ABE1F
+ trainerbattle_single TRAINER_CAMPER_BRYCE, Text_189A53, Text_189A92
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABE46
+ msgbox Text_189A9F, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABE46:: @ 81ABE46
+ trainerbattle_rematch TRAINER_CAMPER_BRYCE, Text_1C3987, Text_189A92
+ msgbox Text_189A9F, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABE5D:: @ 81ABE5D
+ trainerbattle_single TRAINER_PICNICKER_CLAIRE, Text_189ACB, Text_189B0B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABE84
+ msgbox Text_189B24, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABE84:: @ 81ABE84
+ trainerbattle_rematch TRAINER_PICNICKER_CLAIRE, Text_1C39C6, Text_189B0B
+ msgbox Text_189B24, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABE9B:: @ 81ABE9B
+ trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189B4D, Text_189B84, Text_189BDE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABEC6
+ msgbox Text_189BA3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABEC6:: @ 81ABEC6
+ trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A05, Text_189B84, Text_189BDE
+ msgbox Text_189BA3, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_KindleRoad_EventScript_1ABEE1:: @ 81ABEE1
+ trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189C33, Text_189C62, Text_189CAB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABF0C
+ msgbox Text_189C7E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABF0C:: @ 81ABF0C
+ trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A55, Text_189C62, Text_189CAB
+ msgbox Text_189C7E, MSGBOX_AUTOCLOSE
+ end
+
+OneIsland_TreasureBeach_EventScript_1ABF27:: @ 81ABF27
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_AMARA, Text_189D5A, Text_189D8B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABF4E
+ msgbox Text_189DA3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABF4E:: @ 81ABF4E
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_AMARA, Text_1C3773, Text_189D8B
+ msgbox Text_189DA3, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1ABF65:: @ 81ABF65
+ trainerbattle_single TRAINER_AROMA_LADY_NIKKI, Text_189E42, Text_189E72
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABF8C
+ msgbox Text_189E9E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABF8C:: @ 81ABF8C
+ trainerbattle_rematch TRAINER_AROMA_LADY_NIKKI, Text_1C3AA7, Text_189E72
+ msgbox Text_189E9E, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1ABFA3:: @ 81ABFA3
+ trainerbattle_single TRAINER_AROMA_LADY_VIOLET, Text_189ED4, Text_189EFA
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ABFCA
+ msgbox Text_189F21, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ABFCA:: @ 81ABFCA
+ trainerbattle_rematch TRAINER_AROMA_LADY_VIOLET, Text_1C3ABF, Text_189EFA
+ msgbox Text_189F21, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1ABFE1:: @ 81ABFE1
+ trainerbattle_single TRAINER_TUBER_AMIRA, Text_189F63, Text_189F9A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC008
+ msgbox Text_189FA8, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC008:: @ 81AC008
+ trainerbattle_rematch TRAINER_TUBER_AMIRA, Text_1C3AF2, Text_189F9A
+ msgbox Text_189FA8, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1AC01F:: @ 81AC01F
+ trainerbattle_single TRAINER_TUBER_ALEXIS, Text_189FDB, Text_189FEE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC046
+ msgbox Text_18A000, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC046:: @ 81AC046
+ trainerbattle_rematch TRAINER_TUBER_ALEXIS, Text_1C3B1D, Text_189FEE
+ msgbox Text_18A000, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1AC05D:: @ 81AC05D
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_TISHA, Text_18A01F, Text_18A053
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC084
+ msgbox Text_18A082, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC084:: @ 81AC084
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_TISHA, Text_1C3B30, Text_18A053
+ msgbox Text_18A082, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1AC09B:: @ 81AC09B
+ trainerbattle_double TRAINER_TWINS_JOY_MEG, Text_18A0C4, Text_18A0F7, Text_18A138
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC0C6
+ msgbox Text_18A106, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC0C6:: @ 81AC0C6
+ trainerbattle_rematch_double TRAINER_TWINS_JOY_MEG, Text_1C3B6E, Text_18A0F7, Text_18A138
+ msgbox Text_18A106, MSGBOX_AUTOCLOSE
+ end
+
+ThreeIsland_BondBridge_EventScript_1AC0E1:: @ 81AC0E1
+ trainerbattle_double TRAINER_TWINS_JOY_MEG, Text_18A179, Text_18A1A3, Text_18A1CD
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC10C
+ msgbox Text_18A1B2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC10C:: @ 81AC10C
+ trainerbattle_rematch_double TRAINER_TWINS_JOY_MEG, Text_1C3B99, Text_18A1A3, Text_18A1CD
+ msgbox Text_18A1B2, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC127:: @ 81AC127
+ trainerbattle_single TRAINER_PAINTER_DAISY, Text_18A3E2, Text_18A40E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC14E
+ msgbox Text_18A430, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC14E:: @ 81AC14E
+ trainerbattle_rematch TRAINER_PAINTER_DAISY, Text_1C3BF6, Text_18A40E
+ msgbox Text_18A430, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC165:: @ 81AC165
+ trainerbattle_single TRAINER_PAINTER_CELINA, Text_18A461, Text_18A49E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC18C
+ msgbox Text_18A4C6, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC18C:: @ 81AC18C
+ trainerbattle_rematch TRAINER_PAINTER_CELINA, Text_1C3C28, Text_18A49E
+ msgbox Text_18A4C6, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC1A3:: @ 81AC1A3
+ trainerbattle_single TRAINER_PAINTER_RAYNA, Text_18A50E, Text_18A535
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC1CA
+ msgbox Text_18A555, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC1CA:: @ 81AC1CA
+ trainerbattle_rematch TRAINER_PAINTER_RAYNA, Text_1C3C70, Text_18A535
+ msgbox Text_18A555, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC1E1:: @ 81AC1E1
+ trainerbattle_single TRAINER_LADY_JACKI, Text_18A5B9, Text_18A5EE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC208
+ msgbox Text_18A601, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC208:: @ 81AC208
+ trainerbattle_rematch TRAINER_LADY_JACKI, Text_1C3CB0, Text_18A5EE
+ msgbox Text_18A601, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC21F:: @ 81AC21F
+ trainerbattle_single TRAINER_LADY_GILLIAN, Text_18A645, Text_18A67F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC246
+ msgbox Text_18A699, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC246:: @ 81AC246
+ trainerbattle_rematch TRAINER_LADY_GILLIAN, Text_1C3CF1, Text_18A67F
+ msgbox Text_18A699, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC25D:: @ 81AC25D
+ trainerbattle_single TRAINER_YOUNGSTER_DESTIN, Text_18A6DA, Text_18A6FE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC284
+ msgbox Text_18A715, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC284:: @ 81AC284
+ trainerbattle_rematch TRAINER_YOUNGSTER_DESTIN, Text_1C3D47, Text_18A6FE
+ msgbox Text_18A715, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_ResortGorgeous_EventScript_1AC29B:: @ 81AC29B
+ trainerbattle_single TRAINER_SWIMMER_MALE_TOBY, Text_18A74A, Text_18A786
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC2C2
+ msgbox Text_18A7AC, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC2C2:: @ 81AC2C2
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_TOBY, Text_1C3D73, Text_18A786
+ msgbox Text_18A7AC, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_WaterLabyrinth_EventScript_1AC2D9:: @ 81AC2D9
+ trainerbattle_single TRAINER_PKMN_BREEDER_ALIZE, Text_18AAD5, Text_18AB0B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC300
+ msgbox Text_18AB37, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC300:: @ 81AC300
+ trainerbattle_rematch TRAINER_PKMN_BREEDER_ALIZE, Text_1C3BB7, Text_18AB0B
+ msgbox Text_18AB37, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_MemorialPillar_EventScript_1AC317:: @ 81AC317
+ trainerbattle_single TRAINER_BIRD_KEEPER_MILO, Text_18AE50, Text_18AEA8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC33E
+ msgbox Text_18AEB6, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC33E:: @ 81AC33E
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_MILO, Text_1C3DA2, Text_18AEA8
+ msgbox Text_18AEB6, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_MemorialPillar_EventScript_1AC355:: @ 81AC355
+ trainerbattle_single TRAINER_BIRD_KEEPER_CHAZ, Text_18AEDC, Text_18AF39
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC37C
+ msgbox Text_18AF45, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC37C:: @ 81AC37C
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_CHAZ, Text_1C3E0F, Text_18AF39
+ msgbox Text_18AF45, MSGBOX_AUTOCLOSE
+ end
+
+FiveIsland_MemorialPillar_EventScript_1AC393:: @ 81AC393
+ trainerbattle_single TRAINER_BIRD_KEEPER_HAROLD, Text_18AF72, Text_18AFCC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC3BA
+ msgbox Text_18AFF2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC3BA:: @ 81AC3BA
+ trainerbattle_rematch TRAINER_BIRD_KEEPER_HAROLD, Text_1C3E6A, Text_18AFCC
+ msgbox Text_18AFF2, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_OutcastIsland_EventScript_1AC3D1:: @ 81AC3D1
+ trainerbattle_single TRAINER_FISHERMAN_TYLOR, Text_18B400, Text_18B43B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC3F8
+ msgbox Text_18B451, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC3F8:: @ 81AC3F8
+ trainerbattle_rematch TRAINER_FISHERMAN_TYLOR, Text_1C3ED0, Text_18B43B
+ msgbox Text_18B451, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_OutcastIsland_EventScript_1AC40F:: @ 81AC40F
+ trainerbattle_single TRAINER_SWIMMER_MALE_MYMO, Text_18B48F, Text_18B4C5
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC436
+ msgbox Text_18B4D1, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC436:: @ 81AC436
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_MYMO, Text_1C3F11, Text_18B4C5
+ msgbox Text_18B4D1, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_OutcastIsland_EventScript_1AC44D:: @ 81AC44D
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_NICOLE, Text_18B4FA, Text_18B539
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC474
+ msgbox Text_18B573, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC474:: @ 81AC474
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_NICOLE, Text_1C3F51, Text_18B539
+ msgbox Text_18B573, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_OutcastIsland_EventScript_1AC48B:: @ 81AC48B
+ trainerbattle_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_18B5C8, Text_18B5F4, Text_18B660
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC4B6
+ msgbox Text_18B62E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC4B6:: @ 81AC4B6
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_1C3F7B, Text_18B5F4, Text_18B660
+ msgbox Text_18B62E, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_OutcastIsland_EventScript_1AC4D1:: @ 81AC4D1
+ trainerbattle_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_18B6C1, Text_18B6EF, Text_18B762
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC4FC
+ msgbox Text_18B720, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC4FC:: @ 81AC4FC
+ trainerbattle_rematch_double TRAINER_SIS_AND_BRO_AVA_GEB, Text_1C3FB3, Text_18B6EF, Text_18B762
+ msgbox Text_18B720, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_GreenPath_EventScript_1AC517:: @ 81AC517
+ trainerbattle_single TRAINER_PSYCHIC_JACLYN, Text_18B7B0, Text_18B7F0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC53E
+ msgbox Text_18B7FD, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC53E:: @ 81AC53E
+ trainerbattle_rematch TRAINER_PSYCHIC_JACLYN, Text_1C3FE9, Text_18B7F0
+ msgbox Text_18B7FD, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC555:: @ 81AC555
+ trainerbattle_single TRAINER_AROMA_LADY_ROSE, Text_18B896, Text_18B8C8
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC57C
+ msgbox Text_18B8F7, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC57C:: @ 81AC57C
+ trainerbattle_rematch TRAINER_AROMA_LADY_ROSE, Text_1C4028, Text_18B8C8
+ msgbox Text_18B8F7, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC593:: @ 81AC593
+ trainerbattle_single TRAINER_JUGGLER_EDWARD, Text_18B959, Text_18B988
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC5BA
+ msgbox Text_18B9A5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC5BA:: @ 81AC5BA
+ trainerbattle_rematch TRAINER_JUGGLER_EDWARD, Text_1C4057, Text_18B988
+ msgbox Text_18B9A5, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC5D1:: @ 81AC5D1
+ trainerbattle_single TRAINER_SWIMMER_MALE_SAMIR, Text_18B9EC, Text_18BA47
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC5F8
+ msgbox Text_18BA57, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC5F8:: @ 81AC5F8
+ trainerbattle_rematch TRAINER_SWIMMER_MALE_SAMIR, Text_1C407F, Text_18BA47
+ msgbox Text_18BA57, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC60F:: @ 81AC60F
+ trainerbattle_single TRAINER_SWIMMER_FEMALE_DENISE, Text_18BA86, Text_18BAC0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC636
+ msgbox Text_18BAE0, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC636:: @ 81AC636
+ trainerbattle_rematch TRAINER_SWIMMER_FEMALE_DENISE, Text_1C40D9, Text_18BAC0
+ msgbox Text_18BAE0, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC64D:: @ 81AC64D
+ trainerbattle_double TRAINER_TWINS_MIU_MIA, Text_18BBBA, Text_18BBE2, Text_18BC24
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC678
+ msgbox Text_18BBF6, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC678:: @ 81AC678
+ trainerbattle_rematch_double TRAINER_TWINS_MIU_MIA, Text_1C4138, Text_18BBE2, Text_18BC24
+ msgbox Text_18BBF6, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC693:: @ 81AC693
+ trainerbattle_double TRAINER_TWINS_MIU_MIA, Text_18BC5A, Text_18BC84, Text_18BCCF
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC6BE
+ msgbox Text_18BCAE, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC6BE:: @ 81AC6BE
+ trainerbattle_rematch_double TRAINER_TWINS_MIU_MIA, Text_1C4166, Text_18BC84, Text_18BCCF
+ msgbox Text_18BCAE, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_WaterPath_EventScript_1AC6D9:: @ 81AC6D9
+ trainerbattle_single TRAINER_HIKER_EARL, Text_18BB2D, Text_18BB62
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC700
+ msgbox Text_18BB8B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC700:: @ 81AC700
+ trainerbattle_rematch TRAINER_HIKER_EARL, Text_1C40FA, Text_18BB62
+ msgbox Text_18BB8B, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_RuinValley_EventScript_1AC717:: @ 81AC717
+ trainerbattle_single TRAINER_RUIN_MANIAC_STANLY, Text_18BE5D, Text_18BE9B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC73E
+ msgbox Text_18BEA0, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC73E:: @ 81AC73E
+ trainerbattle_rematch TRAINER_RUIN_MANIAC_STANLY, Text_1C4196, Text_18BE9B
+ msgbox Text_18BEA0, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_RuinValley_EventScript_1AC755:: @ 81AC755
+ trainerbattle_single TRAINER_RUIN_MANIAC_FOSTER, Text_18BF05, Text_18BF33
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC77C
+ msgbox Text_18BF6C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC77C:: @ 81AC77C
+ trainerbattle_rematch TRAINER_RUIN_MANIAC_FOSTER, Text_1C41D4, Text_18BF33
+ msgbox Text_18BF6C, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_RuinValley_EventScript_1AC793:: @ 81AC793
+ trainerbattle_single TRAINER_RUIN_MANIAC_LARRY, Text_18BFC5, Text_18C03B
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC7BA
+ msgbox Text_18C04C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC7BA:: @ 81AC7BA
+ trainerbattle_rematch TRAINER_RUIN_MANIAC_LARRY, Text_1C4210, Text_18C03B
+ msgbox Text_18C04C, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_RuinValley_EventScript_1AC7D1:: @ 81AC7D1
+ trainerbattle_single TRAINER_HIKER_DARYL, Text_18C09C, Text_18C0BB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC7F8
+ msgbox Text_18C0EA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC7F8:: @ 81AC7F8
+ trainerbattle_rematch TRAINER_HIKER_DARYL, Text_1C4280, Text_18C0BB
+ msgbox Text_18C0EA, MSGBOX_AUTOCLOSE
+ end
+
+SixIsland_RuinValley_EventScript_1AC80F:: @ 81AC80F
+ trainerbattle_single TRAINER_POKEMANIAC_HECTOR, Text_18C10A, Text_18C140
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC836
+ msgbox Text_18C17A, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC836:: @ 81AC836
+ trainerbattle_rematch TRAINER_POKEMANIAC_HECTOR, Text_1C42A0, Text_18C140
+ msgbox Text_18C17A, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TrainerTower_EventScript_1AC84D:: @ 81AC84D
+ trainerbattle_single TRAINER_PSYCHIC_DARIO, Text_18C1ED, Text_18C205
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC874
+ msgbox Text_18C20E, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC874:: @ 81AC874
+ trainerbattle_rematch TRAINER_PSYCHIC_DARIO, Text_1C42D6, Text_18C205
+ msgbox Text_18C20E, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TrainerTower_EventScript_1AC88B:: @ 81AC88B
+ trainerbattle_single TRAINER_PSYCHIC_RODETTE, Text_18C283, Text_18C2BC
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC8B2
+ msgbox Text_18C2D5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC8B2:: @ 81AC8B2
+ trainerbattle_rematch TRAINER_PSYCHIC_RODETTE, Text_1C42EE, Text_18C2BC
+ msgbox Text_18C2D5, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1AC8C9:: @ 81AC8C9
+ trainerbattle_single TRAINER_AROMA_LADY_MIAH, Text_18C3BC, Text_18C3E7
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC8F0
+ msgbox Text_18C3FF, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC8F0:: @ 81AC8F0
+ trainerbattle_rematch TRAINER_AROMA_LADY_MIAH, Text_1C4327, Text_18C3E7
+ msgbox Text_18C3FF, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1AC907:: @ 81AC907
+ trainerbattle_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_18C632, Text_18C662, Text_18C6AB
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC932
+ msgbox Text_18C683, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC932:: @ 81AC932
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_1C4416, Text_18C662, Text_18C6AB
+ msgbox Text_18C683, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1AC94D:: @ 81AC94D
+ trainerbattle_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_18C700, Text_18C73B, Text_18C7BD
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC978
+ msgbox Text_18C773, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC978:: @ 81AC978
+ trainerbattle_rematch_double TRAINER_YOUNG_COUPLE_EVE_JON, Text_1C444C, Text_18C73B, Text_18C7BD
+ msgbox Text_18C773, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1AC993:: @ 81AC993
+ trainerbattle_single TRAINER_JUGGLER_MASON, Text_18C44B, Text_18C473
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC9BA
+ msgbox Text_18C4BA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC9BA:: @ 81AC9BA
+ trainerbattle_rematch TRAINER_JUGGLER_MASON, Text_1C4374, Text_18C473
+ msgbox Text_18C4BA, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1AC9D1:: @ 81AC9D1
+ trainerbattle_single TRAINER_PKMN_RANGER_NICOLAS, Text_18C500, Text_18C543
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1AC9F8
+ msgbox Text_18C54B, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1AC9F8:: @ 81AC9F8
+ trainerbattle_rematch TRAINER_PKMN_RANGER_NICOLAS, Text_1C43AD, Text_18C543
+ msgbox Text_18C54B, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_Entrance_EventScript_1ACA0F:: @ 81ACA0F
+ trainerbattle_single TRAINER_PKMN_RANGER_MADELINE, Text_18C5AA, Text_18C5CD
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACA36
+ msgbox Text_18C5F5, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACA36:: @ 81ACA36
+ trainerbattle_rematch TRAINER_PKMN_RANGER_MADELINE, Text_1C43EC, Text_18C5CD
+ msgbox Text_18C5F5, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACA4D:: @ 81ACA4D
+ trainerbattle_single TRAINER_CRUSH_GIRL_CYNDY, Text_18C887, Text_18C8A6
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACA74
+ msgbox Text_18C8C2, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACA74:: @ 81ACA74
+ trainerbattle_rematch TRAINER_CRUSH_GIRL_CYNDY, Text_1C4491, Text_18C8A6
+ msgbox Text_18C8C2, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACA8B:: @ 81ACA8B
+ trainerbattle_single TRAINER_TAMER_EVAN, Text_18C8FD, Text_18C980
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACAB2
+ msgbox Text_18C999, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACAB2:: @ 81ACAB2
+ trainerbattle_rematch TRAINER_TAMER_EVAN, Text_1C44CB, Text_18C980
+ msgbox Text_18C999, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACAC9:: @ 81ACAC9
+ trainerbattle_single TRAINER_PKMN_RANGER_JACKSON, Text_18CA2F, Text_18CA6F
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACAF0
+ msgbox Text_18CA9C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACAF0:: @ 81ACAF0
+ trainerbattle_rematch TRAINER_PKMN_RANGER_JACKSON, Text_1C454E, Text_18CA6F
+ msgbox Text_18CA9C, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACB07:: @ 81ACB07
+ trainerbattle_single TRAINER_PKMN_RANGER_KATELYN, Text_18CB16, Text_18CB3E
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACB2E
+ msgbox Text_18CB6C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACB2E:: @ 81ACB2E
+ trainerbattle_rematch TRAINER_PKMN_RANGER_KATELYN, Text_1C458E, Text_18CB3E
+ msgbox Text_18CB6C, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACB45:: @ 81ACB45
+ trainerbattle_single TRAINER_COOLTRAINER_LEROY, Text_18CBB4, Text_18CBE0
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACB6C
+ msgbox Text_18CC09, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACB6C:: @ 81ACB6C
+ trainerbattle_rematch TRAINER_COOLTRAINER_LEROY, Text_1C45C2, Text_18CBE0
+ msgbox Text_18CC09, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACB83:: @ 81ACB83
+ trainerbattle_single TRAINER_COOLTRAINER_MICHELLE, Text_18CC4F, Text_18CCAE
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACBAA
+ msgbox Text_18CCEA, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACBAA:: @ 81ACBAA
+ trainerbattle_rematch TRAINER_COOLTRAINER_MICHELLE, Text_1C45FB, Text_18CCAE
+ msgbox Text_18CCEA, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACBC1:: @ 81ACBC1
+ trainerbattle_double TRAINER_COOL_COUPLE_LEX_NYA, Text_18CD49, Text_18CD75, Text_18CDE2
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACBEC
+ msgbox Text_18CD9C, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACBEC:: @ 81ACBEC
+ trainerbattle_rematch_double TRAINER_COOL_COUPLE_LEX_NYA, Text_1C4662, Text_18CD75, Text_18CDE2
+ msgbox Text_18CD9C, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_SevaultCanyon_EventScript_1ACC07:: @ 81ACC07
+ trainerbattle_double TRAINER_COOL_COUPLE_LEX_NYA, Text_18CE20, Text_18CE5A, Text_18CEF4
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACC32
+ msgbox Text_18CE78, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACC32:: @ 81ACC32
+ trainerbattle_rematch_double TRAINER_COOL_COUPLE_LEX_NYA, Text_1C4699, Text_18CE5A, Text_18CEF4
+ msgbox Text_18CE78, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TanobyRuins_EventScript_1ACC4D:: @ 81ACC4D
+ trainerbattle_single TRAINER_RUIN_MANIAC_BRANDON, Text_18CFFB, Text_18D02A
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACC74
+ msgbox Text_18D061, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACC74:: @ 81ACC74
+ trainerbattle_rematch TRAINER_RUIN_MANIAC_BRANDON, Text_1C46D3, Text_18D02A
+ msgbox Text_18D061, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TanobyRuins_EventScript_1ACC8B:: @ 81ACC8B
+ trainerbattle_single TRAINER_RUIN_MANIAC_BENJAMIN, Text_18D0D9, Text_18D108
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACCB2
+ msgbox Text_18D125, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACCB2:: @ 81ACCB2
+ trainerbattle_rematch TRAINER_RUIN_MANIAC_BENJAMIN, Text_1C470A, Text_18D108
+ msgbox Text_18D125, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TanobyRuins_EventScript_1ACCC9:: @ 81ACCC9
+ trainerbattle_single TRAINER_PAINTER_EDNA, Text_18D18F, Text_18D1B5
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACCF0
+ msgbox Text_18D1E3, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACCF0:: @ 81ACCF0
+ trainerbattle_rematch TRAINER_PAINTER_EDNA, Text_1C4739, Text_18D1B5
+ msgbox Text_18D1E3, MSGBOX_AUTOCLOSE
+ end
+
+SevenIsland_TanobyRuins_EventScript_1ACD07:: @ 81ACD07
+ trainerbattle_single TRAINER_GENTLEMAN_CLIFFORD, Text_18D22F, Text_18D26D
+ specialvar VAR_RESULT, ShouldTryRematchBattle
+ compare VAR_RESULT, 1
+ goto_if_eq EventScript_1ACD2E
+ msgbox Text_18D284, MSGBOX_AUTOCLOSE
+ end
+
+EventScript_1ACD2E:: @ 81ACD2E
+ trainerbattle_rematch TRAINER_GENTLEMAN_CLIFFORD, Text_1C476A, Text_18D26D
+ msgbox Text_18D284, MSGBOX_AUTOCLOSE
+ end