pokeemerald/data/maps/MossdeepCity_House3/scripts.inc

51 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2021-07-20 21:18:31 +02:00
MossdeepCity_House3_MapScripts::
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_EventScript_SuperRodFisherman::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-09 17:28:28 +01:00
goto_if_set FLAG_RECEIVED_SUPER_ROD, MossdeepCity_House3_EventScript_ReceivedSuperRod
msgbox MossdeepCity_House3_Text_YouWantSuperRod, MSGBOX_YESNO
goto_if_eq VAR_RESULT, NO, MossdeepCity_House3_EventScript_DeclineSuperRod
2019-11-09 17:28:28 +01:00
msgbox MossdeepCity_House3_Text_SuperRodIsSuper, MSGBOX_DEFAULT
giveitem ITEM_SUPER_ROD
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_SUPER_ROD
2019-11-09 17:28:28 +01:00
msgbox MossdeepCity_House3_Text_TryDroppingRodInWater, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_EventScript_ReceivedSuperRod::
2019-11-09 17:28:28 +01:00
msgbox MossdeepCity_House3_Text_GoAfterSeafloorPokemon, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_EventScript_DeclineSuperRod::
2019-11-09 17:28:28 +01:00
msgbox MossdeepCity_House3_Text_DontYouLikeToFish, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_Text_YouWantSuperRod:
2017-11-10 02:21:31 +01:00
.string "Hey there, TRAINER!\n"
.string "A SUPER ROD really is super!\p"
.string "Say all you want, but this baby can\n"
.string "catch POKéMON off the seafloor!\p"
.string "What do you think?\n"
2018-12-07 16:41:08 +01:00
.string "You want it, don't you?$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_Text_SuperRodIsSuper:
2017-11-10 02:21:31 +01:00
.string "You bet, you bet!\n"
.string "After all, a SUPER ROD is really super!$"
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_Text_TryDroppingRodInWater:
2018-12-07 16:41:08 +01:00
.string "If there's any water, try dropping in\n"
2017-11-10 02:21:31 +01:00
.string "your ROD and see what bites!$"
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_Text_DontYouLikeToFish:
2017-11-10 02:21:31 +01:00
.string "Hunh?\n"
2018-12-07 16:41:08 +01:00
.string "Don't you like to fish?$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
MossdeepCity_House3_Text_GoAfterSeafloorPokemon:
2017-11-10 02:21:31 +01:00
.string "Go after the seafloor POKéMON with\n"
.string "your SUPER ROD.$"