pokeemerald/data/maps/LavaridgeTown/scripts.inc

410 lines
12 KiB
PHP
Raw Normal View History

.set LOCALID_RIVAL_ON_BIKE, 7
.set LOCALID_RIVAL, 8
2021-07-20 21:18:31 +02:00
LavaridgeTown_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, LavaridgeTown_OnTransition
2019-11-07 21:21:32 +01:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, LavaridgeTown_OnFrame
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
LavaridgeTown_OnTransition:
2017-11-10 02:21:31 +01:00
setflag FLAG_VISITED_LAVARIDGE_TOWN
2019-11-07 21:21:32 +01:00
call_if_set FLAG_WHITEOUT_TO_LAVARIDGE, LavaridgeTown_EventScript_ClearLavaridgeWhiteOut
call_if_set FLAG_DEFEATED_EVIL_TEAM_MT_CHIMNEY, LavaridgeTown_EventScript_ShowMtChimneyTrainers
call Common_EventScript_SetupRivalGfxId
call Common_EventScript_SetupRivalOnBikeGfxId
call_if_eq VAR_LAVARIDGE_TOWN_STATE, 1, LavaridgeTown_EventScript_CheckSetRivalPos
call_if_eq VAR_LAVARIDGE_TOWN_STATE, 1, LavaridgeTown_EventScript_HideMapNamePopup
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_ClearLavaridgeWhiteOut::
2019-11-07 21:21:32 +01:00
clearflag FLAG_WHITEOUT_TO_LAVARIDGE
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_CheckSetRivalPos::
2017-11-10 02:21:31 +01:00
getplayerxy VAR_0x8004, VAR_0x8005
goto_if_eq VAR_0x8004, 9, LavaridgeTown_EventScript_SetRivalPos
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_SetRivalPos::
setobjectxyperm LOCALID_RIVAL, 11, 9
setobjectxyperm LOCALID_RIVAL_ON_BIKE, 9, 8
setobjectmovementtype LOCALID_RIVAL_ON_BIKE, MOVEMENT_TYPE_FACE_UP
2019-11-07 21:21:32 +01:00
clearflag FLAG_HIDE_LAVARIDGE_TOWN_RIVAL
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_ShowMtChimneyTrainers::
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_MT_CHIMNEY_TRAINERS
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_HideMapNamePopup::
2019-03-10 13:10:59 +01:00
setflag FLAG_HIDE_MAP_NAME_POPUP
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_OnFrame:
2019-11-07 21:21:32 +01:00
map_script_2 VAR_LAVARIDGE_TOWN_STATE, 1, LavaridgeTown_EventScript_RivalGiveGoGoggles
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalGiveGoGoggles::
2017-11-10 02:21:31 +01:00
lockall
getplayerxy VAR_0x8008, VAR_0x8009
call_if_eq VAR_0x8008, 9, LavaridgeTown_EventScript_RivalNoticePlayer
call_if_ne VAR_0x8008, 9, LavaridgeTown_EventScript_RivalExitHerbShop
2017-11-10 02:21:31 +01:00
delay 20
checkplayergender
call_if_eq VAR_RESULT, MALE, LavaridgeTown_EventScript_PlayMayMusic
call_if_eq VAR_RESULT, FEMALE, LavaridgeTown_EventScript_PlayBrendanMusic
call_if_eq VAR_0x8008, 9, LavaridgeTown_EventScript_RivalApproachPlayer1
call_if_ne VAR_0x8008, 9, LavaridgeTown_EventScript_RivalApproachPlayer2
2017-11-10 02:21:31 +01:00
checkplayergender
goto_if_eq VAR_RESULT, MALE, LavaridgeTown_EventScript_MayGiveGoGoggles
goto_if_eq VAR_RESULT, FEMALE, LavaridgeTown_EventScript_BrendanGiveGoGoggles
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_MayGiveGoGoggles::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_MayNiceBadgesTakeThis, MSGBOX_DEFAULT
giveitem ITEM_GO_GOGGLES
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_GO_GOGGLES
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_MayExplainGoGogglesChallengeDad, MSGBOX_DEFAULT
goto LavaridgeTown_EventScript_RivalExit
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_BrendanGiveGoGoggles::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_BrendanNiceBadgesTakeThis, MSGBOX_DEFAULT
giveitem ITEM_GO_GOGGLES
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_GO_GOGGLES
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_BrendanExplainGoGogglesChallengeDad, MSGBOX_DEFAULT
goto LavaridgeTown_EventScript_RivalExit
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalExit::
2017-11-10 02:21:31 +01:00
closemessage
removeobject LOCALID_RIVAL
addobject LOCALID_RIVAL_ON_BIKE
2017-11-10 02:21:31 +01:00
delay 30
call_if_eq VAR_0x8008, 9, LavaridgeTown_EventScript_RivalExit1
call_if_ne VAR_0x8008, 9, LavaridgeTown_EventScript_RivalExit2
removeobject LOCALID_RIVAL_ON_BIKE
2019-08-05 17:23:45 +02:00
setvar VAR_LAVARIDGE_TOWN_STATE, 2
2019-03-10 13:10:59 +01:00
clearflag FLAG_HIDE_MAP_NAME_POPUP
2017-12-22 08:46:19 +01:00
savebgm MUS_DUMMY
2017-11-10 02:21:31 +01:00
fadedefaultbgm
releaseall
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_PlayMayMusic::
2021-05-21 22:08:00 +02:00
playbgm MUS_ENCOUNTER_MAY, TRUE
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_PlayBrendanMusic::
2021-05-21 22:08:00 +02:00
playbgm MUS_ENCOUNTER_BRENDAN, TRUE
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalNoticePlayer::
applymovement LOCALID_RIVAL, Common_Movement_WalkInPlaceFasterUp
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_PIN
applymovement LOCALID_RIVAL, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_RIVAL, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalExitHerbShop::
2017-11-10 02:21:31 +01:00
opendoor 12, 15
waitdooranim
addobject LOCALID_RIVAL
applymovement LOCALID_RIVAL, LavaridgeTown_Movement_RivalExitHerbShop
2017-11-10 02:21:31 +01:00
waitmovement 0
closedoor 12, 15
waitdooranim
applymovement LOCALID_RIVAL, Common_Movement_WalkInPlaceFasterLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_PIN
applymovement LOCALID_RIVAL, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_RIVAL, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterRight
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalApproachPlayer1::
applymovement LOCALID_RIVAL, LavaridgeTown_Movement_RivalApproachPlayer1
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalApproachPlayer2::
applymovement LOCALID_RIVAL, LavaridgeTown_Movement_RivalApproachPlayer2
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalExit1::
applymovement OBJ_EVENT_ID_PLAYER, LavaridgeTown_Movement_PlayerWatchRivalExit
applymovement LOCALID_RIVAL_ON_BIKE, LavaridgeTown_Movement_RivalExit1
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_RivalExit2::
applymovement LOCALID_RIVAL_ON_BIKE, LavaridgeTown_Movement_RivalExit2
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_RivalExit2:
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_PlayerWatchRivalExit:
delay_16
delay_8
walk_in_place_faster_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_RivalExit1:
walk_fast_down
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_RivalApproachPlayer2:
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_RivalApproachPlayer1:
walk_left
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Movement_RivalExitHerbShop:
walk_down
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_HotSpringsTrigger::
specialvar VAR_RESULT, GetPlayerFacingDirection
goto_if_eq VAR_RESULT, DIR_SOUTH, LavaridgeTown_EventScript_EnteredHotSprings
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_EnteredHotSprings::
incrementgamestat GAME_STAT_ENTERED_HOT_SPRINGS
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_ExpertM::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_HotSpringsNeverRunDry, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_OldMan::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_PokemonNippedBackside, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_Twin::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_BatheInHotSpringsEveryDay, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_HotSpringsOldWoman1::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_IfPokemonInHotSprings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_HotSpringsOldWoman2::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_HotSpringsClaims, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_ExpertF::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_OhYouLikeHotSprings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_EggWoman::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-07 21:21:32 +01:00
goto_if_set FLAG_RECEIVED_LAVARIDGE_EGG, LavaridgeTown_EventScript_ReceivedEgg
msgbox LavaridgeTown_Text_HaveEggWillYouTakeIt, MSGBOX_YESNO
goto_if_eq VAR_RESULT, NO, LavaridgeTown_EventScript_DeclineEgg
2017-11-10 02:21:31 +01:00
getpartysize
goto_if_eq VAR_RESULT, PARTY_SIZE, LavaridgeTown_EventScript_NoRoomForEgg
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_HopeYoullWalkPlentyWithEgg, MSGBOX_DEFAULT
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_LAVARIDGE_EGG
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_ITEM
2019-11-07 21:21:32 +01:00
message LavaridgeTown_Text_ReceivedTheEgg
2017-11-10 02:21:31 +01:00
waitfanfare
giveegg SPECIES_WYNAUT
release
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_ReceivedEgg::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_EverySoOftenEggFoundAtDayCare, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_NoRoomForEgg::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_NoRoomForThisEgg, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_DeclineEgg::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_AsYouWishThen, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_TownSign::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_TownSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_GymSign::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_GymSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_EventScript_HerbShopSign::
2019-11-07 21:21:32 +01:00
msgbox LavaridgeTown_Text_HerbShopSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_MayNiceBadgesTakeThis:
2017-11-10 02:21:31 +01:00
.string "MAY: {PLAYER}{KUN}! Long time no see!\p"
.string "Oh? While I visited the hot springs,\n"
.string "you got the LAVARIDGE GYM BADGE.\p"
.string "You must have collected\n"
.string "good POKéMON…\l"
.string "No, I believe you raised some.\p"
.string "I guess it would be okay for you to\n"
.string "have this.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_MayExplainGoGogglesChallengeDad:
2018-12-07 16:41:08 +01:00
.string "MAY: With those GO-GOGGLES, you'll\n"
2017-11-10 02:21:31 +01:00
.string "have no trouble getting through the\l"
.string "desert near ROUTE 111.\p"
.string "But, wow, {PLAYER}{KUN}…\n"
.string "Challenging GYMS…\p"
2018-12-07 16:41:08 +01:00
.string "You're trying hard because you don't\n"
2017-11-10 02:21:31 +01:00
.string "want to lose to me, I bet!\p"
.string "{PLAYER}{KUN}, I think I should challenge\n"
.string "your dad in PETALBURG GYM.\p"
.string "See you again!$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_BrendanNiceBadgesTakeThis:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: {PLAYER}, hey, it's been a while.\n"
.string "How's it going?\p"
2017-11-10 02:21:31 +01:00
.string "Hmm…\n"
2018-12-07 16:41:08 +01:00
.string "That's a decent collection of BADGES.\p"
2017-11-10 02:21:31 +01:00
.string "All right, then.\n"
.string "You may as well have this.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_BrendanExplainGoGogglesChallengeDad:
2018-12-07 16:41:08 +01:00
.string "BRENDAN: Keep those with you if you're\n"
2017-11-10 02:21:31 +01:00
.string "planning on going into that desert near\l"
.string "ROUTE 111.\p"
.string "There should be some POKéMON that\n"
.string "are exclusively desert-dwellers.\l"
.string "You might look around for those.\p"
.string "As for me…\n"
2018-12-07 16:41:08 +01:00
.string "I'm considering challenging NORMAN,\l"
2017-11-10 02:21:31 +01:00
.string "the GYM LEADER of PETALBURG.\p"
.string "Unlike you, {PLAYER}, your dad looks like\n"
.string "he really is tough.\p"
.string "See you around!$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_HaveEggWillYouTakeIt:
2017-11-10 02:21:31 +01:00
.string "I have here an EGG.\p"
2018-12-07 16:41:08 +01:00
.string "I'd hoped to hatch it by covering it in\n"
2017-11-10 02:21:31 +01:00
.string "hot sand by the hot springs.\l"
2018-12-07 16:41:08 +01:00
.string "But that doesn't seem to be enough…\p"
.string "I've heard it would be best if it were\n"
2017-11-10 02:21:31 +01:00
.string "kept together with POKéMON and\l"
.string "carried about.\p"
.string "You are a TRAINER, yes?\n"
.string "And your POKéMON radiate vitality.\p"
.string "So, what say you?\n"
.string "Will you take this EGG to hatch?$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_HopeYoullWalkPlentyWithEgg:
2018-12-07 16:41:08 +01:00
.string "Good! I hope you'll walk plenty with\n"
2017-11-10 02:21:31 +01:00
.string "this here EGG!$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_ReceivedTheEgg:
2017-11-10 02:21:31 +01:00
.string "{PLAYER} received the EGG.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_NoRoomForThisEgg:
2018-12-07 16:41:08 +01:00
.string "Oh? You've too many POKéMON.\n"
.string "There's no room for this EGG…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_AsYouWishThen:
2017-11-10 02:21:31 +01:00
.string "As you wish, then…\p"
.string "If you have a change of heart about\n"
.string "hatching this EGG, I will be here.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_EverySoOftenEggFoundAtDayCare:
2017-11-10 02:21:31 +01:00
.string "Every so often, an EGG will be found at\n"
.string "the POKéMON DAY CARE.\p"
2018-12-07 16:41:08 +01:00
.string "Or at least that's how the rumor goes.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_HotSpringsNeverRunDry:
2017-11-10 02:21:31 +01:00
.string "We draw as much hot water as we need,\n"
.string "and yet the hot springs never run dry.\p"
2018-12-07 16:41:08 +01:00
.string "Isn't it magical?\p"
2017-11-10 02:21:31 +01:00
.string "These hot springs appear near active\n"
.string "volcanoes. Veins of water under the\l"
.string "ground are heated by magma to well up\l"
.string "as hot springs.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_PokemonNippedBackside:
2017-11-10 02:21:31 +01:00
.string "Being buried in this hot sand is…\n"
.string "Sigh…\p"
.string "So warm and heavenly…\p"
.string "Eh? Gyaah! Ouch!\p"
.string "A POKéMON nipped my backside!$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_OhYouLikeHotSprings:
2017-11-10 02:21:31 +01:00
.string "Oh, you like hot springs, do you?\p"
2018-12-07 16:41:08 +01:00
.string "That's surprising for one as young\n"
2017-11-10 02:21:31 +01:00
.string "as you.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_BatheInHotSpringsEveryDay:
2017-11-10 02:21:31 +01:00
.string "I bathe in the hot springs every day.\p"
.string "I want to become a beautiful and strong\n"
.string "GYM LEADER like FLANNERY.$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_IfPokemonInHotSprings:
2017-11-10 02:21:31 +01:00
.string "If people put POKéMON in hot springs,\n"
.string "it might be seriously strange.\p"
.string "Why, it might be an electric bath, or\n"
.string "a bubble bath, or even a lava bath…$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_HotSpringsClaims:
2018-12-07 16:41:08 +01:00
.string "They're claiming that these hot springs\n"
2017-11-10 02:21:31 +01:00
.string "are good for calming nervous tension,\l"
.string "relieving aching muscles, solving\l"
.string "romantic problems, and attracting\l"
.string "money…$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_TownSign:
2017-11-10 02:21:31 +01:00
.string "LAVARIDGE TOWN\p"
.string "“POKéMON CENTER HOT SPRINGS\n"
.string "An excellent place for relaxing!”$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_GymSign:
2017-11-10 02:21:31 +01:00
.string "LAVARIDGE TOWN POKéMON GYM\n"
.string "LEADER: FLANNERY\l"
.string "“One with a fiery passion that burns!”$"
2021-07-20 21:18:31 +02:00
LavaridgeTown_Text_HerbShopSign:
2017-11-10 02:21:31 +01:00
.string "POKéMON HERB SHOP\n"
.string "“Bitter taste--better cure!”$"