mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 16:45:24 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
44
engine/phone/scripts/brent.asm
Normal file
44
engine/phone/scripts/brent.asm
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
BrentPhoneCalleeScript:
|
||||
gettrainername STRING_BUFFER_3, POKEMANIAC, BRENT1
|
||||
checkflag ENGINE_BRENT_READY_FOR_REMATCH
|
||||
iftrue .WantsBattle
|
||||
farscall PhoneScript_AnswerPhone_Male
|
||||
checkflag ENGINE_BRENT_MONDAY_MORNING
|
||||
iftrue .NotMonday
|
||||
readvar VAR_WEEKDAY
|
||||
ifnotequal MONDAY, .NotMonday
|
||||
checktime MORN
|
||||
iftrue BrentMondayMorning
|
||||
|
||||
.NotMonday:
|
||||
farsjump BrentHangUpScript
|
||||
|
||||
.WantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, LANDMARK_ROUTE_43
|
||||
farsjump BrentReminderScript
|
||||
|
||||
BrentPhoneCallerScript:
|
||||
gettrainername STRING_BUFFER_3, POKEMANIAC, BRENT1
|
||||
farscall PhoneScript_GreetPhone_Male
|
||||
farscall PhoneScript_Random2
|
||||
ifequal 0, BrentBillTrivia
|
||||
checkflag ENGINE_BRENT_READY_FOR_REMATCH
|
||||
iftrue .Generic
|
||||
checkflag ENGINE_BRENT_MONDAY_MORNING
|
||||
iftrue .Generic
|
||||
farscall PhoneScript_Random2
|
||||
ifequal 0, BrentWantsBattle
|
||||
|
||||
.Generic:
|
||||
farsjump Phone_GenericCall_Male
|
||||
|
||||
BrentMondayMorning:
|
||||
setflag ENGINE_BRENT_MONDAY_MORNING
|
||||
|
||||
BrentWantsBattle:
|
||||
getlandmarkname STRING_BUFFER_5, LANDMARK_ROUTE_43
|
||||
setflag ENGINE_BRENT_READY_FOR_REMATCH
|
||||
farsjump PhoneScript_WantsToBattle_Male
|
||||
|
||||
BrentBillTrivia:
|
||||
farsjump BrentBillTriviaScript
|
||||
Loading…
Add table
Add a link
Reference in a new issue