mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 00:10:56 +02:00
19 lines
624 B
Lua
19 lines
624 B
Lua
-- Flavor dialogue for LavenderMart (pokered/scripts/LavenderMart.asm)
|
|
return {
|
|
LAVENDER_MART = {
|
|
talk = {
|
|
-- LavenderMartCooltrainerMText (pokered/scripts/LavenderMart.asm):
|
|
-- before EVENT_RESCUED_MR_FUJI: talks about REVIVE; after: talks about
|
|
-- the NUGGET he found.
|
|
TEXT_LAVENDERMART_COOLTRAINER_M = {
|
|
{ "face_player" },
|
|
{ "check_flag", "EVENT_RESCUED_MR_FUJI" },
|
|
{ "jump_if_true", 6 },
|
|
{ "show_text", "_LavenderMartCooltrainerMReviveText" },
|
|
{ "jump", "end" },
|
|
{ "show_text", "_LavenderMartCooltrainerMNuggetText" },
|
|
},
|
|
},
|
|
},
|
|
}
|