mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +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
29 lines
1.4 KiB
Lua
29 lines
1.4 KiB
Lua
-- Silph Co. 9F (registry id: SILPH_CO_9F)
|
|
-- Source: pokered/scripts/SilphCo9F.asm, pokered/text/SilphCo9F.asm
|
|
|
|
return {
|
|
SILPH_CO_9F = {
|
|
talk = {
|
|
-- SilphCo9FNurseText (pokered/scripts/SilphCo9F.asm):
|
|
-- before EVENT_BEAT_SILPH_CO_GIOVANNI: heals the party, white fade
|
|
-- (Delay3 between out/in; no Music_PkmnHealed), then "Don't give
|
|
-- up!"; after the event, just says thanks. Nurse texts are not in
|
|
-- data/generated/text.lua, so the exact pokered/text/SilphCo9F.asm
|
|
-- strings are used as literals.
|
|
TEXT_SILPHCO9F_NURSE = {
|
|
{ "face_player" }, -- 1
|
|
{ "check_flag", "EVENT_BEAT_SILPH_CO_GIOVANNI" }, -- 2
|
|
{ "jump_if_true", 11 }, -- 3
|
|
{ "show_text", "You look tired!\nYou should take a\nquick nap!" }, -- 4
|
|
{ "heal_party" }, -- 5
|
|
{ "fade", "out", "white" }, -- 6
|
|
{ "wait", 3 }, -- 7 Delay3
|
|
{ "fade", "in", "white" }, -- 8
|
|
{ "show_text", "Don't give up!" }, -- 9
|
|
{ "jump", "end" }, -- 10
|
|
{ "show_text", "Thank you so\nmuch!" }, -- 11
|
|
},
|
|
},
|
|
},
|
|
}
|