import from github
This commit is contained in:
57
data/scripts/gift_aurora_ticket.inc
Normal file
57
data/scripts/gift_aurora_ticket.inc
Normal file
@ -0,0 +1,57 @@
|
||||
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
|
||||
|
||||
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.$"
|
Reference in New Issue
Block a user