Files
pokeemerald/data/scripts/test_signpost.inc
Eduardo Quezada cbf5d137aa ALMOST THERE
2025-02-14 23:25:52 -03:00

23 lines
480 B
ObjectPascal

Text_ThisIsATestSignpostMsg::
.ifdef FRENCH
.string "Message test.\n"
.string "Panneau.$"
.else
.ifdef ITALIAN
.string "Questo è un messaggio di prova.\n"
.string "Questo è un cartello.$"
.else
.ifdef SPANISH
.string "Éste es un mensaje de texto.\n"
.string "Esto es una señal.$"
.else @ENGLISH
.string "This is a test message.\n"
.string "This is a signpost.$"
.endif
.endif
.endif
EventScript_TestSignpostMsg::
msgbox Text_ThisIsATestSignpostMsg, MSGBOX_SIGN
end