pokeemerald-expansion/data/maps/Route16_House_Frlg/scripts.inc
Bassoonian 310f746565
Some checks are pending
CI / build (push) Waiting to run
CI / docs_validate (push) Waiting to run
CI / allcontributors (push) Waiting to run
Fix space indentation in .s and .inc files (#9371)
2026-02-27 12:45:00 -08:00

58 lines
1.4 KiB
PHP

Route16_House_Frlg_MapScripts::
.byte 0
Route16_House_EventScript_Woman::
lock
faceplayer
goto_if_set FLAG_GOT_HM02, Route16_House_EventScript_AlreadyGotHM02
msgbox Route16_House_Text_FoundMySecretRetreat
checkitemspace ITEM_HM02
goto_if_eq VAR_RESULT, FALSE, Route16_House_EventScript_NoRoomForHM02
giveitem_msg Route16_House_Text_ReceivedHM02FromGirl, ITEM_HM02
msgbox Route16_House_Text_ExplainHM02
setflag FLAG_GOT_HM02
release
end
Route16_House_EventScript_NoRoomForHM02::
msgbox Route16_House_Text_DontHaveAnyRoomForThis
release
end
Route16_House_EventScript_AlreadyGotHM02::
msgbox Route16_House_Text_ExplainHM02
release
end
Route16_House_EventScript_Fearow::
lock
faceplayer
waitse
playmoncry SPECIES_FEAROW, CRY_MODE_NORMAL
msgbox Route16_House_Text_Fearow
waitmoncry
release
end
Route16_House_Text_FoundMySecretRetreat::
.string "Oh, dear.\n"
.string "You've found my secret retreat.\p"
.string "Please don't tell anyone I'm here.\n"
.string "I'll make it up to you with this!$"
Route16_House_Text_ReceivedHM02FromGirl::
.string "{PLAYER} received HM02\n"
.string "from the girl.$"
Route16_House_Text_ExplainHM02::
.string "HM02 is FLY.\n"
.string "It's a wonderfully convenient move.\p"
.string "Please, put it to good use.$"
Route16_House_Text_DontHaveAnyRoomForThis::
.string "You don't have any room for this.$"
Route16_House_Text_Fearow::
.string "FEAROW: Kyueen!$"