Merge pull request #541 from igidrau/patch-2

Labeled everything
This commit is contained in:
Rangi 2018-08-25 22:23:25 -04:00 committed by GitHub
commit 89681d2316
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,14 +27,14 @@ MeetMomRightScript:
turnobject PLAYER, LEFT turnobject PLAYER, LEFT
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
iffalse .OnRight iffalse .OnRight
applymovement PLAYERSHOUSE1F_MOM1, MovementData_0x7a5fc applymovement PLAYERSHOUSE1F_MOM1, MomTurnsTowardPlayerMovement
jump MeetMomScript jump MeetMomScript
.OnRight: .OnRight:
applymovement PLAYERSHOUSE1F_MOM1, MovementData_0x7a5fe applymovement PLAYERSHOUSE1F_MOM1, MomWalksToPlayerMovement
MeetMomScript: MeetMomScript:
opentext opentext
writetext UnknownText_0x7a604 writetext ElmsLookingForYouText
buttonsound buttonsound
stringtotext GearName, MEM_BUFFER_1 stringtotext GearName, MEM_BUFFER_1
scall PlayersHouse1FReceiveItemStd scall PlayersHouse1FReceiveItemStd
@ -44,11 +44,11 @@ MeetMomScript:
setscene SCENE_FINISHED setscene SCENE_FINISHED
setevent EVENT_PLAYERS_HOUSE_MOM_1 setevent EVENT_PLAYERS_HOUSE_MOM_1
clearevent EVENT_PLAYERS_HOUSE_MOM_2 clearevent EVENT_PLAYERS_HOUSE_MOM_2
writetext UnknownText_0x7a6bd writetext MomGivesPokegearText
buttonsound buttonsound
special SetDayOfWeek special SetDayOfWeek
.SetDayOfWeek: .SetDayOfWeek:
writetext UnknownText_0x7a742 writetext IsItDSTText
yesorno yesorno
iffalse .WrongDay iffalse .WrongDay
special InitialSetDSTFlag special InitialSetDSTFlag
@ -61,23 +61,23 @@ MeetMomScript:
yesorno yesorno
iffalse .SetDayOfWeek iffalse .SetDayOfWeek
.DayOfWeekDone: .DayOfWeekDone:
writetext UnknownText_0x7a763 writetext ComeHomeForDSTText
yesorno yesorno
iffalse .ExplainPhone iffalse .ExplainPhone
jump .KnowPhone jump .KnowPhone
.KnowPhone: .KnowPhone:
writetext UnknownText_0x7a7cb writetext KnowTheInstructionsText
buttonsound buttonsound
jump .FinishPhone jump .FinishPhone
.ExplainPhone: .ExplainPhone:
writetext UnknownText_0x7a807 writetext DontKnowTheInstructionsText
buttonsound buttonsound
jump .FinishPhone jump .FinishPhone
.FinishPhone: .FinishPhone:
writetext UnknownText_0x7a850 writetext InstructionsNextText
waitbutton waitbutton
closetext closetext
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
@ -87,11 +87,11 @@ MeetMomScript:
jump .Finish jump .Finish
.FromRight: .FromRight:
applymovement PLAYERSHOUSE1F_MOM1, MovementData_0x7a600 applymovement PLAYERSHOUSE1F_MOM1, MomTurnsBackMovement
jump .Finish jump .Finish
.FromLeft: .FromLeft:
applymovement PLAYERSHOUSE1F_MOM1, MovementData_0x7a602 applymovement PLAYERSHOUSE1F_MOM1, MomWalksBackMovement
jump .Finish jump .Finish
.Finish: .Finish:
@ -124,19 +124,19 @@ MomScript:
iftrue .GaveMysteryEgg iftrue .GaveMysteryEgg
checkevent EVENT_GOT_A_POKEMON_FROM_ELM checkevent EVENT_GOT_A_POKEMON_FROM_ELM
iftrue .GotAPokemon iftrue .GotAPokemon
writetext UnknownText_0x7a8b5 writetext HurryUpElmIsWaitingText
waitbutton waitbutton
closetext closetext
end end
.GotAPokemon: .GotAPokemon:
writetext UnknownText_0x7a8e5 writetext SoWhatWasProfElmsErrandText
waitbutton waitbutton
closetext closetext
end end
.FirstTimeBanking: .FirstTimeBanking:
writetext UnknownText_0x7a957 writetext ImBehindYouText
waitbutton waitbutton
closetext closetext
end end
@ -194,23 +194,23 @@ SinkScript:
FridgeScript: FridgeScript:
jumptext FridgeText jumptext FridgeText
MovementData_0x7a5fc: MomTurnsTowardPlayerMovement:
turn_head RIGHT turn_head RIGHT
step_end step_end
MovementData_0x7a5fe: MomWalksToPlayerMovement:
slow_step RIGHT slow_step RIGHT
step_end step_end
MovementData_0x7a600: MomTurnsBackMovement:
turn_head LEFT turn_head LEFT
step_end step_end
MovementData_0x7a602: MomWalksBackMovement:
slow_step LEFT slow_step LEFT
step_end step_end
UnknownText_0x7a604: ElmsLookingForYouText:
text "Oh, <PLAYER>…! Our" text "Oh, <PLAYER>…! Our"
line "neighbor, PROF." line "neighbor, PROF."
@ -230,7 +230,7 @@ UnknownText_0x7a604:
para "Here you go!" para "Here you go!"
done done
UnknownText_0x7a6bd: MomGivesPokegearText:
text "#MON GEAR, or" text "#MON GEAR, or"
line "just #GEAR." line "just #GEAR."
@ -245,12 +245,12 @@ UnknownText_0x7a6bd:
line "that!" line "that!"
done done
UnknownText_0x7a742: IsItDSTText:
text "Is it Daylight" text "Is it Daylight"
line "Saving Time now?" line "Saving Time now?"
done done
UnknownText_0x7a763: ComeHomeForDSTText:
text "Come home to" text "Come home to"
line "adjust your clock" line "adjust your clock"
@ -262,7 +262,7 @@ UnknownText_0x7a763:
cont "the PHONE?" cont "the PHONE?"
done done
UnknownText_0x7a7cb: KnowTheInstructionsText:
text "Don't you just" text "Don't you just"
line "turn the #GEAR" line "turn the #GEAR"
@ -270,7 +270,7 @@ UnknownText_0x7a7cb:
line "PHONE icon?" line "PHONE icon?"
done done
UnknownText_0x7a807: DontKnowTheInstructionsText:
text "I'll read the" text "I'll read the"
line "instructions." line "instructions."
@ -279,7 +279,7 @@ UnknownText_0x7a807:
cont "PHONE icon." cont "PHONE icon."
done done
UnknownText_0x7a850: InstructionsNextText:
text "Phone numbers are" text "Phone numbers are"
line "stored in memory." line "stored in memory."
@ -290,14 +290,14 @@ UnknownText_0x7a850:
line "convenient?" line "convenient?"
done done
UnknownText_0x7a8b5: HurryUpElmIsWaitingText:
text "PROF.ELM is wait-" text "PROF.ELM is wait-"
line "ing for you." line "ing for you."
para "Hurry up, baby!" para "Hurry up, baby!"
done done
UnknownText_0x7a8e5: SoWhatWasProfElmsErrandText:
text "So, what was PROF." text "So, what was PROF."
line "ELM's errand?" line "ELM's errand?"
@ -311,7 +311,7 @@ UnknownText_0x7a8e5:
cont "rely on you." cont "rely on you."
done done
UnknownText_0x7a957: ImBehindYouText:
text "<PLAYER>, do it!" text "<PLAYER>, do it!"
para "I'm behind you all" para "I'm behind you all"