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

130 lines
3.5 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
MysteryGiftScript_AuroraTicket::
setvaddress MysteryGiftScript_AuroraTicket
lock
faceplayer
vgoto_if_set FLAG_RECEIVED_AURORA_TICKET, AuroraTicket_Obtained
vgoto_if_set FLAG_BATTLED_DEOXYS, AuroraTicket_Obtained
checkitem ITEM_AURORA_TICKET
vgoto_if_eq VAR_RESULT, TRUE, AuroraTicket_Obtained
vmessage sText_AuroraTicketForYou
waitmessage
waitbuttonpress
checkitemspace ITEM_AURORA_TICKET
vgoto_if_eq VAR_RESULT, FALSE, AuroraTicket_NoBagSpace
giveitem ITEM_AURORA_TICKET
setflag FLAG_ENABLE_SHIP_BIRTH_ISLAND
setflag FLAG_RECEIVED_AURORA_TICKET
vmessage sText_AuroraTicketUseAtPort
waitmessage
waitbuttonpress
release
end
AuroraTicket_NoBagSpace:
vmessage sText_AuroraTicketBagFull
waitmessage
waitbuttonpress
release
end
AuroraTicket_Obtained:
vmessage sText_AuroraTicketThankYou
waitmessage
waitbuttonpress
release
end
.ifdef FRENCH
sText_AuroraTicketForYou:
.string "Merci d’utiliser le système\n"
.string "CADEAU MYST.\p"
.string "Vous devez être {PLAYER}.\n"
.string "Il y a un ticket pour vous.$"
sText_AuroraTicketUseAtPort:
.string "Il peut être utilisé au port de\n"
.string "NENUCRIQUE.\p"
.string "Essayez-le pour voir de quoi \n"
.string "il s’agit.$"
sText_AuroraTicketThankYou:
.string "Merci d’utiliser le système\n"
.string "CADEAU MYST.$"
sText_AuroraTicketBagFull:
.string "Oh, je regrette, {PLAYER}. La POCHE\n"
.string "OBJ. RARES du SAC est pleine.\p"
.string "Faites de la place dans votre SAC\n"
.string "et revenez me voir.$"
.else
.ifdef ITALIAN
sText_AuroraTicketForYou:
.string "Grazie per usare il Sistema\n"
.string "DONO SEGRETO.\p"
.string "Tu sei {PLAYER}, vero? Ho qui\n"
.string "un biglietto per te.$"
sText_AuroraTicketUseAtPort:
.string "Dovrebbe servirti allo scalo di\n"
.string "PORTO ALGHEPOLI.\p"
.string "Ti conviene andare a vedere\n"
.string "di persona.$"
sText_AuroraTicketThankYou:
.string "Grazie per usare il Sistema\n"
.string "DONO SEGRETO.$"
sText_AuroraTicketBagFull:
.string "Oh, mi spiace. La TASCA STRUMENTI\n"
.string "BASE del tuo ZAINO è piena.\p"
.string "Torna a trovarmi dopo aver\n"
.string "depositato qualcosa nel PC.$"
.else
.ifdef SPANISH
sText_AuroraTicketForYou:
.string "Gracias por usar el sistema\n"
.string "del REGALO MISTERIOSO.\p"
.string "Debes de ser {PLAYER}, ¿no?\p"
.string "Pues tenemos un ticket para ti.$"
sText_AuroraTicketUseAtPort:
.string "Parece que puedes usarlo en el\n"
.string "puerto de CIUDAD CALAGUA.\p"
.string "¿Por qué no curioseas un poco\n"
.string "para ver de qué va la cosa?$"
sText_AuroraTicketThankYou:
.string "Gracias por usar el sistema\n"
.string "del REGALO MISTERIOSO.$"
sText_AuroraTicketBagFull:
.string "Lo siento, {PLAYER}. El BOLSILLO\n"
.string "de los OBJETOS CLAVE está lleno.\p"
.string "Guarda algo en el PC y vuelve\n"
.string "más tarde.$"
.else @ENGLISH
sText_AuroraTicketForYou:
.string "Thank you for using the MYSTERY\n"
.string "GIFT System.\p"
.string "You must be {PLAYER}.\n"
.string "There is a ticket here for you.$"
sText_AuroraTicketUseAtPort:
.string "It appears to be for use at the\n"
.string "LILYCOVE CITY port.\p"
.string "Why not give it a try and see what\n"
.string "it is about?$"
sText_AuroraTicketThankYou:
.string "Thank you for using the MYSTERY\n"
.string "GIFT System.$"
sText_AuroraTicketBagFull:
.string "Oh, I'm sorry, {PLAYER}.\n"
.string "Your BAG's KEY ITEMS POCKET is full.\p"
.string "Please store something on your PC,\n"
.string "then come back for this.$"
.endif
.endif
.endif