Files
pokeemerald/data/scripts/test_signpost.inc
2024-07-05 07:31:42 -04:00

18 lines
377 B
PHP

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 @ENGLISH
.string "This is a test message.\n"
.string "This is a signpost.$"
.endif
.endif
EventScript_TestSignpostMsg::
msgbox Text_ThisIsATestSignpostMsg, MSGBOX_SIGN
end