You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Name a lot of text labels according to our conventions
This commit is contained in:
@@ -361,8 +361,8 @@ Function90199:
|
||||
jr .DoPhoneCall
|
||||
|
||||
.OutOfArea:
|
||||
ld b, BANK(UnknownScript_0x90209)
|
||||
ld de, UnknownScript_0x90209
|
||||
ld b, BANK(LoadOutOfAreaScript)
|
||||
ld de, LoadOutOfAreaScript
|
||||
call ExecuteCallbackScript
|
||||
ret
|
||||
|
||||
@@ -373,17 +373,17 @@ Function90199:
|
||||
ld [wPhoneCaller], a
|
||||
ld a, h
|
||||
ld [wPhoneCaller + 1], a
|
||||
ld b, BANK(UnknownScript_0x90205)
|
||||
ld de, UnknownScript_0x90205
|
||||
ld b, BANK(LoadPhoneScriptBank)
|
||||
ld de, LoadPhoneScriptBank
|
||||
call ExecuteCallbackScript
|
||||
ret
|
||||
|
||||
UnknownScript_0x90205:
|
||||
LoadPhoneScriptBank:
|
||||
memcall wPhoneScriptBank
|
||||
return
|
||||
|
||||
UnknownScript_0x90209:
|
||||
scall UnknownScript_0x90657
|
||||
LoadOutOfAreaScript:
|
||||
scall PhoneOutOfAreaScript
|
||||
return
|
||||
|
||||
LoadCallerScript:
|
||||
@@ -413,11 +413,10 @@ WrongNumber:
|
||||
db TRAINER_NONE, PHONE_00
|
||||
dba .script
|
||||
.script
|
||||
writetext .text
|
||||
writetext .PhoneWrongNumberText
|
||||
end
|
||||
.text
|
||||
; Huh? Sorry, wrong number!
|
||||
text_far UnknownText_0x1c5565
|
||||
.PhoneWrongNumberText:
|
||||
text_far _PhoneWrongNumberText
|
||||
text_end
|
||||
|
||||
Script_ReceivePhoneCall:
|
||||
@@ -438,7 +437,7 @@ Script_SpecialBillCall::
|
||||
ld e, PHONE_BILL
|
||||
jp LoadCallerScript
|
||||
|
||||
UnknownScript_0x90261:
|
||||
LoadElmCallScript:
|
||||
callasm .LoadElmScript
|
||||
pause 30
|
||||
sjump Script_ReceivePhoneCall
|
||||
@@ -535,23 +534,23 @@ Function90316:
|
||||
ret
|
||||
|
||||
HangUp_Beep:
|
||||
ld hl, UnknownText_0x9032a
|
||||
ld hl, PhoneClickText
|
||||
call PrintText
|
||||
ld de, SFX_HANG_UP
|
||||
call PlaySFX
|
||||
ret
|
||||
|
||||
UnknownText_0x9032a:
|
||||
text_far UnknownText_0x1c5580
|
||||
PhoneClickText:
|
||||
text_far _PhoneClickText
|
||||
text_end
|
||||
|
||||
HangUp_BoopOn:
|
||||
ld hl, UnknownText_0x90336
|
||||
ld hl, PhoneEllipseText
|
||||
call PrintText
|
||||
ret
|
||||
|
||||
UnknownText_0x90336:
|
||||
text_far UnknownText_0x1c5588
|
||||
PhoneEllipseText:
|
||||
text_far _PhoneEllipseText
|
||||
text_end
|
||||
|
||||
HangUp_BoopOff:
|
||||
@@ -705,29 +704,26 @@ INCLUDE "data/phone/phone_contacts.asm"
|
||||
|
||||
INCLUDE "data/phone/special_calls.asm"
|
||||
|
||||
UnknownScript_0x90657:
|
||||
writetext UnknownText_0x9065b
|
||||
PhoneOutOfAreaScript:
|
||||
writetext PhoneOutOfAreaText
|
||||
end
|
||||
|
||||
UnknownText_0x9065b:
|
||||
; That number is out of the area.
|
||||
text_far UnknownText_0x1c558b
|
||||
PhoneOutOfAreaText:
|
||||
text_far _PhoneOutOfAreaText
|
||||
text_end
|
||||
|
||||
PhoneScript_JustTalkToThem:
|
||||
writetext UnknownText_0x90664
|
||||
writetext PhoneJustTalkToThemText
|
||||
end
|
||||
|
||||
UnknownText_0x90664:
|
||||
; Just go talk to that person!
|
||||
text_far UnknownText_0x1c55ac
|
||||
PhoneJustTalkToThemText:
|
||||
text_far _PhoneJustTalkToThemText
|
||||
text_end
|
||||
|
||||
UnknownScript_0x90669:
|
||||
writetext UnknownText_0x9066d
|
||||
PhoneThankYouTextScript:
|
||||
writetext PhoneThankYouText
|
||||
end
|
||||
|
||||
UnknownText_0x9066d:
|
||||
; Thank you!
|
||||
text_far UnknownText_0x1c55ca
|
||||
PhoneThankYouText:
|
||||
text_far _PhoneThankYouText
|
||||
text_end
|
||||
|
||||
@@ -13,15 +13,15 @@ AlanPhoneCalleeScript:
|
||||
iftrue AlanWednesdayDay
|
||||
|
||||
.NotWednesday:
|
||||
farsjump UnknownScript_0xa0970
|
||||
farsjump AlanHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_36
|
||||
farsjump UnknownScript_0xa0a73
|
||||
farsjump AlanReminderScript
|
||||
|
||||
.FireStone:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_36
|
||||
farsjump UnknownScript_0xa0ac5
|
||||
farsjump AlanComePickUpScript
|
||||
|
||||
AlanPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, SCHOOLBOY, ALAN1
|
||||
|
||||
@@ -13,15 +13,15 @@ AnthonyPhoneCalleeScript:
|
||||
.NotFriday:
|
||||
checkflag ENGINE_DUNSPARCE_SWARM
|
||||
iftrue .AlreadySwarming
|
||||
farsjump UnknownScript_0xa0950
|
||||
farsjump AnthonyHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_33
|
||||
farsjump UnknownScript_0xa0a5f
|
||||
farsjump AnthonyReminderScript
|
||||
|
||||
.AlreadySwarming:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_33
|
||||
farsjump UnknownScript_0xa0afa
|
||||
farsjump AnthonyHurryScript
|
||||
|
||||
AnthonyPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, HIKER, ANTHONY2
|
||||
@@ -55,7 +55,7 @@ AnthonyTriesDunsparceSwarm:
|
||||
getmonname STRING_BUFFER_4, DUNSPARCE
|
||||
swarm SWARM_DUNSPARCE, DARK_CAVE_VIOLET_ENTRANCE
|
||||
getlandmarkname STRING_BUFFER_5, DARK_CAVE
|
||||
farsjump UnknownScript_0xa05de
|
||||
farsjump AnthonySwarmScript
|
||||
|
||||
.Generic:
|
||||
farsjump Phone_GenericCall_Male
|
||||
|
||||
@@ -13,15 +13,15 @@ ArniePhoneCalleeScript:
|
||||
.NotTuesday:
|
||||
checkflag ENGINE_YANMA_SWARM
|
||||
iftrue .AlreadySwarming
|
||||
farsjump UnknownScript_0xa0968
|
||||
farsjump ArnieHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_35
|
||||
farsjump UnknownScript_0xa0a6e
|
||||
farsjump ArnieReminderScript
|
||||
|
||||
.AlreadySwarming:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_35
|
||||
farsjump UnknownScript_0xa0aff
|
||||
farsjump ArnieHurryScript
|
||||
|
||||
ArniePhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, BUG_CATCHER, ARNIE1
|
||||
@@ -55,7 +55,7 @@ ArnieYanmaSwarm: ; start swarm
|
||||
getmonname STRING_BUFFER_4, YANMA
|
||||
swarm SWARM_YANMA, ROUTE_35
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_35
|
||||
farsjump UnknownScript_0xa05ce
|
||||
farsjump ArnieSwarmScript
|
||||
|
||||
ArnieFoundRare:
|
||||
farsjump Phone_CheckIfUnseenRare_Male
|
||||
|
||||
@@ -11,7 +11,7 @@ BethPhoneCalleeScript:
|
||||
iftrue BethFridayAfternoon
|
||||
|
||||
.NotFriday:
|
||||
farsjump UnknownScript_0xa0918
|
||||
farsjump BethHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_26
|
||||
|
||||
@@ -3,11 +3,11 @@ BeverlyPhoneCalleeScript:
|
||||
farscall PhoneScript_AnswerPhone_Female
|
||||
checkflag ENGINE_BEVERLY_HAS_NUGGET
|
||||
iftrue .HasNugget
|
||||
farsjump UnknownScript_0xa0900
|
||||
farsjump BeverlyHangUpScript
|
||||
|
||||
.HasNugget:
|
||||
getlandmarkname STRING_BUFFER_5, NATIONAL_PARK
|
||||
farsjump UnknownScript_0xa0aa5
|
||||
farsjump BeverlyComePickUpScript
|
||||
|
||||
BeverlyPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, POKEFANF, BEVERLY1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
BikeShopPhoneCallerScript:
|
||||
farwritetext UnknownText_0x174000
|
||||
farwritetext BikeShopPhoneCallerText
|
||||
clearflag ENGINE_BIKE_SHOP_CALL_ENABLED
|
||||
specialphonecall SPECIALCALL_NONE
|
||||
end
|
||||
|
||||
@@ -11,11 +11,11 @@ BrentPhoneCalleeScript:
|
||||
iftrue BrentMondayMorning
|
||||
|
||||
.NotMonday:
|
||||
farsjump UnknownScript_0xa0998
|
||||
farsjump BrentHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_43
|
||||
farsjump UnknownScript_0xa0a87
|
||||
farsjump BrentReminderScript
|
||||
|
||||
BrentPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, POKEMANIAC, BRENT1
|
||||
|
||||
@@ -12,51 +12,51 @@ BrentBillTriviaScript:
|
||||
ifequal 9, .KimonoGirl
|
||||
|
||||
.Father:
|
||||
farwritetext UnknownText_0x662bc
|
||||
farwritetext BrentFatherGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Grandpa:
|
||||
farwritetext UnknownText_0x662fc
|
||||
farwritetext BrentGrandpaGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Goldenrod:
|
||||
farwritetext UnknownText_0x66335
|
||||
farwritetext BrentGoldenrodGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Route25:
|
||||
farwritetext UnknownText_0x66366
|
||||
farwritetext BrentRoute25GossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Abra:
|
||||
farwritetext UnknownText_0x663a1
|
||||
farwritetext BrentAbraGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Sister:
|
||||
farwritetext UnknownText_0x663e6
|
||||
farwritetext BrentSisterGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Milk:
|
||||
farwritetext UnknownText_0x66421
|
||||
farwritetext BrentMilkGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Battling:
|
||||
farwritetext UnknownText_0x6645f
|
||||
farwritetext BrentBattlingGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.FlowerShop:
|
||||
farwritetext UnknownText_0x6649b
|
||||
farwritetext BrentFlowerShopGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.KimonoGirl:
|
||||
farwritetext UnknownText_0x664dd
|
||||
farwritetext BrentKimonoGirlGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
@@ -2,70 +2,70 @@ BuenaPhoneCalleeScript:
|
||||
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
|
||||
iftrue BuenaPhoneScript_Rocket
|
||||
readvar VAR_HOUR
|
||||
ifgreater 17, BuenaPhoneScript_AfterMidnight1
|
||||
scall BuenaPhoneScript_CheckTimeOfDay1
|
||||
sjump BuenaPhoneScript_Random1
|
||||
ifgreater 17, BuenaPhoneScript_AfterMidnightCallee
|
||||
scall BuenaPhoneScript_CheckTimeOfDayCallee
|
||||
sjump BuenaPhoneScript_RandomCallee
|
||||
|
||||
BuenaPhoneCallerScript:
|
||||
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
|
||||
iftrue BuenaPhoneScript_Rocket
|
||||
scall BuenaPhoneScript_CheckTimeOfDay2
|
||||
sjump BuenaPhoneScript_Random2
|
||||
scall BuenaPhoneScript_CheckTimeOfDayCaller
|
||||
sjump BuenaPhoneScript_RandomCaller
|
||||
|
||||
BuenaPhoneScript_CheckTimeOfDay1:
|
||||
BuenaPhoneScript_CheckTimeOfDayCallee:
|
||||
checktime MORN
|
||||
iftrue .morn
|
||||
checktime DAY
|
||||
iftrue .day
|
||||
writetext UnknownText_0xa0d42
|
||||
writetext BuenaPhoneNiteAnswerText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
.morn
|
||||
writetext UnknownText_0xa0c28
|
||||
writetext BuenaPhoneMorningAnswerText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
.day
|
||||
writetext UnknownText_0xa0c72
|
||||
writetext BuenaPhoneDayAnswerText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
BuenaPhoneScript_AfterMidnight1:
|
||||
writetext UnknownText_0xa0caf
|
||||
BuenaPhoneScript_AfterMidnightCallee:
|
||||
writetext BuenaPhoneMidnightAnswerText
|
||||
end
|
||||
|
||||
BuenaPhoneScript_CheckTimeOfDay2:
|
||||
BuenaPhoneScript_CheckTimeOfDayCaller:
|
||||
readvar VAR_HOUR
|
||||
ifgreater 17, BuenaPhoneScript_AfterMidnight2
|
||||
ifgreater 17, BuenaPhoneScript_AfterMidnightCaller
|
||||
checktime MORN
|
||||
iftrue .morn
|
||||
checktime DAY
|
||||
iftrue .day
|
||||
writetext UnknownText_0xa0e29
|
||||
writetext BuenaPhoneNiteText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
.morn
|
||||
writetext UnknownText_0xa0d96
|
||||
writetext BuenaPhoneMorningText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
.day
|
||||
writetext UnknownText_0xa0dcf
|
||||
writetext BuenaPhoneDayText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
BuenaPhoneScript_AfterMidnight2:
|
||||
writetext UnknownText_0xa0e01
|
||||
BuenaPhoneScript_AfterMidnightCaller:
|
||||
writetext BuenaPhoneMidnightText
|
||||
buttonsound
|
||||
end
|
||||
|
||||
BuenaPhoneScript_Rocket:
|
||||
writetext UnknownText_0xa0e5e
|
||||
writetext BuenaPhoneRocketText
|
||||
end
|
||||
|
||||
BuenaPhoneScript_Random2:
|
||||
BuenaPhoneScript_RandomCaller:
|
||||
checkevent EVENT_BEAT_ELITE_FOUR
|
||||
iftrue .PostE4
|
||||
random 11
|
||||
@@ -91,79 +91,79 @@ BuenaPhoneScript_Random2:
|
||||
ifequal 13, .thirteen
|
||||
|
||||
.zero
|
||||
writetext UnknownText_0xa0efb
|
||||
writetext BuenaPhoneWentOutWithBenText
|
||||
sjump .finish
|
||||
|
||||
.one
|
||||
writetext UnknownText_0xa0fcf
|
||||
writetext BuenaPhoneReceptionistText
|
||||
sjump .finish
|
||||
|
||||
.two
|
||||
writetext UnknownText_0xa109d
|
||||
writetext BuenaPhoneLuckyNumberShowText
|
||||
sjump .finish
|
||||
|
||||
.three
|
||||
writetext UnknownText_0xa1143
|
||||
writetext BuenaPhoneStressedFromWorkText
|
||||
sjump .finish
|
||||
|
||||
.four
|
||||
writetext UnknownText_0xa1244
|
||||
writetext BuenaPhoneProfessorOakText
|
||||
sjump .finish
|
||||
|
||||
.five
|
||||
writetext UnknownText_0xa1318
|
||||
writetext BuenaPhoneGotAColdText
|
||||
sjump .finish
|
||||
|
||||
.six
|
||||
writetext UnknownText_0xa13d8
|
||||
writetext BuenaPhoneRadioCardQuestionsText
|
||||
sjump .finish
|
||||
|
||||
.seven
|
||||
writetext UnknownText_0xa1488
|
||||
writetext BuenaPhonePikachuFanClubText
|
||||
sjump .finish
|
||||
|
||||
.eight
|
||||
writetext UnknownText_0xa15de
|
||||
writetext BuenaPhoneRadioTowerDirectorText
|
||||
sjump .finish
|
||||
|
||||
.nine
|
||||
writetext UnknownText_0xa1717
|
||||
writetext BuenaPhoneWhenDoYouRelaxText
|
||||
sjump .finish
|
||||
|
||||
.ten
|
||||
writetext UnknownText_0xa183d
|
||||
writetext BuenaPhoneStarterPokemonText
|
||||
sjump .finish
|
||||
|
||||
.eleven
|
||||
writetext UnknownText_0xa19b1
|
||||
writetext BuenaPhoneCompanyVacationText
|
||||
sjump .finish
|
||||
|
||||
.twelve
|
||||
writetext UnknownText_0xa1ac0
|
||||
writetext BuenaPhoneBenAndFernText
|
||||
sjump .finish
|
||||
|
||||
.thirteen
|
||||
writetext UnknownText_0xa1bed
|
||||
writetext BuenaPhoneGoingShoppingText
|
||||
|
||||
.finish
|
||||
end
|
||||
|
||||
BuenaPhoneScript_Random1:
|
||||
BuenaPhoneScript_RandomCallee:
|
||||
random 3
|
||||
ifequal 0, .zero
|
||||
ifequal 1, .one
|
||||
ifequal 2, .two
|
||||
|
||||
.zero
|
||||
writetext UnknownText_0xa1c88
|
||||
writetext BuenaPhoneFavoriteSlotMachineAnswerText
|
||||
end
|
||||
|
||||
.one
|
||||
writetext UnknownText_0xa1d5f
|
||||
writetext BuenaPhonePokegearAnswerText
|
||||
end
|
||||
|
||||
.two
|
||||
writetext UnknownText_0xa1e2f
|
||||
writetext BuenaPhoneCoopedUpInRadioTowerAnswerText
|
||||
end
|
||||
|
||||
INCLUDE "data/phone/text/buena.asm"
|
||||
|
||||
@@ -11,11 +11,11 @@ ChadPhoneCalleeScript:
|
||||
iftrue ChadFridayMorning
|
||||
|
||||
.NotFriday:
|
||||
farsjump UnknownScript_0xa0980
|
||||
farsjump ChadHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_38
|
||||
farsjump UnknownScript_0xa0a7d
|
||||
farsjump ChadReminderScript
|
||||
|
||||
ChadPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, SCHOOLBOY, CHAD1
|
||||
|
||||
@@ -14,49 +14,49 @@ ChadOakGossipScript:
|
||||
.Blue:
|
||||
farwritetext ChadBlueGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Daisy:
|
||||
farwritetext ChadDaisyGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.ProfElm:
|
||||
farwritetext ChadProfElmGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Dream:
|
||||
farwritetext ChadDreamGossipText
|
||||
farwritetext ChadProfOaksDreamGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Kurt:
|
||||
farwritetext ChadKurtGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.League:
|
||||
farwritetext ChadLeagueGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.RadioShow:
|
||||
farwritetext ChadRadioShowGossipText
|
||||
farwritetext ChadPokemonTalkGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Battling:
|
||||
farwritetext ChadBattlingGossipText
|
||||
farwritetext ChadProfOakTrainerGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.DaisyTea:
|
||||
farwritetext ChadDaisyTeaGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Traveled:
|
||||
farwritetext ChadTravelGossipText
|
||||
farwritetext ChadProfOakTravelingGossipText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
@@ -13,15 +13,15 @@ DanaPhoneCalleeScript:
|
||||
iftrue DanaThursdayNight
|
||||
|
||||
.NotThursday:
|
||||
farsjump UnknownScript_0xa0978
|
||||
farsjump DanaHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_38
|
||||
farsjump UnknownScript_0xa0a78
|
||||
farsjump DanaReminderScript
|
||||
|
||||
.HasThunderstone:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_38
|
||||
farsjump UnknownScript_0xa0acd
|
||||
farsjump DanaComePickUpScript
|
||||
|
||||
DanaPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, LASS, DANA1
|
||||
|
||||
@@ -13,14 +13,14 @@ DerekPhoneCalleeScript:
|
||||
ifequal SATURDAY, .ContestToday
|
||||
|
||||
.NoContest:
|
||||
farsjump UnknownScript_0xa0988
|
||||
farsjump DerekHangUpScript
|
||||
|
||||
.ContestToday:
|
||||
farsjump PhoneScript_BugCatchingContest
|
||||
|
||||
.Nugget:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_39
|
||||
farsjump UnknownScript_0xa0ad5
|
||||
farsjump DerekComePickUpScript
|
||||
|
||||
DerekPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, POKEFANM, DEREK1
|
||||
|
||||
@@ -18,7 +18,7 @@ ElmPhoneCalleeScript:
|
||||
iftrue .stolen
|
||||
checkevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON
|
||||
iftrue .sawmrpokemon
|
||||
farwritetext ElmPhoneStartText
|
||||
farwritetext ElmPhoneHealYourMonText
|
||||
end
|
||||
|
||||
.sawmrpokemon
|
||||
@@ -30,7 +30,7 @@ ElmPhoneCalleeScript:
|
||||
end
|
||||
|
||||
.checkingegg
|
||||
farwritetext ElmPhoneCheckingEggText
|
||||
farwritetext ElmPhoneCheckingTheEggText
|
||||
end
|
||||
|
||||
.assistant
|
||||
@@ -38,7 +38,7 @@ ElmPhoneCalleeScript:
|
||||
end
|
||||
|
||||
.eggunhatched
|
||||
farwritetext ElmPhoneEggUnhatchedText
|
||||
farwritetext ElmPhoneHowIsTheEggText
|
||||
end
|
||||
|
||||
.egghatched
|
||||
@@ -49,15 +49,15 @@ ElmPhoneCalleeScript:
|
||||
.discovery
|
||||
random 2
|
||||
ifequal 0, .nextdiscovery
|
||||
farwritetext ElmPhoneDiscovery1Text
|
||||
farwritetext ElmPhoneDiscoveredHatchTimeText
|
||||
end
|
||||
|
||||
.nextdiscovery
|
||||
farwritetext ElmPhoneDiscovery2Text
|
||||
farwritetext ElmPhoneInvestigatingEggMovesText
|
||||
end
|
||||
|
||||
.pokerus
|
||||
farwritetext ElmPhonePokerusText
|
||||
farwritetext ElmPhoneDiscoveredPokerusText
|
||||
specialphonecall SPECIALCALL_NONE
|
||||
end
|
||||
|
||||
@@ -68,7 +68,7 @@ ElmPhoneCallerScript:
|
||||
ifequal SPECIALCALL_WEIRDBROADCAST, .rocket
|
||||
ifequal SPECIALCALL_SSTICKET, .gift
|
||||
ifequal SPECIALCALL_MASTERBALL, .gift
|
||||
farwritetext ElmPhonePokerusText
|
||||
farwritetext ElmPhoneDiscoveredPokerusText
|
||||
specialphonecall SPECIALCALL_NONE
|
||||
end
|
||||
|
||||
@@ -86,7 +86,7 @@ ElmPhoneCallerScript:
|
||||
end
|
||||
|
||||
.rocket
|
||||
farwritetext ElmPhoneRocketText
|
||||
farwritetext ElmPhoneRadioTowerRocketTakeoverText
|
||||
specialphonecall SPECIALCALL_NONE
|
||||
end
|
||||
|
||||
@@ -96,6 +96,6 @@ ElmPhoneCallerScript:
|
||||
end
|
||||
|
||||
.unused
|
||||
farwritetext ElmPhoneUnusedText
|
||||
farwritetext ElmPhoneGotAholdOfSomethingNeatText
|
||||
specialphonecall SPECIALCALL_NONE
|
||||
end
|
||||
|
||||
@@ -8,14 +8,14 @@ GavenPhoneCalleeScript:
|
||||
readvar VAR_WEEKDAY
|
||||
ifnotequal THURSDAY, .NotThursday
|
||||
checktime MORN
|
||||
iftrue GavenThursdayMorning
|
||||
iftrue GavenThursdayMorningScript
|
||||
|
||||
.NotThursday:
|
||||
farsjump UnknownScript_0xa0910
|
||||
farsjump GavenHangUpNotThursdayScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_26
|
||||
farsjump UnknownScript_0xa0a37
|
||||
farsjump GavenReminderScript
|
||||
|
||||
GavenPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, COOLTRAINERM, GAVEN3
|
||||
@@ -32,7 +32,7 @@ GavenPhoneCallerScript:
|
||||
ifequal 0, GavenFoundRare
|
||||
farsjump Phone_GenericCall_Male
|
||||
|
||||
GavenThursdayMorning:
|
||||
GavenThursdayMorningScript:
|
||||
setflag ENGINE_GAVEN_THURSDAY_MORNING
|
||||
|
||||
GavenWantsRematch:
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -15,18 +15,18 @@ GinaPhoneCalleeScript:
|
||||
.NotSunday:
|
||||
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
|
||||
iftrue .Rockets
|
||||
farsjump UnknownScript_0xa0960
|
||||
farsjump GinaHangUpScript
|
||||
|
||||
.Rockets:
|
||||
farsjump UnknownScript_0xa05c6
|
||||
farsjump GinaRocketRumorScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_34
|
||||
farsjump UnknownScript_0xa0a69
|
||||
farsjump GinaReminderScript
|
||||
|
||||
.HasLeafStone:
|
||||
getlandmarkname STRING_BUFFER_5, ROUTE_34
|
||||
farsjump UnknownScript_0xa0abd
|
||||
farsjump GinaComePickUpScript
|
||||
|
||||
GinaPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, PICNICKER, GINA1
|
||||
@@ -64,7 +64,7 @@ GinaWantsBattle:
|
||||
farsjump PhoneScript_WantsToBattle_Female
|
||||
|
||||
GinaRockets:
|
||||
farsjump UnknownScript_0xa05c6
|
||||
farsjump GinaRocketRumorScript
|
||||
|
||||
GinaHasLeafStone:
|
||||
setflag ENGINE_GINA_HAS_LEAF_STONE
|
||||
|
||||
@@ -1,166 +1,166 @@
|
||||
JackPhoneTips:
|
||||
farwritetext UnknownText_0x1745c2
|
||||
JackPhoneTipsScript:
|
||||
farwritetext JackHeardSomeGreatTipsText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0900:
|
||||
farwritetext UnknownText_0x17485b
|
||||
BeverlyHangUpScript:
|
||||
farwritetext BeverlyLetsChatAboutMonAgainText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0908:
|
||||
farwritetext UnknownText_0x17496b
|
||||
HueyHangUpScript:
|
||||
farwritetext HueyWeHaveToBattleAgainSometimeText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0910:
|
||||
farwritetext UnknownText_0x174c29
|
||||
GavenHangUpNotThursdayScript:
|
||||
farwritetext GavenHangUpNotThursdayText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0918:
|
||||
farwritetext UnknownText_0x174ec5
|
||||
BethHangUpScript:
|
||||
farwritetext BethLetsBattleAgainSometimeText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0920:
|
||||
farwritetext UnknownText_0x17519b
|
||||
JoseHangUpScript:
|
||||
farwritetext JoseHaventGottenItemYetText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0928:
|
||||
farwritetext UnknownText_0x17549b
|
||||
ReenaForwardScript:
|
||||
farwritetext ReenaForwardText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0930:
|
||||
farwritetext UnknownText_0x17571d
|
||||
JoeyHangUpScript:
|
||||
farwritetext JoeyDevisingStrategiesText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0938:
|
||||
farwritetext UnknownText_0x175abe
|
||||
WadeNoBerriesScript:
|
||||
farwritetext WadeNoBerriesText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0940:
|
||||
farwritetext UnknownText_0x175eaf
|
||||
RalphNoItemScript:
|
||||
farwritetext RalphNoItemText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0948:
|
||||
farwritetext UnknownText_0x1768b0
|
||||
LizHangUpScript:
|
||||
farwritetext LizFawningOverMonText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0950:
|
||||
farwritetext UnknownText_0x176d32
|
||||
AnthonyHangUpScript:
|
||||
farwritetext AnthonyWasntPayingAttentionText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0958:
|
||||
farwritetext UnknownText_0x1770fb
|
||||
ToddNoItemScript:
|
||||
farwritetext ToddSavingUpForBargainSaleText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0960:
|
||||
farwritetext UnknownText_0x177465
|
||||
GinaHangUpScript:
|
||||
farwritetext GinaHaventFoundAnythingYetText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0968:
|
||||
farwritetext UnknownText_0x64bc6
|
||||
ArnieHangUpScript:
|
||||
farwritetext ArnieHaventSeenRareMonText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0970:
|
||||
farwritetext UnknownText_0x64e90
|
||||
AlanHangUpScript:
|
||||
farwritetext AlanHaventPickedUpAnythingText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0978:
|
||||
farwritetext UnknownText_0x65161
|
||||
DanaHangUpScript:
|
||||
farwritetext DanaCanYouWaitABitLongerText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa0980:
|
||||
farwritetext UnknownText_0x65a23
|
||||
ChadHangUpScript:
|
||||
farwritetext ChadGoingToStudyHardText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0988:
|
||||
farwritetext UnknownText_0x65d5c
|
||||
DerekHangUpScript:
|
||||
farwritetext DerekLetsGetTogetherText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0990:
|
||||
farwritetext UnknownText_0x65ff2
|
||||
TullyNoItemScript:
|
||||
farwritetext TullyNoItemText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa0998:
|
||||
farwritetext UnknownText_0x6651e
|
||||
BrentHangUpScript:
|
||||
farwritetext BrentSorryImTooBusyText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa09a0:
|
||||
farwritetext UnknownText_0x66882
|
||||
TiffanyNoItemScript:
|
||||
farwritetext TiffanyNoItemText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
VanceLookingForward:
|
||||
VanceLookingForwardScript:
|
||||
farwritetext VanceLookingForwardText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
WiltonHaventFoundAnything:
|
||||
WiltonHaventFoundAnythingScript:
|
||||
farwritetext WiltonHaventFoundAnythingText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
ParryBattleWithMe:
|
||||
ParryBattleWithMeScript:
|
||||
farwritetext ParryBattleWithMeText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
ErinWorkingHardScript:
|
||||
farwritetext ErinWorkingHardText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Female
|
||||
sjump PhoneScript_HangUpText_Female
|
||||
|
||||
UnknownScript_0xa09c8:
|
||||
IrwinRandomTextScript:
|
||||
random 3
|
||||
ifequal 0, UnknownScript_0xa09d6
|
||||
ifequal 1, UnknownScript_0xa09de
|
||||
ifequal 2, UnknownScript_0xa09e6
|
||||
ifequal 0, IrwinEscapadeScript
|
||||
ifequal 1, IrwinGoodMatchScript
|
||||
ifequal 2, IrwinSoMuchToChatAboutScript
|
||||
|
||||
UnknownScript_0xa09d6:
|
||||
farwritetext UnknownText_0x64846
|
||||
IrwinEscapadeScript:
|
||||
farwritetext IrwinYourEscapadesRockText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa09de:
|
||||
farwritetext UnknownText_0x64881
|
||||
IrwinGoodMatchScript:
|
||||
farwritetext IrwinGoodMatchText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
UnknownScript_0xa09e6:
|
||||
farwritetext UnknownText_0x648dc
|
||||
IrwinSoMuchToChatAboutScript:
|
||||
farwritetext IrwinSoMuchToChatAboutText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
KenjiAnswerPhoneScript:
|
||||
readvar VAR_KENJI_BREAK
|
||||
ifequal 2, .Training
|
||||
ifequal 1, .OnBreak
|
||||
farwritetext UnknownText_0x66e17
|
||||
farwritetext KenjiCallMeBackAnotherTimeText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Training:
|
||||
farwritetext UnknownText_0x66e67
|
||||
farwritetext KenjiIllHaveTimeToChatTomorrowText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.OnBreak:
|
||||
checktime MORN
|
||||
@@ -168,16 +168,16 @@ KenjiAnswerPhoneScript:
|
||||
checktime NITE
|
||||
iftrue .Night
|
||||
setevent EVENT_KENJI_ON_BREAK
|
||||
farwritetext KenjiBreakText
|
||||
farwritetext KenjiTakingABreakText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Morning:
|
||||
farwritetext UnknownText_0x66ed3
|
||||
farwritetext KenjiHangUpMorningText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
.Night:
|
||||
farwritetext UnknownText_0x66f52
|
||||
farwritetext KenjiHangUpNightText
|
||||
buttonsound
|
||||
sjump PhoneScript_HangupText_Male
|
||||
sjump PhoneScript_HangUpText_Male
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user