This commit is contained in:
2026-06-08 18:24:42 +09:30
parent f541c35a58
commit 40b9de76cf
55 changed files with 1785 additions and 519 deletions
+21 -6
View File
@@ -22,11 +22,26 @@ PokemonMansion_1F_EventScript_Statue::
end
PokemonMansion_1F_EventScript_Ted::
trainerbattle_single TRAINER_SCIENTIST_TED, PokemonMansion_1F_Text_TedIntro, PokemonMansion_1F_Text_TedDefeat
msgbox PokemonMansion_1F_Text_TedPostBattle, MSGBOX_AUTOCLOSE
end
trainerbattle_single TRAINER_SCIENTIST_TED, PokemonMansion_1F_Text_TedIntro, PokemonMansion_1F_Text_TedDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, PokemonMansion_1F_EventScript_TedRematch
msgbox PokemonMansion_1F_Text_TedPostBattle, MSGBOX_AUTOCLOSE
end
PokemonMansion_1F_EventScript_TedRematch::
trainerbattle_rematch TRAINER_SCIENTIST_TED, PokemonMansion_1F_Text_TedIntro, PokemonMansion_1F_Text_TedDefeat
msgbox PokemonMansion_1F_Text_TedPostBattle, MSGBOX_AUTOCLOSE
end
PokemonMansion_1F_EventScript_Johnson::
trainerbattle_single TRAINER_YOUNGSTER_JOHNSON, PokemonMansion_1F_Text_JohnsonIntro, PokemonMansion_1F_Text_JohnsonDefeat
msgbox PokemonMansion_1F_Text_JohnsonPostBattle, MSGBOX_AUTOCLOSE
end
trainerbattle_single TRAINER_YOUNGSTER_JOHNSON, PokemonMansion_1F_Text_JohnsonIntro, PokemonMansion_1F_Text_JohnsonDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, PokemonMansion_1F_EventScript_JohnsonRematch
msgbox PokemonMansion_1F_Text_JohnsonPostBattle, MSGBOX_AUTOCLOSE
end
PokemonMansion_1F_EventScript_JohnsonRematch::
trainerbattle_rematch TRAINER_YOUNGSTER_JOHNSON, PokemonMansion_1F_Text_JohnsonIntro, PokemonMansion_1F_Text_JohnsonDefeat
msgbox PokemonMansion_1F_Text_JohnsonPostBattle, MSGBOX_AUTOCLOSE
end