Split engine/phone/phone_scripts.asm and phone_gossip.asm into individual files
This commit is contained in:
40
engine/phone/scripts/parry.asm
Normal file
40
engine/phone/scripts/parry.asm
Normal file
@@ -0,0 +1,40 @@
|
||||
ParryPhoneScript1:
|
||||
trainertotext HIKER, PARRY1, MEM_BUFFER_0
|
||||
checkflag ENGINE_PARRY
|
||||
iftrue .WantsBattle
|
||||
farscall PhoneScript_AnswerPhone_Male
|
||||
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
||||
iftrue .WantsRematch
|
||||
checkcode VAR_WEEKDAY
|
||||
ifnotequal FRIDAY, .WantsRematch
|
||||
checktime DAY
|
||||
iftrue ParryFridayDay
|
||||
|
||||
.WantsRematch:
|
||||
farjump ParryBattleWithMe
|
||||
|
||||
.WantsBattle:
|
||||
landmarktotext ROUTE_45, MEM_BUFFER_2
|
||||
farjump ParryHaventYouGottenTo
|
||||
|
||||
ParryPhoneScript2:
|
||||
trainertotext HIKER, PARRY1, MEM_BUFFER_0
|
||||
farscall PhoneScript_GreetPhone_Male
|
||||
checkflag ENGINE_PARRY
|
||||
iftrue .GenericCall
|
||||
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
||||
iftrue .GenericCall
|
||||
farscall PhoneScript_Random2
|
||||
ifequal 0, ParryWantsBattle
|
||||
ifequal 1, ParryWantsBattle
|
||||
|
||||
.GenericCall:
|
||||
farjump Phone_GenericCall_Male
|
||||
|
||||
ParryFridayDay:
|
||||
setflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
||||
|
||||
ParryWantsBattle:
|
||||
landmarktotext ROUTE_45, MEM_BUFFER_2
|
||||
setflag ENGINE_PARRY
|
||||
farjump PhoneScript_WantsToBattle_Male
|
Reference in New Issue
Block a user