GoldenrodMagnetTrainStation.asm: Label UnknownText, MovementData

This commit is contained in:
DeeDeeG 2019-04-27 22:52:32 -04:00
parent f1187dc860
commit 35d64c30d7
1 changed files with 21 additions and 21 deletions

View File

@ -16,22 +16,22 @@ GoldenrodMagnetTrainStationOfficerScript:
opentext opentext
checkevent EVENT_RESTORED_POWER_TO_KANTO checkevent EVENT_RESTORED_POWER_TO_KANTO
iftrue .MagnetTrainToSaffron iftrue .MagnetTrainToSaffron
writetext UnknownText_0x55160 writetext GoldenrodMagnetTrainStationOfficerTheTrainHasntComeInText
waitbutton waitbutton
closetext closetext
end end
.MagnetTrainToSaffron: .MagnetTrainToSaffron:
writetext UnknownText_0x551b7 writetext GoldenrodMagnetTrainStationOfficerAreYouComingAboardText
yesorno yesorno
iffalse .DecidedNotToRide iffalse .DecidedNotToRide
checkitem PASS checkitem PASS
iffalse .PassNotInBag iffalse .PassNotInBag
writetext UnknownText_0x551ed writetext GoldenrodMagnetTrainStationOfficerRightThisWayText
waitbutton waitbutton
closetext closetext
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x55146 applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x5514f applymovement PLAYER, GoldenrodMagnetTrainStationPlayerApproachAndEnterTrainMovement
setval FALSE setval FALSE
special MagnetTrain special MagnetTrain
warpcheck warpcheck
@ -45,23 +45,23 @@ GoldenrodMagnetTrainStationOfficerScript:
step_end step_end
.PassNotInBag: .PassNotInBag:
writetext UnknownText_0x5522c writetext GoldenrodMagnetTrainStationOfficerYouDontHaveARailPassText
waitbutton waitbutton
closetext closetext
end end
.DecidedNotToRide: .DecidedNotToRide:
writetext UnknownText_0x5524f writetext GoldenrodMagnetTrainStationOfficerHopeToSeeYouAgainText
waitbutton waitbutton
closetext closetext
end end
Script_ArriveFromSaffron: Script_ArriveFromSaffron:
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x55146 applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x55158 applymovement PLAYER, GoldenrodMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x5514b applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerReturnToBoardingGateMovement
opentext opentext
writetext UnknownText_0x5526a writetext GoldenrodMagnetTrainStationOfficerArrivedInGoldenrodText
waitbutton waitbutton
closetext closetext
end end
@ -69,20 +69,20 @@ Script_ArriveFromSaffron:
GoldenrodMagnetTrainStationGentlemanScript: GoldenrodMagnetTrainStationGentlemanScript:
jumptextfaceplayer GoldenrodMagnetTrainStationGentlemanText jumptextfaceplayer GoldenrodMagnetTrainStationGentlemanText
MovementData_0x55146: GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement:
step UP step UP
step UP step UP
step RIGHT step RIGHT
turn_head LEFT turn_head LEFT
step_end step_end
MovementData_0x5514b: GoldenrodMagnetTrainStationOfficerReturnToBoardingGateMovement:
step LEFT step LEFT
step DOWN step DOWN
step DOWN step DOWN
step_end step_end
MovementData_0x5514f: GoldenrodMagnetTrainStationPlayerApproachAndEnterTrainMovement:
step UP step UP
step UP step UP
step UP step UP
@ -93,7 +93,7 @@ MovementData_0x5514f:
step UP step UP
step_end step_end
MovementData_0x55158: GoldenrodMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement:
step LEFT step LEFT
step LEFT step LEFT
step DOWN step DOWN
@ -103,7 +103,7 @@ MovementData_0x55158:
turn_head UP turn_head UP
step_end step_end
UnknownText_0x55160: GoldenrodMagnetTrainStationOfficerTheTrainHasntComeInText:
text "The train hasn't" text "The train hasn't"
line "come in…" line "come in…"
@ -114,7 +114,7 @@ UnknownText_0x55160:
para "That won't work." para "That won't work."
done done
UnknownText_0x551b7: GoldenrodMagnetTrainStationOfficerAreYouComingAboardText:
text "We'll soon depart" text "We'll soon depart"
line "for SAFFRON." line "for SAFFRON."
@ -122,7 +122,7 @@ UnknownText_0x551b7:
line "aboard?" line "aboard?"
done done
UnknownText_0x551ed: GoldenrodMagnetTrainStationOfficerRightThisWayText:
text "May I see your" text "May I see your"
line "rail PASS, please?" line "rail PASS, please?"
@ -130,17 +130,17 @@ UnknownText_0x551ed:
line "way, please." line "way, please."
done done
UnknownText_0x5522c: GoldenrodMagnetTrainStationOfficerYouDontHaveARailPassText:
text "Sorry. You don't" text "Sorry. You don't"
line "have a rail PASS." line "have a rail PASS."
done done
UnknownText_0x5524f: GoldenrodMagnetTrainStationOfficerHopeToSeeYouAgainText:
text "We hope to see you" text "We hope to see you"
line "again!" line "again!"
done done
UnknownText_0x5526a: GoldenrodMagnetTrainStationOfficerArrivedInGoldenrodText:
text "We have arrived in" text "We have arrived in"
line "GOLDENROD." line "GOLDENROD."