pokeemerald/data/maps/BattleFrontier_Lounge7/scripts.inc

484 lines
16 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
BattleFrontier_Lounge7_MapScripts:: @ 8265254
.byte 0
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_LeftMoveTutor:: @ 8265255
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
setvar VAR_TEMP_C, SCROLL_MULTI_BF_MOVE_TUTOR_1
goto_if_set FLAG_MET_FRONTIER_BEAUTY_MOVE_TUTOR, BattleFrontier_Lounge7_EventScript_AlreadyMetLeftTutor
msgbox BattleFrontier_Lounge7_Text_LeftTutorIntro, MSGBOX_DEFAULT
2019-01-02 22:12:43 +01:00
setflag FLAG_MET_FRONTIER_BEAUTY_MOVE_TUTOR
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ChooseLeftTutorMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_AlreadyMetLeftTutor:: @ 8265276
msgbox BattleFrontier_Lounge7_Text_LeftTutorWelcomeBack, MSGBOX_DEFAULT
goto BattleFrontier_Lounge7_EventScript_ChooseLeftTutorMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ChooseLeftTutorMove:: @ 8265284
message BattleFrontier_Lounge7_Text_TeachWhichMove
2017-11-10 02:21:31 +01:00
waitmessage
special ShowBattlePointsWindow
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_E, 0
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BF_MOVE_TUTOR_1
2017-11-10 02:21:31 +01:00
setvar VAR_0x8006, 0
2019-09-13 20:24:07 +02:00
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_D, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-12 23:52:32 +01:00
case 0, BattleFrontier_Lounge7_EventScript_Softboiled
case 1, BattleFrontier_Lounge7_EventScript_SeismicToss
case 2, BattleFrontier_Lounge7_EventScript_DreamEater
case 3, BattleFrontier_Lounge7_EventScript_MegaPunch
case 4, BattleFrontier_Lounge7_EventScript_MegaKick
case 5, BattleFrontier_Lounge7_EventScript_BodySlam
case 6, BattleFrontier_Lounge7_EventScript_RockSlide
case 7, BattleFrontier_Lounge7_EventScript_Counter
case 8, BattleFrontier_Lounge7_EventScript_ThunderWave
case 9, BattleFrontier_Lounge7_EventScript_SwordsDance
case 10, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
case MULTI_B_PRESSED, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
end
BattleFrontier_Lounge7_EventScript_ChooseNewLeftTutorMove:: @ 826532F
message BattleFrontier_Lounge7_Text_TeachWhichMove
2017-11-10 02:21:31 +01:00
waitmessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_E, 0
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BF_MOVE_TUTOR_1
2017-11-10 02:21:31 +01:00
setvar VAR_0x8006, 1
2019-09-13 20:24:07 +02:00
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_D, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-12 23:52:32 +01:00
case 0, BattleFrontier_Lounge7_EventScript_Softboiled
case 1, BattleFrontier_Lounge7_EventScript_SeismicToss
case 2, BattleFrontier_Lounge7_EventScript_DreamEater
case 3, BattleFrontier_Lounge7_EventScript_MegaPunch
case 4, BattleFrontier_Lounge7_EventScript_MegaKick
case 5, BattleFrontier_Lounge7_EventScript_BodySlam
case 6, BattleFrontier_Lounge7_EventScript_RockSlide
case 7, BattleFrontier_Lounge7_EventScript_Counter
case 8, BattleFrontier_Lounge7_EventScript_ThunderWave
case 9, BattleFrontier_Lounge7_EventScript_SwordsDance
case 10, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
case MULTI_B_PRESSED, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
end
BattleFrontier_Lounge7_EventScript_Softboiled:: @ 82653D7
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 16
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_SeismicToss:: @ 82653E2
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_DreamEater:: @ 82653ED
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_MegaPunch:: @ 82653F8
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_MegaKick:: @ 8265403
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_BodySlam:: @ 826540E
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_RockSlide:: @ 8265419
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Counter:: @ 8265424
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ThunderWave:: @ 826542F
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_SwordsDance:: @ 826543A
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_RightMoveTutor:: @ 8265445
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
setvar VAR_TEMP_C, SCROLL_MULTI_BF_MOVE_TUTOR_2
goto_if_set FLAG_MET_FRONTIER_SWIMMER_MOVE_TUTOR, BattleFrontier_Lounge7_EventScript_AlreadyMetRightTutor
msgbox BattleFrontier_Lounge7_Text_RightTutorIntro, MSGBOX_DEFAULT
2019-01-02 22:12:43 +01:00
setflag FLAG_MET_FRONTIER_SWIMMER_MOVE_TUTOR
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ChooseRightTutorMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_AlreadyMetRightTutor:: @ 8265466
msgbox BattleFrontier_Lounge7_Text_RightTutorWelcomeBack, MSGBOX_DEFAULT
goto BattleFrontier_Lounge7_EventScript_ChooseRightTutorMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ChooseRightTutorMove:: @ 8265474
message BattleFrontier_Lounge7_Text_TeachWhichMove
2017-11-10 02:21:31 +01:00
waitmessage
special ShowBattlePointsWindow
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_E, 1
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BF_MOVE_TUTOR_2
2017-11-10 02:21:31 +01:00
setvar VAR_0x8006, 0
2019-09-13 20:24:07 +02:00
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_D, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-12 23:52:32 +01:00
case 0, BattleFrontier_Lounge7_EventScript_DefenseCurl
case 1, BattleFrontier_Lounge7_EventScript_Snore
case 2, BattleFrontier_Lounge7_EventScript_MudSlap
case 3, BattleFrontier_Lounge7_EventScript_Swift
case 4, BattleFrontier_Lounge7_EventScript_IcyWind
case 5, BattleFrontier_Lounge7_EventScript_Endure
case 6, BattleFrontier_Lounge7_EventScript_PsychUp
case 7, BattleFrontier_Lounge7_EventScript_IcePunch
case 8, BattleFrontier_Lounge7_EventScript_ThunderPunch
case 9, BattleFrontier_Lounge7_EventScript_FirePunch
case 10, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
case MULTI_B_PRESSED, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
end
BattleFrontier_Lounge7_EventScript_ChooseNewRightTutorMove:: @ 826551F
message BattleFrontier_Lounge7_Text_TeachWhichMove
2017-11-10 02:21:31 +01:00
waitmessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_E, 1
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BF_MOVE_TUTOR_2
2017-11-10 02:21:31 +01:00
setvar VAR_0x8006, 1
2019-09-13 20:24:07 +02:00
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_D, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-12 23:52:32 +01:00
case 0, BattleFrontier_Lounge7_EventScript_DefenseCurl
case 1, BattleFrontier_Lounge7_EventScript_Snore
case 2, BattleFrontier_Lounge7_EventScript_MudSlap
case 3, BattleFrontier_Lounge7_EventScript_Swift
case 4, BattleFrontier_Lounge7_EventScript_IcyWind
case 5, BattleFrontier_Lounge7_EventScript_Endure
case 6, BattleFrontier_Lounge7_EventScript_PsychUp
case 7, BattleFrontier_Lounge7_EventScript_IcePunch
case 8, BattleFrontier_Lounge7_EventScript_ThunderPunch
case 9, BattleFrontier_Lounge7_EventScript_FirePunch
case 10, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
case MULTI_B_PRESSED, BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect
end
BattleFrontier_Lounge7_EventScript_DefenseCurl:: @ 82655C7
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 16
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Snore:: @ 82655D2
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_MudSlap:: @ 82655DD
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Swift:: @ 82655E8
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_IcyWind:: @ 82655F3
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 24
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Endure:: @ 82655FE
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_PsychUp:: @ 8265609
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_IcePunch:: @ 8265614
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ThunderPunch:: @ 826561F
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_FirePunch:: @ 826562A
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 48
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ExitTutorMoveSelect:: @ 8265635
2019-09-14 02:22:09 +02:00
special CloseBattleFrontierTutorWindow
special CloseBattlePointsWindow
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge7_Text_YouDontWantTo, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_CancelChooseMon:: @ 8265645
msgbox BattleFrontier_Lounge7_Text_YouDontWantTo, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-12 23:52:32 +01:00
@ VAR_0x8008 is the price
@ VAR_TEMP_C is the scroll multichoice ID
@ VAR_TEMP_D is the move selection
@ VAR_TEMP_E is which move tutor was spoken to
BattleFrontier_Lounge7_EventScript_ConfirmMoveSelection:: @ 826564F
2018-05-19 18:02:43 +02:00
copyvar VAR_0x8004, VAR_TEMP_D
copyvar VAR_0x8005, VAR_TEMP_E
2019-09-13 20:24:07 +02:00
special BufferBattleFrontierTutorMoveName
2017-11-10 02:21:31 +01:00
buffernumberstring 1, VAR_0x8008
2018-05-19 18:02:43 +02:00
copyvar VAR_0x8004, VAR_TEMP_C
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge7_Text_MoveWillBeXBattlePoints, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-12 23:52:32 +01:00
goto_if_eq BattleFrontier_Lounge7_EventScript_ChooseNewMove
2019-09-13 20:24:07 +02:00
specialvar VAR_TEMP_1, GetFrontierBattlePoints
2018-05-19 18:02:43 +02:00
compare VAR_TEMP_1, VAR_0x8008
2019-11-12 23:52:32 +01:00
goto_if_ge BattleFrontier_Lounge7_EventScript_TeachTutorMove
msgbox BattleFrontier_Lounge7_Text_HaventGotEnoughPoints, MSGBOX_DEFAULT
goto BattleFrontier_Lounge7_EventScript_ChooseNewMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_TeachTutorMove:: @ 8265696
msgbox BattleFrontier_Lounge7_Text_TeachMoveToWhichMon, MSGBOX_DEFAULT
2019-09-14 02:22:09 +02:00
special GetBattleFrontierTutorMoveIndex
2019-12-15 17:42:50 +01:00
fadescreen FADE_TO_BLACK
special CloseBattlePointsWindow
2019-09-14 02:22:09 +02:00
special CloseBattleFrontierTutorWindow
2019-10-18 01:22:03 +02:00
special ChooseMonForMoveTutor
2017-11-10 02:21:31 +01:00
waitstate
2019-11-12 23:52:32 +01:00
compare VAR_RESULT, FALSE
goto_if_eq BattleFrontier_Lounge7_EventScript_CancelChooseMon
msgbox BattleFrontier_Lounge7_Text_IllTakeBattlePoints, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8004, VAR_0x8008
2019-09-13 20:24:07 +02:00
special TakeFrontierBattlePoints
2017-11-10 02:21:31 +01:00
release
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_ChooseNewMove:: @ 82656CA
2018-05-19 18:02:43 +02:00
compare VAR_TEMP_E, 0
2019-11-12 23:52:32 +01:00
goto_if_eq BattleFrontier_Lounge7_EventScript_ChooseNewLeftTutorMove
goto BattleFrontier_Lounge7_EventScript_ChooseNewRightTutorMove
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Sailor:: @ 82656DB
msgbox BattleFrontier_Lounge7_Text_ThinkLadiesDontGetAlong, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_EventScript_Gentleman:: @ 82656E4
msgbox BattleFrontier_Lounge7_Text_LadiesWereStrongAndBeautiful, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_LeftTutorIntro: @ 82656ED
2017-11-10 02:21:31 +01:00
.string "Buhahaha!\p"
2018-12-07 16:41:08 +01:00
.string "You couldn't tell it from looking now,\n"
2017-11-10 02:21:31 +01:00
.string "but I used to be one tough TRAINER.\p"
.string "I had a reputation as the toughest\n"
.string "BEAUTY around, I tell you!\p"
.string "… … … … … …\p"
.string "What is it now?\n"
2018-12-07 16:41:08 +01:00
.string "You don't believe me.\p"
.string "I'm not like that blowhard woman over\n"
.string "there. I'm actually talented!\p"
2017-11-10 02:21:31 +01:00
.string "Let me prove it to you.\n"
.string "I can teach your POKéMON special and\l"
.string "yet cute moves.\p"
2018-12-07 16:41:08 +01:00
.string "But my lessons don't come free.\n"
2017-11-10 02:21:31 +01:00
.string "How about paying for the moves I teach\l"
.string "with a wee bit of Battle Points?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_LeftTutorWelcomeBack: @ 82658AB
2017-11-10 02:21:31 +01:00
.string "Buhahaha!\p"
.string "Are you back to learn special and\n"
.string "yet cute POKéMON moves?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_TeachWhichMove: @ 82658EF
2017-11-10 02:21:31 +01:00
.string "Fine, fine, look here!\n"
.string "Which move should I teach?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_MoveWillBeXBattlePoints: @ 8265921
2017-11-10 02:21:31 +01:00
.string "The move {STR_VAR_1}, is it?\n"
.string "That will be {STR_VAR_2} Battle Points, okay?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_TeachMoveToWhichMon: @ 826595A
2017-11-10 02:21:31 +01:00
.string "Fine, fine, now pick the POKéMON\n"
.string "I should teach the move to.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_HaventGotEnoughPoints: @ 8265997
2017-11-10 02:21:31 +01:00
.string "What the…\n"
2018-12-07 16:41:08 +01:00
.string "You haven't got enough Battle Points!$"
2017-11-10 02:21:31 +01:00
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_IllTakeBattlePoints: @ 82659C7
2017-11-10 02:21:31 +01:00
.string "Do you see how skilled I am now?\n"
2018-12-07 16:41:08 +01:00
.string "I'll take your Battle Points, thanks!$"
2017-11-10 02:21:31 +01:00
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_YouDontWantTo: @ 8265A0E
2018-12-07 16:41:08 +01:00
.string "What's that?\n"
.string "You don't want to…\p"
2017-11-10 02:21:31 +01:00
.string "If you want to see how skilled I am,\n"
.string "you come see me anytime!$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_RightTutorIntro: @ 8265A6C
2017-11-10 02:21:31 +01:00
.string "Ihihihi!\p"
2018-12-07 16:41:08 +01:00
.string "I know it's hard to see now, but I used\n"
2017-11-10 02:21:31 +01:00
.string "to be one fantastic TRAINER.\p"
.string "I had a reputation as the most\n"
.string "invincible SWIMMER around, I tell you!\p"
.string "… … … … … …\p"
2018-12-07 16:41:08 +01:00
.string "What's wrong?\n"
.string "You don't believe me.\p"
.string "I'm not like that buffoonish woman over\n"
.string "there. I'm actually experienced!\p"
2017-11-10 02:21:31 +01:00
.string "I can prove it to you.\n"
.string "I can teach your POKéMON hard and\l"
.string "yet pretty moves.\p"
2018-12-07 16:41:08 +01:00
.string "But my lessons don't come free.\n"
2017-11-10 02:21:31 +01:00
.string "How about paying for the moves I teach\l"
.string "with a wee bit of Battle Points?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_RightTutorWelcomeBack: @ 8265C2C
2017-11-10 02:21:31 +01:00
.string "Ihihihi!\p"
.string "Have you come to learn hard and\n"
.string "yet pretty POKéMON moves?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_ThinkLadiesDontGetAlong: @ 8265C6F
2017-11-10 02:21:31 +01:00
.string "Those ladies, the way they bad-mouth\n"
.string "each other, you probably think that\l"
2018-12-07 16:41:08 +01:00
.string "they don't get along.\p"
.string "But if that were true, they wouldn't\n"
2017-11-10 02:21:31 +01:00
.string "stay out here together, would they?$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_LadiesWereStrongAndBeautiful: @ 8265D17
2017-11-10 02:21:31 +01:00
.string "When I was just a wee YOUNGSTER,\n"
.string "those ladies were strong and beautiful.\p"
.string "They were idols among us TRAINERS.\p"
2018-12-07 16:41:08 +01:00
.string "Even now, age hasn't dulled their\n"
2017-11-10 02:21:31 +01:00
.string "abilities.\p"
.string "In fact, their POKéMON moves have\n"
.string "grown even more polished.\p"
2018-12-07 16:41:08 +01:00
.string "But… For some reason, I can't help\n"
2017-11-10 02:21:31 +01:00
.string "but feel this…\p"
.string "Time is so cruel…$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_SoftboiledDesc:: @ 8265E30
.string "Recovers up to\n"
2018-12-07 16:41:08 +01:00
.string "half the user's\n"
.string "maximum HP.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_SeismicTossDesc:: @ 8265E5B
.string "Inflicts damage\n"
.string "identical to the\n"
2018-12-07 16:41:08 +01:00
.string "user's level.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_DreamEaterDesc:: @ 8265E8A
.string "Recovers half the\n"
.string "damage inflicted\n"
.string "on a sleeping foe.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_MegaPunchDesc:: @ 8265EC0
.string "A strong punch\n"
.string "thrown with\n"
.string "incredible power.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_MegaKickDesc:: @ 8265EED
.string "An extremely\n"
.string "powerful kick with\n"
.string "intense force.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_BodySlamDesc:: @ 8265F1C
.string "A full-body slam\n"
.string "that may cause\n"
.string "paralysis.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_RockSlideDesc:: @ 8265F47
.string "Large boulders\n"
.string "are hurled. May\n"
.string "cause flinching.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_CounterDesc:: @ 8265F77
.string "Retaliates any\n"
.string "physical hit with\n"
.string "double the power.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_ThunderWaveDesc:: @ 8265FAA
.string "A weak jolt of\n"
.string "electricity that\n"
.string "paralyzes the foe.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_SwordsDanceDesc:: @ 8265FDD
.string "A fighting dance\n"
.string "that sharply\n"
.string "raises ATTACK.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_DefenseCurlDesc:: @ 826600A
.string "Curls up to con-\n"
.string "ceal weak spots\n"
.string "and raise DEFENSE.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_SnoreDesc:: @ 826603E
.string "A loud attack\n"
.string "that can be used\n"
.string "only while asleep.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_MudSlapDesc:: @ 8266070
.string "Hurls mud in the\n"
2018-12-07 16:41:08 +01:00
.string "foe's face to re-\n"
.string "duce its accuracy.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_SwiftDesc:: @ 82660A6
.string "Sprays star-\n"
.string "shaped rays\n"
.string "that never miss.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_IcyWindDesc:: @ 82660D0
.string "A chilling attack\n"
.string "that lowers the\n"
2018-12-07 16:41:08 +01:00
.string "foe's SPEED.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_EndureDesc:: @ 82660FF
.string "Endures any at-\n"
.string "tack for 1 turn,\n"
.string "leaving 1HP.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_PsychUpDesc:: @ 826612D
2018-12-07 16:41:08 +01:00
.string "Copies the foe's\n"
.string "effect(s) and\n"
.string "gives to the user.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_IcePunchDesc:: @ 826615F
.string "An icy punch\n"
.string "that may\n"
.string "freeze the foe.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_ThunderPunchDesc:: @ 8266185
.string "An electrified\n"
.string "punch that may\n"
.string "paralyze the foe.$"
2019-11-12 23:52:32 +01:00
BattleFrontier_Lounge7_Text_FirePunchDesc:: @ 82661B5
.string "A fiery punch\n"
.string "that may burn\n"
.string "the foe.$"