Files
pokeemerald/data/maps/MossdeepCity_House4/scripts.inc
2024-07-05 07:31:42 -04:00

55 lines
1.3 KiB
PHP

MossdeepCity_House4_MapScripts::
.byte 0
MossdeepCity_House4_EventScript_Woman::
lock
faceplayer
goto_if_set FLAG_SYS_GAME_CLEAR, MossdeepCity_House4_EventScript_CanBattleAtSecretBases
msgbox MossdeepCity_House4_Text_BrotherLikesToFindBases, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_CanBattleAtSecretBases::
msgbox MossdeepCity_House4_Text_BrotherLikesToVisitBasesAndBattle, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_NinjaBoy::
lock
faceplayer
special CheckPlayerHasSecretBase
goto_if_eq VAR_RESULT, FALSE, MossdeepCity_House4_EventScript_NoSecretBase
special GetSecretBaseNearbyMapName
msgbox MossdeepCity_House4_Text_YouMadeSecretBaseNearX, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_NoSecretBase::
msgbox MossdeepCity_House4_Text_MakeSecretBase, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_Skitty::
lock
faceplayer
waitse
playmoncry SPECIES_SKITTY, CRY_MODE_NORMAL
msgbox MossdeepCity_House4_Text_Skitty, MSGBOX_DEFAULT
waitmoncry
release
end
.ifdef FRENCH
.include "data/maps/MossdeepCity_House4/text_fr.inc"
.else
.ifdef ITALIAN
.include "data/maps/MossdeepCity_House4/text_it.inc"
.else
.ifdef SPANISH
.include "data/maps/MossdeepCity_House4/text_es.inc"
.else
.include "data/maps/MossdeepCity_House4/text.inc"
.endif
.endif
.endif