pokeemerald/data/maps/SootopolisCity_LotadAndSeedotHouse/scripts.inc

213 lines
7.0 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_MapScripts::
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_SeedotBrother::
2017-11-10 02:21:31 +01:00
special GetSeedotSizeRecordInfo
lock
faceplayer
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_PleaseShowMeBigSeedot, MSGBOX_DEFAULT
2019-10-18 01:22:03 +02:00
special ChoosePartyMon
2017-11-10 02:21:31 +01:00
waitstate
copyvar VAR_RESULT, VAR_0x8004
2021-11-15 16:57:06 +01:00
compare VAR_RESULT, PARTY_NOTHING_CHOSEN
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_CancelShowSeedot
2017-11-10 02:21:31 +01:00
special CompareSeedotSize
compare VAR_RESULT, 1
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_NotSeedot
compare VAR_RESULT, 2
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_SmallSeedot
compare VAR_RESULT, 3
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_BigSeedot
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_CancelShowSeedot::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_DontHaveBigSeedot, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_NotSeedot::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_ThatsNotSeedot, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_SmallSeedot::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_SeenBiggerSeedot, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_BigSeedot::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_GoshMightBeBiggerThanLotad, MSGBOX_DEFAULT
giveitem ITEM_ELIXIR
2019-11-10 02:40:41 +01:00
compare VAR_RESULT, FALSE
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_NoRoomForElixir1
2017-11-10 02:21:31 +01:00
closemessage
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_NoRoomForElixir1::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_BagCrammedFull1, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_LotadBrother::
2017-11-10 02:21:31 +01:00
special GetLotadSizeRecordInfo
lock
faceplayer
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_PleaseShowMeBigLotad, MSGBOX_DEFAULT
2019-10-18 01:22:03 +02:00
special ChoosePartyMon
2017-11-10 02:21:31 +01:00
waitstate
copyvar VAR_RESULT, VAR_0x8004
2021-11-15 16:57:06 +01:00
compare VAR_RESULT, PARTY_NOTHING_CHOSEN
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_CancelShowLotad
2017-11-10 02:21:31 +01:00
special CompareLotadSize
compare VAR_RESULT, 1
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_NotLotad
compare VAR_RESULT, 2
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_SmallLotad
compare VAR_RESULT, 3
2019-11-10 02:40:41 +01:00
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_BigLotad
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_CancelShowLotad::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_DontHaveBigLotad, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_NotLotad::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_ThatsNotLotad, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_SmallLotad::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_SeenBiggerLotad, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_BigLotad::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_WowMightBeBiggerThanSeedot, MSGBOX_DEFAULT
giveitem ITEM_ELIXIR
2019-11-10 02:40:41 +01:00
compare VAR_RESULT, FALSE
goto_if_eq SootopolisCity_LotadAndSeedotHouse_EventScript_NoRoomForElixir2
2017-11-10 02:21:31 +01:00
closemessage
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_NoRoomForElixir2::
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_BagCrammedFull2, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_SeedotSizeRecord::
2017-11-10 02:21:31 +01:00
special GetSeedotSizeRecordInfo
lockall
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_BiggestSeedotInHistory, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_EventScript_LotadSizeRecord::
2017-11-10 02:21:31 +01:00
special GetLotadSizeRecordInfo
lockall
2019-11-10 02:40:41 +01:00
msgbox SootopolisCity_LotadAndSeedotHouse_Text_BiggestLotadInHistory, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_PleaseShowMeBigSeedot:
2017-11-10 02:21:31 +01:00
.string "Do you know the POKéMON SEEDOT?\n"
2018-12-07 16:41:08 +01:00
.string "It's hardly ever seen in SOOTOPOLIS.\p"
2017-11-10 02:21:31 +01:00
.string "Anyway, I love big SEEDOT.\n"
.string "The bigger the better.\p"
.string "But my younger brother, he says that\n"
.string "LOTAD is bigger.\p"
2018-12-07 16:41:08 +01:00
.string "That's silly.\n"
2017-11-10 02:21:31 +01:00
.string "SEEDOT has to be bigger than that!\p"
.string "Huh? Do you have a SEEDOT with you?\n"
.string "P-p-please, show me!$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_GoshMightBeBiggerThanLotad:
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_2} inches!\n"
.string "Oh, my gosh, this is a big one!\p"
.string "It might even beat the big LOTAD\n"
.string "my younger brother saw!\p"
.string "Thanks for showing me.\n"
.string "This is my thanks!$"
2019-11-10 02:40:41 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_ReceivedPotion1:
.string "{PLAYER} received a POTION.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_BagCrammedFull1:
2017-11-10 02:21:31 +01:00
.string "Hunh?\n"
.string "Your BAG is crammed full.$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_SeenBiggerSeedot:
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_2} inches, is it?\p"
2018-12-07 16:41:08 +01:00
.string "Hmm… I've seen a bigger SEEDOT\n"
2017-11-10 02:21:31 +01:00
.string "than this one.$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_ThatsNotSeedot:
2017-11-10 02:21:31 +01:00
.string "Oh, now this is quite something…\n"
2018-12-07 16:41:08 +01:00
.string "But it's not a SEEDOT!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_DontHaveBigSeedot:
2018-12-07 16:41:08 +01:00
.string "You don't have a big SEEDOT?\n"
.string "That's too bad…\p"
2017-11-10 02:21:31 +01:00
.string "If you get a big SEEDOT, please\n"
.string "come show me.$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_BiggestSeedotInHistory:
2017-11-10 02:21:31 +01:00
.string "The biggest SEEDOT in history!\n"
2018-12-07 16:41:08 +01:00
.string "{STR_VAR_2}'s {STR_VAR_3}-inch giant!\p"
2017-11-10 02:21:31 +01:00
.string "A SEEDOT bigger than a LOTAD\n"
.string "always wanted!$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_PleaseShowMeBigLotad:
2017-11-10 02:21:31 +01:00
.string "Do you know the POKéMON LOTAD?\n"
2018-12-07 16:41:08 +01:00
.string "It's rarely seen in SOOTOPOLIS.\p"
2017-11-10 02:21:31 +01:00
.string "I love, I mean love, big LOTAD!\p"
.string "My big brother says that SEEDOT is\n"
.string "bigger.\p"
2018-12-07 16:41:08 +01:00
.string "But that's wrong! Everyone knows that\n"
2017-11-10 02:21:31 +01:00
.string "LOTAD is a lot bigger.\p"
.string "Hunh? Do you have a LOTAD?\n"
.string "P-p-please show me!$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_WowMightBeBiggerThanSeedot:
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_2} inches!\n"
.string "Wow, that is big!\p"
.string "It might be even bigger than the huge\n"
.string "SEEDOT my big brother saw.\p"
.string "Thanks for showing me!\n"
.string "This is my thanks!$"
2019-11-10 02:40:41 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_ReceivedPotion2:
.string "{PLAYER} received a POTION.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_BagCrammedFull2:
2017-11-10 02:21:31 +01:00
.string "Hunh?\n"
.string "Your BAG is crammed full.$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_SeenBiggerLotad:
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_2} inches?\p"
2018-12-07 16:41:08 +01:00
.string "Hmm… I've seen a bigger LOTAD\n"
2017-11-10 02:21:31 +01:00
.string "than this one here.$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_ThatsNotLotad:
2018-12-07 16:41:08 +01:00
.string "Well, isn't this something!\n"
.string "But it's no LOTAD!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_DontHaveBigLotad:
2018-12-07 16:41:08 +01:00
.string "Don't you have a big LOTAD?\n"
2017-11-10 02:21:31 +01:00
.string "How disappointing…\p"
.string "If you get a big LOTAD, please\n"
.string "come show me!$"
2021-07-20 21:18:31 +02:00
SootopolisCity_LotadAndSeedotHouse_Text_BiggestLotadInHistory:
2017-11-10 02:21:31 +01:00
.string "The biggest LOTAD in history!\n"
2018-12-07 16:41:08 +01:00
.string "{STR_VAR_2}'s {STR_VAR_3}-inch colossus!\p"
2017-11-10 02:21:31 +01:00
.string "A LOTAD bigger than a SEEDOT\n"
.string "always wanted!$"