mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
62 lines
2.0 KiB
PHP
62 lines
2.0 KiB
PHP
.equ REQUIRED_OWNED_MONS, 20
|
|
|
|
Route10_PokemonCenter_1F_MapScripts::
|
|
map_script MAP_SCRIPT_ON_TRANSITION, Route10_PokemonCenter_1F_OnTransition
|
|
map_script MAP_SCRIPT_ON_RESUME, CableClub_OnResume
|
|
.byte 0
|
|
|
|
Route10_PokemonCenter_1F_OnTransition::
|
|
setworldmapflag FLAG_WORLD_MAP_ROUTE10_POKEMON_CENTER_1F
|
|
setrespawn HEAL_LOCATION_ROUTE10
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_Nurse::
|
|
lock
|
|
faceplayer
|
|
call EventScript_PkmnCenterNurse
|
|
release
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_FatMan::
|
|
msgbox Route10_PokemonCenter_1F_Text_NuggetUselessSoldFor5000, MSGBOX_NPC
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_Gentleman::
|
|
msgbox Route10_PokemonCenter_1F_Text_EveryTypeStrongerThanOthers, MSGBOX_NPC
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_Youngster::
|
|
msgbox Route10_PokemonCenter_1F_Text_HeardGhostsHauntLavender, MSGBOX_NPC
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_Aide::
|
|
lock
|
|
faceplayer
|
|
call Route10_PokemonCenter_1F_EventScript_GetAideRequestInfo
|
|
goto_if_set FLAG_GOT_EVERSTONE_FROM_OAKS_AIDE, Route10_PokemonCenter_1F_EventScript_AlreadyGotEverstone
|
|
msgbox Route10_PokemonCenter_1F_Text_GiveEverstoneIfCaught20Mons, MSGBOX_YESNO
|
|
goto_if_eq VAR_RESULT, NO, Aide_EventScript_DeclineCheckMons
|
|
setvar VAR_0x8004, 0
|
|
specialvar VAR_RESULT, GetPokedexCount
|
|
buffernumberstring STR_VAR_3, VAR_0x8006
|
|
call Route10_PokemonCenter_1F_EventScript_GetAideRequestInfo
|
|
goto_if_lt VAR_0x8006, REQUIRED_OWNED_MONS, Aide_EventScript_HaventCaughtEnough
|
|
msgbox Route10_PokemonCenter_1F_Text_GreatHereYouGo
|
|
checkitemspace ITEM_EVERSTONE
|
|
goto_if_eq VAR_RESULT, FALSE, Aide_EventScript_NoRoomForItem
|
|
giveitem_msg Route10_PokemonCenter_1F_Text_ReceivedEverstoneFromAide, ITEM_EVERSTONE
|
|
setflag FLAG_GOT_EVERSTONE_FROM_OAKS_AIDE
|
|
msgbox Route10_PokemonCenter_1F_Text_ExplainEverstone
|
|
release
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_AlreadyGotEverstone::
|
|
msgbox Route10_PokemonCenter_1F_Text_ExplainEverstone
|
|
release
|
|
end
|
|
|
|
Route10_PokemonCenter_1F_EventScript_GetAideRequestInfo::
|
|
buffernumberstring STR_VAR_1, REQUIRED_OWNED_MONS
|
|
bufferitemname STR_VAR_2, ITEM_EVERSTONE
|
|
return
|