mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
60 lines
1.6 KiB
PHP
60 lines
1.6 KiB
PHP
Route12_MapScripts::
|
|
map_script MAP_SCRIPT_ON_RESUME, Route12_OnResume
|
|
.byte 0
|
|
|
|
Route12_OnResume::
|
|
call_if_set FLAG_SYS_SPECIAL_WILD_BATTLE, Route12_EventScript_TryRemoveSnorlax
|
|
end
|
|
|
|
Route12_EventScript_TryRemoveSnorlax::
|
|
removeobject VAR_LAST_TALKED
|
|
return
|
|
|
|
Route12_EventScript_Snorlax::
|
|
lock
|
|
faceplayer
|
|
goto_if_unset FLAG_GOT_POKE_FLUTE, Route12_EventScript_SnorlaxNoPokeFlute
|
|
goto_if_questlog EventScript_ReleaseEnd
|
|
special QuestLog_CutRecording
|
|
msgbox Text_WantToUsePokeFlute, MSGBOX_YESNO
|
|
goto_if_eq VAR_RESULT, NO, Route12_EventScript_DontUsePokeFlute
|
|
call EventScript_AwakenSnorlax
|
|
setwildbattle SPECIES_SNORLAX, 30
|
|
waitse
|
|
playmoncry SPECIES_SNORLAX, CRY_MODE_ENCOUNTER
|
|
delay 40
|
|
waitmoncry
|
|
setflag FLAG_HIDE_ROUTE_12_SNORLAX
|
|
setflag FLAG_SYS_SPECIAL_WILD_BATTLE
|
|
setflag FLAG_WOKE_UP_ROUTE_12_SNORLAX
|
|
dowildbattle
|
|
clearflag FLAG_SYS_SPECIAL_WILD_BATTLE
|
|
specialvar VAR_RESULT, GetBattleOutcome
|
|
goto_if_eq VAR_RESULT, B_OUTCOME_WON, Route12_EventScript_FoughtSnorlax
|
|
goto_if_eq VAR_RESULT, B_OUTCOME_RAN, Route12_EventScript_FoughtSnorlax
|
|
goto_if_eq VAR_RESULT, B_OUTCOME_PLAYER_TELEPORTED, Route12_EventScript_FoughtSnorlax
|
|
release
|
|
end
|
|
|
|
Route12_EventScript_DontUsePokeFlute::
|
|
release
|
|
end
|
|
|
|
Route12_EventScript_FoughtSnorlax::
|
|
msgbox Text_SnorlaxReturnedToMountains
|
|
release
|
|
end
|
|
|
|
Route12_EventScript_SnorlaxNoPokeFlute::
|
|
msgbox Route12_Text_MonSprawledOutInSlumber
|
|
release
|
|
end
|
|
|
|
Route12_EventScript_RouteSign::
|
|
msgbox Route12_Text_RouteSign, MSGBOX_SIGN
|
|
end
|
|
|
|
Route12_EventScript_FishingSign::
|
|
msgbox Route12_Text_SportfishingArea, MSGBOX_SIGN
|
|
end
|