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

43 lines
1.2 KiB
PHP

MtPyre_6F_MapScripts::
.byte 0
MtPyre_6F_EventScript_Valerie::
trainerbattle_single TRAINER_VALERIE_1, MtPyre_6F_Text_ValerieIntro, MtPyre_6F_Text_ValerieDefeat, MtPyre_6F_EventScript_RegisterValerie
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, MtPyre_6F_EventScript_RematchValerie
msgbox MtPyre_6F_Text_ValeriePostBattle, MSGBOX_DEFAULT
release
end
MtPyre_6F_EventScript_RegisterValerie::
special PlayerFaceTrainerAfterBattle
waitmovement 0
msgbox MtPyre_6F_Text_ValerieRegister, MSGBOX_DEFAULT
register_matchcall TRAINER_VALERIE_1
release
end
MtPyre_6F_EventScript_RematchValerie::
trainerbattle_rematch TRAINER_VALERIE_1, MtPyre_6F_Text_ValerieRematchIntro, MtPyre_6F_Text_ValerieRematchDefeat
msgbox MtPyre_6F_Text_ValeriePostRematch, MSGBOX_AUTOCLOSE
end
MtPyre_6F_EventScript_Cedric::
trainerbattle_single TRAINER_CEDRIC, MtPyre_6F_Text_CedricIntro, MtPyre_6F_Text_CedricDefeat
msgbox MtPyre_6F_Text_CedricPostBattle, MSGBOX_AUTOCLOSE
end
.ifdef FRENCH
.include "data/maps/MtPyre_6F/text_fr.inc"
.else
.ifdef ITALIAN
.include "data/maps/MtPyre_6F/text_it.inc"
.else
.ifdef SPANISH
.include "data/maps/MtPyre_6F/text_es.inc"
.else
.include "data/maps/MtPyre_6F/text.inc"
.endif
.endif
.endif