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

41 lines
931 B
PHP

MtPyre_1F_MapScripts::
.byte 0
MtPyre_1F_EventScript_CleanseTagWoman::
lock
faceplayer
goto_if_set FLAG_RECEIVED_CLEANSE_TAG, MtPyre_1F_EventScript_ReceivedCleanseTag
msgbox MtPyre_1F_Text_TakeThisForYourOwnGood, MSGBOX_DEFAULT
giveitem ITEM_CLEANSE_TAG
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
setflag FLAG_RECEIVED_CLEANSE_TAG
release
end
MtPyre_1F_EventScript_ReceivedCleanseTag::
msgbox MtPyre_1F_Text_ExplainCleanseTag, MSGBOX_DEFAULT
release
end
MtPyre_1F_EventScript_PokefanF::
msgbox MtPyre_1F_Text_ComeToPayRespects, MSGBOX_NPC
end
MtPyre_1F_EventScript_Man::
msgbox MtPyre_1F_Text_RestingPlaceOfZigzagoon, MSGBOX_NPC
end
.ifdef FRENCH
.include "data/maps/MtPyre_1F/text_fr.inc"
.else
.ifdef ITALIAN
.include "data/maps/MtPyre_1F/text_it.inc"
.else
.ifdef SPANISH
.include "data/maps/MtPyre_1F/text_es.inc"
.else
.include "data/maps/MtPyre_1F/text.inc"
.endif
.endif
.endif