2017-11-10 02:21:31 +01:00
|
|
|
PacifidlogTown_House2_MapScripts:: @ 8203791
|
|
|
|
.byte 0
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_FanClubYoungerBrother:: @ 8203792
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-02-12 07:40:34 +01:00
|
|
|
dotimebasedevents
|
2019-11-07 21:41:42 +01:00
|
|
|
call PacifidlogTown_House2_EventScript_UpdateFanClubTMFlag
|
|
|
|
goto_if_set FLAG_RECEIVED_FANCLUB_TM_THIS_WEEK, PacifidlogTown_House2_EventScript_ComeBackInXDays
|
|
|
|
call_if_set FLAG_MET_FANCLUB_YOUNGER_BROTHER, PacifidlogTown_House2_EventScript_MonAssessment
|
|
|
|
call_if_unset FLAG_MET_FANCLUB_YOUNGER_BROTHER, PacifidlogTown_House2_EventScript_FirstMonAssessment
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_MET_FANCLUB_YOUNGER_BROTHER
|
2017-12-28 09:09:11 +01:00
|
|
|
specialvar VAR_RESULT, GetLeadMonFriendshipScore
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 4
|
2019-11-07 21:41:42 +01:00
|
|
|
goto_if_ge PacifidlogTown_House2_EventScript_GiveReturn
|
2017-12-28 09:09:11 +01:00
|
|
|
specialvar VAR_RESULT, GetLeadMonFriendshipScore
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 2
|
2019-11-07 21:41:42 +01:00
|
|
|
goto_if_ge PacifidlogTown_House2_EventScript_PutInEffort
|
|
|
|
goto PacifidlogTown_House2_EventScript_GiveFrustration
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_UpdateFanClubTMFlag:: @ 82037DE
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_unset FLAG_RECEIVED_FANCLUB_TM_THIS_WEEK, Common_EventScript_NopReturn
|
2018-08-08 10:37:12 +02:00
|
|
|
specialvar VAR_RESULT, GetDaysUntilPacifidlogTMAvailable
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 0
|
2019-11-07 21:41:42 +01:00
|
|
|
call_if_eq PacifidlogTown_House2_EventScript_ClearReceivedFanClubTM
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_MonAssessment:: @ 82037F8
|
|
|
|
msgbox PacifidlogTown_House2_Text_AhYourPokemon, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_FirstMonAssessment:: @ 8203801
|
|
|
|
msgbox PacifidlogTown_House2_Text_ChairmansYoungerBrotherOnVacation, MSGBOX_DEFAULT
|
|
|
|
msgbox PacifidlogTown_House2_Text_AhYourPokemon, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_ClearReceivedFanClubTM:: @ 8203812
|
2019-01-02 22:12:43 +01:00
|
|
|
clearflag FLAG_RECEIVED_FANCLUB_TM_THIS_WEEK
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_GiveReturn:: @ 8203816
|
|
|
|
msgbox PacifidlogTown_House2_Text_AdoringPokemonTakeThis, MSGBOX_DEFAULT
|
2020-01-11 18:02:58 +01:00
|
|
|
giveitem ITEM_TM27
|
2019-11-07 21:41:42 +01:00
|
|
|
compare VAR_RESULT, FALSE
|
2019-02-23 01:52:11 +01:00
|
|
|
goto_if_eq Common_EventScript_ShowBagIsFull
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_RECEIVED_FANCLUB_TM_THIS_WEEK
|
2018-08-08 10:37:12 +02:00
|
|
|
special SetPacifidlogTMReceivedDay
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_ExplainReturnFrustration, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_PutInEffort:: @ 8203845
|
|
|
|
msgbox PacifidlogTown_House2_Text_PutInSomeMoreEffort, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_GiveFrustration:: @ 820384F
|
|
|
|
msgbox PacifidlogTown_House2_Text_ViciousPokemonTakeThis, MSGBOX_DEFAULT
|
2020-01-11 18:02:58 +01:00
|
|
|
giveitem ITEM_TM21
|
2020-06-21 07:56:57 +02:00
|
|
|
compare VAR_RESULT, FALSE
|
2019-02-23 01:52:11 +01:00
|
|
|
goto_if_eq Common_EventScript_ShowBagIsFull
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_RECEIVED_FANCLUB_TM_THIS_WEEK
|
2018-08-08 10:37:12 +02:00
|
|
|
special SetPacifidlogTMReceivedDay
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_ExplainReturnFrustration, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_ComeBackInXDays:: @ 820387E
|
2018-08-08 10:37:12 +02:00
|
|
|
specialvar VAR_RESULT, GetDaysUntilPacifidlogTMAvailable
|
2017-11-10 02:21:31 +01:00
|
|
|
buffernumberstring 0, VAR_RESULT
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_GetGoodTMInXDays, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_HappyAzurill:: @ 8203891
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
|
|
|
waitse
|
|
|
|
playmoncry SPECIES_AZURILL, 0
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_Rurii, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmoncry
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_VeryFriendlyWithTrainer, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_EventScript_UnhappyAzurill:: @ 82038AC
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
|
|
|
waitse
|
|
|
|
playmoncry SPECIES_AZURILL, 2
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_Rururi, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmoncry
|
2019-11-07 21:41:42 +01:00
|
|
|
msgbox PacifidlogTown_House2_Text_DoesntLikeTrainerVeryMuch, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_ChairmansYoungerBrotherOnVacation: @ 82038C7
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Er-hem!\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I am the POKéMON FAN CLUB's most\n"
|
|
|
|
.string "important person, the CHAIRMAN's\l"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "younger brother.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I'm here enjoying my vacation with\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "POKéMON, yes, indeed.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_AhYourPokemon: @ 820395B
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Ah!\n"
|
|
|
|
.string "Your POKéMON…$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_AdoringPokemonTakeThis: @ 820396D
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "It clearly likes you very much.\p"
|
|
|
|
.string "A POKéMON that adoring and adorable\n"
|
|
|
|
.string "deserves a TM like this, no?$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_PutInSomeMoreEffort: @ 82039CE
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Hmm…\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "It's not bad, but it's also not good.\p"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "You, as the TRAINER, need to put in\n"
|
|
|
|
.string "some more effort.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_ViciousPokemonTakeThis: @ 8203A2F
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "It has a vicious look to it.\p"
|
|
|
|
.string "A frightening POKéMON like that\n"
|
|
|
|
.string "deserves a TM like this.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_ExplainReturnFrustration: @ 8203A85
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "If a POKéMON likes you a lot, RETURN's\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "power is enhanced.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "If it doesn't like you, FRUSTRATION's\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "power goes up.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_GetGoodTMInXDays: @ 8203AF4
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Oh, yes. In about {STR_VAR_1} or so days,\n"
|
|
|
|
.string "I should be getting a good TM or two.\p"
|
|
|
|
.string "You should come see me then.\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I'll give you a TM that's suitable for\l"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "your POKéMON.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_Rurii: @ 8203B8D
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "AZURILL: Rurii.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_VeryFriendlyWithTrainer: @ 8203B9D
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "It appears to be very friendly with the\n"
|
|
|
|
.string "TRAINER.$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_Rururi: @ 8203BCE
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "AZURILL: Rururi!$"
|
|
|
|
|
2019-11-07 21:41:42 +01:00
|
|
|
PacifidlogTown_House2_Text_DoesntLikeTrainerVeryMuch: @ 8203BDF
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "It doesn't appear to like the TRAINER\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "very much.$"
|
|
|
|
|