pokeemerald/data/maps/DewfordTown_Gym/scripts.inc

460 lines
15 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
DewfordTown_Gym_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, DewfordTown_Gym_OnTransition
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_OnTransition:
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
end
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel::
goto_if_defeated TRAINER_BRAWLY_1, DewfordTown_Gym_EventScript_SetLightsOn
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_CountTrainersDefeated
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8001, VAR_0x8000
goto_if_eq VAR_0x8000, 0, DewfordTown_Gym_EventScript_SetFlashLevel7
goto_if_eq VAR_0x8000, 1, DewfordTown_Gym_EventScript_SetFlashLevel6
goto_if_eq VAR_0x8000, 2, DewfordTown_Gym_EventScript_SetFlashLevel5
goto_if_eq VAR_0x8000, 3, DewfordTown_Gym_EventScript_SetFlashLevel4
goto_if_eq VAR_0x8000, 4, DewfordTown_Gym_EventScript_SetFlashLevel3
goto_if_eq VAR_0x8000, 5, DewfordTown_Gym_EventScript_SetFlashLevel2
2021-11-16 23:12:16 +01:00
goto DewfordTown_Gym_EventScript_SetFlashLevel1
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_SetLightsOn::
2021-11-16 23:12:16 +01:00
setflashlevel 0
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
@ Brightest
DewfordTown_Gym_EventScript_SetFlashLevel1::
setflashlevel 1
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel2::
setflashlevel 2
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel3::
setflashlevel 3
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel4::
setflashlevel 4
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel5::
setflashlevel 5
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
DewfordTown_Gym_EventScript_SetFlashLevel6::
setflashlevel 6
2017-11-10 02:21:31 +01:00
return
2021-11-16 23:12:16 +01:00
@ Darkest
DewfordTown_Gym_EventScript_SetFlashLevel7::
setflashlevel 7
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_BrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_CountTrainersDefeated
2017-11-10 02:21:31 +01:00
nop1
goto_if_eq VAR_0x8000, VAR_0x8001, DewfordTown_Gym_EventScript_NoLightChange
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8001, VAR_0x8000
goto_if_eq VAR_0x8000, 1, DewfordTown_Gym_EventScript_AnimateFlash1Trainer
goto_if_eq VAR_0x8000, 2, DewfordTown_Gym_EventScript_AnimateFlash2Trainers
goto_if_eq VAR_0x8000, 3, DewfordTown_Gym_EventScript_AnimateFlash3Trainers
goto_if_eq VAR_0x8000, 4, DewfordTown_Gym_EventScript_AnimateFlash4Trainers
goto_if_eq VAR_0x8000, 5, DewfordTown_Gym_EventScript_AnimateFlash5Trainers
goto_if_eq VAR_0x8000, 6, DewfordTown_Gym_EventScript_AnimateFlash6Trainers
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_NoLightChange::
2017-11-10 02:21:31 +01:00
return
2019-10-11 23:25:07 +02:00
@ NOTE: A little confusingly, a larger animateflash param value is a smaller flash radius
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash1Trainer::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 6
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash2Trainers::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 5
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash3Trainers::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 4
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash4Trainers::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 3
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash5Trainers::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 2
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlash6Trainers::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 1
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_AnimateFlashFullBrightness::
2020-08-21 00:02:00 +02:00
playse SE_SWITCH
2017-11-10 02:21:31 +01:00
animateflash 0
2021-11-16 23:12:16 +01:00
call DewfordTown_Gym_EventScript_SetFlashLevel
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CountTrainersDefeated::
2017-11-10 02:21:31 +01:00
setvar VAR_0x8000, 0
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_TAKAO, DewfordTown_Gym_EventScript_CheckJocelyn
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CheckJocelyn::
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_JOCELYN, DewfordTown_Gym_EventScript_CheckLaura
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CheckLaura::
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_LAURA, DewfordTown_Gym_EventScript_CheckBrenden
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CheckBrenden::
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_BRENDEN, DewfordTown_Gym_EventScript_CheckCristian
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CheckCristian::
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_CRISTIAN, DewfordTown_Gym_EventScript_CheckLilith
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CheckLilith::
2020-01-13 02:20:02 +01:00
goto_if_not_defeated TRAINER_LILITH, DewfordTown_Gym_EventScript_StopCountingTrainers
2017-11-10 02:21:31 +01:00
addvar VAR_0x8000, 1
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_StopCountingTrainers::
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Brawly::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_BRAWLY_1, DewfordTown_Gym_Text_BrawlyIntro, DewfordTown_Gym_Text_BrawlyDefeat, DewfordTown_Gym_EventScript_BrawlyDefeated, NO_MUSIC
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, DewfordTown_Gym_EventScript_BrawlyRematch
goto_if_unset FLAG_RECEIVED_TM_BULK_UP, DewfordTown_Gym_EventScript_GiveBulkUp2
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_BrawlyPostBattle, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_BrawlyDefeated::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_AnimateFlashFullBrightness
message DewfordTown_Gym_Text_ReceivedKnuckleBadge
2017-11-10 02:21:31 +01:00
waitmessage
call Common_EventScript_PlayGymBadgeFanfare
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_KnuckleBadgeInfoTakeThis, MSGBOX_DEFAULT
2019-01-02 22:12:43 +01:00
setflag FLAG_DEFEATED_DEWFORD_GYM
2017-11-10 02:21:31 +01:00
setflag FLAG_BADGE02_GET
addvar VAR_PETALBURG_GYM_STATE, 1
call_if_eq VAR_PETALBURG_GYM_STATE, 6, Common_EventScript_ReadyPetalburgGymForBattle
2017-11-10 02:21:31 +01:00
setvar VAR_0x8008, 2
2019-08-15 05:38:42 +02:00
call Common_EventScript_SetGymTrainers
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_GiveBulkUp
2017-11-10 02:21:31 +01:00
closemessage
delay 30
2020-08-21 00:02:00 +02:00
playfanfare MUS_REGISTER_MATCH_CALL
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_RegisteredBrawly, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
waitfanfare
closemessage
delay 30
2019-01-02 22:12:43 +01:00
setflag FLAG_ENABLE_BRAWLY_MATCH_CALL
2019-02-28 05:54:51 +01:00
setvar VAR_ROXANNE_CALL_STEP_COUNTER, 0
2019-01-02 22:12:43 +01:00
setflag FLAG_ENABLE_ROXANNE_FIRST_CALL
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GiveBulkUp::
giveitem ITEM_TM_BULK_UP
goto_if_eq VAR_RESULT, 0, Common_EventScript_BagIsFull
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_ExplainBulkUp, MSGBOX_DEFAULT
setflag FLAG_RECEIVED_TM_BULK_UP
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GiveBulkUp2:
giveitem ITEM_TM_BULK_UP
goto_if_eq VAR_RESULT, 0, Common_EventScript_ShowBagIsFull
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_ExplainBulkUp, MSGBOX_DEFAULT
setflag FLAG_RECEIVED_TM_BULK_UP
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_BrawlyRematch::
2019-10-11 23:25:07 +02:00
trainerbattle_rematch_double TRAINER_BRAWLY_1, DewfordTown_Gym_Text_BrawlyPreRematch, DewfordTown_Gym_Text_BrawlyRematchDefeat, DewfordTown_Gym_Text_BrawlyRematchNeedTwoMons
msgbox DewfordTown_Gym_Text_BrawlyPostRematch, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Takao::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_TAKAO, DewfordTown_Gym_Text_TakaoIntro, DewfordTown_Gym_Text_TakaoDefeat, DewfordTown_Gym_EventScript_TakaoBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_TakaoPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_TakaoBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Jocelyn::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_JOCELYN, DewfordTown_Gym_Text_JocelynIntro, DewfordTown_Gym_Text_JocelynDefeat, DewfordTown_Gym_EventScript_JocelynBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_JocelynPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_JocelynBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Laura::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_LAURA, DewfordTown_Gym_Text_LauraIntro, DewfordTown_Gym_Text_LauraDefeat, DewfordTown_Gym_EventScript_LauraBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_LauraPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_LauraBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Brenden::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_BRENDEN, DewfordTown_Gym_Text_BrendenIntro, DewfordTown_Gym_Text_BrendenDefeat, DewfordTown_Gym_EventScript_BrendenBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_BrendenPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_BrendenBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Cristian::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_CRISTIAN, DewfordTown_Gym_Text_CristianIntro, DewfordTown_Gym_Text_CristianDefeat, DewfordTown_Gym_EventScript_CristianBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_CristianPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_CristianBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_Lilith::
2020-01-08 21:12:10 +01:00
trainerbattle_single TRAINER_LILITH, DewfordTown_Gym_Text_LilithIntro, DewfordTown_Gym_Text_LilithDefeat, DewfordTown_Gym_EventScript_LilithBrightenRoom
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_LilithPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_LilithBrightenRoom::
2019-10-11 23:25:07 +02:00
call DewfordTown_Gym_EventScript_BrightenRoom
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GymGuide::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-10-11 23:25:07 +02:00
goto_if_set FLAG_DEFEATED_DEWFORD_GYM, DewfordTown_Gym_EventScript_GymGuidePostVictory
msgbox DewfordTown_Gym_Text_GymGuideAdvice, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GymGuidePostVictory::
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_GymGuidePostVictory, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_LeftGymStatue::
2017-11-10 02:21:31 +01:00
lockall
2019-10-11 23:25:07 +02:00
goto_if_set FLAG_BADGE02_GET, DewfordTown_Gym_EventScript_GymStatueCertified
goto DewfordTown_Gym_EventScript_GymStatue
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_RightGymStatue::
2017-11-10 02:21:31 +01:00
lockall
2019-10-11 23:25:07 +02:00
goto_if_set FLAG_BADGE02_GET, DewfordTown_Gym_EventScript_GymStatueCertified
goto DewfordTown_Gym_EventScript_GymStatue
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GymStatueCertified::
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_GymStatueCertified, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_EventScript_GymStatue::
2019-10-11 23:25:07 +02:00
msgbox DewfordTown_Gym_Text_GymStatue, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_GymGuideAdvice:
2018-12-07 16:41:08 +01:00
.string "Hey, how's it going, CHAMPION-\n"
2017-11-10 02:21:31 +01:00
.string "bound {PLAYER}?\p"
2018-12-07 16:41:08 +01:00
.string "DEWFORD's GYM LEADER BRAWLY commands\n"
2017-11-10 02:21:31 +01:00
.string "FIGHTING-type POKéMON.\p"
.string "Going against him with NORMAL-type\n"
.string "POKéMON is asking for trouble.\p"
.string "FIGHTING POKéMON will lay a serious\n"
.string "smack down on NORMAL POKéMON,\l"
.string "so be careful!\p"
2018-12-07 16:41:08 +01:00
.string "What's worse, the GYM is as dark as\n"
2017-11-10 02:21:31 +01:00
.string "the ocean floor.\p"
.string "But it will get brighter after defeating\n"
.string "the TRAINERS in your way.\p"
.string "Hey, okay, go for it!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_GymGuidePostVictory:
2018-12-07 16:41:08 +01:00
.string "Whoah! It's turned too bright in here!\p"
2017-11-10 02:21:31 +01:00
.string "Your future is bright, too!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_TakaoIntro:
2017-11-10 02:21:31 +01:00
.string "Might is right!\n"
.string "Come on!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_TakaoDefeat:
2017-11-10 02:21:31 +01:00
.string "Not enough power…$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_TakaoPostBattle:
2017-11-10 02:21:31 +01:00
.string "Your skill overcame my strength!\n"
.string "Your technique is commendable!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_JocelynIntro:
2018-12-07 16:41:08 +01:00
.string "There's no need for BRAWLY to be\n"
2017-11-10 02:21:31 +01:00
.string "involved!\p"
2018-12-07 16:41:08 +01:00
.string "I'll crush you!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_JocelynDefeat:
2017-11-10 02:21:31 +01:00
.string "But… How?\n"
.string "How could I lose so easily?$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_JocelynPostBattle:
2018-12-07 16:41:08 +01:00
.string "I'm not going to waste this loss.\n"
.string "I'll use it to motivate me to train!\p"
.string "One day I'll become a GYM LEADER…\p"
.string "No, I'll become the POKéMON LEAGUE\n"
2017-11-10 02:21:31 +01:00
.string "CHAMPION!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LauraIntro:
2018-12-07 16:41:08 +01:00
.string "Don't you dare brush me off!\n"
.string "It's not my fault if you cry!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LauraDefeat:
2017-11-10 02:21:31 +01:00
.string "Waaaaaaah!\n"
.string "I lost!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LauraPostBattle:
2017-11-10 02:21:31 +01:00
.string "I battle in the dark to make my heart\n"
.string "stronger.\p"
2018-12-07 16:41:08 +01:00
.string "But because it's so dark, I can never\n"
.string "see BRAWLY's face…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LilithIntro:
2017-11-10 02:21:31 +01:00
.string "Ufufu…\n"
.string "Are you stumbling around in the dark?$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LilithDefeat:
2017-11-10 02:21:31 +01:00
.string "Oh, you…\n"
2018-12-07 16:41:08 +01:00
.string "I don't want to know you!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_LilithPostBattle:
2017-11-10 02:21:31 +01:00
.string "You deserve to stay lost and end up\n"
.string "back at the entrance again!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrendenIntro:
2018-12-07 16:41:08 +01:00
.string "I'll show you the gumption of\n"
2017-11-10 02:21:31 +01:00
.string "a sailing man!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrendenDefeat:
2018-12-07 16:41:08 +01:00
.string "How'd this happen?\n"
.string "It's not like me to lose this way!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrendenPostBattle:
2018-12-07 16:41:08 +01:00
.string "Oh, aye! You're worthy of seeing\n"
2017-11-10 02:21:31 +01:00
.string "our GYM LEADER.$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_CristianIntro:
2017-11-10 02:21:31 +01:00
.string "If you mean to pass, it has to be\n"
.string "through me!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_CristianDefeat:
2017-11-10 02:21:31 +01:00
.string "Grrrrr!\n"
.string "Vastly overpowered!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_CristianPostBattle:
2017-11-10 02:21:31 +01:00
.string "You win!\n"
.string "Go after that BADGE!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyIntro:
2018-12-07 16:41:08 +01:00
.string "I'm BRAWLY!\n"
.string "DEWFORD's GYM LEADER!\p"
.string "I've been churned in the rough waves\n"
.string "of these parts, and I've grown tough\l"
2017-11-10 02:21:31 +01:00
.string "in the pitch-black cave!\p"
.string "So you wanted to challenge me?\n"
2018-12-07 16:41:08 +01:00
.string "Let me see what you're made of!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyDefeat:
2017-11-10 02:21:31 +01:00
.string "Whoah, wow! You made a much bigger\n"
.string "splash than I expected!\p"
.string "You swamped me!\p"
2018-12-07 16:41:08 +01:00
.string "Okay, you've got me.\n"
2017-11-10 02:21:31 +01:00
.string "Take this GYM BADGE!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_ReceivedKnuckleBadge:
2017-11-10 02:21:31 +01:00
.string "{PLAYER} received the KNUCKLE BADGE\n"
.string "from BRAWLY.$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_KnuckleBadgeInfoTakeThis:
2017-11-10 02:21:31 +01:00
.string "The KNUCKLE BADGE makes all POKéMON\n"
.string "up to Level 30, even those you get in\l"
.string "trades, obey without question.\p"
2018-12-07 16:41:08 +01:00
.string "And, you'll be able to use the HM move\n"
2017-11-10 02:21:31 +01:00
.string "FLASH outside of battle.\p"
2018-12-07 16:41:08 +01:00
.string "If you'd like, use this TECHNICAL\n"
2017-11-10 02:21:31 +01:00
.string "MACHINE, too.$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_ExplainBulkUp:
2017-11-10 02:21:31 +01:00
.string "That TM08 contains BULK UP.\p"
2018-12-07 16:41:08 +01:00
.string "It's a move that raises both ATTACK\n"
2017-11-10 02:21:31 +01:00
.string "and DEFENSE stats.\p"
.string "… … … … … …$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_RegisteredBrawly:
2017-11-10 02:21:31 +01:00
.string "Registered GYM LEADER BRAWLY\n"
.string "in the POKéNAV.$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyPostBattle:
2017-11-10 02:21:31 +01:00
.string "I can see your talent becoming a giant\n"
.string "wave to cause a storm of astonishment\l"
.string "among TRAINERS one day!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_GymStatue:
2017-11-10 02:21:31 +01:00
.string "DEWFORD TOWN POKéMON GYM$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_GymStatueCertified:
2017-11-10 02:21:31 +01:00
.string "DEWFORD TOWN POKéMON GYM\p"
2018-12-07 16:41:08 +01:00
.string "BRAWLY'S CERTIFIED TRAINERS:\n"
2017-11-10 02:21:31 +01:00
.string "{PLAYER}$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyPreRematch:
2017-11-10 02:21:31 +01:00
.string "BRAWLY: A wave may draw back, but it\n"
.string "always returns to the shore.\p"
.string "A giant wave of a talent like you…\n"
.string "I knew you would return!\p"
.string "Show me how much higher\n"
2018-12-07 16:41:08 +01:00
.string "you've gone!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyRematchDefeat:
2017-11-10 02:21:31 +01:00
.string "Wow!\n"
.string "Swamped again!$"
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyPostRematch:
2018-12-07 16:41:08 +01:00
.string "BRAWLY: Battling is vast and it's deep.\n"
.string "You can't see the bottom.\l"
.string "It's just like the sea of HOENN!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
DewfordTown_Gym_Text_BrawlyRematchNeedTwoMons:
2017-11-10 02:21:31 +01:00
.string "BRAWLY: A wave may draw back, but it\n"
.string "always returns to the shore.\p"
.string "A giant wave of a talent like you…\n"
.string "I knew you would return!\p"
.string "Oh? You only have one POKéMON\n"
.string "that can battle.\p"
2018-12-07 16:41:08 +01:00
.string "I'm sorry, but I'd like you to come back\n"
2017-11-10 02:21:31 +01:00
.string "with at least two POKéMON.$"