1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-03-08 08:27:52 +01:00

1399 lines
42 KiB
PHP
Raw Normal View History

.set LOCALID_FAT_MAN, 1
.set LOCALID_MAN_1, 2
.set LOCALID_RICH_BOY, 3
.set LOCALID_GRUNT_1, 5
.set LOCALID_COOK, 6
.set LOCALID_OLD_WOMAN, 7
.set LOCALID_GIRL, 8
.set LOCALID_TY, 9
.set LOCALID_GABBY, 10
.set LOCALID_CAPT_STERN, 11
.set LOCALID_GRUNT_2, 18
.set LOCALID_GRUNT_3, 19
.set LOCALID_GRUNT_4, 26
.set LOCALID_GRUNT_5, 27
.set LOCALID_GRUNT_6, 28
.set LOCALID_GRUNT_7, 29
.set LOCALID_GRUNT_8, 30
.set LOCALID_GRUNT_9, 31
.set LOCALID_GRUNT_11, 33
.set LOCALID_SCOTT, 35
2017-11-09 19:21:31 -06:00
SlateportCity_MapScripts:: @ 81DCC61
map_script MAP_SCRIPT_ON_TRANSITION, SlateportCity_OnTransition
2019-11-09 03:07:32 -05:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, SlateportCity_OnFrame
2017-11-09 19:21:31 -06:00
.byte 0
SlateportCity_OnTransition: @ 81DCC6C
2019-02-22 04:18:43 -05:00
setvar VAR_SLATEPORT_MUSEUM_1F_STATE, 0
2019-11-09 03:07:32 -05:00
call SlateportCity_EventScript_EnterSlateport
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_MovePeopleForSternInterview
compare VAR_SLATEPORT_OUTSIDE_MUSEUM_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_SetReadyForScottScene
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_EnterSlateport:: @ 81DCC8D
2017-11-09 19:21:31 -06:00
setflag FLAG_VISITED_SLATEPORT_CITY
2019-11-10 21:54:00 -05:00
setvar VAR_CONTEST_HALL_STATE, 0
2018-10-19 14:59:18 -04:00
setflag FLAG_HIDE_SLATEPORT_CITY_CONTEST_REPORTER
2017-11-09 19:21:31 -06:00
return
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_MovePeopleForSternInterview:: @ 81DCC99
setobjectxyperm LOCALID_CAPT_STERN, 28, 13
setobjectxyperm LOCALID_OLD_WOMAN, 25, 13
setobjectxyperm LOCALID_RICH_BOY, 25, 14
setobjectxyperm LOCALID_COOK, 27, 16
setobjectxyperm LOCALID_GIRL, 28, 16
setobjectxyperm LOCALID_FAT_MAN, 29, 16
setobjectxyperm LOCALID_MAN_1, 31, 14
setobjectmovementtype LOCALID_CAPT_STERN, MOVEMENT_TYPE_FACE_DOWN
setobjectmovementtype LOCALID_OLD_WOMAN, MOVEMENT_TYPE_FACE_DOWN_AND_RIGHT
setobjectmovementtype LOCALID_RICH_BOY, MOVEMENT_TYPE_FACE_UP_AND_RIGHT
setobjectmovementtype LOCALID_COOK, MOVEMENT_TYPE_FACE_UP
setobjectmovementtype LOCALID_GIRL, MOVEMENT_TYPE_FACE_UP
setobjectmovementtype LOCALID_FAT_MAN, MOVEMENT_TYPE_FACE_UP
setobjectmovementtype LOCALID_MAN_1, MOVEMENT_TYPE_FACE_LEFT
2017-11-09 19:21:31 -06:00
return
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_SetReadyForScottScene:: @ 81DCCE7
2019-03-10 08:10:59 -04:00
setflag FLAG_HIDE_MAP_NAME_POPUP
2017-11-09 19:21:31 -06:00
getplayerxy VAR_0x8004, VAR_0x8005
compare VAR_0x8004, 30
2019-11-09 03:07:32 -05:00
goto_if_eq SlateportCity_EventScript_MoveScottLeft
setobjectxyperm LOCALID_SCOTT, 23, 27
setobjectmovementtype LOCALID_SCOTT, MOVEMENT_TYPE_FACE_RIGHT
2017-11-09 19:21:31 -06:00
return
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_MoveScottLeft:: @ 81DCD06
setobjectxyperm LOCALID_SCOTT, 22, 27
setobjectmovementtype LOCALID_SCOTT, MOVEMENT_TYPE_FACE_RIGHT
2017-11-09 19:21:31 -06:00
return
2019-11-09 03:07:32 -05:00
SlateportCity_OnFrame: @ 81DCD12
map_script_2 VAR_SLATEPORT_OUTSIDE_MUSEUM_STATE, 1, SlateportCity_EventScript_ScottScene
2017-11-09 19:21:31 -06:00
.2byte 0
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ScottScene:: @ 81DCD1C
2017-11-09 19:21:31 -06:00
lockall
addobject LOCALID_SCOTT
applymovement OBJ_EVENT_ID_PLAYER, SlateportCity_Movement_PlayerFaceScott
applymovement LOCALID_SCOTT, SlateportCity_Movement_ScottApproachPlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_YouDroveTeamAquaAway, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_SCOTT, Common_Movement_WalkInPlaceFastestLeft
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 60
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_MaybeThisTrainer, MSGBOX_DEFAULT
applymovement LOCALID_SCOTT, Common_Movement_WalkInPlaceFastestRight
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_LetsRegisterEachOther, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
delay 30
2020-08-20 18:02:00 -04:00
playfanfare MUS_REGISTER_MATCH_CALL
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_RegisteredScott, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
waitfanfare
closemessage
delay 30
2019-01-02 21:12:43 +00:00
setflag FLAG_ENABLE_SCOTT_MATCH_CALL
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_KeepEyeOnTrainersBeSeeingYou, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_SCOTT, SlateportCity_Movement_ScottExit
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_SCOTT
setobjectxyperm LOCALID_SCOTT, 10, 12
setobjectmovementtype LOCALID_SCOTT, MOVEMENT_TYPE_FACE_DOWN
2019-03-10 08:10:59 -04:00
clearflag FLAG_HIDE_MAP_NAME_POPUP
setvar VAR_SLATEPORT_OUTSIDE_MUSEUM_STATE, 2
addvar VAR_SCOTT_STATE, 1
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_PlayerFaceScott: @ 81DCDA8
delay_16
delay_8
walk_in_place_fastest_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_ScottApproachPlayer: @ 81DCDAC
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_ScottExit: @ 81DCDB4
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_EnergyGuru:: @ 81DCDBD
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
message SlateportCity_Text_EnergyGuruSellWhatYouNeed
2017-11-09 19:21:31 -06:00
waitmessage
2019-11-09 03:07:32 -05:00
pokemart SlateportCity_Pokemart_EnergyGuru
2019-08-14 23:38:42 -04:00
msgbox gText_PleaseComeAgain, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_Pokemart_EnergyGuru: @ 81DCDD4
2017-11-09 19:21:31 -06:00
.2byte ITEM_PROTEIN
.2byte ITEM_IRON
.2byte ITEM_CARBOS
.2byte ITEM_ZINC
.2byte ITEM_CALCIUM
.2byte ITEM_HP_UP
.2byte ITEM_NONE
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_EffortRibbonWoman:: @ 81DCDE4
2017-11-09 19:21:31 -06:00
lock
faceplayer
bufferleadmonspeciesname 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_OhYourPokemon, MSGBOX_DEFAULT
specialvar VAR_RESULT, LeadMonHasEffortRibbon
2019-11-09 03:07:32 -05:00
compare VAR_RESULT, TRUE
call_if_eq SlateportCity_EventScript_MonHasEffortRibbon
specialvar VAR_RESULT, Special_AreLeadMonEVsMaxedOut
2019-11-09 03:07:32 -05:00
compare VAR_RESULT, FALSE
call_if_eq SlateportCity_EventScript_MonEVsNotMaxed
msgbox SlateportCity_Text_PleaseGiveItThisEffortRibbon, MSGBOX_DEFAULT
2020-08-20 18:02:00 -04:00
playfanfare MUS_OBTAIN_ITEM
2019-11-09 03:07:32 -05:00
message SlateportCity_Text_ReceivedEffortRibbon
2017-11-09 19:21:31 -06:00
waitfanfare
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_PutEffortRibbonOnMon, MSGBOX_DEFAULT
special GiveLeadMonEffortRibbon
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_MonEVsNotMaxed:: @ 81DCE2E
msgbox SlateportCity_Text_GoForItLittleHarder, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_MonHasEffortRibbon:: @ 81DCE38
msgbox SlateportCity_Text_EffortRibbonLooksGoodOnIt, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Cook:: @ 81DCE42
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_CookSternInterview
msgbox SlateportCity_Text_SeaweedFullOfLife, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_CookSternInterview:: @ 81DCE59
msgbox SlateportCity_Text_CaptainComeBackWithBigFish, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_OldWoman:: @ 81DCE63
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_OldWomanSternInterview
msgbox SlateportCity_Text_HowTownIsBornAndGrows, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_OldWomanSternInterview:: @ 81DCE7A
msgbox SlateportCity_Text_CaptSternBeingInterviewed, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Girl:: @ 81DCE84
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_GirlSternInterview
goto_if_set FLAG_RECEIVED_SECRET_POWER, SlateportCity_EventScript_GirlSecretBase
msgbox SlateportCity_Text_SlateportWonderfulPlace, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_GirlSternInterview:: @ 81DCEA4
msgbox SlateportCity_Text_InterviewerSoCool, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_GirlSecretBase:: @ 81DCEAE
msgbox SlateportCity_Text_BuyBricksSoDecorWontGetDirty, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_RichBoy:: @ 81DCEB8
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_RichBoySternInterview
msgbox SlateportCity_Text_GoingToCompeteInBattleTent, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_RichBoySternInterview:: @ 81DCECF
msgbox SlateportCity_Text_SternSaysDiscoveredSomething, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_FatMan:: @ 81DCED9
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
goto_if_eq SlateportCity_EventScript_FatManSternInterview
msgbox SlateportCity_Text_BushedHikingFromMauville, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_FatManSternInterview:: @ 81DCEED
msgbox SlateportCity_Text_AmIOnTV, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Man1:: @ 81DCEF6
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_Man1SternInterview
msgbox SlateportCity_Text_EveryoneCallsHimCaptStern, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Man1SternInterview:: @ 81DCF0D
msgbox SlateportCity_Text_CaptainsACelebrity, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Woman1:: @ 81DCF17
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
goto_if_set FLAG_DOCK_REJECTED_DEVON_GOODS, SlateportCity_EventScript_Woman1AquaGone
msgbox SlateportCity_Text_WhatsLongLineOverThere, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Woman1AquaGone:: @ 81DCF2C
msgbox SlateportCity_Text_VisitedMuseumOften, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_BattleTentSign:: @ 81DCF36
msgbox SlateportCity_Text_BattleTentSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_SternsShipyardSign:: @ 81DCF3F
2017-11-09 19:21:31 -06:00
lockall
2019-11-09 03:07:32 -05:00
goto_if_set FLAG_SYS_GAME_CLEAR, SlateportCity_EventScript_SternsShipyardFerryComplete
goto_if_set FLAG_BADGE07_GET, SlateportCity_EventScript_SternsShipyardNearsCompletion
msgbox SlateportCity_Text_SternsShipyardWantedSign, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_SternsShipyardNearsCompletion:: @ 81DCF5C
msgbox SlateportCity_Text_SternsShipyardNearsCompletion, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_SternsShipyardFerryComplete:: @ 81DCF66
msgbox SlateportCity_Text_SternsShipyardFerryComplete, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_PokemonFanClubSign:: @ 81DCF70
msgbox SlateportCity_Text_PokemonFanClubSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_OceanicMuseumSign:: @ 81DCF79
msgbox SlateportCity_Text_OceanicMuseumSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_CitySign:: @ 81DCF82
msgbox SlateportCity_Text_CitySign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_MarketSign:: @ 81DCF8B
msgbox SlateportCity_Text_MarketSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_HarborSign:: @ 81DCF94
2017-11-09 19:21:31 -06:00
lockall
2019-11-09 03:07:32 -05:00
goto_if_set FLAG_SYS_GAME_CLEAR, SlateportCity_EventScript_HarborSignFerryComplete
msgbox SlateportCity_Text_HarborFerryUnderConstruction, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_HarborSignFerryComplete:: @ 81DCFA8
msgbox SlateportCity_Text_HarborSign, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_NameRatersHouseSign:: @ 81DCFB2
msgbox SlateportCity_Text_NameRatersHouseSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Maniac:: @ 81DCFBB
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-05 11:23:45 -04:00
compare VAR_SLATEPORT_CITY_STATE, 1
2019-11-09 03:07:32 -05:00
call_if_eq SlateportCity_EventScript_ManiacSternInterview
msgbox SlateportCity_Text_GetNameRaterToHelpYou, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
@ Unclear if the text here was meant to be different, but its not
SlateportCity_EventScript_ManiacSternInterview:: @ 81DCFD2
msgbox SlateportCity_Text_GetNameRaterToHelpYou, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Woman2:: @ 81DCFDC
msgbox SlateportCity_Text_CantChangeTradeMonName, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Sailor1:: @ 81DCFE5
msgbox SlateportCity_Text_SeaIsSoWet, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Sailor2:: @ 81DCFEE
msgbox SlateportCity_Text_SinkOldBoats, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_PokefanF:: @ 81DCFF7
msgbox SlateportCity_Text_BuyTooMuch, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Man2:: @ 81DD000
msgbox SlateportCity_Text_BattleTentBuiltRecently, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt1:: @ 81DD009
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_QuitPushing, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_1, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt2:: @ 81DD020
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_AquaHasPolicy, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_2, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt3:: @ 81DD037
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_BossIsBrilliant, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_3, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt4:: @ 81DD04E
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_WhatsNewSchemeIWonder, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_4, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt5:: @ 81DD065
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_ShouldTakeItAll, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_5, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt6:: @ 81DD07C
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_DontButtIn, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_6, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt7:: @ 81DD093
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_RemindsMeOfLongLineForGames, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_7, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt8:: @ 81DD0AA
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_WhyAreWeLiningUp, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_8, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt9:: @ 81DD0C1
2017-11-09 19:21:31 -06:00
lock
faceplayer
playse SE_PIN
applymovement LOCALID_GRUNT_9, Common_Movement_ExclamationMark
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, Common_Movement_Delay48
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_WhatDoYouWant, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_9, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, SlateportCity_Movement_DelayAquaGrunt
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, Common_Movement_FacePlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_IllReadSignForYou, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_9, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, SlateportCity_Movement_DelayAquaGrunt
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_SaysSomethingLikeSeaIsEndless, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_9, Common_Movement_FacePlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, SlateportCity_Movement_DelayAquaGrunt
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_GRUNT_9, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_DelayAquaGrunt: @ 81DD147
delay_16
delay_16
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt10:: @ 81DD14A
msgbox SlateportCity_Text_ShouldveBroughtMyGameBoy, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_AquaGrunt11:: @ 81DD153
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_HotSpringsAfterOperation, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GRUNT_11, Common_Movement_FaceOriginalDirection
2017-11-09 19:21:31 -06:00
waitmovement 0
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_DollClerk:: @ 81DD16A
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-14 23:38:42 -04:00
message gText_HowMayIServeYou
2017-11-09 19:21:31 -06:00
waitmessage
pokemartdecoration SlateportCity_PokemartDecor_Dolls
2019-08-14 23:38:42 -04:00
msgbox gText_PleaseComeAgain, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
.align 2
SlateportCity_PokemartDecor_Dolls: @ 81DD184
.2byte DECOR_AZURILL_DOLL
.2byte DECOR_MARILL_DOLL
.2byte DECOR_SKITTY_DOLL
.2byte DECOR_NONE
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ComeBackWithSecretPower:: @ 81DD18E
2019-08-14 23:38:42 -04:00
msgbox gText_ComeBackWithSecretPower, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_DecorClerk:: @ 81DD198
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
goto_if_unset FLAG_RECEIVED_SECRET_POWER, SlateportCity_EventScript_ComeBackWithSecretPower
2019-08-14 23:38:42 -04:00
message gText_HowMayIServeYou
2017-11-09 19:21:31 -06:00
waitmessage
2019-11-09 03:07:32 -05:00
pokemartdecoration SlateportCity_PokemartDecor
2019-08-14 23:38:42 -04:00
msgbox gText_PleaseComeAgain, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_PokemartDecor: @ 81DD1B8
.2byte DECOR_RED_BRICK
.2byte DECOR_BLUE_BRICK
.2byte DECOR_YELLOW_BRICK
.2byte DECOR_RED_BALLOON
.2byte DECOR_BLUE_BALLOON
.2byte DECOR_YELLOW_BALLOON
.2byte DECOR_C_LOW_NOTE_MAT
.2byte DECOR_D_NOTE_MAT
.2byte DECOR_E_NOTE_MAT
.2byte DECOR_F_NOTE_MAT
.2byte DECOR_G_NOTE_MAT
.2byte DECOR_A_NOTE_MAT
.2byte DECOR_B_NOTE_MAT
.2byte DECOR_C_HIGH_NOTE_MAT
.2byte DECOR_NONE
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_PowerTMClerk:: @ 81DD1D8
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-08-14 23:38:42 -04:00
message gText_HowMayIServeYou
2017-11-09 19:21:31 -06:00
waitmessage
2019-11-09 03:07:32 -05:00
pokemart SlateportCity_Pokemart_PowerTMs
2019-08-14 23:38:42 -04:00
msgbox gText_PleaseComeAgain, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
.align 2
2019-11-09 03:07:32 -05:00
SlateportCity_Pokemart_PowerTMs: @ 81DD1F0
.2byte ITEM_TM10 @ Hidden Power
.2byte ITEM_TM43 @ Secret Power
2017-11-09 19:21:31 -06:00
.2byte ITEM_NONE
release
end
2019-11-09 03:07:32 -05:00
@ Scene with Capt Sterns interview and Team Aqua announcing plans to steal Submarine
SlateportCity_EventScript_CaptStern:: @ 81DD1F8
2017-11-09 19:21:31 -06:00
lockall
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_SternMoveAheadWithExploration, MSGBOX_DEFAULT
msgbox SlateportCity_Text_GabbyWonderfulThanksForInterview, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_GABBY, Common_Movement_WalkInPlaceFastestRight
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 10
applymovement LOCALID_TY, Common_Movement_WalkInPlaceFastestDown
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 25
applymovement LOCALID_CAPT_STERN, SlateportCity_Movement_SternWatchGabbyAndTyExit
applymovement OBJ_EVENT_ID_PLAYER, SlateportCity_Movement_PlayerFaceStern
applymovement LOCALID_GABBY, SlateportCity_Movement_GabbyExit
applymovement LOCALID_TY, SlateportCity_Movement_TyExit
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_GABBY
removeobject LOCALID_TY
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_SternWhewFirstInterview, MSGBOX_DEFAULT
applymovement LOCALID_CAPT_STERN, Common_Movement_WalkInPlaceFastestUp
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_OhPlayerWeMadeDiscovery, MSGBOX_DEFAULT
2021-05-21 15:08:00 -05:00
playbgm MUS_ENCOUNTER_AQUA, FALSE
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_AquaWillAssumeControlOfSubmarine, MSGBOX_DEFAULT
applymovement LOCALID_COOK, Common_Movement_WalkInPlaceFastestLeft
applymovement LOCALID_FAT_MAN, Common_Movement_WalkInPlaceFastestLeft
applymovement LOCALID_OLD_WOMAN, SlateportCity_Movement_OldWomanConcern
applymovement LOCALID_RICH_BOY, Common_Movement_QuestionMark
applymovement LOCALID_MAN_1, SlateportCity_Movement_ManConcern
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_CAPT_STERN, Common_Movement_WalkInPlaceFastestDown
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_SternWhatWasAllThat, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
playse SE_PIN
applymovement LOCALID_CAPT_STERN, Common_Movement_ExclamationMark
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_CAPT_STERN, Common_Movement_Delay48
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_CAPT_STERN, Common_Movement_WalkInPlaceFastestUp
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_FromHarborTryingToTakeSub, MSGBOX_DEFAULT
msgbox SlateportCity_Text_PleaseComeWithMe, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement LOCALID_CAPT_STERN, SlateportCity_Movement_SternEnterHarbor
applymovement OBJ_EVENT_ID_PLAYER, SlateportCity_Movement_PlayerEnterHarbor
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_CAPT_STERN
2018-10-18 15:28:59 -04:00
clearflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_CAPTAIN_STERN
clearflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_SUBMARINE_SHADOW
clearflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_AQUA_GRUNT
clearflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_ARCHIE
2019-08-05 11:23:45 -04:00
setvar VAR_SLATEPORT_CITY_STATE, 2
warp MAP_SLATEPORT_CITY_HARBOR, 255, 11, 14
2017-11-09 19:21:31 -06:00
waitstate
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_OldWomanConcern: @ 81DD309
delay_16
delay_16
emote_question_mark
walk_in_place_fastest_right
delay_16
delay_16
walk_in_place_fastest_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_ManConcern: @ 81DD311
emote_question_mark
walk_in_place_fastest_up
delay_16
walk_in_place_fastest_down
delay_16
delay_16
walk_in_place_fastest_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_GabbyExit: @ 81DD319
delay_16
walk_left
walk_left
walk_down
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_TyExit: @ 81DD326
walk_down
walk_left
walk_left
walk_left
walk_down
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
2017-11-09 19:21:31 -06:00
step_end
SlateportCity_Movement_Unused: @ 81DD334
walk_down
walk_in_place_fastest_up
step_end
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_SternEnterHarbor: @ 81DD337
walk_right
walk_up
walk_up
set_invisible
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_SternWatchGabbyAndTyExit: @ 81DD33C
delay_16
delay_16
delay_16
delay_16
delay_16
walk_down
walk_left
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_PlayerEnterHarbor: @ 81DD344
walk_in_place_fastest_right
delay_16
delay_16
walk_right
walk_up
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_PlayerFaceStern: @ 81DD34A
delay_16
delay_16
delay_16
delay_16
delay_16
delay_16
delay_16
walk_in_place_fastest_down
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Ty:: @ 81DD353
msgbox SlateportCity_Text_BigSmileForCamera, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Gabby:: @ 81DD35C
msgbox SlateportCity_Text_MostInvaluableExperience, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Man3:: @ 81DD365
msgbox SlateportCity_Text_WonderIfLighthouseStartlesPokemon, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_BerryPowderClerk:: @ 81DD36E
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-09 03:07:32 -05:00
goto_if_set FLAG_RECEIVED_POWDER_JAR, SlateportCity_EventScript_ReceivedPowderJar
msgbox SlateportCity_Text_ExplainBerries, MSGBOX_DEFAULT
giveitem ITEM_POWDER_JAR
2019-01-03 01:54:55 +00:00
setflag FLAG_RECEIVED_POWDER_JAR
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_ExplainBerryPowder, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ReceivedPowderJar:: @ 81DD39A
2017-11-09 19:21:31 -06:00
setvar VAR_0x8004, 1
2019-03-24 14:45:09 -05:00
specialvar VAR_RESULT, HasEnoughBerryPowder
2019-11-09 03:07:32 -05:00
compare VAR_RESULT, FALSE
goto_if_eq SlateportCity_EventScript_ExplainBerryPowder
msgbox SlateportCity_Text_BroughtMeSomeBerryPowder, MSGBOX_DEFAULT
2019-03-24 14:45:09 -05:00
special DisplayBerryPowderVendorMenu
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_ChooseBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ExplainBerryPowder:: @ 81DD3C0
msgbox SlateportCity_Text_ExplainBerryPowder, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ChooseBerryPowderItem:: @ 81DD3CA
message SlateportCity_Text_ExchangeWhatWithIt
2017-11-09 19:21:31 -06:00
waitmessage
2019-09-13 14:24:07 -04:00
setvar VAR_0x8004, SCROLL_MULTI_BERRY_POWDER_VENDOR
special ShowScrollableMultichoice
2017-11-09 19:21:31 -06:00
waitstate
switch VAR_RESULT
2019-11-09 03:07:32 -05:00
case 0, SlateportCity_EventScript_EnergyPowder
case 1, SlateportCity_EventScript_EnergyRoot
case 2, SlateportCity_EventScript_HealPowder
case 3, SlateportCity_EventScript_RevivalHerb
case 4, SlateportCity_EventScript_Protein
case 5, SlateportCity_EventScript_Iron
case 6, SlateportCity_EventScript_Carbos
case 7, SlateportCity_EventScript_Calcium
case 8, SlateportCity_EventScript_Zinc
case 9, SlateportCity_EventScript_HPUp
case 10, SlateportCity_EventScript_PPUp
case 11, SlateportCity_EventScript_CancelPowderItemSelect
case MULTI_B_PRESSED, SlateportCity_EventScript_CancelPowderItemSelect
end
SlateportCity_EventScript_EnergyPowder:: @ 81DD46E
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_ENERGY_POWDER
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_ENERGY_POWDER
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 50
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_EnergyRoot:: @ 81DD482
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_ENERGY_ROOT
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_ENERGY_ROOT
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 80
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_HealPowder:: @ 81DD496
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_HEAL_POWDER
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_HEAL_POWDER
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 50
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_RevivalHerb:: @ 81DD4AA
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_REVIVAL_HERB
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_REVIVAL_HERB
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 300
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Protein:: @ 81DD4BE
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_PROTEIN
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_PROTEIN
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Iron:: @ 81DD4D2
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_IRON
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_IRON
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Carbos:: @ 81DD4E6
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_CARBOS
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_CARBOS
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Calcium:: @ 81DD4FA
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_CALCIUM
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_CALCIUM
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_Zinc:: @ 81DD50E
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_ZINC
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_ZINC
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_HPUp:: @ 81DD522
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_HP_UP
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_HP_UP
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 1000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_PPUp:: @ 81DD536
2017-11-09 19:21:31 -06:00
bufferitemname 0, ITEM_PP_UP
2019-09-15 23:47:07 -04:00
setvar VAR_0x8008, ITEM_PP_UP
2017-11-09 19:21:31 -06:00
setvar VAR_0x8009, 3000
2019-11-09 03:07:32 -05:00
goto SlateportCity_EventScript_TryBuyBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_CancelPowderItemSelect:: @ 81DD54A
msgbox SlateportCity_Text_ComeBackToTradeBerryPowder, MSGBOX_DEFAULT
2019-03-24 14:45:09 -05:00
special RemoveBerryPowderVendorMenu
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_TryBuyBerryPowderItem:: @ 81DD557
msgbox SlateportCity_Text_ExchangeBerryPowderForItem, MSGBOX_YESNO
2019-11-02 12:34:53 -04:00
compare VAR_RESULT, NO
2019-11-09 03:07:32 -05:00
goto_if_eq SlateportCity_EventScript_ChooseBerryPowderItem
2017-11-09 19:21:31 -06:00
copyvar VAR_0x8004, VAR_0x8009
2019-03-24 14:45:09 -05:00
specialvar VAR_RESULT, HasEnoughBerryPowder
2019-11-09 03:07:32 -05:00
compare VAR_RESULT, FALSE
goto_if_eq SlateportCity_EventScript_NotEnoughBerryPowder
giveitem VAR_0x8008
2019-11-09 03:07:32 -05:00
compare VAR_RESULT, FALSE
goto_if_eq SlateportCity_EventScript_NoRoomForBerryPowderItem
2017-11-09 19:21:31 -06:00
copyvar VAR_0x8004, VAR_0x8009
2019-03-24 14:45:09 -05:00
special TakeBerryPowder
special PrintPlayerBerryPowderAmount
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_FineBerryPowderTradeSomethingElse, MSGBOX_YESNO
2019-11-02 12:34:53 -04:00
compare VAR_RESULT, YES
2019-11-09 03:07:32 -05:00
goto_if_eq SlateportCity_EventScript_ChooseBerryPowderItem
msgbox SlateportCity_Text_WhenYouGetMoreBringItToMe, MSGBOX_DEFAULT
2019-03-24 14:45:09 -05:00
special RemoveBerryPowderVendorMenu
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_NoRoomForBerryPowderItem:: @ 81DD5C1
2019-08-14 23:38:42 -04:00
msgbox gText_TheBagIsFull, MSGBOX_DEFAULT
2019-03-24 14:45:09 -05:00
special RemoveBerryPowderVendorMenu
2017-11-09 19:21:31 -06:00
release
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_NotEnoughBerryPowder:: @ 81DD5CE
msgbox SlateportCity_Text_DontHaveEnoughBerryPowder, MSGBOX_DEFAULT
goto SlateportCity_EventScript_ChooseBerryPowderItem
2017-11-09 19:21:31 -06:00
end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_ScottBattleTentScene:: @ 81DD5DC
2017-11-09 19:21:31 -06:00
lockall
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_FaceUp
2017-11-09 19:21:31 -06:00
waitmovement 0
opendoor 10, 12
waitdooranim
addobject LOCALID_SCOTT
applymovement OBJ_EVENT_ID_PLAYER, SlateportCity_Movement_PushPlayerDown
applymovement LOCALID_SCOTT, SlateportCity_Movement_ScottExitBattleTent
2017-11-09 19:21:31 -06:00
waitmovement 0
closedoor 10, 12
waitdooranim
2019-11-09 03:07:32 -05:00
msgbox SlateportCity_Text_TakingBattleTentChallenge, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
applymovement OBJ_EVENT_ID_PLAYER, SlateportCity_Movement_PlayerWatchScottExit
applymovement LOCALID_SCOTT, SlateportCity_Movement_ScottExitAfterBattleTent
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_SCOTT
addvar VAR_SCOTT_STATE, 1
setvar VAR_SLATEPORT_OUTSIDE_MUSEUM_STATE, 3
2017-11-09 19:21:31 -06:00
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_PushPlayerDown: @ 81DD630
lock_facing_direction
walk_down
unlock_facing_direction
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_PlayerWatchScottExit: @ 81DD634
delay_16
walk_in_place_fastest_right
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_ScottExitBattleTent: @ 81DD637
delay_8
walk_down
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_Movement_ScottExitAfterBattleTent: @ 81DD63A
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
2017-11-09 19:21:31 -06:00
step_end
2019-11-09 03:07:32 -05:00
SlateportCity_EventScript_BerryCrushRankingsSign:: @ 81DD643
2017-11-09 19:21:31 -06:00
lockall
2019-11-09 03:07:32 -05:00
special ShowBerryCrushRankings
2017-11-09 19:21:31 -06:00
waitstate
releaseall
end
2019-11-09 03:07:32 -05:00
SlateportCity_Text_EnergyGuruSellWhatYouNeed: @ 81DD64A
2018-12-07 10:41:08 -05:00
.string "I'm the ENERGY GURU! I'll go for it and\n"
2017-11-09 19:21:31 -06:00
.string "sell you what you need!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_OhYourPokemon: @ 81DD68A
2017-11-09 19:21:31 -06:00
.string "Oh?\n"
.string "Your {STR_VAR_1}…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_PleaseGiveItThisEffortRibbon: @ 81DD697
2017-11-09 19:21:31 -06:00
.string "Went for it stupendously!\p"
.string "As its reward, please give it this\n"
.string "EFFORT RIBBON.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ReceivedEffortRibbon: @ 81DD6E3
2017-11-09 19:21:31 -06:00
.string "{PLAYER} received the EFFORT RIBBON.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_PutEffortRibbonOnMon: @ 81DD702
2017-11-09 19:21:31 -06:00
.string "{PLAYER} put the EFFORT RIBBON\n"
.string "on {STR_VAR_1}.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_GoForItLittleHarder: @ 81DD722
2017-11-09 19:21:31 -06:00
.string "You have to go for it a little harder.\p"
2018-12-07 10:41:08 -05:00
.string "If you do, I'll give your POKéMON\n"
2017-11-09 19:21:31 -06:00
.string "something nice.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_EffortRibbonLooksGoodOnIt: @ 81DD77B
2017-11-09 19:21:31 -06:00
.string "Oh! Your {STR_VAR_1}, that EFFORT\n"
.string "RIBBON looks good on it!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WonderIfLighthouseStartlesPokemon: @ 81DD7AD
2017-11-09 19:21:31 -06:00
.string "The light of the lighthouse reaches\n"
.string "dozens of miles away.\p"
2018-12-07 10:41:08 -05:00
.string "I wonder if it doesn't startle POKéMON\n"
2017-11-09 19:21:31 -06:00
.string "in the sea.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SeaweedFullOfLife: @ 81DD81A
2017-11-09 19:21:31 -06:00
.string "Ooh, look at this!\p"
.string "The seaweed you can get around these\n"
.string "parts is fresh and full of life.\p"
.string "Why, it looks like it can even rear up\n"
.string "and attack!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_HowTownIsBornAndGrows: @ 81DD8A6
2017-11-09 19:21:31 -06:00
.string "Where the water is clean, the fruits\n"
.string "of bountiful harvest gather.\p"
.string "And where people gather, a market\n"
.string "soon starts.\p"
.string "That is how a town is born and grows.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SlateportWonderfulPlace: @ 81DD93D
2017-11-09 19:21:31 -06:00
.string "Shopping where you can breathe the\n"
.string "scent of the ocean…\p"
.string "SLATEPORT is such a wonderful place!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BuyBricksSoDecorWontGetDirty: @ 81DD999
2017-11-09 19:21:31 -06:00
.string "If you put DOLLS or CUSHIONS on\n"
2018-12-07 10:41:08 -05:00
.string "the floor, they'll get dirty.\p"
.string "I'm going to buy some BRICKS so my\n"
.string "DOLLS and CUSHIONS won't get dirty\l"
2017-11-09 19:21:31 -06:00
.string "when I leave them out.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_GoingToCompeteInBattleTent: @ 81DDA34
2018-12-07 10:41:08 -05:00
.string "Wroooar! I'm going to compete in\n"
2017-11-09 19:21:31 -06:00
.string "the BATTLE TENT, too!\p"
.string "But before that, I need to catch\n"
.string "some POKéMON!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BushedHikingFromMauville: @ 81DDA9A
2018-12-07 10:41:08 -05:00
.string "Whew… I'm just bushed…\p"
2017-11-09 19:21:31 -06:00
.string "I hiked over from MAUVILLE CITY.\n"
2018-12-07 10:41:08 -05:00
.string "But, boy, this city's huge.\p"
.string "If I'd known this, I would've ridden\n"
2017-11-09 19:21:31 -06:00
.string "my BIKE here.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_EveryoneCallsHimCaptStern: @ 81DDB21
2017-11-09 19:21:31 -06:00
.string "STERN, the fellow who built the\n"
.string "MUSEUM, also happens to be the leader\l"
.string "of an undersea exploration team.\p"
.string "So, everyone calls him CAPT. STERN.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WhatsLongLineOverThere: @ 81DDBAC
2017-11-09 19:21:31 -06:00
.string "What is that over there?\n"
.string "That long line…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_VisitedMuseumOften: @ 81DDBD5
2017-11-09 19:21:31 -06:00
.string "When I was a child, I visited\n"
.string "the MUSEUM often.\p"
.string "I used to dream about the mysteries of\n"
.string "the sea after seeing the exhibits.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_QuitPushing: @ 81DDC4F
2017-11-09 19:21:31 -06:00
.string "Hey, there! Quit pushing!\n"
2018-12-07 10:41:08 -05:00
.string "This is the line, can't you see?$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_AquaHasPolicy: @ 81DDC8A
2017-11-09 19:21:31 -06:00
.string "TEAM AQUA has a policy of\n"
.string "assembling and dispersing at\l"
.string "the operation site.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BossIsBrilliant: @ 81DDCD5
2017-11-09 19:21:31 -06:00
.string "Our BOSS is brilliant.\p"
.string "What would he want to do with\n"
.string "a MUSEUM now?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WhatsNewSchemeIWonder: @ 81DDD18
2018-12-07 10:41:08 -05:00
.string "What's the new scheme, I wonder?\p"
.string "Our BOSS is scary when he's mad, so\n"
.string "I'd better not screw things up…$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ShouldTakeItAll: @ 81DDD7D
2018-12-07 10:41:08 -05:00
.string "If there's something we need in\n"
2017-11-09 19:21:31 -06:00
.string "the MUSEUM, we should take it all!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_DontButtIn: @ 81DDDC0
2017-11-09 19:21:31 -06:00
.string "Hey, you there!\n"
2018-12-07 10:41:08 -05:00
.string "Don't butt in!$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_RemindsMeOfLongLineForGames: @ 81DDDDF
2017-11-09 19:21:31 -06:00
.string "A long line, huh?\p"
.string "It reminds me of the times I lined up to\n"
.string "buy smash-hit games…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WhyAreWeLiningUp: @ 81DDE2F
2017-11-09 19:21:31 -06:00
.string "Why are we even lining up and paying?\n"
.string "We should just march in!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WhatDoYouWant: @ 81DDE6E
2017-11-09 19:21:31 -06:00
.string "What?\n"
.string "What do you want?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_IllReadSignForYou: @ 81DDE86
2017-11-09 19:21:31 -06:00
.string "You want to read this sign?\n"
2018-12-07 10:41:08 -05:00
.string "I'll read it for you!$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SaysSomethingLikeSeaIsEndless: @ 81DDEB8
2018-12-07 10:41:08 -05:00
.string "Let's see…\p"
2017-11-09 19:21:31 -06:00
.string "Um… I think it says something like\n"
.string "“the life in the sea is endless.”\p"
2018-12-07 10:41:08 -05:00
.string "Yup, I'm pretty sure that's what\n"
2017-11-09 19:21:31 -06:00
.string "it says.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ShouldveBroughtMyGameBoy: @ 81DDF32
2017-11-09 19:21:31 -06:00
.string "Grumble…\p"
2018-12-07 10:41:08 -05:00
.string "I should've brought my Game Boy\n"
.string "Advance so I wouldn't get bored in line…\p"
2017-11-09 19:21:31 -06:00
.string "Grumble…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_HotSpringsAfterOperation: @ 81DDF8D
2018-12-07 10:41:08 -05:00
.string "When this operation's over, I'll take\n"
2017-11-09 19:21:31 -06:00
.string "you to a hot spring spa!\p"
2018-12-07 10:41:08 -05:00
.string "That's what our leader said.\n"
.string "I can't wait!$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SeaIsSoWet: @ 81DDFF7
2017-11-09 19:21:31 -06:00
.string "The sea is just so vast…\p"
.string "Could the sea have been made by\n"
.string "the tears shed by POKéMON?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SinkOldBoats: @ 81DE04B
2017-11-09 19:21:31 -06:00
.string "Do you know what they do with old\n"
.string "ships that become too creaky to sail?\p"
.string "They sink them in the sea so they\n"
.string "become habitats for POKéMON.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BuyTooMuch: @ 81DE0D2
2017-11-09 19:21:31 -06:00
.string "Whenever I visit here, I get carried\n"
.string "away and buy too much.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_GetNameRaterToHelpYou: @ 81DE10E
2018-12-07 10:41:08 -05:00
.string "If you want to change your POKéMON's\n"
.string "nickname, you'll have to get the NAME\l"
2017-11-09 19:21:31 -06:00
.string "RATER to help you.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_CantChangeTradeMonName: @ 81DE16C
2017-11-09 19:21:31 -06:00
.string "Any POKéMON you get in a trade,\n"
2018-12-07 10:41:08 -05:00
.string "you can't change its nickname.\p"
.string "The original TRAINER's love for that\n"
2017-11-09 19:21:31 -06:00
.string "POKéMON is in the nickname.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BattleTentBuiltRecently: @ 81DE1EC
2017-11-09 19:21:31 -06:00
.string "Recently, a BATTLE TENT was built\n"
.string "in SLATEPORT.\p"
2018-12-07 10:41:08 -05:00
.string "GYMS are fun, but the BATTLE TENT's\n"
2017-11-09 19:21:31 -06:00
.string "awesome in its own way.\p"
.string "You should go find tough POKéMON\n"
.string "for the BATTLE TENT!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_CaptSternBeingInterviewed: @ 81DE28E
2017-11-09 19:21:31 -06:00
.string "I was hoping that it was a famous star\n"
.string "so I could get an autograph.\p"
2018-12-07 10:41:08 -05:00
.string "But who's that being interviewed?\n"
.string "Isn't that CAPT. STERN?$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_InterviewerSoCool: @ 81DE30C
2017-11-09 19:21:31 -06:00
.string "That lady interviewer is so cool\n"
.string "and pretty.\p"
2018-12-07 10:41:08 -05:00
.string "When I grow up, I'm going to be\n"
2017-11-09 19:21:31 -06:00
.string "an international journalist!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternSaysDiscoveredSomething: @ 81DE376
2017-11-09 19:21:31 -06:00
.string "CAPT. STERN says they discovered\n"
.string "something at the bottom of the sea.\p"
.string "I wonder what it is?\n"
.string "What could it be?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_CaptainComeBackWithBigFish: @ 81DE3E2
2018-12-07 10:41:08 -05:00
.string "What's going on here?\p"
2017-11-09 19:21:31 -06:00
.string "Did the good CAPTAIN come back with\n"
.string "a big fish from the ocean floor?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_AmIOnTV: @ 81DE43D
2017-11-09 19:21:31 -06:00
.string "Hey! Are you watching?\n"
.string "Am I on TV?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_CaptainsACelebrity: @ 81DE460
2017-11-09 19:21:31 -06:00
.string "A TV interview! Here!\n"
2018-12-07 10:41:08 -05:00
.string "The CAPTAIN's a celebrity!$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BigSmileForCamera: @ 81DE491
2017-11-09 19:21:31 -06:00
.string "TY: Okay, CAPT. STERN, a big smile\n"
.string "for the camera!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_MostInvaluableExperience: @ 81DE4C4
2018-12-07 10:41:08 -05:00
.string "GABBY: I see, I see. You've had a most\n"
2017-11-09 19:21:31 -06:00
.string "invaluable experience…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternMoveAheadWithExploration: @ 81DE502
2017-11-09 19:21:31 -06:00
.string "CAPT. STERN: Yes, indeed. We intend to\n"
.string "move ahead with our exploration.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_GabbyWonderfulThanksForInterview: @ 81DE54A
2018-12-07 10:41:08 -05:00
.string "GABBY: That's wonderful, CAPT. STERN!\n"
2017-11-09 19:21:31 -06:00
.string "Thank you for taking the time from\l"
.string "your busy schedule to talk to us.\p"
.string "We hope we can interview you again\n"
.string "with news of more discoveries!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternWhewFirstInterview: @ 81DE5F7
2017-11-09 19:21:31 -06:00
.string "CAPT. STERN: Whew…\p"
.string "That was my first time to be filmed for\n"
.string "TV. That was nerve-wracking.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_OhPlayerWeMadeDiscovery: @ 81DE64F
2017-11-09 19:21:31 -06:00
.string "Oh! {PLAYER}{KUN}!\n"
2018-12-07 10:41:08 -05:00
.string "You're looking great!\p"
2017-11-09 19:21:31 -06:00
.string "We made a huge discovery on our last\n"
.string "seafloor exploration.\p"
.string "We found an underwater cavern on\n"
.string "ROUTE 128.\p"
2018-12-07 10:41:08 -05:00
.string "We think it's the habitat of a POKéMON\n"
.string "that's said to have been long extinct.$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_AquaWillAssumeControlOfSubmarine: @ 81DE724
2017-11-09 19:21:31 -06:00
.string "Fufufu…\n"
.string "CAPT. STERN, I presume.\p"
.string "We of TEAM AQUA will assume\n"
.string "control of your submarine!\p"
.string "Your objections are meaningless!\n"
.string "We expect your total cooperation!\p"
.string "Fufufu…\n"
.string "Just watch and learn what TEAM\l"
.string "AQUA has planned!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternWhatWasAllThat: @ 81DE7F7
2017-11-09 19:21:31 -06:00
.string "CAPT. STERN: What was that all about?\p"
.string "It sounded like someone using\n"
.string "a megaphone…\p"
.string "Where did it come from?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_FromHarborTryingToTakeSub: @ 81DE860
2018-12-07 10:41:08 -05:00
.string "It's from the HARBOR!\p"
2017-11-09 19:21:31 -06:00
.string "The submarine!\n"
2018-12-07 10:41:08 -05:00
.string "They're trying to take it!$"
2017-11-09 19:21:31 -06:00
2019-11-09 03:07:32 -05:00
SlateportCity_Text_PleaseComeWithMe: @ 81DE8A0
2017-11-09 19:21:31 -06:00
.string "{PLAYER}{KUN}!\n"
.string "Please, come with me!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BattleTentSign: @ 81DE8BC
2017-11-09 19:21:31 -06:00
.string "BATTLE TENT SLATEPORT SITE\n"
.string "“Find it! The ultimate POKéMON!”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternsShipyardWantedSign: @ 81DE8F8
2018-12-07 10:41:08 -05:00
.string "STERN'S SHIPYARD\p"
2017-11-09 19:21:31 -06:00
.string "“Wanted: A sailor capable of sailing\n"
.string "in all currents.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternsShipyardNearsCompletion: @ 81DE940
2018-12-07 10:41:08 -05:00
.string "STERN'S SHIPYARD\p"
2017-11-09 19:21:31 -06:00
.string "“The ferry S.S. TIDAL nears\n"
.string "completion for serving the ports of\l"
.string "SLATEPORT and LILYCOVE.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_SternsShipyardFerryComplete: @ 81DE9AA
2018-12-07 10:41:08 -05:00
.string "STERN'S SHIPYARD\p"
2017-11-09 19:21:31 -06:00
.string "“Boarding of the SLATEPORT-LILYCOVE\n"
.string "ferry S.S. TIDAL is handled at the\l"
.string "HARBOR.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_PokemonFanClubSign: @ 81DEA0B
2017-11-09 19:21:31 -06:00
.string "POKéMON FAN CLUB\n"
.string "“Calling all fans of POKéMON!”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_OceanicMuseumSign: @ 81DEA3B
2017-11-09 19:21:31 -06:00
.string "“The endless sea sustains\n"
.string "all life.”\p"
.string "OCEANIC MUSEUM$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_CitySign: @ 81DEA6F
2017-11-09 19:21:31 -06:00
.string "SLATEPORT CITY\p"
.string "“The port where people and POKéMON\n"
.string "cross paths.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_MarketSign: @ 81DEAAF
2017-11-09 19:21:31 -06:00
.string "SLATEPORT MARKET\n"
.string "“Unique items found nowhere else!”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_HarborFerryUnderConstruction: @ 81DEAE3
2017-11-09 19:21:31 -06:00
.string "SLATEPORT HARBOR\p"
.string "“The ferry S.S. TIDAL is under\n"
.string "construction in the SHIPYARD.\p"
.string "“Service is scheduled to begin\n"
.string "shortly.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_HarborSign: @ 81DEB5A
2017-11-09 19:21:31 -06:00
.string "SLATEPORT HARBOR\p"
.string "“Enjoy a delightful cruise on\n"
.string "the ferry S.S. TIDAL.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_NameRatersHouseSign: @ 81DEBA0
2018-12-07 10:41:08 -05:00
.string "NAME RATER'S HOUSE\n"
2017-11-09 19:21:31 -06:00
.string "“POKéMON nicknames rated.”$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ExplainBerries: @ 81DEBCE
2017-11-09 19:21:31 -06:00
.string "If a wild POKéMON gets hurt, it heals\n"
.string "itself by chewing on BERRIES.\p"
.string "Did you know that?\p"
.string "Somebody saw that and got the idea\n"
.string "of making medicine from BERRIES.\p"
.string "Did you know that?\p"
.string "To turn BERRIES into medicine,\n"
.string "they must be crushed into powder.\p"
.string "Did you know that?\p"
.string "You seem to have an interest\n"
.string "in BERRIES!\p"
2018-12-07 10:41:08 -05:00
.string "I've got something good for someone\n"
2017-11-09 19:21:31 -06:00
.string "like you.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ExplainBerryPowder: @ 81DED27
2017-11-09 19:21:31 -06:00
.string "I recently had machines installed at\n"
.string "POKéMON CENTERS for crushing BERRIES.\p"
.string "The BERRY CRUSH machines are at\n"
.string "the DIRECT CORNER upstairs.\p"
.string "Did you know?\p"
.string "Could you make BERRY POWDER for\n"
.string "me using those machines?\p"
.string "I can make you all sorts of medicine\n"
.string "if you bring me lots of BERRY POWDER.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_BroughtMeSomeBerryPowder: @ 81DEE40
2017-11-09 19:21:31 -06:00
.string "Have you brought me some\n"
.string "BERRY POWDER?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ExchangeWhatWithIt: @ 81DEE67
2017-11-09 19:21:31 -06:00
.string "What would you like to exchange\n"
.string "it with?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ExchangeBerryPowderForItem: @ 81DEE90
2017-11-09 19:21:31 -06:00
.string "Okay, you want to exchange your\n"
.string "BERRY POWDER for one {STR_VAR_1}?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_DontHaveEnoughBerryPowder: @ 81DEEC9
2018-12-07 10:41:08 -05:00
.string "Oh, dear. You don't have enough\n"
2017-11-09 19:21:31 -06:00
.string "BERRY POWDER.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_FineBerryPowderTradeSomethingElse: @ 81DEEF7
2017-11-09 19:21:31 -06:00
.string "This is fine BERRY POWDER.\n"
.string "It will make excellent medicine.\p"
.string "Would you like to trade more of your\n"
.string "BERRY POWDER for something else?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_WhenYouGetMoreBringItToMe: @ 81DEF79
2017-11-09 19:21:31 -06:00
.string "Okay! When you get some more\n"
.string "BERRY POWDER, bring it to me, please!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_ComeBackToTradeBerryPowder: @ 81DEFBC
2018-12-07 10:41:08 -05:00
.string "Come back if you'd like to trade your\n"
2017-11-09 19:21:31 -06:00
.string "BERRY POWDER for some medicine.\p"
2018-12-07 10:41:08 -05:00
.string "I'm always running a bazaar here.\p"
2017-11-09 19:21:31 -06:00
.string "Did you know?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_YouDroveTeamAquaAway: @ 81DF032
2017-11-09 19:21:31 -06:00
.string "SCOTT: Huh?\n"
2018-12-07 10:41:08 -05:00
.string "I'm sure I met you somewhere before.\p"
2017-11-09 19:21:31 -06:00
.string "Have I introduced myself to you?\n"
2018-12-07 10:41:08 -05:00
.string "If not, my name's SCOTT.\p"
2017-11-09 19:21:31 -06:00
.string "I just saw TEAM AQUA run away from\n"
.string "here like they were stung.\p"
.string "Let me guess--you drove them away?$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_MaybeThisTrainer: @ 81DF0FE
2017-11-09 19:21:31 -06:00
.string "SCOTT: Hmm…\n"
.string "Maybe, just maybe, this TRAINER…$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_LetsRegisterEachOther: @ 81DF12B
2018-12-07 10:41:08 -05:00
.string "SCOTT: All right! I think you're going\n"
2017-11-09 19:21:31 -06:00
.string "to become a good friend.\p"
2018-12-07 10:41:08 -05:00
.string "So, let's register each other in our\n"
2017-11-09 19:21:31 -06:00
.string "POKéNAVS.\p"
.string "… … … … … …$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_RegisteredScott: @ 81DF1A6
2017-11-09 19:21:31 -06:00
.string "Registered this SCOTT person\n"
.string "in the POKéNAV.$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_KeepEyeOnTrainersBeSeeingYou: @ 81DF1D3
2018-12-07 10:41:08 -05:00
.string "SCOTT: What I'd like to do is tag along\n"
2017-11-09 19:21:31 -06:00
.string "with you, but I do want to keep an eye\l"
.string "on the talents of other people, too.\p"
2018-12-07 10:41:08 -05:00
.string "So, I'll be off to roam other towns\n"
2017-11-09 19:21:31 -06:00
.string "a bit more.\p"
.string "Be seeing you, {PLAYER}{KUN}!$"
2019-11-09 03:07:32 -05:00
SlateportCity_Text_TakingBattleTentChallenge: @ 81DF28C
2017-11-09 19:21:31 -06:00
.string "SCOTT: Oh, hey!\n"
2018-12-07 10:41:08 -05:00
.string "If it isn't {PLAYER}{KUN}!\p"
.string "{PLAYER}{KUN}, let me guess--you're going\n"
2017-11-09 19:21:31 -06:00
.string "to take the BATTLE TENT challenge?\p"
2018-12-07 10:41:08 -05:00
.string "Yeah! That's a good idea!\n"
.string "That's a really great idea!\p"
2017-11-09 19:21:31 -06:00
.string "After all, a tough TRAINER is\n"
.string "the perfect fit for the BATTLE TENT!\p"
.string "Give it your best effort!$"