pokeemerald/data/maps/SSTidalRooms/scripts.inc

177 lines
5.8 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
SSTidalRooms_MapScripts:: @ 823C9F1
.byte 0
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_SnatchGiver:: @ 823C9F2
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-08 09:37:46 +01:00
goto_if_set FLAG_RECEIVED_TM49, SSTidalRooms_EventScript_ExplainSnatch
msgbox SSTidalRooms_Text_NotSuspiciousTakeThis, MSGBOX_DEFAULT
giveitem ITEM_TM49
2019-11-08 09:37:46 +01:00
compare VAR_RESULT, FALSE
goto_if_eq Common_EventScript_ShowBagIsFull
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_TM49
2019-11-08 09:37:46 +01:00
msgbox SSTidalRooms_Text_ExplainSnatch, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_ExplainSnatch:: @ 823CA29
msgbox SSTidalRooms_Text_ExplainSnatch, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Bed:: @ 823CA33
2017-11-10 02:21:31 +01:00
lockall
2019-11-08 09:37:46 +01:00
msgbox SSTidalRooms_Text_TakeRestOnBed, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
call Common_EventScript_OutOfCenterPartyHeal
2019-11-08 09:37:46 +01:00
call SSTidalRooms_EventScript_ProgessCruiseAfterBed
2017-11-10 02:21:31 +01:00
releaseall
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Colton:: @ 823CA49
trainerbattle_single TRAINER_COLTON, SSTidalRooms_Text_ColtonIntro, SSTidalRooms_Text_ColtonDefeat
msgbox SSTidalRooms_Text_ColtonPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Micah:: @ 823CA60
trainerbattle_single TRAINER_MICAH, SSTidalRooms_Text_MicahIntro, SSTidalRooms_Text_MicahDefeat
msgbox SSTidalRooms_Text_MicahPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Thomas:: @ 823CA77
trainerbattle_single TRAINER_THOMAS, SSTidalRooms_Text_ThomasIntro, SSTidalRooms_Text_ThomasDefeat
msgbox SSTidalRooms_Text_ThomasPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Jed:: @ 823CA8E
trainerbattle_double TRAINER_LEA_AND_JED, SSTidalRooms_Text_JedIntro, SSTidalRooms_Text_JedDefeat, SSTidalRooms_Text_JedNotEnoughMons
msgbox SSTidalRooms_Text_JedPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Lea:: @ 823CAA9
trainerbattle_double TRAINER_LEA_AND_JED, SSTidalRooms_Text_LeaIntro, SSTidalRooms_Text_LeaDefeat, SSTidalRooms_Text_LeaNotEnoughMons
msgbox SSTidalRooms_Text_LeaPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Garret:: @ 823CAC4
trainerbattle_single TRAINER_GARRET, SSTidalRooms_Text_GarretIntro, SSTidalRooms_Text_GarretDefeat
msgbox SSTidalRooms_Text_GarretPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_EventScript_Naomi:: @ 823CADB
trainerbattle_single TRAINER_NAOMI, SSTidalRooms_Text_NaomiIntro, SSTidalRooms_Text_NaomiDefeat
msgbox SSTidalRooms_Text_NaomiPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_TakeRestOnBed: @ 823CAF2
2018-12-07 16:41:08 +01:00
.string "There's a bed…\n"
.string "Let's take a rest.$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ColtonIntro: @ 823CB14
2017-11-10 02:21:31 +01:00
.string "I often sail to LILYCOVE CITY.\p"
.string "I enjoy attending CONTESTS,\n"
.string "you see.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ColtonDefeat: @ 823CB58
2017-11-10 02:21:31 +01:00
.string "That was an enjoyable match!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ColtonPostBattle: @ 823CB75
2017-11-10 02:21:31 +01:00
.string "I get so excited imagining what kinds\n"
2018-12-07 16:41:08 +01:00
.string "of POKéMON I'll get to see in the next\l"
2017-11-10 02:21:31 +01:00
.string "CONTEST. The anticipation of it thrills!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_MicahIntro: @ 823CBEB
2017-11-10 02:21:31 +01:00
.string "Are your friends strong?$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_MicahDefeat: @ 823CC04
2017-11-10 02:21:31 +01:00
.string "Your friends are, indeed, strong.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_MicahPostBattle: @ 823CC26
2017-11-10 02:21:31 +01:00
.string "Friends need not be human.\n"
.string "For me, POKéMON are treasured friends!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ThomasIntro: @ 823CC68
2017-11-10 02:21:31 +01:00
.string "Child…\n"
.string "Did you knock on the door?$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ThomasDefeat: @ 823CC8A
2017-11-10 02:21:31 +01:00
.string "A loss is to be accepted without haste\n"
.string "or panic.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ThomasPostBattle: @ 823CCBB
2017-11-10 02:21:31 +01:00
.string "To be never ruffled in any situation is\n"
2018-12-07 16:41:08 +01:00
.string "the GENTLEMAN's code of conduct.$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_JedIntro: @ 823CD04
2017-11-10 02:21:31 +01:00
.string "JED: I feel a little shy about this, but…\n"
2018-12-07 16:41:08 +01:00
.string "We'll show you our lovey-dovey power!$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_JedDefeat: @ 823CD54
2017-11-10 02:21:31 +01:00
.string "JED: Sigh…$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_JedPostBattle: @ 823CD5F
2018-12-07 16:41:08 +01:00
.string "JED: It's the first time that our lovey-\n"
.string "dovey power couldn't prevail!\l"
2017-11-10 02:21:31 +01:00
.string "You must be an awesome TRAINER!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_JedNotEnoughMons: @ 823CDC6
2017-11-10 02:21:31 +01:00
.string "JED: You only have one POKéMON?\n"
2018-12-07 16:41:08 +01:00
.string "Isn't that just too lonesome?$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_LeaIntro: @ 823CE04
2017-11-10 02:21:31 +01:00
.string "LEA: I feel a little silly, but…\n"
2018-12-07 16:41:08 +01:00
.string "We'll show you our lovey-dovey power!$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_LeaDefeat: @ 823CE4B
2017-11-10 02:21:31 +01:00
.string "LEA: Oh, boo!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_LeaPostBattle: @ 823CE59
2018-12-07 16:41:08 +01:00
.string "LEA: I can't believe it!\n"
2017-11-10 02:21:31 +01:00
.string "Our lovey-dovey power failed…\l"
.string "You must be an awesome TRAINER!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_LeaNotEnoughMons: @ 823CEB0
2017-11-10 02:21:31 +01:00
.string "LEA: I wanted to battle…\n"
2018-12-07 16:41:08 +01:00
.string "But you don't even have two POKéMON…$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_GarretIntro: @ 823CEEE
2018-12-07 16:41:08 +01:00
.string "Ah, you've come just in time.\p"
.string "I'm bored, you see.\n"
2017-11-10 02:21:31 +01:00
.string "You may entertain me.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_GarretDefeat: @ 823CF36
2017-11-10 02:21:31 +01:00
.string "…That will do.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_GarretPostBattle: @ 823CF45
2017-11-10 02:21:31 +01:00
.string "Perhaps I shall get Father to acquire\n"
.string "a yacht for me.\l"
.string "A yacht for me and POKéMON!$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_NaomiIntro: @ 823CF97
2018-12-07 16:41:08 +01:00
.string "Oh, you're such an adorable TRAINER.\n"
2017-11-10 02:21:31 +01:00
.string "Would you like to have tea?\l"
.string "Or would you rather battle?$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_NaomiDefeat: @ 823CFF4
2017-11-10 02:21:31 +01:00
.string "I see.\n"
2018-12-07 16:41:08 +01:00
.string "You're the active sort.$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_NaomiPostBattle: @ 823D013
2017-11-10 02:21:31 +01:00
.string "A world cruise on a luxury liner has its\n"
.string "charms, I must say…\p"
.string "But, I will admit there is an appealing\n"
.string "side to touring HOENN by ferry.$"
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_NotSuspiciousTakeThis: @ 823D098
2018-12-07 16:41:08 +01:00
.string "Uh… Hi! I… I'm not acting suspicious!\n"
2017-11-10 02:21:31 +01:00
.string "Uh… You can have this! For free!\p"
2018-12-07 16:41:08 +01:00
.string "It… Honestly, I didn't SNATCH it from\n"
.string "someone! I'd never do such a thing!\l"
.string "It's clean! You can use it!$"
2017-11-10 02:21:31 +01:00
2019-11-08 09:37:46 +01:00
SSTidalRooms_Text_ExplainSnatch: @ 823D145
2017-11-10 02:21:31 +01:00
.string "SNATCH steals the beneficial effects\n"
.string "of certain moves before they can be\l"
.string "used by a foe or ally.$"