mirror of
https://github.com/bryanthaboi/gen1recomp
synced 2026-09-26 13:33:27 -04:00
18 lines
491 B
Lua
18 lines
491 B
Lua
-- SaffronPidgeyHouse (pokered/scripts/SaffronPidgeyHouse.asm)
|
|
--
|
|
-- TEXT_SAFFRONPIDGEYHOUSE_PIDGEY: SaffronPidgeyHousePidgeyText plays the
|
|
-- PIDGEY cry after showing its "Kurukkoo!" line (text_asm: ld a, PIDGEY /
|
|
-- call PlayCry / jp TextScriptEnd).
|
|
|
|
return {
|
|
SAFFRON_PIDGEY_HOUSE = {
|
|
talk = {
|
|
TEXT_SAFFRONPIDGEYHOUSE_PIDGEY = {
|
|
{ "face_player" },
|
|
{ "play_cry", "PIDGEY", true },
|
|
{ "show_text", "_SaffronPidgeyHousePidgeyText" },
|
|
},
|
|
},
|
|
},
|
|
}
|