mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 16:31:05 +02:00
f0a88ea473
* audio timing stuff * bug fixes and translation additions * translation stuff * Update modkit.py * better asset resolution
20 lines
833 B
Lua
20 lines
833 B
Lua
-- Viridian Nickname House (pokered/scripts/ViridianNicknameHouse.asm).
|
|
|
|
return {
|
|
VIRIDIAN_NICKNAME_HOUSE = {
|
|
talk = {
|
|
-- ViridianNicknameHouseSpearowText: text_asm that PrintTexts the
|
|
-- line, then plays the SPEAROW cry (PlayCry/WaitForSoundToFinish)
|
|
-- before TextScriptEnd. play_cry only arms the show_text row that
|
|
-- follows it, so the cry sounds once the box has typed out; its
|
|
-- waitForButton form keeps DisplayTextID's trailing
|
|
-- WaitForTextScrollButtonPress, so the box then holds until A/B like
|
|
-- any other NPC line rather than popping itself (#251).
|
|
TEXT_VIRIDIANNICKNAMEHOUSE_SPEAROW = {
|
|
{ "play_cry", "SPEAROW", true }, -- 1 PlayCry
|
|
{ "show_text", "_ViridianNicknameHouseSpearowText" }, -- 2 PrintText
|
|
},
|
|
},
|
|
},
|
|
}
|