pokeemerald/data/maps/LavaridgeTown/scripts.inc

423 lines
13 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
LavaridgeTown_MapScripts:: @ 81EA4D3
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
LavaridgeTown_OnTransition: @ 81EA4DE
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
2019-08-05 17:23:45 +02:00
compare VAR_LAVARIDGE_TOWN_STATE, 1
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_CheckSetRivalPos
2019-08-05 17:23:45 +02:00
compare VAR_LAVARIDGE_TOWN_STATE, 1
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_HideMapNamePopup
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_ClearLavaridgeWhiteOut:: @ 81EA514
clearflag FLAG_WHITEOUT_TO_LAVARIDGE
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_CheckSetRivalPos:: @ 81EA518
2017-11-10 02:21:31 +01:00
getplayerxy VAR_0x8004, VAR_0x8005
compare VAR_0x8004, 9
2019-11-07 21:21:32 +01:00
goto_if_eq LavaridgeTown_EventScript_SetRivalPos
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_SetRivalPos:: @ 81EA529
2017-11-10 02:21:31 +01:00
setobjectxyperm 8, 11, 9
setobjectxyperm 7, 9, 8
setobjectmovementtype 7, 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
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_ShowMtChimneyTrainers:: @ 81EA53F
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_MT_CHIMNEY_TRAINERS
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_HideMapNamePopup:: @ 81EA543
2019-03-10 13:10:59 +01:00
setflag FLAG_HIDE_MAP_NAME_POPUP
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_OnFrame: @ 81EA547
map_script_2 VAR_LAVARIDGE_TOWN_STATE, 1, LavaridgeTown_EventScript_RivalGiveGoGoggles
2017-11-10 02:21:31 +01:00
.2byte 0
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalGiveGoGoggles:: @ 81EA551
2017-11-10 02:21:31 +01:00
lockall
getplayerxy VAR_0x8008, VAR_0x8009
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_RivalNoticePlayer
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_ne LavaridgeTown_EventScript_RivalExitHerbShop
2017-11-10 02:21:31 +01:00
delay 20
checkplayergender
compare VAR_RESULT, MALE
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_PlayMayMusic
compare VAR_RESULT, FEMALE
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_PlayBrendanMusic
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_RivalApproachPlayer1
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_ne LavaridgeTown_EventScript_RivalApproachPlayer2
2017-11-10 02:21:31 +01:00
checkplayergender
compare VAR_RESULT, MALE
2019-11-07 21:21:32 +01:00
goto_if_eq LavaridgeTown_EventScript_MayGiveGoGoggles
compare VAR_RESULT, FEMALE
2019-11-07 21:21:32 +01:00
goto_if_eq LavaridgeTown_EventScript_BrendanGiveGoGoggles
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_MayGiveGoGoggles:: @ 81EA5B5
msgbox LavaridgeTown_Text_MayNiceBadgesTakeThis, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
giveitem_std 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
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_BrendanGiveGoGoggles:: @ 81EA5DA
msgbox LavaridgeTown_Text_BrendanNiceBadgesTakeThis, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
giveitem_std 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
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalExit:: @ 81EA5FF
2017-11-10 02:21:31 +01:00
closemessage
removeobject 8
addobject 7
delay 30
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_eq LavaridgeTown_EventScript_RivalExit1
compare VAR_0x8008, 9
2019-11-07 21:21:32 +01:00
call_if_ne LavaridgeTown_EventScript_RivalExit2
2017-11-10 02:21:31 +01:00
removeobject 7
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_PlayMayMusic:: @ 81EA630
2017-12-22 08:46:19 +01:00
playbgm MUS_GIRL_SUP, 1
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_PlayBrendanMusic:: @ 81EA635
2017-12-22 08:46:19 +01:00
playbgm MUS_BOY_SUP, 1
2017-11-10 02:21:31 +01:00
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalNoticePlayer:: @ 81EA63A
2019-10-06 19:55:30 +02:00
applymovement 8, Common_Movement_WalkInPlaceFastestUp
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_PIN
applymovement 8, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement 8, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalExitHerbShop:: @ 81EA65C
2017-11-10 02:21:31 +01:00
opendoor 12, 15
waitdooranim
addobject 8
2019-11-07 21:21:32 +01:00
applymovement 8, LavaridgeTown_Movement_RivalExitHerbShop
2017-11-10 02:21:31 +01:00
waitmovement 0
closedoor 12, 15
waitdooranim
2019-10-06 19:55:30 +02:00
applymovement 8, Common_Movement_WalkInPlaceFastestLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_PIN
applymovement 8, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement 8, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-10-06 19:55:30 +02:00
applymovement EVENT_OBJ_ID_PLAYER, Common_Movement_WalkInPlaceFastestRight
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalApproachPlayer1:: @ 81EA6A1
applymovement 8, LavaridgeTown_Movement_RivalApproachPlayer1
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalApproachPlayer2:: @ 81EA6AC
applymovement 8, LavaridgeTown_Movement_RivalApproachPlayer2
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalExit1:: @ 81EA6B7
applymovement EVENT_OBJ_ID_PLAYER, LavaridgeTown_Movement_PlayerWatchRivalExit
applymovement 7, LavaridgeTown_Movement_RivalExit1
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_RivalExit2:: @ 81EA6C9
applymovement 7, LavaridgeTown_Movement_RivalExit2
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_RivalExit2: @ 81EA6D4
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_PlayerWatchRivalExit: @ 81EA6DF
delay_16
delay_8
walk_in_place_fastest_right
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_RivalExit1: @ 81EA6E3
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_RivalApproachPlayer2: @ 81EA6ED
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_RivalApproachPlayer1: @ 81EA6F4
walk_left
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 21:21:32 +01:00
LavaridgeTown_Movement_RivalExitHerbShop: @ 81EA6F8
walk_down
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_HotSpringsTrigger:: @ 81EA6FA
specialvar VAR_RESULT, GetPlayerFacingDirection
2019-11-07 21:21:32 +01:00
compare VAR_RESULT, DIR_SOUTH
goto_if_eq LavaridgeTown_EventScript_EnteredHotSprings
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_EnteredHotSprings:: @ 81EA70B
incrementgamestat GAME_STAT_ENTERED_HOT_SPRINGS
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_ExpertM:: @ 81EA70E
msgbox LavaridgeTown_Text_HotSpringsNeverRunDry, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_OldMan:: @ 81EA717
msgbox LavaridgeTown_Text_PokemonNippedBackside, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_Twin:: @ 81EA720
msgbox LavaridgeTown_Text_BatheInHotSpringsEveryDay, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_HotSpringsOldWoman1:: @ 81EA729
msgbox LavaridgeTown_Text_IfPokemonInHotSprings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_HotSpringsOldWoman2:: @ 81EA732
msgbox LavaridgeTown_Text_HotSpringsClaims, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_ExpertF:: @ 81EA73B
msgbox LavaridgeTown_Text_OhYouLikeHotSprings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_EggWoman:: @ 81EA744
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
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-07 21:21:32 +01:00
goto_if_eq LavaridgeTown_EventScript_DeclineEgg
2017-11-10 02:21:31 +01:00
getpartysize
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, PARTY_SIZE
2019-11-07 21:21:32 +01:00
goto_if_eq LavaridgeTown_EventScript_NoRoomForEgg
msgbox LavaridgeTown_Text_HopeYoullWalkPlentyWithEgg, MSGBOX_DEFAULT
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_LAVARIDGE_EGG
2017-12-22 08:46:19 +01:00
playfanfare MUS_FANFA4
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_ReceivedEgg:: @ 81EA787
msgbox LavaridgeTown_Text_EverySoOftenEggFoundAtDayCare, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_NoRoomForEgg:: @ 81EA791
msgbox LavaridgeTown_Text_NoRoomForThisEgg, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_DeclineEgg:: @ 81EA79B
msgbox LavaridgeTown_Text_AsYouWishThen, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_TownSign:: @ 81EA7A5
msgbox LavaridgeTown_Text_TownSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_GymSign:: @ 81EA7AE
msgbox LavaridgeTown_Text_GymSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_EventScript_HerbShopSign:: @ 81EA7B7
msgbox LavaridgeTown_Text_HerbShopSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_MayNiceBadgesTakeThis: @ 81EA7C0
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_MayExplainGoGogglesChallengeDad: @ 81EA897
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!$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_BrendanNiceBadgesTakeThis: @ 81EA9A2
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_BrendanExplainGoGogglesChallengeDad: @ 81EAA2E
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!$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_HaveEggWillYouTakeIt: @ 81EAB80
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?$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_HopeYoullWalkPlentyWithEgg: @ 81EACC0
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!$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_ReceivedTheEgg: @ 81EACF4
2017-11-10 02:21:31 +01:00
.string "{PLAYER} received the EGG.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_NoRoomForThisEgg: @ 81EAD09
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_AsYouWishThen: @ 81EAD44
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_EverySoOftenEggFoundAtDayCare: @ 81EAD9E
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
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_HotSpringsNeverRunDry: @ 81EAE03
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_PokemonNippedBackside: @ 81EAEE1
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!$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_OhYouLikeHotSprings: @ 81EAF4E
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_BatheInHotSpringsEveryDay: @ 81EAF9B
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.$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_IfPokemonInHotSprings: @ 81EB003
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…$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_HotSpringsClaims: @ 81EB092
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…$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_TownSign: @ 81EB12B
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!”$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_GymSign: @ 81EB178
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!”$"
2019-11-07 21:21:32 +01:00
LavaridgeTown_Text_HerbShopSign: @ 81EB1CB
2017-11-10 02:21:31 +01:00
.string "POKéMON HERB SHOP\n"
.string "“Bitter taste--better cure!”$"