1596 lines
53 KiB
PHP
Raw Normal View History

.set LOCALID_NORMAN, 1
.set LOCALID_WALLY, 10
.set LOCALID_WALLYS_DAD, 11
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_MapScripts::
map_script MAP_SCRIPT_ON_LOAD, PetalburgCity_Gym_OnLoad
map_script MAP_SCRIPT_ON_TRANSITION, PetalburgCity_Gym_OnTransition
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, PetalburgCity_Gym_OnWarp
map_script MAP_SCRIPT_ON_FRAME_TABLE, PetalburgCity_Gym_OnFrame
2017-11-09 19:21:31 -06:00
.byte 0
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_OnLoad:
goto_if_eq VAR_PETALBURG_GYM_STATE, 6, PetalburgCity_Gym_EventScript_OpenUnlockedDoors
call_if_ge VAR_PETALBURG_GYM_STATE, 7, PetalburgCity_Gym_EventScript_UnlockAllDoors
2017-11-09 19:21:31 -06:00
end
@ NOTE: Strength and OHKO rooms are misleading. Both are more accurately Critical-Hit
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenUnlockedDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 1
call PetalburgCity_Gym_EventScript_OpenGymEntranceDoors
call_if_defeated TRAINER_RANDALL, PetalburgCity_Gym_EventScript_OpenSpeedRoomDoors
call_if_defeated TRAINER_MARY, PetalburgCity_Gym_EventScript_OpenAccuracyRoomDoors
call_if_defeated TRAINER_PARKER, PetalburgCity_Gym_EventScript_OpenConfusionRoomDoors
call_if_defeated TRAINER_ALEXIA, PetalburgCity_Gym_EventScript_OpenDefenseRoomDoors
call_if_defeated TRAINER_GEORGE, PetalburgCity_Gym_EventScript_OpenRecoveryRoomDoors
call_if_defeated TRAINER_JODY, PetalburgCity_Gym_EventScript_OpenStrengthRoomDoors
call_if_defeated TRAINER_BERKE, PetalburgCity_Gym_EventScript_OpenOHKORoomDoors
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_UnlockAllDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 1
call PetalburgCity_Gym_EventScript_OpenGymEntranceDoors
call PetalburgCity_Gym_EventScript_OpenSpeedRoomDoors
call PetalburgCity_Gym_EventScript_OpenAccuracyRoomDoors
call PetalburgCity_Gym_EventScript_OpenConfusionRoomDoors
call PetalburgCity_Gym_EventScript_OpenDefenseRoomDoors
call PetalburgCity_Gym_EventScript_OpenRecoveryRoomDoors
call PetalburgCity_Gym_EventScript_OpenStrengthRoomDoors
call PetalburgCity_Gym_EventScript_OpenOHKORoomDoors
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_OnTransition:
call_if_eq VAR_PETALBURG_GYM_STATE, 1, PetalburgCity_Gym_EventScript_MoveWallyToEntrance
call_if_lt VAR_PETALBURG_GYM_STATE, 6, PetalburgCity_Gym_EventScript_MoveNormanToEntrance
call_if_set FLAG_SYS_GAME_CLEAR, PetalburgCity_Gym_EventScript_CheckNormanForRematch
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_MoveWallyToEntrance::
setobjectxyperm LOCALID_WALLY, 5, 108
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_MoveNormanToEntrance::
setobjectxyperm LOCALID_NORMAN, 4, 107
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_CheckNormanForRematch::
setorcopyvar VAR_TRAINER_BATTLE_OPPONENT_A, TRAINER_NORMAN_1
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, IsTrainerReadyForRematch
goto_if_eq VAR_RESULT, TRUE, PetalburgCity_Gym_EventScript_DontMoveNormanToFront
goto_if_eq VAR_PETALBURG_GYM_STATE, 8, PetalburgCity_Gym_EventScript_DontMoveNormanToFront
setobjectxyperm LOCALID_NORMAN, 4, 107
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_DontMoveNormanToFront::
setvar VAR_PETALBURG_GYM_STATE, 8
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_OnWarp:
map_script_2 VAR_PETALBURG_GYM_STATE, 1, PetalburgCity_Gym_EventScript_TurnPlayerNorth
2017-11-09 19:21:31 -06:00
.2byte 0
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_TurnPlayerNorth::
turnobject OBJ_EVENT_ID_PLAYER, DIR_NORTH
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_OnFrame:
map_script_2 VAR_PETALBURG_GYM_STATE, 1, PetalburgCity_Gym_EventScript_ReturnFromWallyTutorial
2017-11-09 19:21:31 -06:00
.2byte 0
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ReturnFromWallyTutorial::
2017-11-09 19:21:31 -06:00
lockall
msgbox PetalburgCity_Gym_Text_DadSoDidItWorkOut, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_WallyThankYouBye, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyExitGym
2017-11-09 19:21:31 -06:00
waitmovement 0
2020-08-20 18:02:00 -04:00
playse SE_EXIT
removeobject LOCALID_WALLY
2018-10-18 15:28:59 -04:00
setflag FLAG_HIDE_PETALBURG_CITY_WALLY
2017-11-09 19:21:31 -06:00
delay 30
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterUp
2017-11-09 19:21:31 -06:00
waitmovement 0
msgbox PetalburgCity_Gym_Text_DadGoCollectBadges, MSGBOX_DEFAULT
setvar VAR_PETALBURG_GYM_STATE, 2
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyExitGym:
walk_down
walk_down
walk_down
delay_16
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Norman::
2017-11-09 19:21:31 -06:00
lock
faceplayer
switch VAR_PETALBURG_GYM_STATE
case 2, PetalburgCity_Gym_EventScript_NormanNoBadges
case 3, PetalburgCity_Gym_EventScript_NormanOneBadge
case 4, PetalburgCity_Gym_EventScript_NormanTwoBadges
case 5, PetalburgCity_Gym_EventScript_NormanThreeBadges
case 6, PetalburgCity_Gym_EventScript_NormanBattle
case 7, PetalburgCity_Gym_EventScript_NormanPostBattle
case 8, PetalburgCity_Gym_EventScript_NormanRematch
msgbox PetalburgCity_Gym_Text_DadYoureHereWithYourPokemon, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
switch VAR_FACING
case DIR_SOUTH, PetalburgCity_Gym_EventScript_BeginWallyTutorialSouth
case DIR_NORTH, PetalburgCity_Gym_EventScript_BeginWallyTutorialNorth
case DIR_WEST, PetalburgCity_Gym_EventScript_BeginWallyTutorialWest
case DIR_EAST, PetalburgCity_Gym_EventScript_BeginWallyTutorialEast
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BeginWallyTutorialSouth::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 0
goto PetalburgCity_Gym_EventScript_BeginWallyTutorial
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BeginWallyTutorialNorth::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
goto PetalburgCity_Gym_EventScript_BeginWallyTutorial
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BeginWallyTutorialWest::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 2
goto PetalburgCity_Gym_EventScript_BeginWallyTutorial
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BeginWallyTutorialEast::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 3
goto PetalburgCity_Gym_EventScript_BeginWallyTutorial
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BeginWallyTutorial::
addobject LOCALID_WALLY
2017-11-09 19:21:31 -06:00
playse SE_DOOR
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_WallyArriveSouth
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_WallyArriveNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_WallyArriveWestEast
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_WallyArriveWestEast
msgbox PetalburgCity_Gym_Text_WallyIdLikeAPokemon, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_DadOhYoureWallyRight, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_WallyIveNeverCaughtAPokemon, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_DadHmISee, MSGBOX_DEFAULT
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_NormanAddressPlayerSouth
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_NormanAddressPlayerNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_NormanAddressPlayerWest
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_NormanAddressPlayerEast
msgbox PetalburgCity_Gym_Text_DadPlayerGoWithWally, MSGBOX_DEFAULT
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_NormanAddressWallySouth
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_NormanAddressWallyNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_NormanAddressWallyWest
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_NormanAddressWallyEast
msgbox PetalburgCity_Gym_Text_IllLoanYouMyZigzagoon, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_WallyThankYouAndDadGivesPokeBall, MSGBOX_DEFAULT
msgbox PetalburgCity_Gym_Text_WallyOhWowThankYou, MSGBOX_DEFAULT
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_NormanFaceDoorSouth
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_NormanFaceDoorNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_NormanFaceDoorWest
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_NormanFaceDoorEast
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_WallyFacePlayer
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_WallyFaceDown
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_WallyFacePlayer
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_WallyFacePlayer
msgbox PetalburgCity_Gym_Text_WouldYouReallyComeWithMe, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
setflag FLAG_DONT_TRANSITION_MUSIC
2021-05-21 15:08:00 -05:00
playbgm MUS_FOLLOW_ME, FALSE
call_if_eq VAR_0x8008, 0, PetalburgCity_Gym_EventScript_ExitGymWithWallySouth
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_ExitGymWithWallyNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_ExitGymWithWallyWest
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_ExitGymWithWallyEast
removeobject LOCALID_WALLY
setflag FLAG_HIDE_PETALBURG_CITY_WALLYS_MOM
setvar VAR_PETALBURG_GYM_STATE, 1
2019-08-05 11:23:45 -04:00
setvar VAR_PETALBURG_CITY_STATE, 2
2018-10-18 15:28:59 -04:00
clearflag FLAG_HIDE_PETALBURG_CITY_WALLY
clearflag FLAG_HIDE_PETALBURG_GYM_WALLY
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_RIVAL
special InitBirchState
warp MAP_PETALBURG_CITY, 15, 8
2017-11-09 19:21:31 -06:00
waitstate
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallyArriveSouth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyArrive
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallyArriveNorth::
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyArriveNorth
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterRight
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterRight
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallyArriveWestEast::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyArrive
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallySouth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyExitSouthWest
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallySouth
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallyNorth::
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyExitNorth
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallyNorth
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallyWest::
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyExitSouthWest
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallyWest
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallyEast::
applymovement LOCALID_WALLY, PetalburgCity_Gym_Movement_WallyExitEast
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallyEast
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressPlayerSouth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterUp
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressPlayerNorth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterUp
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressPlayerWest::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterRight
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterLeft
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressPlayerEast::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterLeft
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterRight
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressWallySouth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressWallyNorth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterRight
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressWallyWest::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanAddressWallyEast::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallyFacePlayer::
applymovement LOCALID_WALLY, Common_Movement_FacePlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallyFaceDown::
applymovement LOCALID_WALLY, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanNoBadges::
msgbox PetalburgCity_Gym_Text_NormanGoToRustboro, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanOneBadge::
msgbox PetalburgCity_Gym_Text_NormanGoToDewford, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanTwoBadges::
msgbox PetalburgCity_Gym_Text_YouHaveGottenStronger, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanThreeBadges::
msgbox PetalburgCity_Gym_Text_YouHaveGottenStronger, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanFaceDoorSouth::
2017-11-09 19:21:31 -06:00
return
@ For all other NormanFaceDoorX, Norman is already facing the door from NormanAddressWallyX
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanFaceDoorNorth::
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanFaceDoorWest::
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanFaceDoorEast::
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanPostBattle::
call PetalburgCity_Gym_EventScript_ShouldGiveEnigmaBerry
goto_if_eq VAR_RESULT, TRUE, PetalburgCity_Gym_EventScript_GiveEnigmaBerry
goto_if_unset FLAG_RECEIVED_TM42, PetalburgCity_Gym_EventScript_GiveFacade2
goto_if_set FLAG_SYS_GAME_CLEAR, PetalburgCity_Gym_EventScript_NoAmountOfTrainingIsEnough
msgbox PetalburgCity_Gym_Text_DadGoingToKeepTraining, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GiveFacade2::
call PetalburgCity_Gym_EventScript_GiveFacade
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanRematch::
trainerbattle_rematch_double TRAINER_NORMAN_1, PetalburgCity_Gym_Text_NormanPreRematch, PetalburgCity_Gym_Text_NormanRematchDefeat, PetalburgCity_Gym_Text_NormanRematchNeedTwoMons
msgbox PetalburgCity_Gym_Text_NormanPostRematch, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ShouldGiveEnigmaBerry::
2017-11-09 19:21:31 -06:00
specialvar VAR_RESULT, IsEnigmaBerryValid
goto_if_eq VAR_RESULT, FALSE, PetalburgCity_Gym_EventScript_DontGiveEnigmaBerry
2021-08-05 12:46:11 -04:00
checkitem ITEM_ENIGMA_BERRY
goto_if_eq VAR_RESULT, TRUE, PetalburgCity_Gym_EventScript_DontGiveEnigmaBerry
2021-08-05 12:46:11 -04:00
checkpcitem ITEM_ENIGMA_BERRY
goto_if_eq VAR_RESULT, TRUE, PetalburgCity_Gym_EventScript_DontGiveEnigmaBerry
goto_if_eq VAR_ENIGMA_BERRY_AVAILABLE, 0, PetalburgCity_Gym_EventScript_DontGiveEnigmaBerry
msgbox PetalburgCity_Gym_Text_GiveEnigmaBerry, MSGBOX_DEFAULT
setvar VAR_RESULT, TRUE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_DontGiveEnigmaBerry::
setvar VAR_RESULT, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GiveEnigmaBerry::
giveitem ITEM_ENIGMA_BERRY
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
2018-01-21 12:36:11 +01:00
setvar VAR_ENIGMA_BERRY_AVAILABLE, 0
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NormanBattle::
2020-01-08 15:12:10 -05:00
msgbox PetalburgCity_Gym_Text_NormanIntro, MSGBOX_DEFAULT
trainerbattle_no_intro TRAINER_NORMAN_1, PetalburgCity_Gym_Text_NormanDefeat
message PetalburgCity_Gym_Text_ReceivedBalanceBadge
2017-11-09 19:21:31 -06:00
waitmessage
call Common_EventScript_PlayGymBadgeFanfare
msgbox PetalburgCity_Gym_Text_ExplainBalanceBadgeTakeThis, MSGBOX_DEFAULT
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_PETALBURG_GYM
setvar VAR_PETALBURG_GYM_STATE, 7
2017-11-09 19:21:31 -06:00
setflag FLAG_BADGE05_GET
2019-09-13 20:22:09 -04:00
special ResetHealLocationFromDewford
call EventScript_HideMrBriney
2018-10-18 15:28:59 -04:00
setflag FLAG_HIDE_MAUVILLE_GYM_WATTSON
clearflag FLAG_HIDE_MAUVILLE_CITY_WATTSON
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 5
2019-08-14 23:38:42 -04:00
call Common_EventScript_SetGymTrainers
clearflag FLAG_HIDE_DEWFORD_HALL_SLUDGE_BOMB_MAN
call PetalburgCity_Gym_EventScript_UnlockAllDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
call PetalburgCity_Gym_EventScript_GiveFacade
2017-11-09 19:21:31 -06:00
delay 30
msgbox PetalburgCity_Gym_Text_DadHappyAndSad, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
delay 40
playse SE_DOOR
delay 10
addobject LOCALID_WALLYS_DAD
2017-11-09 19:21:31 -06:00
switch VAR_FACING
case DIR_NORTH, PetalburgCity_Gym_EventScript_WallysDadArrivesNorth
case DIR_WEST, PetalburgCity_Gym_EventScript_WallysDadArrivesWest
case DIR_EAST, PetalburgCity_Gym_EventScript_WallysDadArrivesEast
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GiveFacade::
giveitem ITEM_TM42
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_BagIsFull
2019-01-02 21:12:43 +00:00
setflag FLAG_RECEIVED_TM42
msgbox PetalburgCity_Gym_Text_ExplainFacade, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadArrivesNorth::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
goto PetalburgCity_Gym_EventScript_WallysDadArrives
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadArrivesEast::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 2
goto PetalburgCity_Gym_EventScript_WallysDadArrives
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadArrivesWest::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 3
goto PetalburgCity_Gym_EventScript_WallysDadArrives
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadArrives::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadEnterGym
2017-11-09 19:21:31 -06:00
waitmovement 0
playse SE_PIN
applymovement LOCALID_WALLYS_DAD, Common_Movement_ExclamationMark
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_WALLYS_DAD, Common_Movement_Delay48
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 10
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_WallysDadApproachPlayerNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_WallysDadApproachPlayerEast
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_WallysDadApproachPlayerWest
msgbox PetalburgCity_Gym_Text_PleaseComeWithMe, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
delay 20
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_WallysDadFaceNormanNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_WallysDadFaceNormanEast
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_WallysDadFaceNormanWest
msgbox PetalburgCity_Gym_Text_LetMeBorrowPlayer, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
setflag FLAG_DONT_TRANSITION_MUSIC
2021-05-21 15:08:00 -05:00
playbgm MUS_FOLLOW_ME, FALSE
call_if_eq VAR_0x8008, 1, PetalburgCity_Gym_EventScript_ExitGymWithWallysDadNorth
call_if_eq VAR_0x8008, 2, PetalburgCity_Gym_EventScript_ExitGymWithWallysDadEast
call_if_eq VAR_0x8008, 3, PetalburgCity_Gym_EventScript_ExitGymWithWallysDadWest
removeobject LOCALID_WALLYS_DAD
2019-08-05 11:23:45 -04:00
setvar VAR_PETALBURG_CITY_STATE, 4
clearflag FLAG_HIDE_PETALBURG_CITY_WALLYS_DAD
warp MAP_PETALBURG_CITY, 15, 8
2017-11-09 19:21:31 -06:00
waitstate
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadFaceNormanNorth::
applymovement LOCALID_WALLYS_DAD, Common_Movement_WalkInPlaceFasterUp
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadFaceNormanEast::
applymovement LOCALID_WALLYS_DAD, Common_Movement_WalkInPlaceFasterRight
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadFaceNormanWest::
applymovement LOCALID_WALLYS_DAD, Common_Movement_WalkInPlaceFasterLeft
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadApproachPlayerNorth::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadApproachPlayerNorth
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterLeft
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterLeft
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadApproachPlayerEast::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadApproachPlayerEast
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_WallysDadApproachPlayerWest::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadApproachPlayerWest
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterDown
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallysDadNorth::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadExitNorth
applymovement LOCALID_NORMAN, Common_Movement_WalkInPlaceFasterDown
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallysDadNorth
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallysDadEast::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadExitEast
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallysDadEast
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ExitGymWithWallysDadWest::
applymovement LOCALID_WALLYS_DAD, PetalburgCity_Gym_Movement_WallysDadExitWest
applymovement OBJ_EVENT_ID_PLAYER, PetalburgCity_Gym_Movement_PlayerExitWithWallysDadWest
2017-11-09 19:21:31 -06:00
waitmovement 0
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadExitNorth:
walk_down
walk_down
walk_left
walk_left
walk_down
walk_down
walk_in_place_faster_up
delay_8
walk_in_place_down
set_invisible
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadExitEast:
walk_down
walk_down
walk_left
walk_left
walk_down
walk_down
walk_in_place_faster_up
delay_8
walk_in_place_down
set_invisible
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadExitWest:
walk_down
walk_down
walk_left
walk_left
walk_left
walk_left
walk_down
walk_down
walk_in_place_faster_up
delay_8
walk_in_place_down
set_invisible
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallysDadNorth:
delay_16
walk_down
walk_down
walk_left
walk_left
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallysDadEast:
delay_16
walk_down
walk_down
walk_left
walk_down
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallysDadWest:
delay_16
walk_down
walk_down
walk_down
walk_left
walk_left
walk_left
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadEnterGym:
walk_up
delay_8
walk_in_place_faster_right
delay_8
walk_in_place_faster_left
delay_16
walk_in_place_faster_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadApproachPlayerNorth:
walk_right
walk_right
walk_up
walk_up
walk_up
walk_in_place_faster_right
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadApproachPlayerEast:
walk_right
walk_right
walk_up
walk_up
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallysDadApproachPlayerWest:
walk_right
walk_right
walk_up
walk_up
walk_right
walk_right
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_Unused:
walk_in_place_faster_up
delay_16
delay_16
delay_16
delay_16
delay_16
delay_8
walk_in_place_faster_down
step_end
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyArriveNorth:
delay_16
walk_up
delay_16
delay_8
walk_up
walk_right
walk_up
walk_up
walk_in_place_faster_left
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyArrive:
delay_16
walk_up
delay_16
delay_8
walk_up
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyExitNorth:
walk_down
walk_down
walk_down
walk_down
walk_in_place_faster_up
delay_16
walk_in_place_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyExitEast:
walk_down
walk_down
walk_right
walk_down
walk_in_place_faster_up
delay_16
walk_in_place_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_WallyExitSouthWest:
walk_down
walk_down
walk_down
walk_in_place_faster_up
delay_16
walk_in_place_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallyNorth:
delay_16
delay_16
delay_16
walk_down
walk_down
walk_down
delay_8
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallySouth:
delay_16
delay_16
walk_right
walk_down
walk_down
walk_down
walk_down
walk_down
delay_8
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallyWest:
delay_16
delay_16
walk_down
walk_down
walk_down
walk_down
delay_8
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Movement_PlayerExitWithWallyEast:
walk_in_place_faster_down
delay_16
delay_16
walk_down
walk_down
walk_down
walk_right
walk_down
delay_8
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_NoAmountOfTrainingIsEnough::
msgbox PetalburgCity_Gym_Text_DadNoAmountOfTrainingIsEnough, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SpeedRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
goto_if_lt VAR_PETALBURG_GYM_STATE, 6, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 85
msgbox PetalburgCity_Gym_Text_EnterSpeedRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_EnterRoom::
2017-11-09 19:21:31 -06:00
closemessage
delay 30
warpdoor MAP_PETALBURG_CITY_GYM, VAR_0x8008, VAR_0x8009
2017-11-09 19:21:31 -06:00
waitstate
releaseall
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_DontEnterRoom::
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_DoorLocked::
msgbox PetalburgCity_Gym_Text_DoorAppearsLocked, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
@ VAR_0x8008 and VAR_0x8009 below are the x and y coordinates of the warp
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_AccuracyRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
goto_if_lt VAR_PETALBURG_GYM_STATE, 6, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 98
msgbox PetalburgCity_Gym_Text_EnterAccuracyRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ConfusionRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_RANDALL, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 46
msgbox PetalburgCity_Gym_Text_EnterConfusionRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_LeftDefenseRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_RANDALL, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 59
msgbox PetalburgCity_Gym_Text_EnterDefenseRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RightDefenseRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_MARY, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 59
msgbox PetalburgCity_Gym_Text_EnterDefenseRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RecoveryRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_MARY, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 72
msgbox PetalburgCity_Gym_Text_EnterRecoveryRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_LeftStrengthRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_PARKER, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 20
msgbox PetalburgCity_Gym_Text_EnterStrengthRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RightStrengthRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_ALEXIA, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 20
msgbox PetalburgCity_Gym_Text_EnterStrengthRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_LeftOHKORoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_ALEXIA, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 33
msgbox PetalburgCity_Gym_Text_EnterOHKORoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RightOHKORoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_GEORGE, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 33
msgbox PetalburgCity_Gym_Text_EnterOHKORoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_LeftGymLeadersRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_JODY, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 1
setvar VAR_0x8009, 7
msgbox PetalburgCity_Gym_Text_EnterGymLeadersRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RightGymLeadersRoomDoor::
2017-11-09 19:21:31 -06:00
lockall
2020-01-12 20:20:02 -05:00
goto_if_not_defeated TRAINER_BERKE, PetalburgCity_Gym_EventScript_DoorLocked
2017-11-09 19:21:31 -06:00
setvar VAR_0x8008, 7
setvar VAR_0x8009, 7
msgbox PetalburgCity_Gym_Text_EnterGymLeadersRoom, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, PetalburgCity_Gym_EventScript_EnterRoom
goto_if_eq VAR_RESULT, NO, PetalburgCity_Gym_EventScript_DontEnterRoom
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Randall::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_RANDALL, PetalburgCity_Gym_Text_RandallIntro, PetalburgCity_Gym_Text_RandallDefeat, PetalburgCity_Gym_EventScript_SlideOpenSpeedRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_RandallPostBadge
msgbox PetalburgCity_Gym_Text_RandallPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenSpeedRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenSpeedRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RandallPostBadge::
msgbox PetalburgCity_Gym_Text_RandallPostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Parker::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_PARKER, PetalburgCity_Gym_Text_ParkerIntro, PetalburgCity_Gym_Text_ParkerDefeat, PetalburgCity_Gym_EventScript_SlideOpenConfusionRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_ParkerPostBadge
msgbox PetalburgCity_Gym_Text_ParkerPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenConfusionRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenConfusionRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_ParkerPostBadge::
msgbox PetalburgCity_Gym_Text_ParkerPostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_George::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_GEORGE, PetalburgCity_Gym_Text_GeorgeIntro, PetalburgCity_Gym_Text_GeorgeDefeat, PetalburgCity_Gym_EventScript_SlideOpenRecoveryRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_GeorgePostBadge
msgbox PetalburgCity_Gym_Text_GeorgePostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenRecoveryRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenRecoveryRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GeorgePostBadge::
msgbox PetalburgCity_Gym_Text_GeorgePostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Berke::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_BERKE, PetalburgCity_Gym_Text_BerkeIntro, PetalburgCity_Gym_Text_BerkeDefeat, PetalburgCity_Gym_EventScript_SlideOpenOHKORoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_BerkePostBadge
msgbox PetalburgCity_Gym_Text_BerkePostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenOHKORoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenOHKORoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_BerkePostBadge::
msgbox PetalburgCity_Gym_Text_BerkePostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Mary::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_MARY, PetalburgCity_Gym_Text_MaryIntro, PetalburgCity_Gym_Text_MaryDefeat, PetalburgCity_Gym_EventScript_SlideOpenAccuracyRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_MaryPostBadge
msgbox PetalburgCity_Gym_Text_MaryPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenAccuracyRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenAccuracyRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_MaryPostBadge::
msgbox PetalburgCity_Gym_Text_MaryPostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Alexia::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_ALEXIA, PetalburgCity_Gym_Text_AlexiaIntro, PetalburgCity_Gym_Text_AlexiaDefeat, PetalburgCity_Gym_EventScript_SlideOpenDefenseRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_AlexiaPostBadge
msgbox PetalburgCity_Gym_Text_AlexiaPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenDefenseRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenDefenseRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_AlexiaPostBadge::
msgbox PetalburgCity_Gym_Text_AlexiaPostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_Jody::
2020-01-08 15:12:10 -05:00
trainerbattle_single TRAINER_JODY, PetalburgCity_Gym_Text_JodyIntro, PetalburgCity_Gym_Text_JodyDefeat, PetalburgCity_Gym_EventScript_SlideOpenStrengthRoomDoors
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_JodyPostBadge
msgbox PetalburgCity_Gym_Text_JodyPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenStrengthRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8005, 0
call PetalburgCity_Gym_EventScript_OpenStrengthRoomDoors
2017-11-09 19:21:31 -06:00
special DrawWholeMapView
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_JodyPostBadge::
msgbox PetalburgCity_Gym_Text_JodyPostBadge, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
@ VAR_0x8004 below is the room number
@ VAR_0x8005 below is 0 when the door should be slid open and 1 when it should be unlocked immediately
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenGymEntranceDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 1
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetEntranceRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenSpeedRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 2
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetSpeedRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenAccuracyRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 3
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetAccuracyRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenConfusionRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 4
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetConfusionRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenDefenseRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 5
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetDefenseRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenRecoveryRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 6
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetRecoveryRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenStrengthRoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 7
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetStrengthRoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_OpenOHKORoomDoors::
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 8
call_if_eq VAR_0x8005, 0, PetalburgCity_Gym_EventScript_SlideOpenRoomDoors
call_if_eq VAR_0x8005, 1, PetalburgCity_Gym_EventScript_UnlockRoomDoors
call PetalburgCity_Gym_EventScript_SetOHKORoomDoorMetatiles
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetEntranceRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 85, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 85, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
setmetatile 1, 98, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 98, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetSpeedRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 46, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 46, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
setmetatile 1, 59, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 59, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetAccuracyRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 59, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 59, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
setmetatile 1, 72, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 72, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetConfusionRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 1, 20, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 20, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetDefenseRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 20, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 20, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
setmetatile 1, 33, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 33, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetRecoveryRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 33, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 33, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetStrengthRoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 1, 7, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 2, 7, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SetOHKORoomDoorMetatiles::
2021-11-16 17:12:16 -05:00
setmetatile 6, 7, METATILE_PetalburgGym_RoomEntrance_Left, FALSE
setmetatile 7, 7, METATILE_PetalburgGym_RoomEntrance_Right, FALSE
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_SlideOpenRoomDoors::
special PetalburgGymSlideOpenRoomDoors
2017-11-09 19:21:31 -06:00
waitstate
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_UnlockRoomDoors::
special PetalburgGymUnlockRoomDoors
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GymGuide::
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, PetalburgCity_Gym_EventScript_GymGuidePostVictory
msgbox PetalburgCity_Gym_Text_GymGuideAdvice, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GymGuidePostVictory::
msgbox PetalburgCity_Gym_Text_GymGuidePostVictory, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_LeftGymStatue::
2017-11-09 19:21:31 -06:00
lockall
goto_if_set FLAG_BADGE05_GET, PetalburgCity_Gym_EventScript_GymStatueCertified
goto PetalburgCity_Gym_EventScript_GymStatue
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_RightGymStatue::
2017-11-09 19:21:31 -06:00
lockall
goto_if_set FLAG_BADGE05_GET, PetalburgCity_Gym_EventScript_GymStatueCertified
goto PetalburgCity_Gym_EventScript_GymStatue
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GymStatueCertified::
msgbox PetalburgCity_Gym_Text_GymStatueCertified, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_EventScript_GymStatue::
msgbox PetalburgCity_Gym_Text_GymStatue, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadYoureHereWithYourPokemon:
2017-11-09 19:21:31 -06:00
.string "DAD: Hm?\p"
2018-12-07 10:41:08 -05:00
.string "Well, if it isn't {PLAYER}!\n"
.string "So you're all finished moving in?\p"
.string "I'm surprised that you managed to\n"
2017-11-09 19:21:31 -06:00
.string "get here by yourself.\p"
.string "Oh, I see.\n"
2018-12-07 10:41:08 -05:00
.string "You're with your POKéMON.\p"
.string "Hm… Then I guess you're going to\n"
2017-11-09 19:21:31 -06:00
.string "become a TRAINER like me, {PLAYER}.\p"
2018-12-07 10:41:08 -05:00
.string "That's great news!\n"
.string "I'll be looking forward to it!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WallyIdLikeAPokemon:
2017-11-09 19:21:31 -06:00
.string "Um… I…\n"
2018-12-07 10:41:08 -05:00
.string "I'd like to get a POKéMON, please…$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadOhYoureWallyRight:
2018-12-07 10:41:08 -05:00
.string "DAD: Hm? You're… Uh… Oh, right.\n"
.string "You're WALLY, right?$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WallyIveNeverCaughtAPokemon:
2018-12-07 10:41:08 -05:00
.string "WALLY: I'm going to go stay with my\n"
2017-11-09 19:21:31 -06:00
.string "relatives in VERDANTURF TOWN.\p"
.string "I thought I would be lonely by myself,\n"
.string "so I wanted to take a POKéMON along.\p"
2018-12-07 10:41:08 -05:00
.string "But I've never caught a POKéMON before.\n"
.string "I don't know how…$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadHmISee:
2017-11-09 19:21:31 -06:00
.string "DAD: Hm. I see.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadPlayerGoWithWally:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}, you heard that,\n"
.string "right?\p"
.string "Go with WALLY and make sure that he\n"
.string "safely catches a POKéMON.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_IllLoanYouMyZigzagoon:
2018-12-07 10:41:08 -05:00
.string "WALLY, here, I'll loan you my POKéMON.\p"
2017-11-09 19:21:31 -06:00
.string "WALLY received a ZIGZAGOON!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WallyThankYouAndDadGivesPokeBall:
2017-11-09 19:21:31 -06:00
.string "WALLY: Oh, wow!\n"
.string "A POKéMON!\p"
2018-12-07 10:41:08 -05:00
.string "DAD: Hm. I'll give you a POKé BALL, too.\n"
2017-11-09 19:21:31 -06:00
.string "Go for it!\p"
.string "WALLY received a POKé BALL!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WallyOhWowThankYou:
2017-11-09 19:21:31 -06:00
.string "WALLY: Oh, wow!\n"
.string "Thank you!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WouldYouReallyComeWithMe:
2017-11-09 19:21:31 -06:00
.string "{PLAYER}… Would you really come\n"
.string "with me?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadSoDidItWorkOut:
2017-11-09 19:21:31 -06:00
.string "DAD: So, did it work out?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_WallyThankYouBye:
2017-11-09 19:21:31 -06:00
.string "WALLY: Thank you, yes, it did.\n"
2018-12-07 10:41:08 -05:00
.string "Here's your POKéMON back.\p"
2017-11-09 19:21:31 -06:00
.string "{PLAYER}, thank you for coming along\n"
.string "with me.\p"
.string "You two are why I was able to catch\n"
.string "my POKéMON.\p"
2018-12-07 10:41:08 -05:00
.string "I promise I'll take really good\n"
2017-11-09 19:21:31 -06:00
.string "care of it.\p"
2018-12-07 10:41:08 -05:00
.string "Oh! My mom's waiting for me,\n"
2017-11-09 19:21:31 -06:00
.string "so I have to go!\p"
.string "Bye, {PLAYER}!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadGoCollectBadges:
2017-11-09 19:21:31 -06:00
.string "DAD: Now…\p"
.string "{PLAYER}, if you want to become a\n"
2018-12-07 10:41:08 -05:00
.string "strong TRAINER, here's my advice.\p"
2017-11-09 19:21:31 -06:00
.string "Head for RUSTBORO CITY beyond this\n"
.string "town.\p"
.string "There, you should challenge\n"
.string "the GYM LEADER, ROXANNE.\p"
.string "After her, go on to other POKéMON\n"
.string "GYMS and defeat their LEADERS.\p"
.string "Collect BADGES from them,\n"
.string "understood?\p"
2018-12-07 10:41:08 -05:00
.string "Of course, I'm a GYM LEADER, too.\n"
.string "We'll battle one day, {PLAYER}.\p"
.string "But that's only after you become\n"
2017-11-09 19:21:31 -06:00
.string "stronger.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanGoToRustboro:
2018-12-07 10:41:08 -05:00
.string "DAD: Hm? Aren't you going to the\n"
2017-11-09 19:21:31 -06:00
.string "POKéMON GYM in RUSTBORO CITY?\p"
2018-12-07 10:41:08 -05:00
.string "There's no challenge for me to\n"
2017-11-09 19:21:31 -06:00
.string "battle a greenhorn TRAINER.\p"
.string "{PLAYER}, I want you to challenge me\n"
.string "when you become a lot stronger.\p"
2018-12-07 10:41:08 -05:00
.string "I'll battle you, {PLAYER}, when you\n"
2017-11-09 19:21:31 -06:00
.string "can show me four GYM BADGES, okay?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanGoToDewford:
2018-12-07 10:41:08 -05:00
.string "DAD: I see… So, you've beaten\n"
2017-11-09 19:21:31 -06:00
.string "the GYM LEADER in RUSTBORO CITY.\p"
.string "But there are many more TRAINERS\n"
.string "who are stronger than you, {PLAYER}.\p"
.string "Across the sea in DEWFORD TOWN is a\n"
.string "GYM LEADER named BRAWLY.\p"
.string "You should go challenge him.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_YouHaveGottenStronger:
2017-11-09 19:21:31 -06:00
.string "DAD: Hm… {PLAYER}, you have gotten\n"
.string "stronger.\p"
.string "I can tell by the number of BADGES\n"
2018-12-07 10:41:08 -05:00
.string "that you've earned.$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanIntro:
2017-11-09 19:21:31 -06:00
.string "DAD: Hm…\n"
.string "So, you did get four GYM BADGES.\p"
.string "Fine, as I promised, we will have\n"
.string "a POKéMON battle.\p"
.string "{PLAYER}…\p"
2018-12-07 10:41:08 -05:00
.string "I'm so happy that I can have\n"
2017-11-09 19:21:31 -06:00
.string "a real battle with my own child.\p"
.string "But, a battle is a battle!\p"
.string "I will do everything in my power as\n"
.string "a GYM LEADER to win.\p"
2018-12-07 10:41:08 -05:00
.string "{PLAYER}, you'd better give it your\n"
2017-11-09 19:21:31 -06:00
.string "best shot, too!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanDefeat:
2017-11-09 19:21:31 -06:00
.string "\p"
2018-12-07 10:41:08 -05:00
.string "I… I can't…\p"
.string "I can't believe it. {PLAYER}…\p"
2017-11-09 19:21:31 -06:00
.string "I lost to {PLAYER}?\p"
.string "But, rules are rules!\n"
.string "Here, take this.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ReceivedBalanceBadge:
2017-11-09 19:21:31 -06:00
.string "{PLAYER} received the BALANCE BADGE\n"
.string "from DAD!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ExplainBalanceBadgeTakeThis:
2017-11-09 19:21:31 -06:00
.string "DAD: With that BADGE, the DEFENSE\n"
.string "of all your POKéMON will increase.\p"
.string "POKéMON that know the HM move SURF\n"
.string "will be able to travel over water.\p"
2018-12-07 10:41:08 -05:00
.string "This is my gift to you. {PLAYER}, I'm\n"
2017-11-09 19:21:31 -06:00
.string "sure you can use it correctly.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ExplainFacade:
2017-11-09 19:21:31 -06:00
.string "DAD: TM42 contains FACADE.\p"
.string "It doubles the power of moves if\n"
.string "the POKéMON is poisoned, paralyzed,\l"
.string "or burned.\p"
.string "It might be able to turn a bad\n"
.string "situation into an advantage.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadHappyAndSad:
2018-12-07 10:41:08 -05:00
.string "DAD: As the GYM LEADER, I can't\n"
2017-11-09 19:21:31 -06:00
.string "express how upset I am…\p"
.string "But as a father, it makes me both\n"
2018-12-07 10:41:08 -05:00
.string "happy and a little sad. It's odd…$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_PleaseComeWithMe:
2017-11-09 19:21:31 -06:00
.string "Ah, there you are, {PLAYER}{KUN}!\p"
.string "Please come with me.\n"
.string "I have something I want you to have.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_LetMeBorrowPlayer:
2018-12-07 10:41:08 -05:00
.string "NORMAN, you don't mind, do you?\p"
2017-11-09 19:21:31 -06:00
.string "Let me borrow your {PLAYER}{KUN} for\n"
.string "a minute or two.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadGoingToKeepTraining:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}, you should go visit\n"
.string "your mother every so often.\p"
2018-12-07 10:41:08 -05:00
.string "I'm going to stay here and redouble\n"
2017-11-09 19:21:31 -06:00
.string "my training.\p"
.string "It would bother me as a TRAINER to\n"
.string "not avenge my loss to you, {PLAYER}!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DadNoAmountOfTrainingIsEnough:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}, how are things going?\p"
.string "The world of POKéMON is deep.\p"
.string "I honestly think that no amount of\n"
.string "training would ever be enough.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GymGuideAdvice:
2018-12-07 10:41:08 -05:00
.string "Hey, how's it going, CHAMPION-\n"
2017-11-09 19:21:31 -06:00
.string "bound {PLAYER}?\p"
.string "The doors in this GYM open when you\n"
.string "beat the awaiting TRAINERS.\p"
.string "Whoops! The doors in this room are\n"
2018-12-07 10:41:08 -05:00
.string "already open, so don't attack me!\p"
2017-11-09 19:21:31 -06:00
.string "The TRAINERS of PETALBURG GYM\n"
.string "use all kinds of items.\p"
.string "The door at the left leads to\n"
.string "the SPEED ROOM.\p"
.string "The door at the right leads to\n"
.string "the ACCURACY ROOM.\p"
2018-12-07 10:41:08 -05:00
.string "The room's name will be on\n"
2017-11-09 19:21:31 -06:00
.string "the door, so choose carefully.\p"
2018-12-07 10:41:08 -05:00
.string "Once you've chosen the door…\n"
2017-11-09 19:21:31 -06:00
.string "Well, hey, go for it!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GymGuidePostVictory:
2018-12-07 10:41:08 -05:00
.string "{PLAYER}! Whoa! You've overcome even\n"
2017-11-09 19:21:31 -06:00
.string "your own father!\p"
.string "Like, whoa!\n"
.string "What a stunning turn of events!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_RandallIntro:
2017-11-09 19:21:31 -06:00
.string "The ability to attack before the\n"
.string "opponent…\p"
.string "Just that alone puts me at a great\n"
2018-12-07 10:41:08 -05:00
.string "advantage, don't you agree?$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_RandallDefeat:
2017-11-09 19:21:31 -06:00
.string "That was a magnificent battle!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_RandallPostBattle:
2017-11-09 19:21:31 -06:00
.string "Go on to the next room where a new\n"
.string "challenge awaits you.\p"
.string "At the left is the CONFUSION ROOM.\p"
.string "The right door leads to the DEFENSE\n"
.string "ROOM.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_RandallPostBadge:
2017-11-09 19:21:31 -06:00
.string "Whomever you beat, and whomever you\n"
.string "may lose to, you never shirk from\l"
.string "training yourself and your POKéMON.\p"
2018-12-07 10:41:08 -05:00
.string "That's what I think being a\n"
2017-11-09 19:21:31 -06:00
.string "GYM LEADER is all about.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ParkerIntro:
2017-11-09 19:21:31 -06:00
.string "This is the CONFUSION ROOM.\p"
.string "Let me see how well bonded you are\n"
.string "with your POKéMON!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ParkerDefeat:
2018-12-07 10:41:08 -05:00
.string "I couldn't confuse your team enough…\n"
2017-11-09 19:21:31 -06:00
.string "You share a strong bond together.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ParkerPostBattle:
2017-11-09 19:21:31 -06:00
.string "The next room is the STRENGTH ROOM.\n"
.string "Can you withstand brute force?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_ParkerPostBadge:
2017-11-09 19:21:31 -06:00
.string "After you beat our LEADER, the\n"
.string "training has become a lot tougher.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GeorgeIntro:
2018-12-07 10:41:08 -05:00
.string "Just when you think you're going to\n"
2017-11-09 19:21:31 -06:00
.string "win, your opponent restores HP…\p"
.string "Can you just imagine how awful that\n"
.string "must feel?\p"
2018-12-07 10:41:08 -05:00
.string "I'll show you exactly how awful it\n"
2017-11-09 19:21:31 -06:00
.string "feels!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GeorgeDefeat:
2018-12-07 10:41:08 -05:00
.string "I couldn't restore HP enough…\n"
2017-11-09 19:21:31 -06:00
.string "What ATTACK power…$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GeorgePostBattle:
2017-11-09 19:21:31 -06:00
.string "I should have expected no less from\n"
2018-12-07 10:41:08 -05:00
.string "our LEADER's kid.\p"
.string "No, wait! A TRAINER's abilities are\n"
2017-11-09 19:21:31 -06:00
.string "earned only through effort.\p"
.string "I lost because my own efforts\n"
2018-12-07 10:41:08 -05:00
.string "weren't enough.\p"
2017-11-09 19:21:31 -06:00
.string "Go on! The ONE-HIT KO ROOM is next.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GeorgePostBadge:
2018-12-07 10:41:08 -05:00
.string "I'm going to keep training at GYMS.\n"
.string "One day, I'll become a LEADER.$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_BerkeIntro:
2018-12-07 10:41:08 -05:00
.string "I'm not going to take it easy just\n"
.string "because you're our LEADER's kid.\p"
.string "I'll show you how horrid it is for\n"
2017-11-09 19:21:31 -06:00
.string "a POKéMON to take a critical hit!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_BerkeDefeat:
2017-11-09 19:21:31 -06:00
.string "Your power…\n"
2018-12-07 10:41:08 -05:00
.string "You're the real deal.$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_BerkePostBattle:
2017-11-09 19:21:31 -06:00
.string "Your father really is strong.\n"
2018-12-07 10:41:08 -05:00
.string "He's a TRAINER worth my respect.\p"
2017-11-09 19:21:31 -06:00
.string "And, I sense the same glow coming\n"
.string "from you as your father.\p"
2018-12-07 10:41:08 -05:00
.string "I hope that you'll stage a terrific\n"
2017-11-09 19:21:31 -06:00
.string "battle with your father!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_BerkePostBadge:
2017-11-09 19:21:31 -06:00
.string "Since your dad became the LEADER,\n"
.string "the TRAINERS of PETALBURG CITY have\l"
.string "become a lot tougher.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_MaryIntro:
2017-11-09 19:21:31 -06:00
.string "Giggle…\n"
.string "This is the ACCURACY ROOM.\p"
2018-12-07 10:41:08 -05:00
.string "It's pretty nasty when every attack\n"
2017-11-09 19:21:31 -06:00
.string "lands without fail.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_MaryDefeat:
2017-11-09 19:21:31 -06:00
.string "You were a cut above me…$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_MaryPostBattle:
2017-11-09 19:21:31 -06:00
.string "There are some even stronger\n"
.string "TRAINERS waiting for you.\p"
.string "The left is the DEFENSE ROOM, and\n"
.string "the right is the RECOVERY ROOM.\p"
2018-12-07 10:41:08 -05:00
.string "Your POKéMON's ATTACK power will be\n"
2017-11-09 19:21:31 -06:00
.string "on trial either way.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_MaryPostBadge:
2018-12-07 10:41:08 -05:00
.string "Do you know what we're trying to\n"
2017-11-09 19:21:31 -06:00
.string "achieve as TRAINERS?\p"
2018-12-07 10:41:08 -05:00
.string "We're striving to become soul mates\n"
2017-11-09 19:21:31 -06:00
.string "with our POKéMON.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_AlexiaIntro:
2017-11-09 19:21:31 -06:00
.string "The higher the DEFENSE, the more\n"
.string "reckless I can be in attack.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_AlexiaDefeat:
2018-12-07 10:41:08 -05:00
.string "Our defenses weren't enough…$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_AlexiaPostBattle:
2018-12-07 10:41:08 -05:00
.string "I think you've taught me a valuable\n"
2017-11-09 19:21:31 -06:00
.string "lesson here.\p"
.string "Now, go on! The left door goes to\n"
.string "the STRENGTH ROOM.\p"
.string "The right door opens to\n"
.string "the ONE-HIT KO ROOM.\p"
.string "Both of them have TRAINERS who are\n"
.string "skilled at offense.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_AlexiaPostBadge:
2017-11-09 19:21:31 -06:00
.string "Hi! Have you tried using SURF?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_JodyIntro:
2017-11-09 19:21:31 -06:00
.string "Our GYM LEADER told us to go all out\n"
.string "and beat you.\p"
.string "Even if you happen to be the\n"
2018-12-07 10:41:08 -05:00
.string "LEADER's kid!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_JodyDefeat:
2017-11-09 19:21:31 -06:00
.string "But… I went all out!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_JodyPostBattle:
2017-11-09 19:21:31 -06:00
.string "The way you use your POKéMON…\n"
2018-12-07 10:41:08 -05:00
.string "It's like your father's style.\p"
2017-11-09 19:21:31 -06:00
.string "Go on through! The GYM LEADER, your\n"
.string "father, is waiting!$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_JodyPostBadge:
2018-12-07 10:41:08 -05:00
.string "Sure, it's fine to make your POKéMON\n"
2017-11-09 19:21:31 -06:00
.string "stronger.\p"
.string "But what decides the winner?\p"
2018-12-07 10:41:08 -05:00
.string "Why, it's the feelings TRAINERS have\n"
2017-11-09 19:21:31 -06:00
.string "for their POKéMON.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DoorAppearsLocked:
2017-11-09 19:21:31 -06:00
.string "This door appears to be locked\n"
.string "right now…$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterSpeedRoom:
2017-11-09 19:21:31 -06:00
.string "“SPEED ROOM,” the sign says.\p"
.string "Do you want to go through?$"
@ Unused
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_DoorAppearsLocked2:
.string "This door appears to be locked\n"
.string "right now…$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterAccuracyRoom:
2017-11-09 19:21:31 -06:00
.string "“ACCURACY ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterConfusionRoom:
2017-11-09 19:21:31 -06:00
.string "“CONFUSION ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterDefenseRoom:
2017-11-09 19:21:31 -06:00
.string "“DEFENSE ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterRecoveryRoom:
2017-11-09 19:21:31 -06:00
.string "“RECOVERY ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterStrengthRoom:
2017-11-09 19:21:31 -06:00
.string "“STRENGTH ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterOHKORoom:
2017-11-09 19:21:31 -06:00
.string "“ONE-HIT KO ROOM,” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_EnterGymLeadersRoom:
2018-12-07 10:41:08 -05:00
.string "“GYM LEADER'S ROOM\p"
2017-11-09 19:21:31 -06:00
.string "“See for yourself what POKéMON await\n"
.string "you!” the sign says.\p"
.string "Do you want to go through?$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GymStatue:
2017-11-09 19:21:31 -06:00
.string "PETALBURG CITY POKéMON GYM$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_GymStatueCertified:
2017-11-09 19:21:31 -06:00
.string "PETALBURG CITY POKéMON GYM\p"
2018-12-07 10:41:08 -05:00
.string "NORMAN'S CERTIFIED TRAINERS:\n"
2017-11-09 19:21:31 -06:00
.string "{PLAYER}$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanPreRematch:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}…\n"
.string "I had a feeling that you would come.\p"
.string "I would never refuse to accept\n"
.string "a challenge from you.\p"
2018-12-07 10:41:08 -05:00
.string "You do understand, don't you?\p"
.string "Inside a GYM, it doesn't matter that\n"
2017-11-09 19:21:31 -06:00
.string "we are a parent and child.\p"
.string "…No, because we are parent and child,\n"
.string "we owe it to each other to do the best\l"
2018-12-07 10:41:08 -05:00
.string "we can. Isn't that right, {PLAYER}?$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanRematchDefeat:
2017-11-09 19:21:31 -06:00
.string "Uh… Haha…\n"
.string "Maybe that was going too hard…$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanPostRematch:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}…\n"
.string "What is your dream?\p"
.string "My dream…\n"
.string "Hahaha…\l"
.string "It has already come true, actually.$"
2021-07-20 15:18:31 -04:00
PetalburgCity_Gym_Text_NormanRematchNeedTwoMons:
2017-11-09 19:21:31 -06:00
.string "DAD: {PLAYER}…\n"
.string "I had a feeling that you would come.\p"
.string "I would never refuse to accept\n"
.string "a challenge from you.\p"
2018-12-07 10:41:08 -05:00
.string "You do understand, don't you?\p"
.string "Inside a GYM, it doesn't matter that\n"
2017-11-09 19:21:31 -06:00
.string "we are a parent and child.\p"
.string "Hm? Wait a second, {PLAYER}.\p"
.string "Do you only have one POKéMON that is\n"
.string "capable of battle?\p"
2018-12-07 10:41:08 -05:00
.string "Sorry, but you'll have to come back\n"
2017-11-09 19:21:31 -06:00
.string "with at least two POKéMON.$"