2022-05-19 19:14:13 +02:00
|
|
|
MauvilleCity_Gym_MapScripts::
|
|
|
|
map_script MAP_SCRIPT_ON_LOAD, MauvilleCity_Gym_OnLoad
|
|
|
|
.byte 0
|
|
|
|
|
|
|
|
MauvilleCity_Gym_OnLoad:
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_DeactivatePuzzle
|
|
|
|
switch VAR_MAUVILLE_GYM_STATE
|
|
|
|
case 0, MauvilleCity_Gym_EventScript_UpdateBarriers
|
|
|
|
case 1, MauvilleCity_Gym_EventScript_Switch1Pressed
|
|
|
|
case 2, MauvilleCity_Gym_EventScript_Switch2Pressed
|
|
|
|
case 3, MauvilleCity_Gym_EventScript_Switch3Pressed
|
|
|
|
case 4, MauvilleCity_Gym_EventScript_Switch4Pressed
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_UpdateBarriers::
|
|
|
|
goto_if_set FLAG_MAUVILLE_GYM_BARRIERS_STATE, MauvilleCity_Gym_EventScript_SetAltBarriers
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_SetAltBarriers::
|
|
|
|
setmetatile 3, 11, METATILE_MauvilleGym_RedBeamV1_On, TRUE
|
|
|
|
setmetatile 3, 12, METATILE_MauvilleGym_RedBeamV2_On, TRUE
|
|
|
|
setmetatile 3, 13, METATILE_MauvilleGym_PoleTop_On, TRUE
|
|
|
|
setmetatile 4, 10, METATILE_MauvilleGym_RedBeamH1_On, FALSE
|
|
|
|
setmetatile 5, 10, METATILE_MauvilleGym_RedBeamH2_On, FALSE
|
|
|
|
setmetatile 4, 11, METATILE_MauvilleGym_RedBeamH3_On, TRUE
|
|
|
|
setmetatile 5, 11, METATILE_MauvilleGym_RedBeamH4_On, TRUE
|
|
|
|
setmetatile 7, 10, METATILE_MauvilleGym_RedBeamH1_On, FALSE
|
|
|
|
setmetatile 8, 10, METATILE_MauvilleGym_RedBeamH2_On, FALSE
|
|
|
|
setmetatile 7, 11, METATILE_MauvilleGym_RedBeamH3_On, TRUE
|
|
|
|
setmetatile 8, 11, METATILE_MauvilleGym_RedBeamH4_On, TRUE
|
|
|
|
setmetatile 4, 13, METATILE_MauvilleGym_GreenBeamH1_Off, FALSE
|
|
|
|
setmetatile 5, 13, METATILE_MauvilleGym_GreenBeamH2_Off, FALSE
|
|
|
|
setmetatile 4, 14, METATILE_MauvilleGym_GreenBeamH3_Off, FALSE
|
|
|
|
setmetatile 5, 14, METATILE_MauvilleGym_GreenBeamH4_Off, FALSE
|
|
|
|
setmetatile 1, 10, METATILE_MauvilleGym_GreenBeamH1_Off, FALSE
|
|
|
|
setmetatile 2, 10, METATILE_MauvilleGym_GreenBeamH2_Off, FALSE
|
|
|
|
setmetatile 1, 11, METATILE_MauvilleGym_GreenBeamH3_Off, FALSE
|
|
|
|
setmetatile 2, 11, METATILE_MauvilleGym_GreenBeamH4_Off, FALSE
|
|
|
|
setmetatile 6, 8, METATILE_MauvilleGym_PoleBottom_On, TRUE
|
|
|
|
setmetatile 6, 9, METATILE_MauvilleGym_FloorTile, FALSE
|
|
|
|
setmetatile 6, 10, METATILE_MauvilleGym_PoleTop_Off, FALSE
|
|
|
|
setmetatile 4, 6, METATILE_MauvilleGym_GreenBeamH1_Off, FALSE
|
|
|
|
setmetatile 5, 6, METATILE_MauvilleGym_GreenBeamH2_Off, FALSE
|
|
|
|
setmetatile 4, 7, METATILE_MauvilleGym_GreenBeamH3_Off, FALSE
|
|
|
|
setmetatile 5, 7, METATILE_MauvilleGym_GreenBeamH4_Off, FALSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch1Pressed::
|
|
|
|
setvar VAR_0x8004, 0
|
|
|
|
special MauvilleGymPressSwitch
|
|
|
|
goto MauvilleCity_Gym_EventScript_UpdateBarriers
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch2Pressed::
|
|
|
|
setvar VAR_0x8004, 1
|
|
|
|
special MauvilleGymPressSwitch
|
|
|
|
goto MauvilleCity_Gym_EventScript_UpdateBarriers
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch3Pressed::
|
|
|
|
setvar VAR_0x8004, 2
|
|
|
|
special MauvilleGymPressSwitch
|
|
|
|
goto MauvilleCity_Gym_EventScript_UpdateBarriers
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch4Pressed::
|
|
|
|
setvar VAR_0x8004, 3
|
|
|
|
special MauvilleGymPressSwitch
|
|
|
|
goto MauvilleCity_Gym_EventScript_UpdateBarriers
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_DeactivatePuzzle::
|
|
|
|
special MauvilleGymDeactivatePuzzle
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Wattson::
|
|
|
|
trainerbattle_single TRAINER_WATTSON_1, MauvilleCity_Gym_Text_WattsonIntro, MauvilleCity_Gym_Text_WattsonDefeat, MauvilleCity_Gym_EventScript_WattsonDefeated, NO_MUSIC
|
|
|
|
specialvar VAR_RESULT, ShouldTryRematchBattle
|
|
|
|
goto_if_eq VAR_RESULT, TRUE, MauvilleCity_Gym_EventScript_WattsonRematch
|
|
|
|
goto_if_unset FLAG_RECEIVED_TM34, MauvilleCity_Gym_EventScript_GiveShockWave2
|
|
|
|
goto_if_eq VAR_NEW_MAUVILLE_STATE, 2, MauvilleCity_Gym_EventScript_CompletedNewMauville
|
|
|
|
msgbox MauvilleCity_Gym_Text_WattsonPostBattle, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_WattsonDefeated::
|
|
|
|
message MauvilleCity_Gym_Text_ReceivedDynamoBadge
|
|
|
|
waitmessage
|
|
|
|
call Common_EventScript_PlayGymBadgeFanfare
|
|
|
|
msgbox MauvilleCity_Gym_Text_ExplainDynamoBadgeTakeThis, MSGBOX_DEFAULT
|
|
|
|
setvar VAR_SLATEPORT_OUTSIDE_MUSEUM_STATE, 3
|
|
|
|
clearflag FLAG_HIDE_VERDANTURF_TOWN_SCOTT
|
|
|
|
setflag FLAG_DEFEATED_MAUVILLE_GYM
|
|
|
|
setflag FLAG_BADGE03_GET
|
|
|
|
addvar VAR_PETALBURG_GYM_STATE, 1
|
|
|
|
call_if_eq VAR_PETALBURG_GYM_STATE, 6, Common_EventScript_ReadyPetalburgGymForBattle
|
|
|
|
setvar VAR_0x8008, 3
|
|
|
|
call Common_EventScript_SetGymTrainers
|
|
|
|
special MauvilleGymDeactivatePuzzle
|
|
|
|
special DrawWholeMapView
|
|
|
|
playse SE_UNLOCK
|
|
|
|
call MauvilleCity_Gym_EventScript_GiveShockWave
|
|
|
|
closemessage
|
|
|
|
delay 30
|
|
|
|
playfanfare MUS_REGISTER_MATCH_CALL
|
|
|
|
msgbox MauvilleCity_Gym_Text_RegisteredWattson, MSGBOX_DEFAULT
|
|
|
|
waitfanfare
|
|
|
|
closemessage
|
|
|
|
delay 30
|
|
|
|
setflag FLAG_ENABLE_WATTSON_MATCH_CALL
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GiveShockWave2::
|
|
|
|
giveitem ITEM_TM34
|
|
|
|
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
|
|
|
|
msgbox MauvilleCity_Gym_Text_ExplainShockWave, MSGBOX_DEFAULT
|
|
|
|
setflag FLAG_RECEIVED_TM34
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GiveShockWave::
|
|
|
|
giveitem ITEM_TM34
|
|
|
|
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_BagIsFull
|
|
|
|
msgbox MauvilleCity_Gym_Text_ExplainShockWave, MSGBOX_DEFAULT
|
|
|
|
setflag FLAG_RECEIVED_TM34
|
|
|
|
return
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_CompletedNewMauville::
|
|
|
|
msgbox MauvilleCity_Gym_Text_WattsonGoForthAndEndeavor, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_WattsonRematch::
|
|
|
|
trainerbattle_rematch_double TRAINER_WATTSON_1, MauvilleCity_Gym_Text_WattsonPreRematch, MauvilleCity_Gym_Text_WattsonRematchDefeat, MauvilleCity_Gym_Text_WattsonRematchNeedTwoMons
|
|
|
|
msgbox MauvilleCity_Gym_Text_WattsonPostRematch, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch1::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
goto_if_eq VAR_MAUVILLE_GYM_STATE, 1, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
setvar VAR_MAUVILLE_GYM_STATE, 1
|
|
|
|
setvar VAR_0x8004, 0
|
|
|
|
goto MauvilleCity_Gym_EventScript_PressFloorSwitch
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch2::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
goto_if_eq VAR_MAUVILLE_GYM_STATE, 2, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
setvar VAR_MAUVILLE_GYM_STATE, 2
|
|
|
|
setvar VAR_0x8004, 1
|
|
|
|
goto MauvilleCity_Gym_EventScript_PressFloorSwitch
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch3::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
goto_if_eq VAR_MAUVILLE_GYM_STATE, 3, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
setvar VAR_MAUVILLE_GYM_STATE, 3
|
|
|
|
setvar VAR_0x8004, 2
|
|
|
|
goto MauvilleCity_Gym_EventScript_PressFloorSwitch
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Switch4::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
goto_if_eq VAR_MAUVILLE_GYM_STATE, 4, MauvilleCity_Gym_EventScript_SwitchDoNothing
|
|
|
|
setvar VAR_MAUVILLE_GYM_STATE, 4
|
|
|
|
setvar VAR_0x8004, 3
|
|
|
|
goto MauvilleCity_Gym_EventScript_PressFloorSwitch
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_PressFloorSwitch::
|
|
|
|
special MauvilleGymSetDefaultBarriers
|
|
|
|
special MauvilleGymPressSwitch
|
|
|
|
special DrawWholeMapView
|
|
|
|
playse SE_UNLOCK
|
|
|
|
goto_if_set FLAG_MAUVILLE_GYM_BARRIERS_STATE, MauvilleCity_Gym_EventScript_ClearBarriersAltState
|
|
|
|
goto_if_unset FLAG_MAUVILLE_GYM_BARRIERS_STATE, MauvilleCity_Gym_EventScript_SetBarriersAltState
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_SwitchDoNothing::
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_SetBarriersAltState::
|
|
|
|
setflag FLAG_MAUVILLE_GYM_BARRIERS_STATE
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_ClearBarriersAltState::
|
|
|
|
clearflag FLAG_MAUVILLE_GYM_BARRIERS_STATE
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Kirk::
|
|
|
|
trainerbattle_single TRAINER_KIRK, MauvilleCity_Gym_Text_KirkIntro, MauvilleCity_Gym_Text_KirkDefeat
|
|
|
|
msgbox MauvilleCity_Gym_Text_KirkPostBattle, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Shawn::
|
|
|
|
trainerbattle_single TRAINER_SHAWN, MauvilleCity_Gym_Text_ShawnIntro, MauvilleCity_Gym_Text_ShawnDefeat
|
|
|
|
msgbox MauvilleCity_Gym_Text_ShawnPostBattle, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Ben::
|
|
|
|
trainerbattle_single TRAINER_BEN, MauvilleCity_Gym_Text_BenIntro, MauvilleCity_Gym_Text_BenDefeat
|
|
|
|
msgbox MauvilleCity_Gym_Text_BenPostBattle, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Vivian::
|
|
|
|
trainerbattle_single TRAINER_VIVIAN, MauvilleCity_Gym_Text_VivianIntro, MauvilleCity_Gym_Text_VivianDefeat
|
|
|
|
msgbox MauvilleCity_Gym_Text_VivianPostBattle, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_Angelo::
|
|
|
|
trainerbattle_single TRAINER_ANGELO, MauvilleCity_Gym_Text_AngeloIntro, MauvilleCity_Gym_Text_AngeloDefeat
|
|
|
|
msgbox MauvilleCity_Gym_Text_AngeloPostBattle, MSGBOX_AUTOCLOSE
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GymGuide::
|
|
|
|
lock
|
|
|
|
faceplayer
|
|
|
|
goto_if_set FLAG_DEFEATED_MAUVILLE_GYM, MauvilleCity_Gym_EventScript_GymGuidePostVictory
|
|
|
|
msgbox MauvilleCity_Gym_Text_GymGuideAdvice, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GymGuidePostVictory::
|
|
|
|
msgbox MauvilleCity_Gym_Text_GymGuidePostVictory, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_LeftGymStatue::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_BADGE03_GET, MauvilleCity_Gym_EventScript_GymStatueCertified
|
|
|
|
goto MauvilleCity_Gym_EventScript_GymStatue
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_RightGymStatue::
|
|
|
|
lockall
|
|
|
|
goto_if_set FLAG_BADGE03_GET, MauvilleCity_Gym_EventScript_GymStatueCertified
|
|
|
|
goto MauvilleCity_Gym_EventScript_GymStatue
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GymStatueCertified::
|
|
|
|
msgbox MauvilleCity_Gym_Text_GymStatueCertified, MSGBOX_DEFAULT
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_EventScript_GymStatue::
|
|
|
|
msgbox MauvilleCity_Gym_Text_GymStatue, MSGBOX_DEFAULT
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_GymGuideAdvice:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Hey, how's it going, Champion-\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "bound {PLAYER}?\p"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson, the Leader of Mauville\n"
|
|
|
|
.string "Gym, uses Electric-type Pokémon.\p"
|
|
|
|
.string "If you challenge him with Water-type\n"
|
|
|
|
.string "Pokémon, he'll zap them! Bzzt!\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "And, he's put in switch-controlled\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "doors all over his Gym! Eccentric!\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Hey, go for it!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_GymGuidePostVictory:
|
|
|
|
.string "Whoa, you're electrifying!\n"
|
|
|
|
.string "You've powered the door open!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_KirkIntro:
|
|
|
|
.string "My electric soul, it'll shatter your\n"
|
|
|
|
.string "dreams whole, whoa-yeahah!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_KirkDefeat:
|
|
|
|
.string "That was plugged in, amped up,\n"
|
|
|
|
.string "over-driven electric, man!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_KirkPostBattle:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Pokémon and rock, it's all about heart,\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "whoa-yeah!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ShawnIntro:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "I trained under Wattson!\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "There ain't no way I'll lose easily!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ShawnDefeat:
|
|
|
|
.string "Unplugged and turned off…$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ShawnPostBattle:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson, our Gym Leader, has been\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "around for a long, long time.\p"
|
|
|
|
.string "He was battling even before your\n"
|
|
|
|
.string "daddy was born, that tough coot.$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_BenIntro:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "This Gym's got puzzles!\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Isn't it fun?$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_BenDefeat:
|
|
|
|
.string "It's no fun to lose…$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_BenPostBattle:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson says he likes setting up\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "little traps with switches.$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_VivianIntro:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "With my charm and my Pokémon's moves,\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "you'll be shocked!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_VivianDefeat:
|
|
|
|
.string "I'm shocked by your power!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_VivianPostBattle:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "I've heard that Mauville was founded\n"
|
|
|
|
.string "by Wattson.\p"
|
|
|
|
.string "He was a Trainer long before we\n"
|
|
|
|
.string "became Trainers.\l"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "He must know all sorts of things!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_AngeloIntro:
|
|
|
|
.string "I love shiny things!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_AngeloDefeat:
|
|
|
|
.string "Oh…\n"
|
|
|
|
.string "My eyes are frazzled…$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_AngeloPostBattle:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Mauville Gym's Wattson has a shiny\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "forehead. It makes me happy!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonIntro:
|
|
|
|
.string "I've given up on my plans to convert\n"
|
|
|
|
.string "the city, I have.\p"
|
|
|
|
.string "And so, I put my time into making\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "door traps in my Gym.\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Oh? Now, what are you doing here?\p"
|
|
|
|
.string "What's that? You say you've gotten\n"
|
|
|
|
.string "past all my rigged doors?\p"
|
|
|
|
.string "Wahahahah!\n"
|
|
|
|
.string "Now, that is amusing!\p"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Then, I, Wattson, the Leader of\n"
|
|
|
|
.string "Mauville Gym, shall electrify you!$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonDefeat:
|
|
|
|
.string "Wahahahah!\n"
|
|
|
|
.string "Fine, I lost!\p"
|
|
|
|
.string "You ended up giving me a thrill!\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Take this Badge!$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ReceivedDynamoBadge:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "{PLAYER} received the Dynamo Badge\n"
|
|
|
|
.string "from Wattson.$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ExplainDynamoBadgeTakeThis:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "With the Dynamo Badge, Pokémon can\n"
|
|
|
|
.string "use Rock Smash out of battle.\p"
|
|
|
|
.string "And, it will make your Pokémon a little\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "bit faster, too.\p"
|
|
|
|
.string "Hmm…\n"
|
|
|
|
.string "You should take this, too!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_ExplainShockWave:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "That TM34 there contains Shock Wave.\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "It's a trustworthy move that never\n"
|
|
|
|
.string "misses! You can count on it!\p"
|
|
|
|
.string "… … … … … …$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_RegisteredWattson:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Registered Gym Leader Wattson\n"
|
|
|
|
.string "in the Pokénav.$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonPostBattle:
|
|
|
|
.string "I swell with optimism, seeing a promising\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "young Trainer like you!$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonGoForthAndEndeavor:
|
|
|
|
.string "Wahahahah!\n"
|
|
|
|
.string "Go forth and endeavor, youngster!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_GymStatue:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Mauville City Pokémon Gym$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_GymStatueCertified:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Mauville City Pokémon Gym\p"
|
|
|
|
.string "Wattson's Certified Trainers:\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "{PLAYER}$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonPreRematch:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson: Ah-ha! Here at last!\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "I know what you want.\l"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "You want to battle my Pokémon!\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Wahahahaha!\p"
|
|
|
|
.string "I'll make sparks fly from you!\n"
|
|
|
|
.string "Don't say I didn't warn you!$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonRematchDefeat:
|
|
|
|
.string "Oof…\n"
|
|
|
|
.string "Our batteries ran dry…$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonPostRematch:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson: We'll have to recharge our\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "batteries again.\p"
|
|
|
|
.string "When we're fully charged up, we'll\n"
|
|
|
|
.string "gladly accept your challenge.\p"
|
|
|
|
.string "So, come back again sometime,\n"
|
|
|
|
.string "won't you?$"
|
|
|
|
|
|
|
|
MauvilleCity_Gym_Text_WattsonRematchNeedTwoMons:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Wattson: Ah-ha! Here at last!\n"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "I know what you want.\l"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "You want to battle my Pokémon!\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Wahahahaha!\p"
|
|
|
|
.string "Oops! Wait!\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "You've only one Pokémon with you!\p"
|
2022-05-19 19:14:13 +02:00
|
|
|
.string "Come see me with two or more\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "Pokémon, all right?$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|