pokeemerald/data/maps/Route110_TrickHousePuzzle7/scripts.inc

396 lines
14 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_MapScripts::
2019-11-06 23:57:45 +01:00
map_script MAP_SCRIPT_ON_RESUME, Route110_TrickHousePuzzle7_OnResume
map_script MAP_SCRIPT_ON_TRANSITION, Route110_TrickHousePuzzle7_OnTransition
2019-11-06 23:57:45 +01:00
map_script MAP_SCRIPT_ON_LOAD, Route110_TrickHousePuzzle7_OnLoad
map_script MAP_SCRIPT_ON_FRAME_TABLE, Route110_TrickHousePuzzle7_OnFrame
2017-11-10 02:21:31 +01:00
.byte 0
2019-11-06 23:57:45 +01:00
@ Puzzle Room 7 in RSE uses whatever puzzle Mossdeep Gym uses
@ Because Mossdeep Gym was redesigned for Emerald, theres a good deal of leftover script from the old R/S puzzle
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_OnResume:
2019-11-06 23:57:45 +01:00
call Route110_TrickHousePuzzle7_EventScript_UpdateSwitchMetatiles
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_UpdateSwitchMetatiles::
2019-11-06 23:57:45 +01:00
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1, Route110_TrickHousePuzzle7_EventScript_SetSwitch1MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2, Route110_TrickHousePuzzle7_EventScript_SetSwitch2MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3, Route110_TrickHousePuzzle7_EventScript_SetSwitch3MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4, Route110_TrickHousePuzzle7_EventScript_SetSwitch4MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5, Route110_TrickHousePuzzle7_EventScript_SetSwitch5MetatilesOn
2017-11-10 02:21:31 +01:00
return
2019-11-06 23:57:45 +01:00
@ Leftover from R/S, none of the below metatile scripts are ever called
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch1MetatilesOn::
2019-06-13 00:47:51 +02:00
setmetatile 13, 17, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Up, 0
setmetatile 12, 16, METATILE_TrickHousePuzzle_Lever_On, 1
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch2MetatilesOn::
2019-06-13 00:47:51 +02:00
setmetatile 12, 13, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Up, 0
setmetatile 12, 11, METATILE_TrickHousePuzzle_Lever_On, 1
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch3MetatilesOn::
2019-06-13 00:47:51 +02:00
setmetatile 7, 12, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Up, 0
setmetatile 5, 10, METATILE_TrickHousePuzzle_Lever_On, 1
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch4MetatilesOn::
2019-06-13 00:47:51 +02:00
setmetatile 6, 6, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Right_Alt, 0
setmetatile 4, 4, METATILE_TrickHousePuzzle_Lever_On, 1
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch5MetatilesOn::
2019-06-13 00:47:51 +02:00
setmetatile 8, 4, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Left, 0
setmetatile 7, 5, METATILE_TrickHousePuzzle_Lever_On, 1
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch1MetatilesOff::
2019-06-13 00:47:51 +02:00
setmetatile 13, 17, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Down, 0
setmetatile 12, 16, METATILE_TrickHousePuzzle_Lever_Off, 1
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch2MetatilesOff::
2019-06-13 00:47:51 +02:00
setmetatile 12, 13, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Left, 0
setmetatile 12, 11, METATILE_TrickHousePuzzle_Lever_Off, 1
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch3MetatilesOff::
2019-06-13 00:47:51 +02:00
setmetatile 7, 12, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Down, 0
setmetatile 5, 10, METATILE_TrickHousePuzzle_Lever_Off, 1
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch4MetatilesOff::
2019-06-13 00:47:51 +02:00
setmetatile 6, 6, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Left_Alt, 0
setmetatile 4, 4, METATILE_TrickHousePuzzle_Lever_Off, 1
return
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch5MetatilesOff::
2019-06-13 00:47:51 +02:00
setmetatile 8, 4, METATILE_TrickHousePuzzle_Arrow_RedOnBlack_Right, 0
setmetatile 7, 5, METATILE_TrickHousePuzzle_Lever_Off, 1
return
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_OnTransition:
2019-02-22 10:18:43 +01:00
compare VAR_TRICK_HOUSE_PUZZLE_7_STATE_2, 1
2019-11-06 23:57:45 +01:00
goto_if_eq Route110_TrickHousePuzzle7_EventScript_TeleportedTransition
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_TeleportedTransition::
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_OnLoad:
2019-02-22 10:18:43 +01:00
compare VAR_TRICK_HOUSE_PUZZLE_7_STATE_2, 1
2019-11-06 23:57:45 +01:00
call_if_eq Route110_TrickHousePuzzle7_EventScript_UpdateSwitchMetatiles
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_OnFrame:
2019-11-06 23:57:45 +01:00
map_script_2 VAR_TRICK_HOUSE_PUZZLE_7_STATE_2, 1, Route110_TrickHousePuzzle7_EventScript_ClearState2
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_ClearState2::
2019-02-22 10:18:43 +01:00
setvar VAR_TRICK_HOUSE_PUZZLE_7_STATE_2, 0
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Scroll::
2017-11-10 02:21:31 +01:00
lockall
2019-02-22 10:18:43 +01:00
compare VAR_TRICK_HOUSE_PUZZLE_7_STATE, 0
2019-11-06 23:57:45 +01:00
goto_if_eq Route110_TrickHousePuzzle7_EventScript_FoundScroll
goto Route110_TrickHousePuzzle_EventScript_ReadScrollAgain
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_FoundScroll::
2019-02-22 10:18:43 +01:00
setvar VAR_TRICK_HOUSE_PUZZLE_7_STATE, 1
2019-11-06 23:57:45 +01:00
goto Route110_TrickHousePuzzle_EventScript_FoundScroll
2017-11-10 02:21:31 +01:00
end
2019-11-06 23:57:45 +01:00
@ Unused, leftover from R/S
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_TeleportPad::
lockall
2019-02-22 10:18:43 +01:00
setvar VAR_TRICK_HOUSE_PUZZLE_7_STATE_2, 1
warpteleport MAP_ROUTE110_TRICK_HOUSE_PUZZLE7, 255, 3, 19
waitstate
releaseall
end
2019-11-06 23:57:45 +01:00
@ All the below switch scripts are unused leftover from R/S
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Switch1::
lockall
delay 32
2019-11-06 23:57:45 +01:00
call_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1, Route110_TrickHousePuzzle7_EventScript_SetSwitch1MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1, Route110_TrickHousePuzzle7_EventScript_SetSwitch1MetatilesOff
special DrawWholeMapView
2020-08-21 00:02:00 +02:00
playse SE_CLICK
2019-11-06 23:57:45 +01:00
goto_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1, Route110_TrickHousePuzzle7_EventScript_SetSwitch1On
goto_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1, Route110_TrickHousePuzzle7_EventScript_SetSwitch1Off
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Switch2::
lockall
delay 32
2019-11-06 23:57:45 +01:00
call_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2, Route110_TrickHousePuzzle7_EventScript_SetSwitch2MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2, Route110_TrickHousePuzzle7_EventScript_SetSwitch2MetatilesOff
special DrawWholeMapView
2020-08-21 00:02:00 +02:00
playse SE_CLICK
2019-11-06 23:57:45 +01:00
goto_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2, Route110_TrickHousePuzzle7_EventScript_SetSwitch2On
goto_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2, Route110_TrickHousePuzzle7_EventScript_SetSwitch2Off
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Switch3::
lockall
delay 32
2019-11-06 23:57:45 +01:00
call_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3, Route110_TrickHousePuzzle7_EventScript_SetSwitch3MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3, Route110_TrickHousePuzzle7_EventScript_SetSwitch3MetatilesOff
special DrawWholeMapView
2020-08-21 00:02:00 +02:00
playse SE_CLICK
2019-11-06 23:57:45 +01:00
goto_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3, Route110_TrickHousePuzzle7_EventScript_SetSwitch3On
goto_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3, Route110_TrickHousePuzzle7_EventScript_SetSwitch3Off
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Switch4::
lockall
delay 32
2019-11-06 23:57:45 +01:00
call_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4, Route110_TrickHousePuzzle7_EventScript_SetSwitch4MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4, Route110_TrickHousePuzzle7_EventScript_SetSwitch4MetatilesOff
special DrawWholeMapView
2020-08-21 00:02:00 +02:00
playse SE_CLICK
2019-11-06 23:57:45 +01:00
goto_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4, Route110_TrickHousePuzzle7_EventScript_SetSwitch4On
goto_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4, Route110_TrickHousePuzzle7_EventScript_SetSwitch4Off
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Switch5::
lockall
delay 32
2019-11-06 23:57:45 +01:00
call_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5, Route110_TrickHousePuzzle7_EventScript_SetSwitch5MetatilesOn
call_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5, Route110_TrickHousePuzzle7_EventScript_SetSwitch5MetatilesOff
special DrawWholeMapView
2020-08-21 00:02:00 +02:00
playse SE_CLICK
2019-11-06 23:57:45 +01:00
goto_if_unset FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5, Route110_TrickHousePuzzle7_EventScript_SetSwitch5On
goto_if_set FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5, Route110_TrickHousePuzzle7_EventScript_SetSwitch5Off
end
2019-11-06 23:57:45 +01:00
@ All the below switch scripts are unused leftover from R/S
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch1On::
2019-01-02 22:12:43 +01:00
setflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch1Off::
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_1
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch2On::
2019-01-02 22:12:43 +01:00
setflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch2Off::
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_2
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch3On::
2019-01-02 22:12:43 +01:00
setflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch3Off::
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_3
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch4On::
2019-01-02 22:12:43 +01:00
setflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch4Off::
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_4
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch5On::
2019-01-02 22:12:43 +01:00
setflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5
releaseall
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_SetSwitch5Off::
2019-01-02 22:12:43 +01:00
clearflag FLAG_TRICK_HOUSE_PUZZLE_7_SWITCH_5
releaseall
end
2017-11-10 02:21:31 +01:00
2019-11-06 23:57:45 +01:00
@ From here is where the new, actually used puzzle scripts begin
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_YellowButton::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
waitse
2020-08-21 00:02:00 +02:00
playse SE_REPEL
initrotatingtilepuzzle TRUE
2019-10-16 10:09:30 +02:00
moverotatingtileobjects 0
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
turnrotatingtileobjects
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
freerotatingtilepuzzle
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_BlueButton::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
waitse
2020-08-21 00:02:00 +02:00
playse SE_REPEL
initrotatingtilepuzzle TRUE
2019-10-16 10:09:30 +02:00
moverotatingtileobjects 1
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
turnrotatingtileobjects
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
freerotatingtilepuzzle
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_GreenButton::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
waitse
2020-08-21 00:02:00 +02:00
playse SE_REPEL
initrotatingtilepuzzle TRUE
2019-10-16 10:09:30 +02:00
moverotatingtileobjects 2
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
turnrotatingtileobjects
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
freerotatingtilepuzzle
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_PurpleButton::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
waitse
2020-08-21 00:02:00 +02:00
playse SE_REPEL
initrotatingtilepuzzle TRUE
2019-10-16 10:09:30 +02:00
moverotatingtileobjects 3
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
turnrotatingtileobjects
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-16 10:09:30 +02:00
freerotatingtilepuzzle
2017-11-10 02:21:31 +01:00
end
2019-11-06 23:57:45 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_RedButton::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
waitse
2020-08-21 00:02:00 +02:00
playse SE_REPEL
initrotatingtilepuzzle TRUE
2019-10-16 10:09:30 +02:00
moverotatingtileobjects 4
waitmovement 0
2019-10-16 10:09:30 +02:00
turnrotatingtileobjects
waitmovement 0
2019-10-16 10:09:30 +02:00
freerotatingtilepuzzle
end
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Joshua::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_JOSHUA, Route110_TrickHousePuzzle7_Text_JoshuaIntro, Route110_TrickHousePuzzle7_Text_JoshuaDefeat
msgbox Route110_TrickHousePuzzle7_Text_JoshuaPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Patricia::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_PATRICIA, Route110_TrickHousePuzzle7_Text_PatriciaIntro, Route110_TrickHousePuzzle7_Text_PatriciaDefeat
msgbox Route110_TrickHousePuzzle7_Text_PatriciaPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Alexis::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_ALEXIS, Route110_TrickHousePuzzle7_Text_AlexisIntro, Route110_TrickHousePuzzle7_Text_AlexisDefeat
msgbox Route110_TrickHousePuzzle7_Text_AlexisPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Mariela::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_MARIELA, Route110_TrickHousePuzzle7_Text_MarielaIntro, Route110_TrickHousePuzzle7_Text_MarielaDefeat
msgbox Route110_TrickHousePuzzle7_Text_MarielaPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Alvaro::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_ALVARO, Route110_TrickHousePuzzle7_Text_AlvaroIntro, Route110_TrickHousePuzzle7_Text_AlvaroDefeat
msgbox Route110_TrickHousePuzzle7_Text_AlvaroPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_Everett::
2019-11-06 23:57:45 +01:00
trainerbattle_single TRAINER_EVERETT, Route110_TrickHousePuzzle7_Text_EverettIntro, Route110_TrickHousePuzzle7_Text_EverettDefeat
msgbox Route110_TrickHousePuzzle7_Text_EverettPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_EventScript_WroteSecretCodeLockOpened::
.string "{PLAYER} wrote down the secret code\n"
.string "on the door.\p"
.string "“TRICK MASTER is huggable.”\n"
.string "… … … … … … … …\p"
.string "The lock clicked open!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_JoshuaIntro:
2017-11-10 02:21:31 +01:00
.string "The TRICK MASTER always vanishes\n"
.string "like smoke. How does he do it?$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_JoshuaDefeat:
2018-12-07 16:41:08 +01:00
.string "Aiyeeeh! You're much too strong!\n"
2017-11-10 02:21:31 +01:00
.string "How do you do it?$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_JoshuaPostBattle:
2017-11-10 02:21:31 +01:00
.string "I wish I could appear and disappear as\n"
.string "if I were smoke, too.$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_PatriciaIntro:
2017-11-10 02:21:31 +01:00
.string "Going around the same spot…\n"
.string "It begets ill fortune…$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_PatriciaDefeat:
2017-11-10 02:21:31 +01:00
.string "Defeated!\n"
2018-12-07 16:41:08 +01:00
.string "It's a bad sign…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_PatriciaPostBattle:
2018-12-07 16:41:08 +01:00
.string "I've circled the same spot over ten\n"
.string "times now… It's ill fortune…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlexisIntro:
2017-11-10 02:21:31 +01:00
.string "Whoever wins will get through here\n"
2018-12-07 16:41:08 +01:00
.string "first. That's the feeling I get.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlexisDefeat:
2017-11-10 02:21:31 +01:00
.string "Oh!\n"
.string "Well, go ahead, then!$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlexisPostBattle:
2018-12-07 16:41:08 +01:00
.string "You're solving all the puzzles in the\n"
.string "TRICK HOUSE. That's the feeling I get.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_MarielaIntro:
2017-11-10 02:21:31 +01:00
.string "Nufufufu, here at last!\n"
2018-12-07 16:41:08 +01:00
.string "Let's get right with it!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_MarielaDefeat:
2018-12-07 16:41:08 +01:00
.string "You're so casual about winning!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_MarielaPostBattle:
2018-12-07 16:41:08 +01:00
.string "Humph! I'm not upset!\n"
2017-11-10 02:21:31 +01:00
.string "Not me!$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlvaroIntro:
2017-11-10 02:21:31 +01:00
.string "I ever so closely watched you coming!$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlvaroDefeat:
2018-12-07 16:41:08 +01:00
.string "This outcome I didn't see coming…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_AlvaroPostBattle:
2017-11-10 02:21:31 +01:00
.string "Well, anyway, we both picked a weird\n"
.string "place to get acquainted.\p"
.string "As one weirdo to another,\n"
2018-12-07 16:41:08 +01:00
.string "let's do our best!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_EverettIntro:
2018-12-07 16:41:08 +01:00
.string "It's awfully cramped in here…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_EverettDefeat:
2017-11-10 02:21:31 +01:00
.string "Oh, yes, strong you are.$"
2021-07-20 21:18:31 +02:00
Route110_TrickHousePuzzle7_Text_EverettPostBattle:
2017-11-10 02:21:31 +01:00
.string "I was hoping to switch places with you\n"
.string "when I beat you, but…$"