pokeemerald/data/maps/LilycoveCity/scripts.inc

762 lines
25 KiB
PHP
Raw Normal View History

.set LOCALID_WOMAN_1, 19
.set LOCALID_MAN_1, 20
2021-07-20 21:18:31 +02:00
LilycoveCity_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, LilycoveCity_OnTransition
2019-11-10 16:56:35 +01:00
map_script MAP_SCRIPT_ON_LOAD, LilycoveCity_OnLoad
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
LilycoveCity_OnTransition:
2017-11-10 02:21:31 +01:00
setflag FLAG_VISITED_LILYCOVE_CITY
2019-11-11 03:54:00 +01:00
setvar VAR_CONTEST_HALL_STATE, 0
setflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_REPORTER
2019-12-02 01:19:47 +01:00
call_if_set FLAG_SYS_WEATHER_CTRL, Common_EventScript_SetAbnormalWeather
call Common_EventScript_SetupRivalGfxId
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_OnLoad:
2019-11-10 16:56:35 +01:00
call_if_unset FLAG_TEAM_AQUA_ESCAPED_IN_SUBMARINE, LilycoveCity_EventScript_SetWailmerMetatiles
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_SetWailmerMetatiles::
2021-11-16 23:12:16 +01:00
setmetatile 76, 12, METATILE_Lilycove_Wailmer0, TRUE
setmetatile 77, 12, METATILE_Lilycove_Wailmer1, TRUE
setmetatile 76, 13, METATILE_Lilycove_Wailmer2, TRUE
setmetatile 77, 13, METATILE_Lilycove_Wailmer3, TRUE
setmetatile 76, 14, METATILE_Lilycove_Wailmer0_Alt, TRUE
setmetatile 77, 14, METATILE_Lilycove_Wailmer1_Alt, TRUE
setmetatile 76, 15, METATILE_Lilycove_Wailmer2, TRUE
setmetatile 77, 15, METATILE_Lilycove_Wailmer3, TRUE
setmetatile 77, 16, METATILE_Lilycove_Wailmer0_Alt, TRUE
setmetatile 78, 16, METATILE_Lilycove_Wailmer1_Alt, TRUE
setmetatile 77, 17, METATILE_Lilycove_Wailmer2, TRUE
setmetatile 78, 17, METATILE_Lilycove_Wailmer3, TRUE
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BerryGentleman::
2017-11-10 02:21:31 +01:00
lock
faceplayer
dotimebasedevents
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_DAILY_LILYCOVE_RECEIVED_BERRY, LilycoveCity_EventScript_ReceivedBerry
msgbox LilycoveCity_Text_BerrySuitsYou, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
random 10
2019-09-16 05:47:07 +02:00
addvar VAR_RESULT, FIRST_BERRY_INDEX
giveitem VAR_RESULT
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
2019-01-03 02:54:55 +01:00
setflag FLAG_DAILY_LILYCOVE_RECEIVED_BERRY
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BecauseYoureTrainer, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ReceivedBerry::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_PokeblocksSuitPokemon, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Man3::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ContestHallInTown, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Girl::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_BADGE07_GET, LilycoveCity_EventScript_GirlAquaGone
msgbox LilycoveCity_Text_StrangeCaveInCove, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_GirlAquaGone::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_GoingToMoveDeleterForHMs, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_RichBoy::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ImFromKanto, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Sailor2::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_TEAM_AQUA_ESCAPED_IN_SUBMARINE, LilycoveCity_EventScript_Sailor2AquaGone
msgbox LilycoveCity_Text_TeamAquaBeenTrainingWailmer, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Sailor2AquaGone::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_SomeonePuntedTeamAquaOut, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Woman2::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_TEAM_AQUA_ESCAPED_IN_SUBMARINE, LilycoveCity_EventScript_Woman2AquaGone
msgbox LilycoveCity_Text_SomeoneStoleMyPokemon, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Woman2AquaGone::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MissingPokemonCameBack, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Man2::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ImArtDealer, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ExpertM1::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_SeaRemainsForeverYoung, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ExpertF::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_SixtyYearsAgoHusbandProposed, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ExpertM2::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_BADGE07_GET, LilycoveCity_EventScript_ExpertM2AquaGone
msgbox LilycoveCity_Text_TeamAquaRenovatedCavern, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ExpertM2AquaGone::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_TeamAquaLotGoneForGood, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Sailor1::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_HeardTowerCalledSkyPillar, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_FatMan::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_SawTallTowerOnRoute131, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Man1::
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_JustArrivedAndSawRarePokemon, MSGBOX_NPC
applymovement LOCALID_MAN_1, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Woman1::
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_HoneymoonVowToSeeRarePokemon, MSGBOX_NPC
applymovement LOCALID_WOMAN_1, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_CitySign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_CitySign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_ContestHallSign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ContestHallSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MotelSign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MotelSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MuseumSign::
2017-11-10 02:21:31 +01:00
lockall
2021-04-22 20:30:45 +02:00
specialvar VAR_0x8004, CountPlayerMuseumPaintings
2017-11-10 02:21:31 +01:00
switch VAR_0x8004
2019-11-10 16:56:35 +01:00
case 0, LilycoveCity_EventScript_MuseumSignNoPaintings
msgbox LilycoveCity_Text_MuseumSignPlayersExhibit, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MuseumSignNoPaintings::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MuseumSign, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_HarborSign::
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_SYS_GAME_CLEAR, LilycoveCity_EventScript_HarborSignFerryReady
msgbox LilycoveCity_Text_HarborSignUnderConstruction, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_HarborSignFerryReady::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_HarborSign, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_TrainerFanClubSign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_TrainerFanClubSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DepartmentStoreSign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_DepartmentStoreSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MoveDeletersHouseSign::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MoveDeletersHouseSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_WailmerTrainerGrunt::
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_MET_WAILMER_TRAINER, LilycoveCity_EventScript_MetWailmerTrainer
msgbox LilycoveCity_Text_WailmerLeapOutOfWater, MSGBOX_DEFAULT
applymovement VAR_LAST_TALKED, Common_Movement_FacePlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_GetLostMessingUpTraining, MSGBOX_DEFAULT
applymovement VAR_LAST_TALKED, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-01-02 22:12:43 +01:00
setflag FLAG_MET_WAILMER_TRAINER
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MetWailmerTrainer::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_WailmerLeapOutOfWater, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_AquaGrunt1::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MovedLootIntoHideoutToday, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_AquaGrunt2::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ChanceToDoBigThings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_AquaGrunt3::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_DontGoNearCaveInCove, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_AquaGrunt4::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_IfWorldBecomesOurs, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Rival::
2017-11-10 02:21:31 +01:00
lock
faceplayer
checkplayergender
goto_if_eq VAR_RESULT, MALE, LilycoveCity_EventScript_May
goto_if_eq VAR_RESULT, FEMALE, LilycoveCity_EventScript_Brendan
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_May::
2021-05-21 22:08:00 +02:00
playbgm MUS_ENCOUNTER_MAY, TRUE
2019-11-10 16:56:35 +01:00
call_if_set FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE, LilycoveCity_EventScript_MayAskToBattleAgain
call_if_unset FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE, LilycoveCity_EventScript_MayAskToBattle
goto_if_eq VAR_RESULT, NO, LilycoveCity_EventScript_DeclineMayBattle
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayWontBeBeaten, MSGBOX_DEFAULT
switch VAR_STARTER_MON
2019-11-10 16:56:35 +01:00
case 0, LilycoveCity_EventScript_BattleMayTreecko
case 1, LilycoveCity_EventScript_BattleMayTorchic
case 2, LilycoveCity_EventScript_BattleMayMudkip
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MayAskToBattleAgain::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayBattleMe, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MayAskToBattle::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayShoppingLetsBattle, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DeclineMayBattle::
2019-01-02 22:12:43 +01:00
setflag FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayNotRaisingPokemon, MSGBOX_DEFAULT
2017-12-22 08:46:19 +01:00
savebgm MUS_DUMMY
2017-11-10 02:21:31 +01:00
fadedefaultbgm
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_Brendan::
2021-05-21 22:08:00 +02:00
playbgm MUS_ENCOUNTER_BRENDAN, TRUE
2019-11-10 16:56:35 +01:00
call_if_set FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE, LilycoveCity_EventScript_BrendanAskToBattleAgain
call_if_unset FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE, LilycoveCity_EventScript_BrendanAskToBattle
goto_if_eq VAR_RESULT, NO, LilycoveCity_EventScript_DeclineBrendanBattle
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanWontBeBeaten, MSGBOX_DEFAULT
switch VAR_STARTER_MON
2019-11-10 16:56:35 +01:00
case 0, LilycoveCity_EventScript_BattleBrendanTreecko
case 1, LilycoveCity_EventScript_BattleBrendanTorchic
case 2, LilycoveCity_EventScript_BattleBrendanMudkip
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BrendanAskToBattleAgain::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanBattleMe, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BrendanAskToBattle::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanShoppingLetsBattle, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DeclineBrendanBattle::
2019-01-02 22:12:43 +01:00
setflag FLAG_DECLINED_RIVAL_BATTLE_LILYCOVE
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanNoConfidence, MSGBOX_DEFAULT
2017-12-22 08:46:19 +01:00
savebgm MUS_DUMMY
2017-11-10 02:21:31 +01:00
fadedefaultbgm
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleMayTreecko::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_MAY_LILYCOVE_TREECKO, LilycoveCity_Text_MayDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedMay
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleMayTorchic::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_MAY_LILYCOVE_TORCHIC, LilycoveCity_Text_MayDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedMay
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleMayMudkip::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_MAY_LILYCOVE_MUDKIP, LilycoveCity_Text_MayDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedMay
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleBrendanTreecko::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_BRENDAN_LILYCOVE_TREECKO, LilycoveCity_Text_BrendanDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedBrendan
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleBrendanTorchic::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_BRENDAN_LILYCOVE_TORCHIC, LilycoveCity_Text_BrendanDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedBrendan
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BattleBrendanMudkip::
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_BRENDAN_LILYCOVE_MUDKIP, LilycoveCity_Text_BrendanDefeat
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_DefeatedBrendan
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DefeatedMay::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayGoingBackToLittleroot, MSGBOX_DEFAULT
setvar VAR_RESULT, FALSE
call_if_set FLAG_BADGE06_GET, LilycoveCity_EventScript_CheckFinalBadge
call_if_eq VAR_RESULT, FALSE, LilycoveCity_EventScript_MayCollectBadges
call_if_eq VAR_RESULT, TRUE, LilycoveCity_EventScript_MayPokemonLeague
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_RIVAL_BEDROOM
clearflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_2F_PICHU_DOLL
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_RivalFlyAway
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_CheckFinalBadge::
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_BADGE08_GET, LilycoveCity_EventScript_HasFinalBadge
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_HasFinalBadge::
2019-11-10 16:56:35 +01:00
setvar VAR_RESULT, TRUE
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MayCollectBadges::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayYouGoingToCollectBadges, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MayPokemonLeague::
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_SYS_GAME_CLEAR, LilycoveCity_EventScript_MayBattleFrontier
msgbox LilycoveCity_Text_MayYouGoingToPokemonLeague, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_MayBattleFrontier::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_MayYouGoingToBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DefeatedBrendan::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanGoingBackToLittleroot, MSGBOX_DEFAULT
setvar VAR_RESULT, FALSE
call_if_set FLAG_BADGE06_GET, LilycoveCity_EventScript_CheckFinalBadge
call_if_eq VAR_RESULT, FALSE, LilycoveCity_EventScript_BrendanCollectBadges
call_if_eq VAR_RESULT, TRUE, LilycoveCity_EventScript_BrendanPokemonLeague
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_RIVAL_BEDROOM
clearflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_2F_SWABLU_DOLL
2019-11-10 16:56:35 +01:00
goto LilycoveCity_EventScript_RivalFlyAway
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BrendanCollectBadges::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanYouGoingToCollectBadges, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BrendanPokemonLeague::
2019-11-10 16:56:35 +01:00
goto_if_set FLAG_SYS_GAME_CLEAR, LilycoveCity_EventScript_BrendanBattleFrontier
msgbox LilycoveCity_Text_BrendanYouGoingToPokemonLeague, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_BrendanBattleFrontier::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_BrendanYouGoingToBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_RivalFlyAway::
2017-11-10 02:21:31 +01:00
closemessage
applymovement VAR_LAST_TALKED, Common_Movement_WalkInPlaceFasterDown
2017-11-10 02:21:31 +01:00
waitmovement 0
delay 50
setfieldeffectargument 0, 1
dofieldeffect FLDEFF_NPCFLY_OUT
2017-11-10 02:21:31 +01:00
delay 15
removeobject VAR_LAST_TALKED
waitfieldeffect FLDEFF_NPCFLY_OUT
2017-12-22 08:46:19 +01:00
savebgm MUS_DUMMY
2017-11-10 02:21:31 +01:00
fadedefaultbgm
2019-01-02 22:12:43 +01:00
setflag FLAG_MET_RIVAL_LILYCOVE
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_SchoolKidM::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_DoYouKnowAboutBerryBlender, MSGBOX_YESNO
call_if_eq VAR_RESULT, YES, LilycoveCity_EventScript_KnowAboutBerryBlender
call_if_eq VAR_RESULT, NO, LilycoveCity_EventScript_DontKnowAboutBerryBlender
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_KnowAboutBerryBlender::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_FasterSpinBetterPokeblocks, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_EventScript_DontKnowAboutBerryBlender::
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_Text_ExplainBerryBlender, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayShoppingLetsBattle:
2017-11-10 02:21:31 +01:00
.string "MAY: Oh, hey?\n"
.string "{PLAYER}{KUN}, are you shopping, too?\p"
.string "I bought a whole bunch of DOLLS and\n"
.string "POSTERS.\p"
2018-12-07 16:41:08 +01:00
.string "Of course, I've also caught a lot of\n"
.string "POKéMON, and I'm raising them\l"
2017-11-10 02:21:31 +01:00
.string "properly, too.\p"
2018-12-07 16:41:08 +01:00
.string "Actually, I'm more worried if you're\n"
2017-11-10 02:21:31 +01:00
.string "raising POKéMON properly, {PLAYER}{KUN}.\p"
2018-12-07 16:41:08 +01:00
.string "I'll battle with you, so you can show\n"
2017-11-10 02:21:31 +01:00
.string "me your POKéMON, {PLAYER}{KUN}.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayNotRaisingPokemon:
2018-12-07 16:41:08 +01:00
.string "MAY: Oh, why? {PLAYER}{KUN}, haven't you\n"
2017-11-10 02:21:31 +01:00
.string "been raising your POKéMON?\p"
2018-12-07 16:41:08 +01:00
.string "That's not a very good showing as a\n"
2017-11-10 02:21:31 +01:00
.string "TRAINER…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayBattleMe:
2017-11-10 02:21:31 +01:00
.string "MAY: Come on, battle with me, so I can\n"
.string "check out your POKéMON!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayWontBeBeaten:
2018-12-07 16:41:08 +01:00
.string "MAY: The POKéMON I raised won't be\n"
2017-11-10 02:21:31 +01:00
.string "beaten by your POKéMON, {PLAYER}{KUN}!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayDefeat:
2017-11-10 02:21:31 +01:00
.string "… … … … … … … …\p"
.string "I remember the battle I had with you,\n"
.string "{PLAYER}{KUN}, on ROUTE 103.\p"
.string "That battle helped you become this\n"
2018-12-07 16:41:08 +01:00
.string "strong, {PLAYER}{KUN}, didn't it?$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayGoingBackToLittleroot:
2018-12-07 16:41:08 +01:00
.string "MAY: I'm thinking of going back to\n"
2017-11-10 02:21:31 +01:00
.string "LITTLEROOT soon.\p"
2018-12-07 16:41:08 +01:00
.string "I've caught a decent group of POKéMON,\n"
2017-11-10 02:21:31 +01:00
.string "and my POKéDEX is coming along, so\l"
2018-12-07 16:41:08 +01:00
.string "I'm going home to show my dad.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayYouGoingToCollectBadges:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}{KUN}, what are you going to do?\p"
.string "Collect all the GYM BADGES and take\n"
.string "the POKéMON LEAGUE challenge?\p"
2018-12-07 16:41:08 +01:00
.string "Well, while you're collecting BADGES,\n"
.string "{PLAYER}{KUN}, I'm going to work on my\l"
.string "POKéDEX. I'll complete it before you!\p"
2017-11-10 02:21:31 +01:00
.string "See you!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayYouGoingToPokemonLeague:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}{KUN}, what are you going to do?\p"
.string "Are you taking the POKéMON LEAGUE\n"
.string "challenge?\p"
.string "Or, are you going to complete your\n"
.string "POKéDEX?\p"
2018-12-07 16:41:08 +01:00
.string "I might've lost to you in battling,\n"
.string "but I'll finish my POKéDEX before you!\p"
2017-11-10 02:21:31 +01:00
.string "See you!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MayYouGoingToBattleFrontier:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}{KUN}, what are you going to do?\p"
.string "Are you taking the BATTLE FRONTIER\n"
.string "challenge?\p"
.string "Or, are you going to complete your\n"
.string "POKéDEX?\p"
2018-12-07 16:41:08 +01:00
.string "I might've lost to you in battling,\n"
.string "but I'll finish my POKéDEX before you!\p"
2017-11-10 02:21:31 +01:00
.string "See you!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanShoppingLetsBattle:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: Oh, hey, it's {PLAYER}.\p"
.string "I'm running an errand for my dad.\n"
.string "No, I'm not buying any DOLLS.\p"
.string "Anyways, it's been a while.\p"
.string "Want to have a battle to see who's been\n"
2017-11-10 02:21:31 +01:00
.string "raising POKéMON better?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanNoConfidence:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: Oh, what's the matter?\n"
.string "Don't have the confidence?$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanBattleMe:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: Want to battle to see who's\n"
2017-11-10 02:21:31 +01:00
.string "been raising POKéMON better?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanWontBeBeaten:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: Aww, but you know I'm not\n"
2017-11-10 02:21:31 +01:00
.string "going to lose to no {PLAYER}.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanDefeat:
2017-11-10 02:21:31 +01:00
.string "Humph…\n"
2018-12-07 16:41:08 +01:00
.string "You've done a lot of raising.\p"
2017-11-10 02:21:31 +01:00
.string "That stings a bit--I had a head start\n"
.string "on you as a TRAINER…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanGoingBackToLittleroot:
2017-11-10 02:21:31 +01:00
.string "BRENDAN: I…\n"
.string "I plan on going home to LITTLEROOT.\p"
2018-12-07 16:41:08 +01:00
.string "You know I'm helping out my dad on his\n"
.string "POKéDEX. It's coming together pretty\l"
2017-11-10 02:21:31 +01:00
.string "decently, so I should go show him.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanYouGoingToCollectBadges:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}, what are you going to do?\p"
.string "Collect all the GYM BADGES and take\n"
.string "the POKéMON LEAGUE challenge?\p"
2018-12-07 16:41:08 +01:00
.string "Maybe I'll do that, too…\p"
2017-11-10 02:21:31 +01:00
.string "Well, anyway, hang in there!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanYouGoingToPokemonLeague:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}, what are you going to do?\p"
2018-12-07 16:41:08 +01:00
.string "Since you're that strong, are you\n"
2017-11-10 02:21:31 +01:00
.string "taking the POKéMON LEAGUE challenge?\p"
.string "Heh, even me--if I trained my POKéMON\n"
.string "a bit more, I should be stronger than\l"
.string "you, {PLAYER}.\p"
.string "Well, anyway, hang in there!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_BrendanYouGoingToBattleFrontier:
2017-11-10 02:21:31 +01:00
.string "{PLAYER}, what are you going to do?\p"
.string "Are you taking the BATTLE FRONTIER\n"
.string "challenge?\p"
.string "Or, are you going to complete your\n"
.string "POKéDEX?\p"
2018-12-07 16:41:08 +01:00
.string "Since you're that strong, you should\n"
2017-11-10 02:21:31 +01:00
.string "consider the BATTLE FRONTIER.\p"
.string "Heh, if I train my POKéMON a bit more,\n"
2018-12-07 16:41:08 +01:00
.string "I'll get stronger than you, {PLAYER}.\p"
2017-11-10 02:21:31 +01:00
.string "Maybe I should go to the BATTLE\n"
.string "FRONTIER.\p"
.string "Well, anyway, hang in there!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MovedLootIntoHideoutToday:
2017-11-10 02:21:31 +01:00
.string "Fufufu…\p"
.string "We moved more loot into our secret\n"
.string "HIDEOUT today…\p"
.string "Wh-who are you?!\n"
.string "I was just talking to myself!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ChanceToDoBigThings:
2018-12-07 16:41:08 +01:00
.string "I'm just a GRUNT, so I don't know what\n"
2017-11-10 02:21:31 +01:00
.string "the BOSS is thinking…\p"
2018-12-07 16:41:08 +01:00
.string "But being on TEAM AQUA, I know I'll get\n"
2017-11-10 02:21:31 +01:00
.string "the chance to do big things!\p"
.string "Wh-who are you?!\n"
.string "I was just talking to myself!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_DontGoNearCaveInCove:
2017-11-10 02:21:31 +01:00
.string "Hey, you!\p"
2018-12-07 16:41:08 +01:00
.string "Don't go near the cave in the cove!\p"
.string "Why? You don't need a reason why!\n"
.string "I'm an adult, so you just listen to me!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_IfWorldBecomesOurs:
2017-11-10 02:21:31 +01:00
.string "If this whole wide world becomes ours,\n"
2018-12-07 16:41:08 +01:00
.string "TEAM AQUA's, it will be a happier\l"
2017-11-10 02:21:31 +01:00
.string "place for POKéMON, too.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_WailmerLeapOutOfWater:
2017-11-10 02:21:31 +01:00
.string "There! WAILMER!\n"
.string "Leap out of the water now!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_GetLostMessingUpTraining:
2017-11-10 02:21:31 +01:00
.string "Hunh? What do you want?\p"
2018-12-07 16:41:08 +01:00
.string "You're messing up our training,\n"
2017-11-10 02:21:31 +01:00
.string "so can you, like, get lost?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ContestHallInTown:
2018-12-07 16:41:08 +01:00
.string "There's a POKéMON CONTEST HALL\n"
2017-11-10 02:21:31 +01:00
.string "right in this here town. \p"
.string "That means well-raised POKéMON will\n"
.string "come from all over the country.\p"
.string "My heart swells with excitement!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_StrangeCaveInCove:
2017-11-10 02:21:31 +01:00
.string "Have you seen that strange cave in\n"
.string "the cove at the edge of town?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_GoingToMoveDeleterForHMs:
2018-12-07 16:41:08 +01:00
.string "I'm going to teach my POKéMON some new\n"
2017-11-10 02:21:31 +01:00
.string "moves for entering a CONTEST.\p"
2018-12-07 16:41:08 +01:00
.string "So, I'm going to see the MOVE DELETER\n"
2017-11-10 02:21:31 +01:00
.string "and make it forget HM moves.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ImFromKanto:
2017-11-10 02:21:31 +01:00
.string "I came from KANTO.\p"
.string "The HOENN region is beautiful with\n"
.string "all its water and verdant nature.\p"
.string "Hunh? Wait a second…\p"
.string "Could there be rare POKéMON that live\n"
.string "only in this area?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_TeamAquaBeenTrainingWailmer:
2018-12-07 16:41:08 +01:00
.string "TEAM AQUA's been training their\n"
2017-11-10 02:21:31 +01:00
.string "WAILMER in the cove.\p"
2018-12-07 16:41:08 +01:00
.string "We SAILORS can't get our boats out\n"
2017-11-10 02:21:31 +01:00
.string "to sea with them in the way!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_SomeonePuntedTeamAquaOut:
2017-11-10 02:21:31 +01:00
.string "Ahoy, did you know?\p"
.string "Someone punted TEAM AQUA out of\n"
.string "the way for us!\p"
.string "That got the WAILMER out of the cove,\n"
.string "so we can get our boats out again.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_SomeoneStoleMyPokemon:
2017-11-10 02:21:31 +01:00
.string "I was taking a relaxing snooze at the\n"
.string "seaside inn to the sound of waves…\p"
.string "When someone stole my POKéMON!\p"
2018-12-07 16:41:08 +01:00
.string "Who's the abductor?\n"
2017-11-10 02:21:31 +01:00
.string "TEAM AQUA? Is it TEAM AQUA?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MissingPokemonCameBack:
2017-11-10 02:21:31 +01:00
.string "My missing POKéMON…\n"
.string "It came back without me noticing!$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ImArtDealer:
2018-12-07 16:41:08 +01:00
.string "I'm an ART DEALER.\p"
2017-11-10 02:21:31 +01:00
.string "I am a buyer and seller of fine art,\n"
.string "especially paintings.\p"
2018-12-07 16:41:08 +01:00
.string "I've heard that the MUSEUM here has\n"
2017-11-10 02:21:31 +01:00
.string "magnificent works on exhibit…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_SeaRemainsForeverYoung:
2017-11-10 02:21:31 +01:00
.string "Even as we grow old and wrinkled,\n"
.string "the sea remains forever young with\l"
.string "the vivid brilliance of life…\p"
.string "Fwohoho fwohohohoho…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_SixtyYearsAgoHusbandProposed:
2017-11-10 02:21:31 +01:00
.string "It was sixty years ago that my husband\n"
.string "proposed to me here.\l"
.string "The sea remains as beautiful as ever.\p"
.string "Mufufufu mufufufufufu…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_TeamAquaRenovatedCavern:
2017-11-10 02:21:31 +01:00
.string "Hm, you know of the peculiar cavern\n"
.string "in this cove?\p"
.string "That had been a natural formation,\n"
.string "but then that TEAM AQUA lot came\l"
.string "along and made their renovations.\p"
.string "They call themselves\n"
.string "the “nature-loving TEAM AQUA”!\p"
.string "But what they do and what they say\n"
2018-12-07 16:41:08 +01:00
.string "don't match at all!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_TeamAquaLotGoneForGood:
2017-11-10 02:21:31 +01:00
.string "That cave in the cove…\p"
2018-12-07 16:41:08 +01:00
.string "I didn't notice it right away,\n"
.string "but it's completely empty now.\p"
2017-11-10 02:21:31 +01:00
.string "That TEAM AQUA lot, they must\n"
.string "have gone away for good.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_CitySign:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE CITY\p"
.string "“Where the land ends and the\n"
.string "sea begins.”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ContestHallSign:
2017-11-10 02:21:31 +01:00
.string "POKéMON CONTEST HALL\n"
.string "“The gathering place for TRAINERS!”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MotelSign:
2017-11-10 02:21:31 +01:00
.string "COVE LILY MOTEL\p"
.string "“Remember us as COVE LILY of\n"
.string "LILYCOVE.”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MuseumSign:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE MUSEUM\p"
.string "“POKéMON Masterpiece Collection\n"
.string "on exhibit!”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MuseumSignPlayersExhibit:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE MUSEUM\p"
2018-12-07 16:41:08 +01:00
.string "{PLAYER}'s POKéMON Collection\n"
2017-11-10 02:21:31 +01:00
.string "on exhibit!”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_HarborSignUnderConstruction:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE CITY HARBOR\p"
.string "“The ferry S.S. TIDAL is under\n"
.string "construction in SLATEPORT CITY.\p"
.string "“Service is scheduled to begin\n"
.string "shortly.”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_HarborSign:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE CITY HARBOR\p"
.string "“Enjoy a delightful cruise on\n"
.string "the ferry S.S. TIDAL.”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_TrainerFanClubSign:
2017-11-10 02:21:31 +01:00
.string "POKéMON TRAINER FAN CLUB\p"
.string "The names of TRAINERS are scribbled\n"
.string "all over the sign…$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_DepartmentStoreSign:
2017-11-10 02:21:31 +01:00
.string "LILYCOVE DEPARTMENT STORE\p"
.string "“Overflowing with great merchandise\n"
.string "and excitement!\p"
.string "“A great place to find that something\n"
.string "you need!”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_MoveDeletersHouseSign:
2018-12-07 16:41:08 +01:00
.string "MOVE DELETER'S HOUSE\p"
2017-11-10 02:21:31 +01:00
.string "“Unwanted POKéMON moves deleted.”$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_DoYouKnowAboutBerryBlender:
2017-11-10 02:21:31 +01:00
.string "Do you know about the machine\n"
.string "BERRY BLENDER?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_FasterSpinBetterPokeblocks:
2017-11-10 02:21:31 +01:00
.string "People have to work together to get it\n"
.string "to spin faster.\p"
.string "The faster you can make it spin, the\n"
2018-12-07 16:41:08 +01:00
.string "better {POKEBLOCK}S you can get, I've heard.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_ExplainBerryBlender:
2018-12-07 16:41:08 +01:00
.string "It's used for making a kind of candy\n"
2017-11-10 02:21:31 +01:00
.string "called a {POKEBLOCK}.\p"
.string "If you give a good {POKEBLOCK} to a POKéMON,\n"
.string "its condition will improve by a lot.$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_HeardTowerCalledSkyPillar:
2018-12-07 16:41:08 +01:00
.string "I heard there's a tower somewhere out\n"
2017-11-10 02:21:31 +01:00
.string "on the sea routes.\p"
2018-12-07 16:41:08 +01:00
.string "It's called the SKY PILLAR, I hear.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_SawTallTowerOnRoute131:
2017-11-10 02:21:31 +01:00
.string "I saw this tall tower somewhere\n"
.string "around ROUTE 131.\p"
.string "Could that possibly be…?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_JustArrivedAndSawRarePokemon:
2017-11-10 02:21:31 +01:00
.string "We just arrived here on our\n"
.string "honeymoon vacation.\p"
.string "We happened to see a DRAGON-type\n"
.string "POKéMON flying way up in the sky.\p"
.string "Do cool POKéMON like that live in\n"
.string "the HOENN region?$"
2021-07-20 21:18:31 +02:00
LilycoveCity_Text_HoneymoonVowToSeeRarePokemon:
2017-11-10 02:21:31 +01:00
.string "On our honeymoon, we vowed to see as\n"
.string "many rare POKéMON as we can.\p"
.string "So we were delighted to see a rare\n"
.string "POKéMON as soon as we arrived.\p"
.string "I mean, we are totally happy!$"