mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 00:10:56 +02:00
18 lines
596 B
Lua
18 lines
596 B
Lua
-- pokered/scripts/SilphCo4F.asm: SilphCo4FSilphWorkerMText
|
|
-- Uses SilphCo6FBeatGiovanniPrintDEOrPrintHLScript: if EVENT_BEAT_SILPH_CO_GIOVANNI
|
|
-- is set, show the "Team Rocket is gone?" line; otherwise show the "hiding" line.
|
|
return {
|
|
SILPH_CO_4F = {
|
|
talk = {
|
|
TEXT_SILPHCO4F_SILPH_WORKER_M = {
|
|
{"face_player"},
|
|
{"check_flag", "EVENT_BEAT_SILPH_CO_GIOVANNI"},
|
|
{"jump_if_true", 6},
|
|
{"show_text", "_SilphCo4FSilphWorkerMImHidingText"},
|
|
{"jump", "end"},
|
|
{"show_text", "_SilphCo4FSilphWorkerMTeamRocketIsGoneText"},
|
|
},
|
|
},
|
|
},
|
|
}
|