mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 00:10:56 +02:00
8278b209b4
* squashy squash * squassshheee CLOSES #128 CLOSES #114 CLOSES #113 CLOSES #111 CLOSES #110 CLOSES #109 CLOSES #107 CLOSES #106 CLOSES #105 CLOSES #90 CLOSES #103 * brock guy fix CLOSES #39
24 lines
1.2 KiB
Lua
24 lines
1.2 KiB
Lua
-- Hand-ported from pret/pokered scripts/RedsHouse1F.asm.
|
|
-- Mom (RedsHouse1FMomText): pre-starter shows the wake-up / Oak tip;
|
|
-- after EVENT_GOT_STARTER, RedsHouse1FMomHealScript fades to white,
|
|
-- heals, plays MUSIC_PKMN_HEALED, fades back, then "looking great".
|
|
|
|
return {
|
|
talk = {
|
|
TEXT_REDSHOUSE1F_MOM = {
|
|
{ "face_player" }, -- 1
|
|
{ "check_flag", "EVENT_GOT_STARTER" }, -- 2
|
|
{ "jump_if_true", 6 }, -- 3
|
|
{ "show_text", "_RedsHouse1FMomWakeUpText" }, -- 4
|
|
{ "jump", "end" }, -- 5
|
|
-- RedsHouse1FMomHealScript
|
|
{ "show_text", "_RedsHouse1FMomYouShouldRestText" }, -- 6
|
|
{ "fade", "out", "white" }, -- 7 GBFadeOutToWhite
|
|
{ "heal_party" }, -- 8
|
|
{ "play_once", "Music_PkmnHealed" }, -- 9 wait + restore map
|
|
{ "fade", "in", "white" }, -- 10 GBFadeInFromWhite
|
|
{ "show_text", "_RedsHouse1FMomLookingGreatText" }, -- 11
|
|
},
|
|
},
|
|
}
|