pokeemerald/data/event_scripts.s

5848 lines
194 KiB
ArmAsm
Raw Normal View History

#include "constants/global.h"
2019-09-25 20:48:22 +02:00
#include "constants/battle.h"
2018-11-13 15:19:04 +01:00
#include "constants/battle_frontier.h"
#include "constants/battle_setup.h"
2019-09-16 05:47:07 +02:00
#include "constants/berry.h"
2019-08-18 07:35:30 +02:00
#include "constants/contest.h"
2019-09-25 20:48:22 +02:00
#include "constants/daycare.h"
#include "constants/decorations.h"
2019-02-27 19:45:31 +01:00
#include "constants/easy_chat.h"
#include "constants/event_objects.h"
#include "constants/event_object_movement_constants.h"
2018-11-13 15:19:04 +01:00
#include "constants/field_effects.h"
2019-09-13 20:24:07 +02:00
#include "constants/field_specials.h"
2018-11-13 23:28:46 +01:00
#include "constants/flags.h"
#include "constants/game_stat.h"
2019-09-19 00:57:25 +02:00
#include "constants/item.h"
2017-12-11 19:41:13 +01:00
#include "constants/items.h"
2018-11-13 15:19:04 +01:00
#include "constants/heal_locations.h"
2019-01-31 22:51:20 +01:00
#include "constants/layouts.h"
2019-09-25 20:48:22 +02:00
#include "constants/lilycove_lady.h"
#include "constants/map_scripts.h"
#include "constants/maps.h"
2019-09-25 20:48:22 +02:00
#include "constants/metatile_labels.h"
2017-12-11 19:27:51 +01:00
#include "constants/moves.h"
#include "constants/pokemon.h"
2019-09-19 00:57:25 +02:00
#include "constants/script_menu.h"
#include "constants/secret_bases.h"
2017-12-11 19:27:51 +01:00
#include "constants/songs.h"
#include "constants/species.h"
2019-09-25 20:48:22 +02:00
#include "constants/trainer_hill.h"
2018-02-05 17:39:26 +01:00
#include "constants/trainers.h"
2018-11-13 15:19:04 +01:00
#include "constants/vars.h"
2018-12-24 22:23:58 +01:00
#include "constants/weather.h"
2016-11-01 16:29:13 +01:00
.include "asm/macros.inc"
2017-10-24 05:18:35 +02:00
.include "asm/macros/event.inc"
2016-11-01 16:29:13 +01:00
.include "constants/constants.inc"
2016-09-03 10:11:14 +02:00
.section script_data, "aw", %progbits
2016-09-03 04:51:16 +02:00
@ 81DB67C
.include "data/script_cmd_table.inc"
2015-10-10 14:20:38 +02:00
2017-09-02 22:31:37 +02:00
gSpecialVars:: @ 81DBA0C
2017-11-11 01:12:18 +01:00
.4byte gSpecialVar_0x8000
.4byte gSpecialVar_0x8001
.4byte gSpecialVar_0x8002
.4byte gSpecialVar_0x8003
.4byte gSpecialVar_0x8004
.4byte gSpecialVar_0x8005
.4byte gSpecialVar_0x8006
.4byte gSpecialVar_0x8007
.4byte gSpecialVar_0x8008
.4byte gSpecialVar_0x8009
.4byte gSpecialVar_0x800A
.4byte gSpecialVar_0x800B
.4byte gSpecialVar_Facing
.4byte gSpecialVar_Result
.4byte gSpecialVar_ItemId
.4byte gSpecialVar_LastTalked
.4byte gSpecialVar_ContestRank
.4byte gSpecialVar_ContestCategory
.4byte gSpecialVar_MonBoxId
.4byte gSpecialVar_MonBoxPos
2019-02-28 05:54:51 +01:00
.4byte gSpecialVar_Unused_0x8014
2017-11-11 01:12:18 +01:00
.4byte gTrainerBattleOpponent_A
2015-10-10 14:20:38 +02:00
2017-10-14 20:26:25 +02:00
.include "data/specials.inc"
2015-10-10 14:20:38 +02:00
2017-10-12 09:06:19 +02:00
gStdScripts:: @ 81DC2A0
.4byte Std_ObtainItem
.4byte Std_FindItem
.4byte Std_MsgboxNPC
.4byte Std_MsgboxSign
.4byte Std_MsgboxDefault
.4byte Std_MsgboxYesNo
.4byte Std_MsgboxAutoclose
.4byte Std_ObtainDecoration
2018-03-02 14:44:33 +01:00
.4byte Std_RegisteredInMatchCall
.4byte Std_9
.4byte Std_10
2017-11-10 02:21:31 +01:00
gStdScripts_End:: @ 81DC2CC
2018-06-21 00:41:41 +02:00
.include "data/maps/PetalburgCity/scripts.inc"
.include "data/maps/SlateportCity/scripts.inc"
.include "data/maps/MauvilleCity/scripts.inc"
.include "data/maps/RustboroCity/scripts.inc"
.include "data/maps/FortreeCity/scripts.inc"
.include "data/maps/LilycoveCity/scripts.inc"
.include "data/maps/MossdeepCity/scripts.inc"
.include "data/maps/SootopolisCity/scripts.inc"
.include "data/maps/EverGrandeCity/scripts.inc"
.include "data/maps/LittlerootTown/scripts.inc"
.include "data/maps/OldaleTown/scripts.inc"
.include "data/maps/DewfordTown/scripts.inc"
.include "data/maps/LavaridgeTown/scripts.inc"
.include "data/maps/FallarborTown/scripts.inc"
.include "data/maps/VerdanturfTown/scripts.inc"
.include "data/maps/PacifidlogTown/scripts.inc"
.include "data/maps/Route101/scripts.inc"
.include "data/maps/Route102/scripts.inc"
.include "data/maps/Route103/scripts.inc"
.include "data/maps/Route104/scripts.inc"
.include "data/maps/Route105/scripts.inc"
.include "data/maps/Route106/scripts.inc"
.include "data/maps/Route107/scripts.inc"
.include "data/maps/Route108/scripts.inc"
.include "data/maps/Route109/scripts.inc"
.include "data/maps/Route110/scripts.inc"
.include "data/maps/Route111/scripts.inc"
.include "data/maps/Route112/scripts.inc"
.include "data/maps/Route113/scripts.inc"
.include "data/maps/Route114/scripts.inc"
.include "data/maps/Route115/scripts.inc"
.include "data/maps/Route116/scripts.inc"
.include "data/maps/Route117/scripts.inc"
.include "data/maps/Route118/scripts.inc"
.include "data/maps/Route119/scripts.inc"
.include "data/maps/Route120/scripts.inc"
.include "data/maps/Route121/scripts.inc"
.include "data/maps/Route122/scripts.inc"
.include "data/maps/Route123/scripts.inc"
.include "data/maps/Route124/scripts.inc"
.include "data/maps/Route125/scripts.inc"
.include "data/maps/Route126/scripts.inc"
.include "data/maps/Route127/scripts.inc"
.include "data/maps/Route128/scripts.inc"
.include "data/maps/Route129/scripts.inc"
.include "data/maps/Route130/scripts.inc"
.include "data/maps/Route131/scripts.inc"
.include "data/maps/Route132/scripts.inc"
.include "data/maps/Route133/scripts.inc"
.include "data/maps/Route134/scripts.inc"
.include "data/maps/Underwater1/scripts.inc"
.include "data/maps/Underwater2/scripts.inc"
.include "data/maps/Underwater3/scripts.inc"
.include "data/maps/Underwater4/scripts.inc"
.include "data/maps/Underwater5/scripts.inc"
.include "data/maps/Underwater6/scripts.inc"
.include "data/maps/Underwater7/scripts.inc"
.include "data/maps/LittlerootTown_BrendansHouse_1F/scripts.inc"
.include "data/maps/LittlerootTown_BrendansHouse_2F/scripts.inc"
.include "data/maps/LittlerootTown_MaysHouse_1F/scripts.inc"
.include "data/maps/LittlerootTown_MaysHouse_2F/scripts.inc"
.include "data/maps/LittlerootTown_ProfessorBirchsLab/scripts.inc"
.include "data/maps/OldaleTown_House1/scripts.inc"
.include "data/maps/OldaleTown_House2/scripts.inc"
.include "data/maps/OldaleTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/OldaleTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/OldaleTown_Mart/scripts.inc"
.include "data/maps/DewfordTown_House1/scripts.inc"
.include "data/maps/DewfordTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/DewfordTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/DewfordTown_Gym/scripts.inc"
.include "data/maps/DewfordTown_Hall/scripts.inc"
.include "data/maps/DewfordTown_House2/scripts.inc"
.include "data/maps/LavaridgeTown_HerbShop/scripts.inc"
.include "data/maps/LavaridgeTown_Gym_1F/scripts.inc"
.include "data/maps/LavaridgeTown_Gym_B1F/scripts.inc"
.include "data/maps/LavaridgeTown_House/scripts.inc"
.include "data/maps/LavaridgeTown_Mart/scripts.inc"
.include "data/maps/LavaridgeTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/LavaridgeTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/FallarborTown_Mart/scripts.inc"
.include "data/maps/FallarborTown_BattleTentLobby/scripts.inc"
.include "data/maps/FallarborTown_BattleTentCorridor/scripts.inc"
.include "data/maps/FallarborTown_BattleTentBattleRoom/scripts.inc"
.include "data/maps/FallarborTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/FallarborTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/FallarborTown_House1/scripts.inc"
.include "data/maps/FallarborTown_House2/scripts.inc"
.include "data/maps/VerdanturfTown_BattleTentLobby/scripts.inc"
.include "data/maps/VerdanturfTown_BattleTentCorridor/scripts.inc"
.include "data/maps/VerdanturfTown_BattleTentBattleRoom/scripts.inc"
.include "data/maps/VerdanturfTown_Mart/scripts.inc"
.include "data/maps/VerdanturfTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/VerdanturfTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/VerdanturfTown_WandasHouse/scripts.inc"
.include "data/maps/VerdanturfTown_FriendshipRatersHouse/scripts.inc"
.include "data/maps/VerdanturfTown_House/scripts.inc"
.include "data/maps/PacifidlogTown_PokemonCenter_1F/scripts.inc"
.include "data/maps/PacifidlogTown_PokemonCenter_2F/scripts.inc"
.include "data/maps/PacifidlogTown_House1/scripts.inc"
.include "data/maps/PacifidlogTown_House2/scripts.inc"
.include "data/maps/PacifidlogTown_House3/scripts.inc"
.include "data/maps/PacifidlogTown_House4/scripts.inc"
.include "data/maps/PacifidlogTown_House5/scripts.inc"
.include "data/maps/PetalburgCity_WallysHouse/scripts.inc"
.include "data/maps/PetalburgCity_Gym/scripts.inc"
.include "data/maps/PetalburgCity_House1/scripts.inc"
.include "data/maps/PetalburgCity_House2/scripts.inc"
.include "data/maps/PetalburgCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/PetalburgCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/PetalburgCity_Mart/scripts.inc"
.include "data/maps/SlateportCity_SternsShipyard_1F/scripts.inc"
.include "data/maps/SlateportCity_SternsShipyard_2F/scripts.inc"
.include "data/maps/SlateportCity_BattleTentLobby/scripts.inc"
.include "data/maps/SlateportCity_BattleTentCorridor/scripts.inc"
.include "data/maps/SlateportCity_BattleTentBattleRoom/scripts.inc"
.include "data/maps/SlateportCity_House1/scripts.inc"
.include "data/maps/SlateportCity_PokemonFanClub/scripts.inc"
.include "data/maps/SlateportCity_OceanicMuseum_1F/scripts.inc"
.include "data/maps/SlateportCity_OceanicMuseum_2F/scripts.inc"
.include "data/maps/SlateportCity_Harbor/scripts.inc"
.include "data/maps/SlateportCity_House2/scripts.inc"
.include "data/maps/SlateportCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/SlateportCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/SlateportCity_Mart/scripts.inc"
.include "data/maps/MauvilleCity_Gym/scripts.inc"
.include "data/maps/MauvilleCity_BikeShop/scripts.inc"
.include "data/maps/MauvilleCity_House1/scripts.inc"
.include "data/maps/MauvilleCity_GameCorner/scripts.inc"
.include "data/maps/MauvilleCity_House2/scripts.inc"
.include "data/maps/MauvilleCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/MauvilleCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/MauvilleCity_Mart/scripts.inc"
.include "data/maps/RustboroCity_DevonCorp_1F/scripts.inc"
.include "data/maps/RustboroCity_DevonCorp_2F/scripts.inc"
.include "data/maps/RustboroCity_DevonCorp_3F/scripts.inc"
.include "data/maps/RustboroCity_Gym/scripts.inc"
.include "data/maps/RustboroCity_PokemonSchool/scripts.inc"
.include "data/maps/RustboroCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/RustboroCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/RustboroCity_Mart/scripts.inc"
.include "data/maps/RustboroCity_Flat1_1F/scripts.inc"
.include "data/maps/RustboroCity_Flat1_2F/scripts.inc"
.include "data/maps/RustboroCity_House1/scripts.inc"
.include "data/maps/RustboroCity_CuttersHouse/scripts.inc"
.include "data/maps/RustboroCity_House2/scripts.inc"
.include "data/maps/RustboroCity_Flat2_1F/scripts.inc"
.include "data/maps/RustboroCity_Flat2_2F/scripts.inc"
.include "data/maps/RustboroCity_Flat2_3F/scripts.inc"
.include "data/maps/RustboroCity_House3/scripts.inc"
.include "data/maps/FortreeCity_House1/scripts.inc"
.include "data/maps/FortreeCity_Gym/scripts.inc"
.include "data/maps/FortreeCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/FortreeCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/FortreeCity_Mart/scripts.inc"
.include "data/maps/FortreeCity_House2/scripts.inc"
.include "data/maps/FortreeCity_House3/scripts.inc"
.include "data/maps/FortreeCity_House4/scripts.inc"
.include "data/maps/FortreeCity_House5/scripts.inc"
.include "data/maps/FortreeCity_DecorationShop/scripts.inc"
.include "data/maps/LilycoveCity_CoveLilyMotel_1F/scripts.inc"
.include "data/maps/LilycoveCity_CoveLilyMotel_2F/scripts.inc"
.include "data/maps/LilycoveCity_LilycoveMuseum_1F/scripts.inc"
.include "data/maps/LilycoveCity_LilycoveMuseum_2F/scripts.inc"
.include "data/maps/LilycoveCity_ContestLobby/scripts.inc"
.include "data/maps/LilycoveCity_ContestHall/scripts.inc"
.include "data/maps/LilycoveCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/LilycoveCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/LilycoveCity_UnusedMart/scripts.inc"
.include "data/maps/LilycoveCity_PokemonTrainerFanClub/scripts.inc"
.include "data/maps/LilycoveCity_Harbor/scripts.inc"
.include "data/maps/LilycoveCity_MoveDeletersHouse/scripts.inc"
.include "data/maps/LilycoveCity_House1/scripts.inc"
.include "data/maps/LilycoveCity_House2/scripts.inc"
.include "data/maps/LilycoveCity_House3/scripts.inc"
.include "data/maps/LilycoveCity_House4/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStore_1F/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStore_2F/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStore_3F/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStore_4F/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStore_5F/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStoreRooftop/scripts.inc"
.include "data/maps/LilycoveCity_DepartmentStoreElevator/scripts.inc"
.include "data/maps/MossdeepCity_Gym/scripts.inc"
.include "data/maps/MossdeepCity_House1/scripts.inc"
.include "data/maps/MossdeepCity_House2/scripts.inc"
.include "data/maps/MossdeepCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/MossdeepCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/MossdeepCity_Mart/scripts.inc"
.include "data/maps/MossdeepCity_House3/scripts.inc"
.include "data/maps/MossdeepCity_StevensHouse/scripts.inc"
.include "data/maps/MossdeepCity_House4/scripts.inc"
.include "data/maps/MossdeepCity_SpaceCenter_1F/scripts.inc"
.include "data/maps/MossdeepCity_SpaceCenter_2F/scripts.inc"
.include "data/maps/MossdeepCity_GameCorner_1F/scripts.inc"
.include "data/maps/MossdeepCity_GameCorner_B1F/scripts.inc"
.include "data/maps/SootopolisCity_Gym_1F/scripts.inc"
.include "data/maps/SootopolisCity_Gym_B1F/scripts.inc"
.include "data/maps/SootopolisCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/SootopolisCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/SootopolisCity_Mart/scripts.inc"
.include "data/maps/SootopolisCity_House1/scripts.inc"
.include "data/maps/SootopolisCity_House2/scripts.inc"
.include "data/maps/SootopolisCity_House3/scripts.inc"
.include "data/maps/SootopolisCity_House4/scripts.inc"
.include "data/maps/SootopolisCity_House5/scripts.inc"
.include "data/maps/SootopolisCity_House6/scripts.inc"
.include "data/maps/SootopolisCity_House7/scripts.inc"
.include "data/maps/SootopolisCity_LotadAndSeedotHouse/scripts.inc"
.include "data/maps/SootopolisCity_MysteryEventsHouse_1F/scripts.inc"
.include "data/maps/SootopolisCity_MysteryEventsHouse_B1F/scripts.inc"
.include "data/maps/EverGrandeCity_SidneysRoom/scripts.inc"
.include "data/maps/EverGrandeCity_PhoebesRoom/scripts.inc"
.include "data/maps/EverGrandeCity_GlaciasRoom/scripts.inc"
.include "data/maps/EverGrandeCity_DrakesRoom/scripts.inc"
.include "data/maps/EverGrandeCity_ChampionsRoom/scripts.inc"
.include "data/maps/EverGrandeCity_Hall1/scripts.inc"
.include "data/maps/EverGrandeCity_Hall2/scripts.inc"
.include "data/maps/EverGrandeCity_Hall3/scripts.inc"
.include "data/maps/EverGrandeCity_Hall4/scripts.inc"
.include "data/maps/EverGrandeCity_Hall5/scripts.inc"
.include "data/maps/EverGrandeCity_PokemonLeague_1F/scripts.inc"
.include "data/maps/EverGrandeCity_HallOfFame/scripts.inc"
.include "data/maps/EverGrandeCity_PokemonCenter_1F/scripts.inc"
.include "data/maps/EverGrandeCity_PokemonCenter_2F/scripts.inc"
.include "data/maps/EverGrandeCity_PokemonLeague_2F/scripts.inc"
.include "data/maps/Route104_MrBrineysHouse/scripts.inc"
.include "data/maps/Route104_PrettyPetalFlowerShop/scripts.inc"
.include "data/maps/Route111_WinstrateFamilysHouse/scripts.inc"
.include "data/maps/Route111_OldLadysRestStop/scripts.inc"
.include "data/maps/Route112_CableCarStation/scripts.inc"
.include "data/maps/MtChimney_CableCarStation/scripts.inc"
.include "data/maps/Route114_FossilManiacsHouse/scripts.inc"
.include "data/maps/Route114_FossilManiacsTunnel/scripts.inc"
.include "data/maps/Route114_LanettesHouse/scripts.inc"
.include "data/maps/Route116_TunnelersRestHouse/scripts.inc"
.include "data/maps/Route117_PokemonDayCare/scripts.inc"
.include "data/maps/Route121_SafariZoneEntrance/scripts.inc"
.include "data/maps/MeteorFalls_1F_1R/scripts.inc"
.include "data/maps/MeteorFalls_1F_2R/scripts.inc"
.include "data/maps/MeteorFalls_B1F_1R/scripts.inc"
.include "data/maps/MeteorFalls_B1F_2R/scripts.inc"
.include "data/maps/RusturfTunnel/scripts.inc"
.include "data/maps/Underwater_SootopolisCity/scripts.inc"
.include "data/maps/DesertRuins/scripts.inc"
.include "data/maps/GraniteCave_1F/scripts.inc"
.include "data/maps/GraniteCave_B1F/scripts.inc"
.include "data/maps/GraniteCave_B2F/scripts.inc"
.include "data/maps/GraniteCave_StevensRoom/scripts.inc"
.include "data/maps/PetalburgWoods/scripts.inc"
.include "data/maps/MtChimney/scripts.inc"
.include "data/maps/JaggedPass/scripts.inc"
.include "data/maps/FieryPath/scripts.inc"
.include "data/maps/MtPyre_1F/scripts.inc"
.include "data/maps/MtPyre_2F/scripts.inc"
.include "data/maps/MtPyre_3F/scripts.inc"
.include "data/maps/MtPyre_4F/scripts.inc"
.include "data/maps/MtPyre_5F/scripts.inc"
.include "data/maps/MtPyre_6F/scripts.inc"
.include "data/maps/MtPyre_Exterior/scripts.inc"
.include "data/maps/MtPyre_Summit/scripts.inc"
.include "data/maps/AquaHideout_1F/scripts.inc"
.include "data/maps/AquaHideout_B1F/scripts.inc"
.include "data/maps/AquaHideout_B2F/scripts.inc"
.include "data/maps/Underwater_SeafloorCavern/scripts.inc"
.include "data/maps/SeafloorCavern_Entrance/scripts.inc"
.include "data/maps/SeafloorCavern_Room1/scripts.inc"
.include "data/maps/SeafloorCavern_Room2/scripts.inc"
.include "data/maps/SeafloorCavern_Room3/scripts.inc"
.include "data/maps/SeafloorCavern_Room4/scripts.inc"
.include "data/maps/SeafloorCavern_Room5/scripts.inc"
.include "data/maps/SeafloorCavern_Room6/scripts.inc"
.include "data/maps/SeafloorCavern_Room7/scripts.inc"
.include "data/maps/SeafloorCavern_Room8/scripts.inc"
.include "data/maps/SeafloorCavern_Room9/scripts.inc"
.include "data/maps/CaveOfOrigin_Entrance/scripts.inc"
.include "data/maps/CaveOfOrigin_1F/scripts.inc"
.include "data/maps/CaveOfOrigin_UnusedRubySapphireMap1/scripts.inc"
.include "data/maps/CaveOfOrigin_UnusedRubySapphireMap2/scripts.inc"
.include "data/maps/CaveOfOrigin_UnusedRubySapphireMap3/scripts.inc"
.include "data/maps/CaveOfOrigin_B1F/scripts.inc"
.include "data/maps/VictoryRoad_1F/scripts.inc"
.include "data/maps/VictoryRoad_B1F/scripts.inc"
.include "data/maps/VictoryRoad_B2F/scripts.inc"
.include "data/maps/ShoalCave_LowTideEntranceRoom/scripts.inc"
.include "data/maps/ShoalCave_LowTideInnerRoom/scripts.inc"
.include "data/maps/ShoalCave_LowTideStairsRoom/scripts.inc"
.include "data/maps/ShoalCave_LowTideLowerRoom/scripts.inc"
.include "data/maps/ShoalCave_HighTideEntranceRoom/scripts.inc"
.include "data/maps/ShoalCave_HighTideInnerRoom/scripts.inc"
.include "data/maps/NewMauville_Entrance/scripts.inc"
.include "data/maps/NewMauville_Inside/scripts.inc"
.include "data/maps/AbandonedShip_Deck/scripts.inc"
.include "data/maps/AbandonedShip_Corridors_1F/scripts.inc"
.include "data/maps/AbandonedShip_Rooms_1F/scripts.inc"
.include "data/maps/AbandonedShip_Corridors_B1F/scripts.inc"
.include "data/maps/AbandonedShip_Rooms_B1F/scripts.inc"
.include "data/maps/AbandonedShip_Rooms2_B1F/scripts.inc"
.include "data/maps/AbandonedShip_Underwater1/scripts.inc"
.include "data/maps/AbandonedShip_Room_B1F/scripts.inc"
.include "data/maps/AbandonedShip_Rooms2_1F/scripts.inc"
.include "data/maps/AbandonedShip_CaptainsOffice/scripts.inc"
.include "data/maps/AbandonedShip_Underwater2/scripts.inc"
.include "data/maps/AbandonedShip_HiddenFloorCorridors/scripts.inc"
.include "data/maps/AbandonedShip_HiddenFloorRooms/scripts.inc"
.include "data/maps/IslandCave/scripts.inc"
.include "data/maps/AncientTomb/scripts.inc"
.include "data/maps/Underwater_Route134/scripts.inc"
.include "data/maps/Underwater_SealedChamber/scripts.inc"
.include "data/maps/SealedChamber_OuterRoom/scripts.inc"
.include "data/maps/SealedChamber_InnerRoom/scripts.inc"
.include "data/maps/ScorchedSlab/scripts.inc"
.include "data/maps/AquaHideout_UnusedRubyMap1/scripts.inc"
.include "data/maps/AquaHideout_UnusedRubyMap2/scripts.inc"
.include "data/maps/AquaHideout_UnusedRubyMap3/scripts.inc"
.include "data/maps/SkyPillar_Entrance/scripts.inc"
.include "data/maps/SkyPillar_Outside/scripts.inc"
.include "data/maps/SkyPillar_1F/scripts.inc"
.include "data/maps/SkyPillar_2F/scripts.inc"
.include "data/maps/SkyPillar_3F/scripts.inc"
.include "data/maps/SkyPillar_4F/scripts.inc"
.include "data/maps/ShoalCave_LowTideIceRoom/scripts.inc"
.include "data/maps/SkyPillar_5F/scripts.inc"
.include "data/maps/SkyPillar_Top/scripts.inc"
.include "data/maps/MagmaHideout_1F/scripts.inc"
.include "data/maps/MagmaHideout_2F_1R/scripts.inc"
.include "data/maps/MagmaHideout_2F_2R/scripts.inc"
.include "data/maps/MagmaHideout_3F_1R/scripts.inc"
.include "data/maps/MagmaHideout_3F_2R/scripts.inc"
.include "data/maps/MagmaHideout_4F/scripts.inc"
.include "data/maps/MagmaHideout_3F_3R/scripts.inc"
.include "data/maps/MagmaHideout_2F_3R/scripts.inc"
.include "data/maps/MirageTower_1F/scripts.inc"
.include "data/maps/MirageTower_2F/scripts.inc"
.include "data/maps/MirageTower_3F/scripts.inc"
.include "data/maps/MirageTower_4F/scripts.inc"
.include "data/maps/DesertUnderpass/scripts.inc"
.include "data/maps/ArtisanCave_B1F/scripts.inc"
.include "data/maps/ArtisanCave_1F/scripts.inc"
.include "data/maps/Underwater_MarineCave/scripts.inc"
.include "data/maps/MarineCave_Entrance/scripts.inc"
.include "data/maps/MarineCave_End/scripts.inc"
.include "data/maps/TerraCave_Entrance/scripts.inc"
.include "data/maps/TerraCave_End/scripts.inc"
.include "data/maps/AlteringCave/scripts.inc"
.include "data/maps/MeteorFalls_StevensCave/scripts.inc"
.include "data/scripts/shared_secret_base.inc"
2018-06-21 00:41:41 +02:00
.include "data/maps/SingleBattleColosseum/scripts.inc"
.include "data/maps/TradeCenter/scripts.inc"
.include "data/maps/RecordCorner/scripts.inc"
.include "data/maps/DoubleBattleColosseum/scripts.inc"
.include "data/maps/LinkContestRoom1/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_29/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_30/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_31/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_32/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_33/scripts.inc"
.include "data/maps/UnknownLinkContestRoom_25_34/scripts.inc"
2019-01-29 20:29:33 +01:00
.include "data/maps/LinkContestRoom2/scripts.inc"
.include "data/maps/LinkContestRoom3/scripts.inc"
.include "data/maps/LinkContestRoom4/scripts.inc"
.include "data/maps/LinkContestRoom5/scripts.inc"
.include "data/maps/LinkContestRoom6/scripts.inc"
2018-06-21 00:41:41 +02:00
.include "data/maps/InsideOfTruck/scripts.inc"
.include "data/maps/SSTidalCorridor/scripts.inc"
.include "data/maps/SSTidalLowerDeck/scripts.inc"
.include "data/maps/SSTidalRooms/scripts.inc"
.include "data/maps/BattlePyramidSquare01/scripts.inc"
.include "data/maps/BattlePyramidSquare02/scripts.inc"
.include "data/maps/BattlePyramidSquare03/scripts.inc"
.include "data/maps/BattlePyramidSquare04/scripts.inc"
.include "data/maps/BattlePyramidSquare05/scripts.inc"
.include "data/maps/BattlePyramidSquare06/scripts.inc"
.include "data/maps/BattlePyramidSquare07/scripts.inc"
.include "data/maps/BattlePyramidSquare08/scripts.inc"
.include "data/maps/BattlePyramidSquare09/scripts.inc"
.include "data/maps/BattlePyramidSquare10/scripts.inc"
.include "data/maps/BattlePyramidSquare11/scripts.inc"
.include "data/maps/BattlePyramidSquare12/scripts.inc"
.include "data/maps/BattlePyramidSquare13/scripts.inc"
.include "data/maps/BattlePyramidSquare14/scripts.inc"
.include "data/maps/BattlePyramidSquare15/scripts.inc"
.include "data/maps/BattlePyramidSquare16/scripts.inc"
.include "data/maps/UnionRoom/scripts.inc"
.include "data/maps/SafariZone_Northwest/scripts.inc"
.include "data/maps/SafariZone_North/scripts.inc"
.include "data/maps/SafariZone_Southwest/scripts.inc"
.include "data/maps/SafariZone_South/scripts.inc"
.include "data/maps/BattleFrontier_OutsideWest/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerElevator/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerCorridor/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerBattleRoom/scripts.inc"
.include "data/maps/SouthernIsland_Exterior/scripts.inc"
.include "data/maps/SouthernIsland_Interior/scripts.inc"
.include "data/maps/SafariZone_RestHouse/scripts.inc"
.include "data/maps/SafariZone_Northeast/scripts.inc"
.include "data/maps/SafariZone_Southeast/scripts.inc"
.include "data/maps/BattleFrontier_OutsideEast/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerMultiBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerCorridor2/scripts.inc"
.include "data/maps/BattleFrontier_BattleTowerBattleRoom2/scripts.inc"
.include "data/maps/BattleFrontier_BattleDomeLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattleDomeCorridor/scripts.inc"
.include "data/maps/BattleFrontier_BattleDomePreBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattleDomeBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattlePalaceLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattlePalaceCorridor/scripts.inc"
.include "data/maps/BattleFrontier_BattlePalaceBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattlePyramidLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattlePyramidEmptySquare/scripts.inc"
.include "data/maps/BattleFrontier_BattlePyramidTop/scripts.inc"
.include "data/maps/BattleFrontier_BattleArenaLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattleArenaCorridor/scripts.inc"
.include "data/maps/BattleFrontier_BattleArenaBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattleFactoryLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattleFactoryPreBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattleFactoryBattleRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeLobby/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeCorridor/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeThreePathRoom/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeRandomRoom1/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeRandomRoom2/scripts.inc"
.include "data/maps/BattleFrontier_BattlePikeRandomRoom3/scripts.inc"
.include "data/maps/BattleFrontier_RankingHall/scripts.inc"
.include "data/maps/BattleFrontier_Lounge1/scripts.inc"
.include "data/maps/BattleFrontier_BattlePointExchangeServiceCorner/scripts.inc"
.include "data/maps/BattleFrontier_Lounge2/scripts.inc"
.include "data/maps/BattleFrontier_Lounge3/scripts.inc"
.include "data/maps/BattleFrontier_Lounge4/scripts.inc"
.include "data/maps/BattleFrontier_ScottsHouse/scripts.inc"
.include "data/maps/BattleFrontier_Lounge5/scripts.inc"
.include "data/maps/BattleFrontier_Lounge6/scripts.inc"
.include "data/maps/BattleFrontier_Lounge7/scripts.inc"
.include "data/maps/BattleFrontier_ReceptionGate/scripts.inc"
.include "data/maps/BattleFrontier_Lounge8/scripts.inc"
.include "data/maps/BattleFrontier_Lounge9/scripts.inc"
.include "data/maps/BattleFrontier_PokemonCenter_1F/scripts.inc"
.include "data/maps/BattleFrontier_PokemonCenter_2F/scripts.inc"
.include "data/maps/BattleFrontier_Mart/scripts.inc"
.include "data/maps/FarawayIsland_Entrance/scripts.inc"
.include "data/maps/FarawayIsland_Interior/scripts.inc"
.include "data/maps/BirthIsland_Exterior/scripts.inc"
.include "data/maps/BirthIsland_Harbor/scripts.inc"
.include "data/maps/TrainerHill_Entrance/scripts.inc"
.include "data/maps/TrainerHill_1F/scripts.inc"
.include "data/maps/TrainerHill_2F/scripts.inc"
.include "data/maps/TrainerHill_3F/scripts.inc"
.include "data/maps/TrainerHill_4F/scripts.inc"
.include "data/maps/TrainerHill_Roof/scripts.inc"
.include "data/maps/NavelRock_Exterior/scripts.inc"
.include "data/maps/NavelRock_Harbor/scripts.inc"
.include "data/maps/NavelRock_Entrance/scripts.inc"
.include "data/maps/NavelRock_B1F/scripts.inc"
.include "data/maps/NavelRock_Fork/scripts.inc"
.include "data/maps/NavelRock_Up1/scripts.inc"
.include "data/maps/NavelRock_Up2/scripts.inc"
.include "data/maps/NavelRock_Up3/scripts.inc"
.include "data/maps/NavelRock_Up4/scripts.inc"
.include "data/maps/NavelRock_Top/scripts.inc"
.include "data/maps/NavelRock_Down01/scripts.inc"
.include "data/maps/NavelRock_Down02/scripts.inc"
.include "data/maps/NavelRock_Down03/scripts.inc"
.include "data/maps/NavelRock_Down04/scripts.inc"
.include "data/maps/NavelRock_Down05/scripts.inc"
.include "data/maps/NavelRock_Down06/scripts.inc"
.include "data/maps/NavelRock_Down07/scripts.inc"
.include "data/maps/NavelRock_Down08/scripts.inc"
.include "data/maps/NavelRock_Down09/scripts.inc"
.include "data/maps/NavelRock_Down10/scripts.inc"
.include "data/maps/NavelRock_Down11/scripts.inc"
.include "data/maps/NavelRock_Bottom/scripts.inc"
.include "data/maps/TrainerHill_Elevator/scripts.inc"
.include "data/maps/Route104_Prototype/scripts.inc"
.include "data/maps/Route104_PrototypePrettyPetalFlowerShop/scripts.inc"
.include "data/maps/Route109_SeashoreHouse/scripts.inc"
.include "data/maps/Route110_TrickHouseEntrance/scripts.inc"
.include "data/maps/Route110_TrickHouseEnd/scripts.inc"
.include "data/maps/Route110_TrickHouseCorridor/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle1/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle2/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle3/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle4/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle5/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle6/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle7/scripts.inc"
.include "data/maps/Route110_TrickHousePuzzle8/scripts.inc"
2018-06-21 00:42:01 +02:00
.include "data/maps/Route110_SeasideCyclingRoadNorthEntrance/scripts.inc"
.include "data/maps/Route110_SeasideCyclingRoadSouthEntrance/scripts.inc"
2018-06-21 00:41:41 +02:00
.include "data/maps/Route113_GlassWorkshop/scripts.inc"
.include "data/maps/Route123_BerryMastersHouse/scripts.inc"
.include "data/maps/Route119_WeatherInstitute_1F/scripts.inc"
.include "data/maps/Route119_WeatherInstitute_2F/scripts.inc"
.include "data/maps/Route119_House/scripts.inc"
.include "data/maps/Route124_DivingTreasureHuntersHouse/scripts.inc"
Std_MsgboxNPC: @ 8271315
2017-11-11 01:12:18 +01:00
lock
faceplayer
message 0x0
waitmessage
waitbuttonpress
release
return
Std_MsgboxSign: @ 8271320
2017-11-11 01:12:18 +01:00
lockall
message 0x0
waitmessage
waitbuttonpress
releaseall
return
Std_MsgboxDefault: @ 827132A
2017-11-11 01:12:18 +01:00
message 0x0
waitmessage
waitbuttonpress
return
2015-10-10 14:20:38 +02:00
Std_MsgboxYesNo: @ 8271332
2017-11-11 01:12:18 +01:00
message 0x0
waitmessage
yesnobox 20, 8
return
Std_9: @ 827133C
message 0x0
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_POINTGET
2017-11-11 01:12:18 +01:00
waitfanfare
waitmessage
return
2015-10-10 14:20:38 +02:00
2017-11-11 01:12:18 +01:00
Std_10: @ 8271347
pokenavcall 0x0
waitmessage
return
2015-10-10 14:20:38 +02:00
EventScript_UnusedReturn: @ 827134E
2017-11-11 01:12:18 +01:00
return
Common_EventScript_SaveGame:: @ 827134F
2018-03-28 21:09:27 +02:00
special SaveGame
2017-11-11 01:12:18 +01:00
waitstate
return
2015-10-10 14:20:38 +02:00
EventScript_271354:: @ 8271354
2017-11-11 01:12:18 +01:00
cmdD8
cmdD9
2018-12-07 23:50:56 +01:00
.include "data/scripts/trainer_battle.inc"
Std_MsgboxAutoclose:: @ 8271494
2017-11-11 01:12:18 +01:00
message 0x0
waitmessage
waitbuttonpress
release
return
EventScript_ResetAllBerries:: @ 827149D
2019-09-16 05:47:07 +02:00
setberrytree 2, ITEM_TO_BERRY(ITEM_ORAN_BERRY), BERRY_STAGE_BERRIES
setberrytree 1, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 11, ITEM_TO_BERRY(ITEM_ORAN_BERRY), BERRY_STAGE_BERRIES
setberrytree 13, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 4, ITEM_TO_BERRY(ITEM_ORAN_BERRY), BERRY_STAGE_BERRIES
setberrytree 76, ITEM_TO_BERRY(ITEM_CHERI_BERRY), BERRY_STAGE_BERRIES
setberrytree 8, ITEM_TO_BERRY(ITEM_CHERI_BERRY), BERRY_STAGE_BERRIES
setberrytree 10, ITEM_TO_BERRY(ITEM_LEPPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 25, ITEM_TO_BERRY(ITEM_PINAP_BERRY), BERRY_STAGE_BERRIES
setberrytree 26, ITEM_TO_BERRY(ITEM_CHESTO_BERRY), BERRY_STAGE_BERRIES
setberrytree 66, ITEM_TO_BERRY(ITEM_CHESTO_BERRY), BERRY_STAGE_BERRIES
setberrytree 67, ITEM_TO_BERRY(ITEM_PINAP_BERRY), BERRY_STAGE_BERRIES
setberrytree 69, ITEM_TO_BERRY(ITEM_KELPSY_BERRY), BERRY_STAGE_BERRIES
setberrytree 70, ITEM_TO_BERRY(ITEM_KELPSY_BERRY), BERRY_STAGE_BERRIES
setberrytree 71, ITEM_TO_BERRY(ITEM_KELPSY_BERRY), BERRY_STAGE_BERRIES
setberrytree 55, ITEM_TO_BERRY(ITEM_BLUK_BERRY), BERRY_STAGE_BERRIES
setberrytree 56, ITEM_TO_BERRY(ITEM_BLUK_BERRY), BERRY_STAGE_BERRIES
setberrytree 5, ITEM_TO_BERRY(ITEM_CHERI_BERRY), BERRY_STAGE_BERRIES
setberrytree 6, ITEM_TO_BERRY(ITEM_LEPPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 7, ITEM_TO_BERRY(ITEM_CHERI_BERRY), BERRY_STAGE_BERRIES
setberrytree 16, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 17, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 18, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 29, ITEM_TO_BERRY(ITEM_WEPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 28, ITEM_TO_BERRY(ITEM_WEPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 27, ITEM_TO_BERRY(ITEM_WEPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 24, ITEM_TO_BERRY(ITEM_RAWST_BERRY), BERRY_STAGE_BERRIES
setberrytree 23, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 22, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 21, ITEM_TO_BERRY(ITEM_RAWST_BERRY), BERRY_STAGE_BERRIES
setberrytree 19, ITEM_TO_BERRY(ITEM_RAZZ_BERRY), BERRY_STAGE_BERRIES
setberrytree 20, ITEM_TO_BERRY(ITEM_RAZZ_BERRY), BERRY_STAGE_BERRIES
setberrytree 80, ITEM_TO_BERRY(ITEM_ORAN_BERRY), BERRY_STAGE_BERRIES
setberrytree 81, ITEM_TO_BERRY(ITEM_ORAN_BERRY), BERRY_STAGE_BERRIES
setberrytree 77, ITEM_TO_BERRY(ITEM_PERSIM_BERRY), BERRY_STAGE_BERRIES
setberrytree 78, ITEM_TO_BERRY(ITEM_PERSIM_BERRY), BERRY_STAGE_BERRIES
setberrytree 68, ITEM_TO_BERRY(ITEM_PERSIM_BERRY), BERRY_STAGE_BERRIES
setberrytree 31, ITEM_TO_BERRY(ITEM_SITRUS_BERRY), BERRY_STAGE_BERRIES
setberrytree 33, ITEM_TO_BERRY(ITEM_SITRUS_BERRY), BERRY_STAGE_BERRIES
setberrytree 34, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 35, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 36, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 83, ITEM_TO_BERRY(ITEM_HONDEW_BERRY), BERRY_STAGE_BERRIES
setberrytree 84, ITEM_TO_BERRY(ITEM_HONDEW_BERRY), BERRY_STAGE_BERRIES
setberrytree 85, ITEM_TO_BERRY(ITEM_SITRUS_BERRY), BERRY_STAGE_BERRIES
setberrytree 86, ITEM_TO_BERRY(ITEM_LEPPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 37, ITEM_TO_BERRY(ITEM_ASPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 38, ITEM_TO_BERRY(ITEM_ASPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 39, ITEM_TO_BERRY(ITEM_ASPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 40, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 41, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 42, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 46, ITEM_TO_BERRY(ITEM_WEPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 45, ITEM_TO_BERRY(ITEM_PINAP_BERRY), BERRY_STAGE_BERRIES
setberrytree 44, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 43, ITEM_TO_BERRY(ITEM_RAZZ_BERRY), BERRY_STAGE_BERRIES
setberrytree 47, ITEM_TO_BERRY(ITEM_PERSIM_BERRY), BERRY_STAGE_BERRIES
setberrytree 48, ITEM_TO_BERRY(ITEM_ASPEAR_BERRY), BERRY_STAGE_BERRIES
setberrytree 49, ITEM_TO_BERRY(ITEM_RAWST_BERRY), BERRY_STAGE_BERRIES
setberrytree 50, ITEM_TO_BERRY(ITEM_CHESTO_BERRY), BERRY_STAGE_BERRIES
setberrytree 52, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 53, ITEM_TO_BERRY(ITEM_NANAB_BERRY), BERRY_STAGE_BERRIES
setberrytree 62, ITEM_TO_BERRY(ITEM_LEPPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 64, ITEM_TO_BERRY(ITEM_LEPPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 58, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 59, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 60, ITEM_TO_BERRY(ITEM_GREPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 61, ITEM_TO_BERRY(ITEM_GREPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 79, ITEM_TO_BERRY(ITEM_QUALOT_BERRY), BERRY_STAGE_BERRIES
setberrytree 14, ITEM_TO_BERRY(ITEM_QUALOT_BERRY), BERRY_STAGE_BERRIES
setberrytree 15, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 30, ITEM_TO_BERRY(ITEM_POMEG_BERRY), BERRY_STAGE_BERRIES
setberrytree 65, ITEM_TO_BERRY(ITEM_GREPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 72, ITEM_TO_BERRY(ITEM_GREPA_BERRY), BERRY_STAGE_BERRIES
setberrytree 73, ITEM_TO_BERRY(ITEM_QUALOT_BERRY), BERRY_STAGE_BERRIES
setberrytree 74, ITEM_TO_BERRY(ITEM_QUALOT_BERRY), BERRY_STAGE_BERRIES
setberrytree 87, ITEM_TO_BERRY(ITEM_PECHA_BERRY), BERRY_STAGE_BERRIES
setberrytree 88, ITEM_TO_BERRY(ITEM_SITRUS_BERRY), BERRY_STAGE_BERRIES
setberrytree 89, ITEM_TO_BERRY(ITEM_RAWST_BERRY), BERRY_STAGE_BERRIES
setberrytree 82, ITEM_TO_BERRY(ITEM_LIECHI_BERRY), BERRY_STAGE_BERRIES
2017-11-11 01:12:18 +01:00
return
EventScript_ResetAllMapFlags:: @ 82715DE
2018-10-18 21:28:59 +02:00
setflag FLAG_LINK_CONTEST_POKE_BALL
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_111_VICTORIA_WINSTRATE
setflag FLAG_HIDE_ROUTE_111_VIVI_WINSTRATE
setflag FLAG_HIDE_ROUTE_111_VICKY_WINSTRATE
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_BIRCH
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_RIVAL
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_POKEBALL_CYNDAQUIL
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_POKEBALL_TOTODILE
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_POKEBALL_CHIKORITA
setflag FLAG_HIDE_PETALBURG_CITY_WALLY
2018-10-19 20:59:18 +02:00
setflag FLAG_UNKNOWN_0x363
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_RUSTBORO_CITY_AQUA_GRUNT
setflag FLAG_HIDE_RUSTBORO_CITY_DEVON_EMPLOYEE_1
setflag FLAG_HIDE_RUSBORO_CITY_RIVAL
setflag FLAG_HIDE_RUSTBORO_CITY_SCIENTIST
setflag FLAG_HIDE_LITTLEROOT_TOWN_FAT_MAN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
setflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY
setflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_108_MR_BRINEY
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
setflag FLAG_HIDE_ROUTE_104_WHITE_HERB_FLORIST
setflag FLAG_HIDE_ROUTE_110_BIRCH
setflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_CONTEST_ATTENDANT_1
setflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_CONTEST_ATTENDANT_2
setflag FLAG_HIDE_LILYCOVE_MUSEUM_PATRON_1
setflag FLAG_HIDE_LILYCOVE_MUSEUM_PATRON_2
setflag FLAG_HIDE_LILYCOVE_MUSEUM_PATRON_3
setflag FLAG_HIDE_LILYCOVE_MUSEUM_PATRON_4
setflag FLAG_HIDE_LILYCOVE_MUSEUM_TOURISTS
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_PETALBURG_GYM_GREETER
setflag FLAG_HIDE_PETALBURG_GYM_WALLYS_UNCLE
setflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_BRENDAN
setflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_BRENDAN
setflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_RIVAL_BEDROOM
setflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_RIVAL_BEDROOM
setflag FLAG_HIDE_PLAYERS_HOUSE_DAD
setflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_2F_PICHU_DOLL
setflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_2F_SWABLU_DOLL
2018-08-11 23:51:54 +02:00
setflag FLAG_HIDE_FANCLUB_OLD_LADY
setflag FLAG_HIDE_FANCLUB_BOY
setflag FLAG_HIDE_FANCLUB_LITTLE_BOY
setflag FLAG_HIDE_FANCLUB_LADY
setflag FLAG_HIDE_LILYCOVE_FAN_CLUB_INTERVIEWER
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_118_GABBY_AND_TY_1
setflag FLAG_HIDE_ROUTE_120_GABBY_AND_TY_1
setflag FLAG_HIDE_ROUTE_111_GABBY_AND_TY_3
setflag FLAG_HIDE_ROUTE_118_GABBY_AND_TY_2
setflag FLAG_HIDE_ROUTE_120_GABBY_AND_TY_2
setflag FLAG_HIDE_ROUTE_111_GABBY_AND_TY_2
setflag FLAG_HIDE_ROUTE_118_GABBY_AND_TY_3
2018-10-19 20:59:18 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_CONTEST_REPORTER
setflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_REPORTER
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_WALLY
setflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_LOVER_MAN
setflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_WALLYS_UNCLE
setflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_LOVER_WOMAN
setflag FLAG_HIDE_VERDANTURF_TOWN_SCOTT
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_PETALBURG_CITY_WALLYS_UNCLE
setflag FLAG_HIDE_PETALBURG_GYM_WALLY
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_STERNS_SHIPYARD_MR_BRINEY
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SEAFLOOR_CAVERN_ROOM_9_ARCHIE
setflag FLAG_HIDE_SEAFLOOR_CAVERN_ROOM_9_MAXIE
setflag FLAG_HIDE_SEAFLOOR_CAVERN_ROOM_9_MAGMA_GRUNTS
setflag FLAG_HIDE_SEAFLOOR_CAVERN_ROOM_9_KYOGRE_1
setflag FLAG_HIDE_MAGMA_HIDEOUT_4F_GROUDON_1
setflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_CAPTAIN_STERN
setflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_AQUA_GRUNT
setflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_ARCHIE
setflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_SS_TIDAL
setflag FLAG_HIDE_LILYCOVE_HARBOR_SSTIDAL
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_GABBY_AND_TY
setflag FLAG_HIDE_SLATEPORT_CITY_CAPTAIN_STERN
setflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_SUBMARINE_SHADOW
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_119_RIVAL
setflag FLAG_HIDE_ROUTE_119_SCOTT
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SOOTOPOLIS_CITY_STEVEN
setflag FLAG_HIDE_SOOTOPOLIS_CITY_WALLACE
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_LANETTES_HOUSE_LANETTE
setflag FLAG_HIDE_TRICK_HOUSE_ENTRANCE_MAN
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_MT_CHIMNEY_TRAINERS
setflag FLAG_HIDE_MT_CHIMNEY_LAVA_COOKIE_LADY
setflag FLAG_HIDE_RUSTURF_TUNNEL_OLD_MAN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_116_MR_BRINEY
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_RUSTURF_TUNNEL_PEEKO
setflag FLAG_HIDE_RUSTURF_TUNNEL_AQUA_GRUNT
setflag FLAG_HIDE_RUSTURF_TUNNEL_LOVER_MAN
setflag FLAG_HIDE_RUSTURF_TUNNEL_LOVER_WOMAN
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_OCEANIC_MUSEUM_2F_ARCHIE
setflag FLAG_HIDE_SLATEPORT_CITY_OCEANIC_MUSEUM_2F_AQUA_GRUNT_1
setflag FLAG_HIDE_SLATEPORT_CITY_OCEANIC_MUSEUM_2F_AQUA_GRUNT_2
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_SLATEPORT_MUSEUM_POPULATION
setflag FLAG_HIDE_BATTLE_TOWER_OPPONENT
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_MOM_OUTSIDE
setflag FLAG_HIDE_LITTLE_ROOT_TOWN_PLAYERS_BEDROOM_MOM
setflag FLAG_HIDE_LITTLEROOT_TOWN_RIVAL
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCH
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_WEATHER_INSTITUTE_1F_WORKERS
2018-10-19 20:59:18 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_UNKNOWN_0x380
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_101_BIRCH
setflag FLAG_HIDE_ROUTE_103_BIRCH
setflag FLAG_HIDE_LILYCOVE_HARBOR_FERRY_SAILOR
setflag FLAG_HIDE_LILYCOVE_HARBOR_EVENT_TICKET_TAKER
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SOUTHERN_ISLAND_EON_STONE
setflag FLAG_HIDE_SOUTHERN_ISLAND_UNCHOSEN_EON_DUO_MON
2019-01-02 22:12:43 +01:00
setflag FLAG_UNKNOWN_0x393
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_MT_PYRE_SUMMIT_MAXIE
setflag FLAG_HIDE_MAUVILLE_CITY_WATTSON
setflag FLAG_HIDE_MAUVILLE_CITY_SCOTT
setflag FLAG_HIDE_CHAMPIONS_ROOM_RIVAL
setflag FLAG_HIDE_CHAMPIONS_ROOM_BIRCH
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_110_RIVAL_2
setflag FLAG_HIDE_ROUTE_119_RIVAL_ON_BIKE
setflag FLAG_HIDE_ROUTE_104_RIVAL
setflag FLAG_HIDE_LILCOVE_MOTEL_GAME_DESIGNERS
setflag FLAG_HIDE_LAVARIDGE_TOWN_RIVAL_1
setflag FLAG_HIDE_LAVARIDGE_TOWN_RIVAL_2
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_MOSSDEEP_CITY_HOUSE_2_WINGULL
setflag FLAG_HIDE_METEOR_FALLS_TEAM_AQUA
setflag FLAG_HIDE_DEWFORD_HALL_SLUDGE_BOMB_MAN
setflag FLAG_HIDE_FALLARBOR_HOUSE_1_PROF_COZMO
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_WEATHER_INSTITUTE_2F_AQUA_GRUNT_M
setflag FLAG_HIDE_ROUTE_128_STEVEN
setflag FLAG_HIDE_ROUTE_128_ARCHIE
setflag FLAG_HIDE_ROUTE_128_MAXIE
setflag FLAG_HIDE_ROUTE_116_DEVON_EMPLOYEE
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_TM_SALESMAN
setflag FLAG_HIDE_SLATEPORT_CITY_SCOTT
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_VICTORY_ROAD_ENTRANCE_WALLY
setflag FLAG_HIDE_VICTORY_ROAD_EXIT_WALLY
setflag FLAG_HIDE_SS_TIDAL_CORRIDOR_MR_BRINEY
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_MOSSDEEP_CITY_STEVENS_HOUSE_STEVEN
setflag FLAG_HIDE_MOSSDEEP_CITY_STEVENS_HOUSE_BELDUM_POKEBALL
setflag FLAG_HIDE_MOSSDEEP_CITY_STEVENS_HOUSE_INVISIBLE_NINJA_BOY
setflag FLAG_HIDE_OLDALE_TOWN_RIVAL
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_101_BOY
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_PETALBURG_CITY_SCOTT
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SOOTOPOLIS_CITY_RAYQUAZA
setflag FLAG_HIDE_SOOTOPOLIS_CITY_KYOGRE
setflag FLAG_HIDE_SOOTOPOLIS_CITY_GROUDON
setflag FLAG_HIDE_SOOTOPOLIS_CITY_RESIDENTS
setflag FLAG_HIDE_SOOTOPOLIS_CITY_ARCHIE
setflag FLAG_HIDE_SOOTOPOLIS_CITY_MAXIE
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_111_DESERT_FOSSIL
setflag FLAG_HIDE_ROUTE_111_PLAYER_DESCENT
setflag FLAG_HIDE_DESERT_UNDERPASS_FOSSIL
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_MOSSDEEP_CITY_TEAM_MAGMA
setflag FLAG_HIDE_MOSSDEEP_CITY_SPACE_CENTER_1F_TEAM_MAGMA
setflag FLAG_HIDE_MOSSDEEP_CITY_SPACE_CENTER_2F_TEAM_MAGMA
setflag FLAG_HIDE_MOSSDEEP_CITY_SPACE_CENTER_2F_STEVEN
setflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_BLEND_MASTER_ONLOOKERS
setflag FLAG_HIDE_DEOXYS
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SAFARI_ZONE_SOUTH_EAST_EXPANSION
setflag FLAG_HIDE_FALLORBOR_TOWN_BATTLE_TENT_SCOTT
setflag FLAG_HIDE_EVER_GRANDE_POKEMON_CENTER_1F_SCOTT
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SKY_PILLAR_WALLACE
setflag FLAG_RAYQUAZA_ON_SKY_TOWER_SUMMIT
call EventScript_ResetAllBerries
2017-11-11 01:12:18 +01:00
end
2017-11-10 02:21:31 +01:00
EverGrandeCity_HallOfFame_EventScript_2717C1:: @ 82717C1
special sub_81AFDD0
2019-01-02 22:12:43 +01:00
setflag FLAG_IS_CHAMPION
call EverGrandeCity_HallOfFame_EventScript_ResetDefeatedEventLegendaries
compare VAR_FOSSIL_MANIAC_STATE, 0
2018-12-22 03:32:45 +01:00
call_if_eq EverGrandeCity_HallOfFame_EventScript_271839
clearflag FLAG_HIDE_LILCOVE_MOTEL_GAME_DESIGNERS
call EverGrandeCity_HallOfFame_EventScript_ResetEliteFour
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_SLATEPORT_CITY_STERNS_SHIPYARD_MR_BRINEY
clearflag FLAG_HIDE_SS_TIDAL_CORRIDOR_MR_BRINEY
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_MOSSDEEP_CITY_STEVENS_HOUSE_INVISIBLE_NINJA_BOY
2019-02-22 10:18:43 +01:00
setvar VAR_STEVENS_HOUSE_STATE, 2
2018-10-19 03:32:21 +02:00
setflag FLAG_HIDE_VICTORY_ROAD_ENTRANCE_WALLY
clearflag FLAG_HIDE_VICTORY_ROAD_EXIT_WALLY
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_SLATEPORT_CITY_HARBOR_SS_TIDAL
clearflag FLAG_HIDE_LILYCOVE_HARBOR_SSTIDAL
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_SAFARI_ZONE_SOUTH_CONSTRUCTION_WORKERS
clearflag FLAG_HIDE_SAFARI_ZONE_SOUTH_EAST_EXPANSION
setflag FLAG_HIDE_LILYCOVE_CITY_RIVAL
2017-11-10 02:21:31 +01:00
special sub_813BA60
2019-01-02 22:12:43 +01:00
call_if_unset FLAG_RECEIVED_SS_TICKET, EverGrandeCity_HallOfFame_EventScript_271843
call_if_unset FLAG_RECEIVED_BELDUM, EverGrandeCity_HallOfFame_EventScript_27183F
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BRENDANS_HOUSE_RIVAL_BEDROOM
setflag FLAG_HIDE_LITTLEROOT_TOWN_MAYS_HOUSE_RIVAL_BEDROOM
2019-08-03 20:12:48 +02:00
compare VAR_DEX_UPGRADE_JOHTO_STARTER_STATE, 0
2018-12-22 03:32:45 +01:00
call_if_eq EverGrandeCity_HallOfFame_EventScript_271851
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_HallOfFame_EventScript_ResetDefeatedEventLegendaries:: @ 8271829
2019-01-02 22:12:43 +01:00
clearflag FLAG_DEFEATED_MEW
clearflag FLAG_DEFEATED_LATIAS_OR_LATIOS
clearflag FLAG_DEFEATED_DEOXYS
clearflag FLAG_DEFEATED_LUGIA
clearflag FLAG_DEFEATED_HO_OH
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_HallOfFame_EventScript_271839:: @ 8271839
setvar VAR_FOSSIL_MANIAC_STATE, 1
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_HallOfFame_EventScript_27183F:: @ 827183F
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_MOSSDEEP_CITY_STEVENS_HOUSE_BELDUM_POKEBALL
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_HallOfFame_EventScript_271843:: @ 8271843
setvar VAR_LITTLEROOT_HOUSES_STATE, 3
setvar VAR_LITTLEROOT_HOUSES_STATE_2, 3
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_PLAYERS_HOUSE_DAD
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_HallOfFame_EventScript_271851:: @ 8271851
2019-08-03 20:12:48 +02:00
setvar VAR_DEX_UPGRADE_JOHTO_STARTER_STATE, 1
2017-11-10 02:21:31 +01:00
return
2015-10-10 14:20:38 +02:00
2018-02-12 15:01:43 +01:00
EventScript_WhiteOut:: @ 8271857
call EverGrandeCity_HallOfFame_EventScript_ResetEliteFour
2019-02-18 07:03:44 +01:00
goto EventScript_ResetMrBriney
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
2019-02-27 04:11:43 +01:00
EventScript_ResetMrBriney:: @ 8271862
compare VAR_BRINEY_LOCATION, 1
goto_if_eq EventScript_MoveMrBrineyToHouse
compare VAR_BRINEY_LOCATION, 2
goto_if_eq EventScript_MoveMrBrineyToDewford
compare VAR_BRINEY_LOCATION, 3
goto_if_eq EventScript_MoveMrBrineyToRoute108
2017-11-11 01:12:18 +01:00
end
EventScript_MoveMrBrineyToHouse:: @ 8271884
setflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_108_MR_BRINEY
setflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
clearflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
clearflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
clearflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
2017-11-11 01:12:18 +01:00
end
2017-11-10 02:21:31 +01:00
EventScript_MoveMrBrineyToDewford:: @ 827189A
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_108_MR_BRINEY
setflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
setflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
setflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
clearflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
clearflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2017-11-11 01:12:18 +01:00
end
EventScript_MoveMrBrineyToRoute108:: @ 82718B3
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
setflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
setflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
setflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2018-10-19 19:04:47 +02:00
clearflag FLAG_HIDE_ROUTE_108_MR_BRINEY
clearflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
2017-11-11 01:12:18 +01:00
end
2017-11-10 02:21:31 +01:00
EverGrandeCity_HallOfFame_EventScript_ResetEliteFour:: @ 82718CC
2019-04-16 16:40:32 +02:00
clearflag FLAG_DEFEATED_ELITE_4_SIDNEY
2019-01-02 22:12:43 +01:00
clearflag FLAG_DEFEATED_ELITE_4_PHOEBE
clearflag FLAG_DEFEATED_ELITE_4_GLACIA
clearflag FLAG_DEFEATED_ELITE_4_DRAKE
setvar VAR_ELITE_4_STATE, 0
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
Common_EventScript_UpdateBrineyLocation:: @ 82718DE
2019-02-23 02:21:26 +01:00
goto_if_unset FLAG_RECEIVED_POKENAV, Common_EventScript_NopReturn
goto_if_set FLAG_DEFEATED_PETALBURG_GYM, Common_EventScript_NopReturn
2019-08-15 05:38:42 +02:00
goto_if_unset FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT, EventScript_SetBrineyLocation_House
goto_if_unset FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN, EventScript_SetBrineyLocation_Dewford
goto_if_unset FLAG_HIDE_ROUTE_108_MR_BRINEY, EventScript_SetBrineyLocation_Route108
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
EventScript_SetBrineyLocation_House:: @ 827190C
setvar VAR_BRINEY_LOCATION, 1
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
EventScript_SetBrineyLocation_Dewford:: @ 8271912
setvar VAR_BRINEY_LOCATION, 2
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
EventScript_SetBrineyLocation_Route108:: @ 8271918
setvar VAR_BRINEY_LOCATION, 3
2017-11-10 02:21:31 +01:00
return
.include "data/scripts/pkmn_center_nurse.inc"
2017-11-10 02:21:31 +01:00
2017-11-11 01:12:18 +01:00
Std_ObtainItem:: @ 8271AD3
giveitem VAR_0x8000, VAR_0x8001
2017-11-11 01:12:18 +01:00
copyvar VAR_0x8007, VAR_RESULT
call EventScript_271AE3
return
EventScript_271AE3:: @ 8271AE3
bufferitemnameplural 1, VAR_0x8000, VAR_0x8001
2017-11-11 01:12:18 +01:00
checkitemtype VAR_0x8000
2019-09-19 00:57:25 +02:00
call EventScript_BufferStdString
compare VAR_0x8007, 1
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271B95
compare VAR_0x8007, 0
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271BA9
2017-11-11 01:12:18 +01:00
return
2019-09-19 00:57:25 +02:00
EventScript_BufferStdString:: @ 8271B08
2017-11-11 01:12:18 +01:00
switch VAR_RESULT
2019-09-19 00:57:25 +02:00
case POCKET_ITEMS, EventScript_StdStringItem
case POCKET_KEY_ITEMS, EventScript_StdStringKeyItems
case POCKET_POKE_BALLS, EventScript_StdStringPokeballs
case POCKET_TM_HM, EventScript_StdStringTMHMS
case POCKET_BERRIES, EventScript_StdStringBerries
2017-11-11 01:12:18 +01:00
end
2019-09-19 00:57:25 +02:00
EventScript_StdStringItem:: @ 8271B45
bufferstdstring 2, STDSTRING_ITEMS
compare VAR_0x8007, 1
2019-09-19 00:57:25 +02:00
call_if_eq EventScript_PlayFanfare4
2017-11-11 01:12:18 +01:00
return
2019-09-19 00:57:25 +02:00
EventScript_StdStringKeyItems:: @ 8271B55
bufferstdstring 2, STDSTRING_KEYITEMS
compare VAR_0x8007, 1
2019-09-19 00:57:25 +02:00
call_if_eq EventScript_PlayFanfare4
2017-11-11 01:12:18 +01:00
return
2019-09-19 00:57:25 +02:00
EventScript_StdStringPokeballs:: @ 8271B65
bufferstdstring 2, STDSTRING_POKEBALLS
compare VAR_0x8007, 1
2019-09-19 00:57:25 +02:00
call_if_eq EventScript_PlayFanfare4
2017-11-11 01:12:18 +01:00
return
2019-09-19 00:57:25 +02:00
EventScript_StdStringTMHMS:: @ 8271B75
bufferstdstring 2, STDSTRING_TMHMS
compare VAR_0x8007, 1
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271BB3
2017-11-11 01:12:18 +01:00
return
2019-09-19 00:57:25 +02:00
EventScript_StdStringBerries:: @ 8271B85
bufferstdstring 2, STDSTRING_BERRIES
compare VAR_0x8007, 1
2019-09-19 00:57:25 +02:00
call_if_eq EventScript_PlayFanfare4
2017-11-11 01:12:18 +01:00
return
EventScript_271B95:: @ 8271B95
2019-08-15 05:38:42 +02:00
message gText_ObtainedTheItem
2017-11-11 01:12:18 +01:00
waitfanfare
msgbox gText_PutItemInPocket, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setvar VAR_RESULT, 1
return
EventScript_271BA9:: @ 8271BA9
setvar VAR_RESULT, 0
return
2019-09-19 00:57:25 +02:00
EventScript_PlayFanfare4:: @ 8271BAF
2017-12-22 08:46:19 +01:00
playfanfare MUS_FANFA4
2017-11-11 01:12:18 +01:00
return
EventScript_271BB3:: @ 8271BB3
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_WAZA
2017-11-11 01:12:18 +01:00
return
Std_ObtainDecoration:: @ 8271BB7
givedecoration VAR_0x8000
copyvar VAR_0x8007, VAR_RESULT
call EventScript_271BC5
return
EventScript_271BC5:: @ 8271BC5
bufferdecorationname 1, VAR_0x8000
compare VAR_0x8007, 1
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271BE0
compare VAR_0x8007, 0
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271BF7
2017-11-11 01:12:18 +01:00
return
EventScript_271BE0:: @ 8271BE0
2017-12-22 08:46:19 +01:00
playfanfare MUS_FANFA4
2019-08-15 05:38:42 +02:00
message gText_ObtainedTheMon
2017-11-11 01:12:18 +01:00
waitfanfare
2019-08-15 05:38:42 +02:00
msgbox gText_TheMonWasTransferredToThePC, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setvar VAR_RESULT, 1
return
EventScript_271BF7:: @ 8271BF7
setvar VAR_RESULT, 0
return
Std_FindItem:: @ 8271BFD
lock
faceplayer
waitse
copyvar VAR_0x8004, VAR_0x8000
copyvar VAR_0x8005, VAR_0x8001
checkitemspace VAR_0x8000, VAR_0x8001
2017-11-11 01:12:18 +01:00
copyvar VAR_0x8007, VAR_RESULT
bufferitemnameplural 1, VAR_0x8000, VAR_0x8001
2017-11-11 01:12:18 +01:00
checkitemtype VAR_0x8000
2019-09-19 00:57:25 +02:00
call EventScript_BufferStdString
compare VAR_0x8007, 1
call_if_eq EventScript_PickItemUp
compare VAR_0x8007, 0
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271CA1
2017-11-11 01:12:18 +01:00
release
return
EventScript_PickItemUp:: @ 8271C3A
2017-11-11 01:12:18 +01:00
removeobject VAR_LAST_TALKED
giveitem VAR_0x8004, VAR_0x8005
2019-09-13 20:24:07 +02:00
specialvar VAR_RESULT, BufferTMHMMoveName
2017-11-11 01:12:18 +01:00
copyvar VAR_0x8008, VAR_RESULT
compare VAR_0x8008, 1
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271C8F
compare VAR_0x8008, 0
2018-12-22 03:32:45 +01:00
call_if_eq EventScript_271C9B
2017-11-11 01:12:18 +01:00
waitfanfare
waitmessage
bufferitemnameplural 1, VAR_0x8004, VAR_0x8005
2017-11-11 01:12:18 +01:00
setvar VAR_0x8004, 12
2018-11-18 17:52:22 +01:00
special CallBattlePyramidFunction
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271C86
msgbox gText_PutItemInPocket, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
return
EventScript_271C86:: @ 8271C86
msgbox gText_PlayerPutItemInBag, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
return
EventScript_271C8F:: @ 8271C8F
bufferitemnameplural 0, VAR_0x8004, VAR_0x8005
message gText_PlayerFoundOneItemTwoLines
2017-11-11 01:12:18 +01:00
return
EventScript_271C9B:: @ 8271C9B
message gText_PlayerFoundOneItem
2017-11-11 01:12:18 +01:00
return
EventScript_271CA1:: @ 8271CA1
2019-08-15 05:38:42 +02:00
msgbox gText_ObtainedTheItem, MSGBOX_DEFAULT
msgbox gText_TooBadBagIsFull, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setvar VAR_RESULT, 0
return
2018-10-17 04:47:08 +02:00
EventScript_HiddenItemScript:: @ 8271CB7
2017-11-11 01:12:18 +01:00
lockall
waitse
giveitem VAR_0x8005, 1
copyvar VAR_0x8007, VAR_RESULT
bufferitemnameplural 1, VAR_0x8005, 1
checkitemtype VAR_0x8005
2019-09-19 00:57:25 +02:00
call EventScript_BufferStdString
compare VAR_0x8007, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271CE8
compare VAR_0x8007, 0
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271D47
2017-11-11 01:12:18 +01:00
end
EventScript_271CE8:: @ 8271CE8
copyvar VAR_0x8008, VAR_0x8004
copyvar VAR_0x8004, VAR_0x8005
2019-09-13 20:24:07 +02:00
specialvar VAR_RESULT, BufferTMHMMoveName
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271D0E
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271D1F
2017-11-11 01:12:18 +01:00
end
EventScript_271D0E:: @ 8271D0E
bufferitemnameplural 0, VAR_0x8004, 1
message gText_PlayerFoundOneItemTwoLines
2017-11-11 01:12:18 +01:00
goto EventScript_271D2A
end
EventScript_271D1F:: @ 8271D1F
message gText_PlayerFoundOneItem
2017-11-11 01:12:18 +01:00
goto EventScript_271D2A
end
EventScript_271D2A:: @ 8271D2A
waitmessage
waitfanfare
bufferitemnameplural 1, VAR_0x8004, 1
copyvar VAR_0x8004, VAR_0x8008
msgbox gText_PutItemInPocket, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
special sub_80EDCE8
special SetFlagInVar
2017-11-11 01:12:18 +01:00
releaseall
end
2015-10-10 14:20:38 +02:00
2017-11-11 01:12:18 +01:00
EventScript_271D47:: @ 8271D47
msgbox gText_PlayerFoundOneItem, MSGBOX_DEFAULT
msgbox gText_TooBadBagIsFull, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setvar VAR_RESULT, 0
releaseall
end
2015-10-10 14:20:38 +02:00
2017-11-11 01:12:18 +01:00
EventScript_271D5E:: @ 8271D5E
lock
faceplayer
msgbox Text_WouldYouLikeToMixRecords, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271D83
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_271D89
2017-11-11 01:12:18 +01:00
goto EventScript_271D89
2017-11-10 02:21:31 +01:00
2017-11-11 01:12:18 +01:00
EventScript_271D83:: @ 8271D83
2019-02-18 07:03:44 +01:00
special RecordMixingPlayerSpotTriggered
2017-11-11 01:12:18 +01:00
waitstate
lock
faceplayer
EventScript_271D89:: @ 8271D89
message Text_WouldNotLikeToMixRecords
2017-11-11 01:12:18 +01:00
waitmessage
waitbuttonpress
release
end
2018-10-17 04:47:08 +02:00
EventScript_PC:: @ 8271D92
2017-11-11 01:12:18 +01:00
lockall
setvar VAR_0x8004, 0
special DoPCTurnOnEffect
2017-11-11 01:12:18 +01:00
playse SE_PC_ON
msgbox Text_BootUpPC, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
goto EventScript_271DAC
end
EventScript_271DAC:: @ 8271DAC
2018-11-05 21:45:54 +01:00
message gText_WhichPCShouldBeAccessed
2017-11-11 01:12:18 +01:00
waitmessage
special ScriptMenu_CreatePCMultichoice
2017-11-11 01:12:18 +01:00
waitstate
goto EventScript_271DBC
end
EventScript_271DBC:: @ 8271DBC
switch VAR_RESULT
case 0, EventScript_271E0E
case 1, EventScript_271DF9
case 2, EventScript_271E54
case 3, EventScript_271E47
case MULTI_B_PRESSED, EventScript_271E47
2017-11-11 01:12:18 +01:00
end
EventScript_271DF9:: @ 8271DF9
2017-12-22 08:46:19 +01:00
playse SE_PC_LOGIN
msgbox gText_AccessedPlayersPC, MSGBOX_DEFAULT
2018-03-12 09:26:20 +01:00
special PlayerPC
2017-11-11 01:12:18 +01:00
waitstate
goto EventScript_271DAC
end
EventScript_271E0E:: @ 8271E0E
2017-12-22 08:46:19 +01:00
playse SE_PC_LOGIN
2018-12-22 03:32:45 +01:00
call_if_unset FLAG_SYS_PC_LANETTE, EventScript_271E35
call_if_set FLAG_SYS_PC_LANETTE, EventScript_271E3E
msgbox gText_StorageSystemOpened, MSGBOX_DEFAULT
2018-12-10 21:36:52 +01:00
special ShowPokemonStorageSystemPC
2017-11-11 01:12:18 +01:00
waitstate
goto EventScript_271DAC
end
EventScript_271E35:: @ 8271E35
msgbox gText_AccessedSomeonesPC, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
return
EventScript_271E3E:: @ 8271E3E
msgbox gText_AccessedLanettesPC, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
return
EventScript_271E47:: @ 8271E47
setvar VAR_0x8004, 0
playse SE_PC_OFF
special DoPCTurnOffEffect
2017-11-11 01:12:18 +01:00
releaseall
end
EventScript_271E54:: @ 8271E54
2018-12-22 02:28:24 +01:00
goto_if_unset FLAG_SYS_GAME_CLEAR, EventScript_271E47
2017-12-22 08:46:19 +01:00
playse SE_PC_LOGIN
special AccessHallOfFamePC
2017-11-11 01:12:18 +01:00
waitstate
goto EventScript_271DBC
end
2017-11-10 02:21:31 +01:00
Common_EventScript_ShowPokemartSign:: @ 8271E6A
msgbox gText_PokemartSign, MSGBOX_SIGN
end
Common_EventScript_ShowPokemonCenterSign:: @ 8271E73
msgbox gText_PokemonCenterSign, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-02-27 19:45:31 +01:00
Common_ShowEasyChatScreen:: @ 8271E7C
2017-11-10 02:21:31 +01:00
fadescreen 1
2019-02-27 19:45:31 +01:00
special ShowEasyChatScreen
2017-11-10 02:21:31 +01:00
fadescreen 0
return
DewfordTown_Gym_EventScript_271E84:: @ 8271E84
LavaridgeTown_Gym_1F_EventScript_271E84:: @ 8271E84
MauvilleCity_Gym_EventScript_271E84:: @ 8271E84
RustboroCity_Gym_EventScript_271E84:: @ 8271E84
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_PETALBURG_GYM_GREETER
2019-01-02 22:12:43 +01:00
setflag FLAG_PETALBURG_MART_EXPANDED_ITEMS
2017-11-10 02:21:31 +01:00
return
DewfordTown_EventScript_271E8B:: @ 8271E8B
DewfordTown_Hall_EventScript_271E8B:: @ 8271E8B
dotimebasedevents
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 0
2018-04-16 12:52:13 +02:00
special BufferTrendyPhraseString
2017-11-10 02:21:31 +01:00
return
DewfordTown_EventScript_271E95:: @ 8271E95
Route104_MrBrineysHouse_EventScript_271E95:: @ 8271E95
Route109_EventScript_271E95:: @ 8271E95
copyvar VAR_0x8008, VAR_BRINEY_LOCATION
setvar VAR_BRINEY_LOCATION, 0
2017-11-10 02:21:31 +01:00
return
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_UseSurf:: @ 8271EA0
2017-11-11 01:12:18 +01:00
checkpartymove MOVE_SURF
compare VAR_RESULT, 6
goto_if_eq EventScript_CantSurf
2017-11-11 01:12:18 +01:00
bufferpartymonnick 0, VAR_RESULT
setfieldeffectargument 0, VAR_RESULT
lockall
msgbox gText_WantToUseSurf, MSGBOX_YESNO
compare VAR_RESULT, 0
goto_if_eq EventScript_CancelSurf
msgbox gText_PlayerUsedSurf, MSGBOX_DEFAULT
2018-11-13 15:19:04 +01:00
dofieldeffect FLDEFF_USE_SURF
2017-11-11 01:12:18 +01:00
EventScript_CancelSurf:: @ 8271ED5
2017-11-11 01:12:18 +01:00
releaseall
2017-11-10 02:21:31 +01:00
EventScript_CantSurf:: @ 8271ED6
2017-11-11 01:12:18 +01:00
end
2017-11-10 02:21:31 +01:00
Common_EventScript_SetupRivalGfxId:: @ 8271ED7
2017-11-10 02:21:31 +01:00
checkplayergender
compare VAR_RESULT, MALE
goto_if_eq EventScript_SetupRivalGfxIdFemale
compare VAR_RESULT, FEMALE
goto_if_eq EventScript_SetupRivalGfxIdMale
2017-11-10 02:21:31 +01:00
end
EventScript_SetupRivalGfxIdFemale:: @ 8271EEF
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_0, EVENT_OBJ_GFX_RIVAL_MAY_NORMAL
2017-11-10 02:21:31 +01:00
return
EventScript_SetupRivalGfxIdMale:: @ 8271EF5
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_0, EVENT_OBJ_GFX_RIVAL_BRENDAN_NORMAL
2017-11-10 02:21:31 +01:00
return
Common_EventScript_SetupRivalOnBikeGfxId:: @ 8271EFB
2017-11-10 02:21:31 +01:00
checkplayergender
compare VAR_RESULT, MALE
goto_if_eq EventScript_SetupRivalOnBikeGfxIdFemale
compare VAR_RESULT, FEMALE
goto_if_eq EventScript_SetupRivalOnBikeGfxIdMale
2017-11-10 02:21:31 +01:00
end
EventScript_SetupRivalOnBikeGfxIdFemale:: @ 8271F13
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_3, EVENT_OBJ_GFX_RIVAL_MAY_MACH_BIKE
2017-11-10 02:21:31 +01:00
return
EventScript_SetupRivalOnBikeGfxIdMale:: @ 8271F19
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_3, EVENT_OBJ_GFX_RIVAL_BRENDAN_MACH_BIKE
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
@ Unused
Common_EventScript_SetupRivalGfxIdSameGender:: @ 8271F1F
2017-11-11 01:12:18 +01:00
checkplayergender
compare VAR_RESULT, MALE
goto_if_eq EventScript_SetupRivalGfxIdMale2
compare VAR_RESULT, FEMALE
goto_if_eq EventScript_SetupRivalGfxIdFemale2
2017-11-11 01:12:18 +01:00
end
EventScript_SetupRivalGfxIdMale2:: @ 8271F37
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_0, EVENT_OBJ_GFX_RIVAL_BRENDAN_NORMAL
2017-11-11 01:12:18 +01:00
return
EventScript_SetupRivalGfxIdFemale2:: @ 8271F3D
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_0, EVENT_OBJ_GFX_RIVAL_MAY_NORMAL
2017-11-11 01:12:18 +01:00
return
2017-11-10 02:21:31 +01:00
2019-08-15 05:38:42 +02:00
Common_EventScript_SetGymTrainers:: @ 8271F43
2017-11-10 02:21:31 +01:00
switch VAR_0x8008
2019-08-15 05:38:42 +02:00
case 1, RusboroCity_Gym_SetGymTrainers
case 2, DewfordTown_Gym_SetGymTrainers
case 3, MauvilleCity_Gym_SetGymTrainers
case 4, LavaridgeTown_Gym_SetGymTrainers
case 5, PetalburgCity_Gym_SetGymTrainers
case 6, FortreeCity_Gym_SetGymTrainers
case 7, MossdeepCity_Gym_SetGymTrainers
case 8, SootopolisCity_Gym_SetGymTrainers
2017-11-10 02:21:31 +01:00
end
2019-08-15 05:38:42 +02:00
RusboroCity_Gym_SetGymTrainers:: @ 8271FA1
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_JOSH
settrainerflag TRAINER_TOMMY
settrainerflag TRAINER_MARC
return
2019-08-15 05:38:42 +02:00
DewfordTown_Gym_SetGymTrainers:: @ 8271FAB
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_TAKAO
settrainerflag TRAINER_JOCELYN
settrainerflag TRAINER_LAURA
settrainerflag TRAINER_BRENDEN
settrainerflag TRAINER_CRISTIAN
settrainerflag TRAINER_LILITH
return
2019-08-15 05:38:42 +02:00
MauvilleCity_Gym_SetGymTrainers:: @ 8271FBE
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_KIRK
settrainerflag TRAINER_SHAWN
settrainerflag TRAINER_BEN
settrainerflag TRAINER_VIVIAN
settrainerflag TRAINER_ANGELO
return
2019-08-15 05:38:42 +02:00
LavaridgeTown_Gym_SetGymTrainers:: @ 8271FCE
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_COLE
settrainerflag TRAINER_AXLE
settrainerflag TRAINER_KEEGAN
settrainerflag TRAINER_GERALD
settrainerflag TRAINER_DANIELLE
settrainerflag TRAINER_JACE
settrainerflag TRAINER_JEFF
settrainerflag TRAINER_ELI
return
2019-08-15 05:38:42 +02:00
PetalburgCity_Gym_SetGymTrainers:: @ 8271FE7
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_RANDALL
settrainerflag TRAINER_PARKER
settrainerflag TRAINER_GEORGE
settrainerflag TRAINER_BERKE
settrainerflag TRAINER_MARY
settrainerflag TRAINER_ALEXIA
settrainerflag TRAINER_JODY
return
2019-08-15 05:38:42 +02:00
FortreeCity_Gym_SetGymTrainers:: @ 8271FFD
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_JARED
settrainerflag TRAINER_FLINT
settrainerflag TRAINER_ASHLEY
settrainerflag TRAINER_EDWARDO
settrainerflag TRAINER_HUMBERTO
settrainerflag TRAINER_DARIUS
return
2019-08-15 05:38:42 +02:00
MossdeepCity_Gym_SetGymTrainers:: @ 8272010
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_PRESTON
settrainerflag TRAINER_VIRGIL
settrainerflag TRAINER_BLAKE
settrainerflag TRAINER_HANNAH
settrainerflag TRAINER_SAMANTHA
settrainerflag TRAINER_MAURA
settrainerflag TRAINER_SYLVIA
settrainerflag TRAINER_NATE
settrainerflag TRAINER_KATHLEEN
settrainerflag TRAINER_CLIFFORD
settrainerflag TRAINER_MACEY
settrainerflag TRAINER_NICHOLAS
return
2019-08-15 05:38:42 +02:00
SootopolisCity_Gym_SetGymTrainers:: @ 8272035
2017-11-10 02:21:31 +01:00
settrainerflag TRAINER_ANDREA
settrainerflag TRAINER_CRISSY
settrainerflag TRAINER_BRIANNA
settrainerflag TRAINER_CONNIE
settrainerflag TRAINER_BRIDGET
settrainerflag TRAINER_OLIVIA
settrainerflag TRAINER_TIFFANY
settrainerflag TRAINER_BETHANY
settrainerflag TRAINER_ANNIKA
settrainerflag TRAINER_DAPHNE
return
Common_EventScript_ShowBagIsFull:: @ 8272054
msgbox gText_TooBadBagIsFull, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
Common_EventScript_BagIsFull:: @ 827205E
msgbox gText_TooBadBagIsFull, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
Route114_LanettesHouse_EventScript_272067:: @ 8272067
msgbox gText_NoRoomLeftForAnother, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
Common_EventScript_NoRoomLeftForAnother:: @ 8272071
msgbox gText_NoRoomLeftForAnother, MSGBOX_DEFAULT
return
Common_EventScript_SetWeather15:: @ 827207A
setweather WEATHER_ALTERNATING
return
Common_EventScript_PlayGymBadgeFanfare:: @ 827207E
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_BACHI
2017-11-10 02:21:31 +01:00
waitfanfare
return
Common_EventScript_OutOfCenterPartyHeal:: @ 8272083
2017-11-10 02:21:31 +01:00
fadescreen 1
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_ASA
2017-11-10 02:21:31 +01:00
waitfanfare
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2017-11-10 02:21:31 +01:00
fadescreen 0
return
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_RegionMap:: @ 827208F
2017-11-11 01:12:18 +01:00
lockall
msgbox Common_Text_LookCloserAtMap, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
fadescreen 1
special FieldShowRegionMap
2017-11-11 01:12:18 +01:00
waitstate
releaseall
end
2017-11-10 02:21:31 +01:00
2019-08-15 05:38:42 +02:00
Common_EventScript_PlayBrineysBoatMusic:: @ 82720A0
2017-11-10 02:21:31 +01:00
setflag FLAG_SPECIAL_FLAG_0x4001
2017-12-22 08:46:19 +01:00
playbgm MUS_M_BOAT, 0
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
Common_EventScript_StopBrineysBoatMusic:: @ 82720A8
2017-11-10 02:21:31 +01:00
clearflag FLAG_SPECIAL_FLAG_0x4001
fadedefaultbgm
return
LittlerootTown_ProfessorBirchsLab_EventScript_2720AD:: @ 82720AD
Route101_EventScript_2720AD:: @ 82720AD
Route103_EventScript_2720AD:: @ 82720AD
compare VAR_PETALBURG_GYM_STATE, 0
2019-02-23 02:21:26 +01:00
goto_if_eq Common_EventScript_NopReturn
2018-12-22 02:28:24 +01:00
goto_if_set FLAG_SYS_GAME_CLEAR, Route101_EventScript_27211A
compare VAR_BIRCH_STATE, 0
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_27211A
compare VAR_BIRCH_STATE, 1
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_27211A
compare VAR_BIRCH_STATE, 2
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_272127
compare VAR_BIRCH_STATE, 3
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_272127
compare VAR_BIRCH_STATE, 4
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_272134
compare VAR_BIRCH_STATE, 5
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_272134
compare VAR_BIRCH_STATE, 6
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_27211A
compare VAR_BIRCH_STATE, 7
2018-12-22 03:32:45 +01:00
call_if_eq Route101_EventScript_27211A
2017-11-10 02:21:31 +01:00
return
Route101_EventScript_27211A:: @ 827211A
2018-10-18 21:28:59 +02:00
clearflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_BIRCH
2018-10-19 20:59:18 +02:00
clearflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_UNKNOWN_0x380
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_101_BIRCH
setflag FLAG_HIDE_ROUTE_103_BIRCH
2017-11-10 02:21:31 +01:00
return
Route101_EventScript_272127:: @ 8272127
2018-10-19 19:04:47 +02:00
clearflag FLAG_HIDE_ROUTE_101_BIRCH
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_BIRCH
2018-10-19 20:59:18 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_UNKNOWN_0x380
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_103_BIRCH
2017-11-10 02:21:31 +01:00
return
Route101_EventScript_272134:: @ 8272134
2018-10-19 19:04:47 +02:00
clearflag FLAG_HIDE_ROUTE_103_BIRCH
setflag FLAG_HIDE_ROUTE_101_BIRCH
2018-10-18 21:28:59 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_BIRCH
2018-10-19 20:59:18 +02:00
setflag FLAG_HIDE_LITTLEROOT_TOWN_BIRCHS_LAB_UNKNOWN_0x380
2017-11-10 02:21:31 +01:00
return
LittlerootTown_ProfessorBirchsLab_EventScript_272141:: @ 8272141
Route101_EventScript_272141:: @ 8272141
Route103_EventScript_272141:: @ 8272141
lock
faceplayer
2018-12-22 02:28:24 +01:00
goto_if_unset FLAG_HAS_MATCH_CALL, Route101_EventScript_272155
2019-01-02 22:12:43 +01:00
goto_if_unset FLAG_ENABLE_PROF_BIRCH_MATCH_CALL, Route101_EventScript_1FA2D2
2017-11-10 02:21:31 +01:00
Route101_EventScript_272155:: @ 8272155
2019-08-15 05:38:42 +02:00
msgbox gBirchDexRatingText_AreYouCurious, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq Route101_EventScript_27216F
2017-11-10 02:21:31 +01:00
call Route101_EventScript_272184
release
end
Route101_EventScript_27216F:: @ 827216F
2019-08-15 05:38:42 +02:00
msgbox gBirchDexRatingText_Cancel, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
Route101_EventScript_272179:: @ 8272179
copyvar VAR_0x8004, VAR_0x8009
special ShowPokedexRatingMessage
2017-11-10 02:21:31 +01:00
waitmessage
waitbuttonpress
return
EverGrandeCity_ChampionsRoom_EventScript_272184:: @ 8272184
Route101_EventScript_272184:: @ 8272184
setvar VAR_0x8004, 0
specialvar VAR_RESULT, ScriptGetPokedexInfo
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8008, VAR_0x8005
copyvar VAR_0x8009, VAR_0x8006
copyvar VAR_0x800A, VAR_RESULT
buffernumberstring 0, VAR_0x8008
buffernumberstring 1, VAR_0x8009
2019-08-15 05:38:42 +02:00
msgbox gBirchDexRatingText_SoYouveSeenAndCaught, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
call Route101_EventScript_272179
compare VAR_0x800A, 0
2019-02-23 02:21:26 +01:00
goto_if_eq Common_EventScript_NopReturn
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
specialvar VAR_RESULT, ScriptGetPokedexInfo
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8008, VAR_0x8005
copyvar VAR_0x8009, VAR_0x8006
buffernumberstring 0, VAR_0x8008
buffernumberstring 1, VAR_0x8009
2019-08-15 05:38:42 +02:00
msgbox gBirchDexRatingText_OnANationwideBasis, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
Common_EventScript_FerryDepart:: @ 82721E2
2017-11-10 02:21:31 +01:00
delay 60
applymovement VAR_0x8004, Movement_FerryDepart
2017-11-10 02:21:31 +01:00
waitmovement 0
return
Movement_FerryDepart: @ 82721F0
walk_slow_right
walk_slow_right
walk_slow_right
walk_right
walk_right
walk_right
walk_right
2017-11-10 02:21:31 +01:00
step_end
PetalburgCity_Gym_EventScript_2721F8:: @ 82721F8
setflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2018-10-19 19:04:47 +02:00
setflag FLAG_HIDE_ROUTE_108_MR_BRINEY
setflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
setflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
setflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
setvar VAR_BRINEY_LOCATION, 0
2017-11-10 02:21:31 +01:00
return
RusturfTunnel_EventScript_272216:: @ 8272216
removeobject 1
removeobject 10
2018-10-19 03:32:21 +02:00
clearflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_LOVER_MAN
clearflag FLAG_HIDE_VERDANTURF_TOWN_WANDAS_HOUSE_LOVER_WOMAN
setvar VAR_RUSTURF_TUNNEL_STATE, 6
setflag FLAG_RUSTURF_TUNNEL_OPENED
2017-11-10 02:21:31 +01:00
return
2017-11-11 01:12:18 +01:00
EventScript_27222B:: @ 827222B
delay 30
applymovement EVENT_OBJ_ID_PLAYER, Common_Movement_WalkInPlaceUp
2017-11-11 01:12:18 +01:00
waitmovement 0
showobjectat 255, MAP_PETALBURG_CITY
2017-11-11 01:12:18 +01:00
delay 30
applymovement EVENT_OBJ_ID_PLAYER, Movement_27224E
2017-11-11 01:12:18 +01:00
waitmovement 0
delay 30
return
Movement_27224E: @ 827224E
walk_up
2017-11-11 01:12:18 +01:00
step_end
2017-11-10 02:21:31 +01:00
BattleFrontier_OutsideWest_EventScript_272250:: @ 8272250
BirthIsland_Harbor_EventScript_272250:: @ 8272250
FarawayIsland_Entrance_EventScript_272250:: @ 8272250
NavelRock_Harbor_EventScript_272250:: @ 8272250
SouthernIsland_Exterior_EventScript_272250:: @ 8272250
compare VAR_FACING, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_OutsideWest_EventScript_242A21
compare VAR_FACING, 3
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_OutsideWest_EventScript_242A2C
2017-11-10 02:21:31 +01:00
delay 30
hideobjectat 255, MAP_PETALBURG_CITY
call Common_EventScript_FerryDepart
2017-11-10 02:21:31 +01:00
return
2017-11-11 01:12:18 +01:00
EventScript_272274:: @ 8272274
lockall
waitse
playmoncry SPECIES_KYOGRE, 2
waitmoncry
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_5, 1
2017-11-11 01:12:18 +01:00
releaseall
end
EventScript_272283:: @ 8272283
lockall
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
2017-11-11 01:12:18 +01:00
goto EventScript_2722A7
end
EventScript_27228F:: @ 827228F
lockall
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
2017-11-11 01:12:18 +01:00
goto EventScript_2722A7
end
EventScript_27229B:: @ 827229B
lockall
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 1
2017-11-11 01:12:18 +01:00
goto EventScript_2722A7
end
EventScript_2722A7:: @ 82722A7
setvar VAR_0x8004, 1
setvar VAR_0x8005, 1
setvar VAR_0x8006, 8
setvar VAR_0x8007, 5
special sub_8139560
waitstate
releaseall
end
2017-11-10 02:21:31 +01:00
CaveOfOrigin_1F_EventScript_2722C1:: @ 82722C1
CaveOfOrigin_UnusedRubySapphireMap1_EventScript_2722C1:: @ 82722C1
CaveOfOrigin_UnusedRubySapphireMap2_EventScript_2722C1:: @ 82722C1
CaveOfOrigin_UnusedRubySapphireMap3_EventScript_2722C1:: @ 82722C1
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
setvar VAR_TEMP_2, 1
setvar VAR_TEMP_3, 1
setvar VAR_TEMP_4, 1
setvar VAR_TEMP_5, 1
2017-11-10 02:21:31 +01:00
return
Route120_EventScript_2722DB:: @ 82722DB
lock
faceplayer
setvar VAR_0x8009, 1
goto Route120_EventScript_272336
end
Route120_EventScript_2722E8:: @ 82722E8
lock
faceplayer
setvar VAR_0x8009, 2
goto Route120_EventScript_272336
end
Route120_EventScript_2722F5:: @ 82722F5
lock
faceplayer
setvar VAR_0x8009, 3
goto Route120_EventScript_272336
end
Route120_EventScript_272302:: @ 8272302
lock
faceplayer
setvar VAR_0x8009, 4
goto Route120_EventScript_272336
end
Route120_EventScript_27230F:: @ 827230F
lock
faceplayer
setvar VAR_0x8009, 5
goto Route120_EventScript_272336
end
Route119_EventScript_27231C:: @ 827231C
lock
faceplayer
setvar VAR_0x8009, 6
goto Route119_EventScript_272336
end
Route119_EventScript_272329:: @ 8272329
lock
faceplayer
setvar VAR_0x8009, 7
goto Route119_EventScript_272336
end
Route119_EventScript_272336:: @ 8272336
Route120_EventScript_272336:: @ 8272336
checkitem ITEM_DEVON_SCOPE, 1
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq Route119_EventScript_272350
msgbox Route119_Text_1F5D00, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
Route119_EventScript_272350:: @ 8272350
msgbox Route119_Text_1F5D23, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq Route119_EventScript_272365
2017-11-10 02:21:31 +01:00
release
end
Route119_EventScript_272365:: @ 8272365
msgbox Route119_Text_1F5D63, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement VAR_LAST_TALKED, Common_Movement_FacePlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement VAR_LAST_TALKED, Route119_Movement_2723C7
waitmovement 0
waitse
playmoncry SPECIES_KECLEON, 2
delay 40
waitmoncry
setwildbattle SPECIES_KECLEON, 30, ITEM_NONE
setflag FLAG_SYS_CTRL_OBJ_DELETE
dowildbattle
clearflag FLAG_SYS_CTRL_OBJ_DELETE
specialvar VAR_RESULT, GetBattleOutcome
compare VAR_RESULT, 1
2019-08-15 05:38:42 +02:00
goto_if_eq EventScript_RemoveKecleon
compare VAR_RESULT, 4
2019-08-15 05:38:42 +02:00
goto_if_eq EventScript_RemoveKecleon
compare VAR_RESULT, 5
2019-08-15 05:38:42 +02:00
goto_if_eq EventScript_RemoveKecleon
2017-11-10 02:21:31 +01:00
release
end
2019-08-15 05:38:42 +02:00
EventScript_RemoveKecleon:: @ 82723C1
goto Common_EventScript_RemoveStaticPokemon
2017-11-10 02:21:31 +01:00
end
FortreeCity_Movement_2723C7: @ 82723C7
Route119_Movement_2723C7: @ 82723C7
Route120_Movement_2723C7: @ 82723C7
set_visible
delay_4
set_invisible
delay_4
set_visible
delay_4
set_invisible
delay_4
set_visible
delay_8
set_invisible
delay_8
set_visible
delay_8
set_invisible
delay_8
set_visible
delay_16
set_invisible
delay_16
set_visible
2017-11-10 02:21:31 +01:00
step_end
2019-08-15 05:38:42 +02:00
Common_EventScript_NameReceivedPartyMon:: @ 82723DD
2017-11-10 02:21:31 +01:00
fadescreen 1
special ChangePokemonNickname
waitstate
return
2019-08-15 05:38:42 +02:00
Common_EventScript_PlayerHandedOverTheItem:: @ 82723E4
2017-11-10 02:21:31 +01:00
bufferitemname 0, VAR_0x8004
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_WAZA
2019-08-15 05:38:42 +02:00
message gText_PlayerHandedOverTheItem
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
takeitem VAR_0x8004, 1
return
EverGrandeCity_DrakesRoom_EventScript_2723F8:: @ 82723F8
EverGrandeCity_GlaciasRoom_EventScript_2723F8:: @ 82723F8
EverGrandeCity_PhoebesRoom_EventScript_2723F8:: @ 82723F8
EverGrandeCity_SidneysRoom_EventScript_2723F8:: @ 82723F8
PokemonLeague_EliteFour_SetAdvanceToNextRoomMetatiles:: @ 82723F8
applymovement EVENT_OBJ_ID_PLAYER, EverGrandeCity_SidneysRoom_Movement_2725C6
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_DOOR
setmetatile 6, 1, METATILE_EliteFour_OpenDoor_Frame, 0
setmetatile 6, 2, METATILE_EliteFour_OpenDoor_Opening, 0
setmetatile 0, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 1, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 2, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 3, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 4, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 8, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 9, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 10, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 11, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 12, 2, METATILE_EliteFour_LeftSpotlightOff, 1
2017-11-10 02:21:31 +01:00
special DrawWholeMapView
return
EverGrandeCity_DrakesRoom_EventScript_272475:: @ 8272475
EverGrandeCity_GlaciasRoom_EventScript_272475:: @ 8272475
EverGrandeCity_PhoebesRoom_EventScript_272475:: @ 8272475
EverGrandeCity_SidneysRoom_EventScript_272475:: @ 8272475
applymovement EVENT_OBJ_ID_PLAYER, EverGrandeCity_SidneysRoom_Movement_2725BA
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_TRACK_DOOR
setmetatile 5, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 6, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 7, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 5, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 6, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 7, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
2017-11-10 02:21:31 +01:00
special DrawWholeMapView
return
EverGrandeCity_DrakesRoom_EventScript_2724BC:: @ 82724BC
EverGrandeCity_GlaciasRoom_EventScript_2724BC:: @ 82724BC
EverGrandeCity_PhoebesRoom_EventScript_2724BC:: @ 82724BC
EverGrandeCity_SidneysRoom_EventScript_2724BC:: @ 82724BC
setmetatile 6, 1, METATILE_EliteFour_OpenDoor_Frame, 0
setmetatile 6, 2, METATILE_EliteFour_OpenDoor_Opening, 0
setmetatile 5, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 6, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 7, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 5, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 6, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 7, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 0, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 1, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 2, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 3, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 4, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 8, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 9, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 10, 2, METATILE_EliteFour_LeftSpotlightOff, 1
setmetatile 11, 2, METATILE_EliteFour_RightSpotlightOff, 1
setmetatile 12, 2, METATILE_EliteFour_LeftSpotlightOff, 1
2017-11-10 02:21:31 +01:00
return
EverGrandeCity_DrakesRoom_EventScript_27255F:: @ 827255F
EverGrandeCity_GlaciasRoom_EventScript_27255F:: @ 827255F
EverGrandeCity_PhoebesRoom_EventScript_27255F:: @ 827255F
EverGrandeCity_SidneysRoom_EventScript_27255F:: @ 827255F
setmetatile 5, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 6, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 7, 12, METATILE_EliteFour_EntryDoor_ClosedTop, 1
setmetatile 5, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 6, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
setmetatile 7, 13, METATILE_EliteFour_EntryDoor_ClosedBottom, 1
2017-11-10 02:21:31 +01:00
return
SlateportCity_Movement_272596: @ 8272596
emote_question_mark
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_ExclamationMark: @ 8272598
emote_exclamation_mark
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_Delay48: @ 827259A
delay_16
delay_16
delay_16
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_FacePlayer: @ 827259E
face_player
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_FaceAwayPlayer: @ 82725A0
face_away_player
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_FaceOriginalDirection: @ 82725A2
face_original_direction
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_WalkInPlaceLeft: @ 82725A4
walk_in_place_fastest_left
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_WalkInPlaceUp: @ 82725A6
walk_in_place_fastest_up
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_WalkInPlaceRight: @ 82725A8
walk_in_place_fastest_right
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_WalkInPlaceDown: @ 82725AA
walk_in_place_fastest_down
2017-11-10 02:21:31 +01:00
step_end
RustboroCity_Movement_2725AC: @ 82725AC
face_right
2017-11-10 02:21:31 +01:00
step_end
RustboroCity_Movement_2725AE: @ 82725AE
face_left
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_FaceDown: @ 82725B0
face_down
2017-11-10 02:21:31 +01:00
step_end
Common_Movement_FaceUp: @ 82725B2
face_up
2017-11-10 02:21:31 +01:00
step_end
BattleFrontier_BattleDomeBattleRoom_Movement_2725B4: @ 82725B4
MeteorFalls_1F_1R_Movement_2725B4: @ 82725B4
walk_in_place_down
2017-11-10 02:21:31 +01:00
step_end
BattleFrontier_BattlePalaceBattleRoom_Movement_2725B6: @ 82725B6
BattleFrontier_BattleTowerBattleRoom_Movement_2725B6: @ 82725B6
walk_in_place_left
2017-11-10 02:21:31 +01:00
step_end
Route121_Movement_2725B8: @ 82725B8
walk_in_place_right
2017-11-10 02:21:31 +01:00
step_end
EverGrandeCity_SidneysRoom_Movement_2725BA: @ 82725BA
walk_up
walk_up
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
EverGrandeCity_ChampionsRoom_Movement_2725C1: @ 82725C1
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
EverGrandeCity_SidneysRoom_Movement_2725C6: @ 82725C6
delay_16
delay_16
2017-11-10 02:21:31 +01:00
step_end
Route110_TrickHouseEntrance_Movement_2725C9: @ 82725C9
walk_up
2017-11-10 02:21:31 +01:00
step_end
2017-11-11 01:12:18 +01:00
Movement_2725CB:: @ 82725CB
walk_up
walk_up
2017-11-11 01:12:18 +01:00
step_end
2018-10-17 04:47:08 +02:00
EventScript_PictureBookShelf:: @ 82725CE
msgbox Text_PictureBookShelf, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2018-10-17 04:47:08 +02:00
EventScript_BookShelf:: @ 82725D7
msgbox Text_BookShelf, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
EventScript_PokemonCenterBookShelf:: @ 82725E0
msgbox Text_PokemonCenterBookShelf, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_Vase:: @ 82725E9
msgbox Text_Vase, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
EventScript_EmptyTrashCan:: @ 82725F2
msgbox Text_EmptyTrashCan, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2018-10-17 04:47:08 +02:00
EventScript_ShopShelf:: @ 82725FB
msgbox Text_ShopShelf, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_Blueprint:: @ 8272604
msgbox Text_Blueprint, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
Text_WouldYouLikeToMixRecords: @ 827260D
2017-11-11 01:12:18 +01:00
.string "Would you like to mix records with\n"
.string "other TRAINERS?$"
2015-10-10 14:20:38 +02:00
Text_WouldNotLikeToMixRecords: @ 8272640
2017-11-11 01:12:18 +01:00
.string "We hope to see you again!$"
2015-10-10 14:20:38 +02:00
Text_BootUpPC: @ 827265A
2017-11-11 01:12:18 +01:00
.string "{PLAYER} booted up the PC.$"
2015-10-10 14:20:38 +02:00
2018-11-05 21:45:54 +01:00
gText_WhichPCShouldBeAccessed:: @ 827266F
2017-09-19 21:12:51 +02:00
.string "Which PC should be accessed?$"
gText_AccessedSomeonesPC:: @ 827268C
2018-12-07 16:41:08 +01:00
.string "Accessed SOMEONE'S PC.$"
2017-09-19 21:12:51 +02:00
gText_StorageSystemOpened:: @ 82726A3
2017-09-19 21:12:51 +02:00
.string "POKéMON Storage System opened.$"
gText_AccessedPlayersPC:: @ 82726C2
2018-12-07 16:41:08 +01:00
.string "Accessed {PLAYER}'s PC.$"
2017-09-19 21:12:51 +02:00
gText_AccessedLanettesPC:: @ 82726D4
2018-12-07 16:41:08 +01:00
.string "Accessed LANETTE's PC.$"
2017-09-19 21:12:51 +02:00
.include "data/text/pkmn_center_nurse.inc"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_HowMayIServeYou:: @ 8272A21
.string "Welcome!\p"
.string "How may I serve you?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_PleaseComeAgain:: @ 8272A3F
2017-09-19 21:12:51 +02:00
.string "Please come again!$"
2019-08-15 05:38:42 +02:00
gText_PlayerWhatCanIDoForYou:: @ 8272A52
.string "{PLAYER}{STRING 5}, welcome!\p"
.string "What can I do for you?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_ObtainedTheItem:: @ 8272A78
2017-09-19 21:12:51 +02:00
.string "Obtained the {STR_VAR_2}!$"
2019-08-15 05:38:42 +02:00
gText_TheBagIsFull:: @ 8272A89
2017-09-19 21:12:51 +02:00
.string "The BAG is full$"
gText_PutItemInPocket:: @ 8272A9A
2019-08-15 05:38:42 +02:00
.string "{PLAYER} put away the {STR_VAR_2}\n"
.string "in the {STR_VAR_3} POCKET.$"
2017-09-19 21:12:51 +02:00
gText_PlayerFoundOneItem:: @ 8272ABF
2017-09-19 21:12:51 +02:00
.string "{PLAYER} found one {STR_VAR_2}!$"
gText_TooBadBagIsFull:: @ 8272AD0
2019-08-15 05:38:42 +02:00
.string "Too bad!\n"
.string "The BAG is full$"
2017-09-19 21:12:51 +02:00
gText_PlayerPutItemInBag:: @ 8272AEA
2019-08-15 05:38:42 +02:00
.string "{PLAYER} put away the {STR_VAR_2}\n"
.string "in the BAG.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_ObtainedTheMon:: @ 8272B09
2017-09-19 21:12:51 +02:00
.string "Obtained the {STR_VAR_2}!$"
gText_NoRoomLeftForAnother:: @ 8272B1A
2019-08-15 05:38:42 +02:00
.string "Too bad! There's no room left for\n"
.string "another {STR_VAR_2}$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_TheMonWasTransferredToThePC:: @ 8272B48
.string "The {STR_VAR_2} was transferred\n"
.string "to the PC.$"
2017-09-19 21:12:51 +02:00
gText_PokemartSign:: @ 8272B6A
2019-08-15 05:38:42 +02:00
.string "Selected items for your convenience!\n"
.string "POKéMON MART$"
2017-09-19 21:12:51 +02:00
gText_PokemonCenterSign:: @ 8272B9E
2019-08-15 05:38:42 +02:00
.string "Rejuvenate your tired partners!\n"
.string "POKéMON CENTER$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_MomOrDadMightLikeThisProgram:: @ 8272BCF
.string "{STR_VAR_1} might like this program.\n"
.string " \p"
.string "Better get going!$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_WhichFloorWouldYouLike:: @ 8272C1D
.string "Welcome to LILYCOVE DEPARTMENT STORE.\p"
.string "Which floor would you like?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_SandstormIsVicious:: @ 8272C5F
.string "The sandstorm is vicious.\n"
.string "It's impossible to keep going.$"
2017-09-19 21:12:51 +02:00
gText_SelectWithoutRegisteredItem:: @ 8272C98
2019-08-15 05:38:42 +02:00
.string "An item in the BAG can be\n"
.string "registered to SELECT for easy use.$"
gText_PokemonTrainerSchoolEmail:: @ 8272CD5
.string "There's an e-mail from POKéMON TRAINER\n"
.string "SCHOOL.\p"
.string " \p"
.string "A POKéMON may learn up to four moves.\p"
.string "A TRAINER's expertise is tested on the\n"
.string "move sets chosen for POKéMON.\p"
.string " $"
2017-09-19 21:12:51 +02:00
gText_PlayerHouseBootPC:: @ 8272D87
2017-09-19 21:12:51 +02:00
.string "{PLAYER} booted up the PC.$"
2019-08-15 05:38:42 +02:00
gText_PokeblockLinkCanceled:: @ 8272D9C
2017-09-19 21:12:51 +02:00
.string "The link was canceled.$"
2019-08-15 05:38:42 +02:00
gText_UnusedNicknameReceivedPokemon:: @ 8272DB3
.string "Want to give a nickname to\n"
.string "the {STR_VAR_2} you received?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_PlayerWhitedOut:: @ 8272DE3
.string "{PLAYER} is out of usable\n"
.string "POKéMON!\p{PLAYER} whited out!$"
2017-09-19 21:12:51 +02:00
gText_RegisteredTrainerinPokeNav:: @ 8272E0F
2019-08-15 05:38:42 +02:00
.string "Registered {STR_VAR_1} {STR_VAR_2}\n"
.string "in the POKéNAV.$"
gText_ComeBackWithSecretPower:: @ 8272E30
.string "Do you know the TM SECRET POWER?\p"
.string "Our group, we love the TM SECRET\n"
.string "POWER.\p"
.string "One of our members will give it to you.\n"
.string "Come back and show me if you get it.\p"
.string "We'll accept you as a member and sell\n"
.string "you good stuff in secrecy.$"
2017-09-19 21:12:51 +02:00
gText_PokerusExplanation:: @ 8272F07
2019-08-15 05:38:42 +02:00
.string "Your POKéMON may be infected with\n"
.string "POKéRUS.\p"
.string "Little is known about the POKéRUS\n"
.string "except that they are microscopic life-\l"
.string "forms that attach to POKéMON.\p"
.string "While infected, POKéMON are said to\n"
.string "grow exceptionally well.$"
2017-09-19 21:12:51 +02:00
.include "data/text/surf.inc"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_DoorOpenedFarAway:: @ 827301B
.string "It sounded as if a door opened\n"
.string "somewhere far away.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_BigHoleInTheWall:: @ 827304E
2017-09-19 21:12:51 +02:00
.string "There is a big hole in the wall.$"
2019-08-15 05:38:42 +02:00
gText_SorryWirelessClubAdjustments:: @ 827306F
.string "I'm terribly sorry.\n"
.string "The POKéMON WIRELESS CLUB is\l"
.string "undergoing adjustments now.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_UndergoingAdjustments:: @ 82730BC
.string "It appears to be undergoing\n"
.string "adjustments$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
@ Unused
gText_SorryTradeCenterInspections:: @ 82730E5
.string "I'm terribly sorry. The TRADE CENTER\n"
.string "is undergoing inspections.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
@ Unused
gText_SorryRecordCornerPreparation:: @ 8273125
.string "I'm terribly sorry. The RECORD CORNER\n"
.string "is under preparation.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_PlayerHandedOverTheItem:: @ 8273161
.string "{PLAYER} handed over the\n"
.string "{STR_VAR_1}.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_ThankYouForAccessingMysteryGift:: @ 8273178
.string "Thank you for accessing the\n"
.string "MYSTERY GIFT System.$"
2017-09-19 21:12:51 +02:00
gText_PlayerFoundOneItemTwoLines:: @ 82731A9
2019-08-15 05:38:42 +02:00
.string "{PLAYER} found one {STR_VAR_1}\n"
.string "{STR_VAR_2}!$"
2017-09-19 21:12:51 +02:00
gText_Sudowoodo_Attacked:: @ 82731BD
2019-08-15 05:38:42 +02:00
.string "The weird tree doesn't like the\n"
.string "WAILMER PAIL!\p"
.string "The weird tree attacked!$"
2017-09-19 21:12:51 +02:00
gText_LegendaryFlewAway:: @ 8273204
2017-09-19 21:12:51 +02:00
.string "The {STR_VAR_1} flew away!$"
gText_PkmnTransferredSomeonesPC:: @ 8273216
2019-08-15 05:38:42 +02:00
.string "{STR_VAR_2} was transferred to\n"
.string "SOMEONE'S PC.\p"
.string "It was placed in \n"
.string "BOX {STR_VAR_1}.$"
2017-09-19 21:12:51 +02:00
gText_PkmnTransferredLanettesPC:: @ 8273256
2019-08-15 05:38:42 +02:00
.string "{STR_VAR_2} was transferred to\nLANETTE'S PC.\p"
.string "It was placed in \n"
.string "BOX {STR_VAR_1}.$"
2017-09-19 21:12:51 +02:00
gText_PkmnBoxSomeonesPCFull:: @ 8273296
2019-08-15 05:38:42 +02:00
.string "BOX {STR_VAR_3} on\n"
.string "SOMEONE'S PC was full.\p"
.string "{STR_VAR_2} was transferred to\n"
.string "BOX {STR_VAR_1}.$"
2017-09-19 21:12:51 +02:00
gText_PkmnBoxLanettesPCFull:: @ 82732D9
2019-08-15 05:38:42 +02:00
.string "BOX {STR_VAR_3} on\n"
.string "LANETTE'S PC was full.\p"
.string "{STR_VAR_2} was transferred to\n"
.string "BOX {STR_VAR_1}.$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_NoMoreRoomForPokemon:: @ 827331C
.string "There's no more room for POKéMON!\p"
.string "The POKéMON BOXES are full and\n"
.string "can't accept any more!$"
2017-09-19 21:12:51 +02:00
gText_NicknameThisPokemon:: @ 8273374
2019-08-15 05:38:42 +02:00
.string "Do you want to give a nickname to\n"
.string "this {STR_VAR_1}?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_FillOutQuestionnaire:: @ 827339F
.string "There is a questionnaire.\n"
.string "Would you like to fill it out?$"
2017-09-19 21:12:51 +02:00
2019-08-15 05:38:42 +02:00
gText_ThankYouForTakingQuestionnaire:: @ 82733D8
.string "Thank you for taking the time to\n"
.string "fill out our questionnaire.\p"
.string "Your feedback will be used for\n"
.string "future reference.$"
2017-09-19 21:12:51 +02:00
gUnknown_08273446:: @ 8273446
2019-08-15 05:38:42 +02:00
.string "Oh, hello!\n"
.string "You know those words?\p"
.string "That means you must know about\n"
.string "the MYSTERY GIFT.\p"
.string "From now on, you should be\n"
.string "receiving MYSTERY GIFTS!$"
2017-09-19 21:12:51 +02:00
2017-09-26 14:30:12 +02:00
gUnknown_082734CC:: @ 82734CC
2019-08-15 05:38:42 +02:00
.string "Once you save your game, you can\n"
.string "access the MYSTERY GIFT.$"
2017-09-19 21:12:51 +02:00
gUnknown_08273506:: @ 8273506
2019-08-15 05:38:42 +02:00
.string "Oh, hello!\n"
.string "You know those words?\p"
.string "That means you must know about\n"
.string "the MYSTERY EVENT.$"
2017-09-19 21:12:51 +02:00
gUnknown_08273559:: @ 8273559
2019-08-15 05:38:42 +02:00
.string "Once you save your game, you can\n"
.string "access the MYSTERY EVENT.$"
2017-09-19 21:12:51 +02:00
gUnknown_08273594:: @ 8273594
2019-08-15 05:38:42 +02:00
.string "Thank you for using the MYSTERY\n"
.string "EVENT System.\p"
.string "You must be {PLAYER}.\n"
.string "There is a ticket here for you.$"
2017-09-19 21:12:51 +02:00
2017-09-26 14:30:12 +02:00
gUnknown_082735F2:: @ 82735F2
2019-08-15 05:38:42 +02:00
.string "It appears to be for use at\n"
.string "the LILYCOVE CITY port.\p"
.string "Why not give it a try and see what\n"
.string "it is about?$"
2017-09-19 21:12:51 +02:00
gText_UnusualWeatherEnded_Rain:: @ 8273656
2019-08-15 05:38:42 +02:00
.string "The massive downpour appears to\n"
.string "have stopped$"
2017-09-19 21:12:51 +02:00
gText_UnusualWeatherEnded_Sun:: @ 8273684
2019-08-15 05:38:42 +02:00
.string "The intense sunshine appears to\n"
.string "have subsided$"
2015-10-10 14:20:38 +02:00
EventScript_SelectWithoutRegisteredItem:: @ 82736B3
msgbox gText_SelectWithoutRegisteredItem, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_Poison:: @ 82736BC
2017-11-11 01:12:18 +01:00
lockall
2018-10-17 02:11:44 +02:00
special ExecuteWhiteOut
2017-11-11 01:12:18 +01:00
waitstate
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2736D9
compare VAR_RESULT, 2
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2736F8
2017-11-11 01:12:18 +01:00
releaseall
end
2017-11-10 02:21:31 +01:00
2017-11-11 01:12:18 +01:00
EventScript_2736D9:: @ 82736D9
2019-08-15 05:38:42 +02:00
message gText_PlayerWhitedOut
2017-11-11 01:12:18 +01:00
waitmessage
waitbuttonpress
special sub_80B05B4
waitstate
fadescreen 1
2019-01-02 22:12:43 +01:00
call_if_set FLAG_FLANNERY_GIVES_BADGE_INFO, EventScript_2736F4
2017-11-11 01:12:18 +01:00
special sp0C8_whiteout_maybe
waitstate
end
EventScript_2736F4:: @ 82736F4
setrespawn HEAL_LOCATION_LAVARIDGE_TOWN
2017-11-11 01:12:18 +01:00
return
EventScript_2736F8:: @ 82736F8
2019-08-15 05:38:42 +02:00
message gText_PlayerWhitedOut
2017-11-11 01:12:18 +01:00
waitmessage
waitbuttonpress
setvar VAR_0x8004, 16
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4222
2017-11-11 01:12:18 +01:00
setvar VAR_0x8004, 12
2018-11-18 17:52:22 +01:00
special CallBattlePyramidFunction
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePyramidTop_EventScript_252B42
compare VAR_RESULT, 2
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePyramidTop_EventScript_252B42
setvar VAR_0x8004, TRAINER_HILL_FUNC_10
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq TrainerHill_1F_EventScript_2C83C9
2017-11-11 01:12:18 +01:00
special sub_80B05B4
waitstate
fadescreen 1
special sp0C8_whiteout_maybe
waitstate
end
2017-11-10 02:21:31 +01:00
2019-02-23 02:21:26 +01:00
Common_EventScript_NopReturn:: @ 827374E
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
@ Unused
EventScript_CableClub_SetVarResult1:: @ 827374F
2017-11-11 01:12:18 +01:00
setvar VAR_RESULT, 1
return
2017-11-10 02:21:31 +01:00
2019-08-15 05:38:42 +02:00
EventScript_CableClub_SetVarResult0:: @ 8273755
2017-11-10 02:21:31 +01:00
setvar VAR_RESULT, 0
return
BattleFrontier_PokemonCenter_2F_EventScript_27375B:: @ 827375B
DewfordTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
EverGrandeCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
EverGrandeCity_PokemonLeague_2F_EventScript_27375B:: @ 827375B
FallarborTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
FortreeCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
LavaridgeTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
LilycoveCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
MauvilleCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
MossdeepCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
OldaleTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
PacifidlogTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
PetalburgCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
RustboroCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
SlateportCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
SootopolisCity_PokemonCenter_2F_EventScript_27375B:: @ 827375B
VerdanturfTown_PokemonCenter_2F_EventScript_27375B:: @ 827375B
call OldaleTown_PokemonCenter_2F_EventScript_27751B
end
BattleFrontier_PokemonCenter_2F_EventScript_273761:: @ 8273761
DewfordTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
EverGrandeCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
EverGrandeCity_PokemonLeague_2F_EventScript_273761:: @ 8273761
FallarborTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
FortreeCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
LavaridgeTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
LilycoveCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
MauvilleCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
MossdeepCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
OldaleTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
PacifidlogTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
PetalburgCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
RustboroCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
SlateportCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
SootopolisCity_PokemonCenter_2F_EventScript_273761:: @ 8273761
VerdanturfTown_PokemonCenter_2F_EventScript_273761:: @ 8273761
call OldaleTown_PokemonCenter_2F_EventScript_277672
end
BattleFrontier_PokemonCenter_2F_EventScript_273767:: @ 8273767
DewfordTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
EverGrandeCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
EverGrandeCity_PokemonLeague_2F_EventScript_273767:: @ 8273767
FallarborTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
FortreeCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
LavaridgeTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
LilycoveCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
MauvilleCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
MossdeepCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
OldaleTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
PacifidlogTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
PetalburgCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
RustboroCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
SlateportCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
SootopolisCity_PokemonCenter_2F_EventScript_273767:: @ 8273767
VerdanturfTown_PokemonCenter_2F_EventScript_273767:: @ 8273767
call OldaleTown_PokemonCenter_2F_EventScript_2776A4
end
2019-08-15 05:38:42 +02:00
Common_EventScript_RemoveStaticPokemon:: @ 827376D
2017-11-10 02:21:31 +01:00
fadescreenswapbuffers 1
removeobject VAR_LAST_TALKED
fadescreenswapbuffers 0
release
end
2019-08-15 05:38:42 +02:00
Common_EventScript_LegendaryFlewAway:: @ 8273776
2017-11-10 02:21:31 +01:00
fadescreenswapbuffers 1
removeobject VAR_LAST_TALKED
fadescreenswapbuffers 0
bufferspeciesname 0, VAR_0x8004
msgbox gText_LegendaryFlewAway, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-08-15 05:38:42 +02:00
@ VAR_0x8004 here is used by ChangePokemonNickname
Common_EventScript_GetGiftMonPartySlot:: @ 827378B
2017-11-10 02:21:31 +01:00
getpartysize
subvar VAR_RESULT, 1
copyvar VAR_0x8004, VAR_RESULT
return
2019-08-15 05:38:42 +02:00
Common_EventScript_NameReceivedBoxMon:: @ 8273797
2017-11-10 02:21:31 +01:00
fadescreen 1
special ChangeBoxPokemonNickname
waitstate
lock
faceplayer
return
LittlerootTown_ProfessorBirchsLab_EventScript_2737A0:: @ 82737A0
MossdeepCity_StevensHouse_EventScript_2737A0:: @ 82737A0
Route119_WeatherInstitute_2F_EventScript_2737A0:: @ 82737A0
RustboroCity_DevonCorp_2F_EventScript_2737A0:: @ 82737A0
2019-09-17 07:49:07 +02:00
bufferboxname 0, VAR_PC_BOX_TO_SEND_MON
2018-05-19 18:02:43 +02:00
bufferspeciesname 1, VAR_TEMP_1
2018-12-22 03:32:45 +01:00
call_if_unset FLAG_SYS_PC_LANETTE, LittlerootTown_ProfessorBirchsLab_EventScript_2737BB
call_if_set FLAG_SYS_PC_LANETTE, LittlerootTown_ProfessorBirchsLab_EventScript_2737E6
2017-11-10 02:21:31 +01:00
return
LittlerootTown_ProfessorBirchsLab_EventScript_2737BB:: @ 82737BB
2019-09-17 07:49:07 +02:00
specialvar VAR_RESULT, ShouldShowBoxWasFullMessage
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LittlerootTown_ProfessorBirchsLab_EventScript_2737D4
msgbox gText_PkmnTransferredSomeonesPC, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
LittlerootTown_ProfessorBirchsLab_EventScript_2737D4:: @ 82737D4
2019-09-17 07:49:07 +02:00
specialvar VAR_RESULT, GetPCBoxToSendMon
bufferboxname 2, VAR_RESULT
msgbox gText_PkmnBoxSomeonesPCFull, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
LittlerootTown_ProfessorBirchsLab_EventScript_2737E6:: @ 82737E6
2019-09-17 07:49:07 +02:00
specialvar VAR_RESULT, ShouldShowBoxWasFullMessage
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LittlerootTown_ProfessorBirchsLab_EventScript_2737FF
msgbox gText_PkmnTransferredLanettesPC, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
LittlerootTown_ProfessorBirchsLab_EventScript_2737FF:: @ 82737FF
2019-09-17 07:49:07 +02:00
specialvar VAR_RESULT, GetPCBoxToSendMon
bufferboxname 2, VAR_RESULT
msgbox gText_PkmnBoxLanettesPCFull, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-08-15 05:38:42 +02:00
Common_EventScript_NoMoreRoomForPokemon:: @ 8273811
msgbox gText_NoMoreRoomForPokemon, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_Questionnaire:: @ 827381B
2017-11-11 01:12:18 +01:00
lockall
2019-08-15 05:38:42 +02:00
msgbox gText_FillOutQuestionnaire, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2738FD
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_QUESTIONNAIRE
call Common_ShowEasyChatScreen
2017-11-11 01:12:18 +01:00
lock
faceplayer
2019-09-13 20:24:07 +02:00
specialvar VAR_0x8008, GetMartEmployeeObjectEventId
compare VAR_0x8004, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_27386D
compare VAR_0x8004, 2
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2738B5
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2738FD
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_2738FF
2017-11-11 01:12:18 +01:00
end
EventScript_27386D:: @ 827386D
2018-12-22 02:28:24 +01:00
goto_if_unset FLAG_SYS_POKEDEX_GET, EventScript_2738FF
goto_if_set FLAG_SYS_MYSTERY_EVENT_ENABLE, EventScript_2738FF
applymovement VAR_0x8008, Common_Movement_FaceDown
2017-11-11 01:12:18 +01:00
waitmovement 0
playse SE_PIN
applymovement VAR_0x8008, Common_Movement_ExclamationMark
2017-11-11 01:12:18 +01:00
waitmovement 0
applymovement VAR_0x8008, Common_Movement_Delay48
2017-11-11 01:12:18 +01:00
waitmovement 0
msgbox gUnknown_08273506, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setflag FLAG_SYS_MYSTERY_EVENT_ENABLE
msgbox gUnknown_08273559, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
releaseall
end
EventScript_2738B5:: @ 82738B5
2018-12-22 02:28:24 +01:00
goto_if_unset FLAG_SYS_POKEDEX_GET, EventScript_2738FF
goto_if_set FLAG_SYS_MYSTERY_GIFT_ENABLE, EventScript_2738FF
applymovement VAR_0x8008, Common_Movement_FaceDown
2017-11-11 01:12:18 +01:00
waitmovement 0
playse SE_PIN
applymovement VAR_0x8008, Common_Movement_ExclamationMark
2017-11-11 01:12:18 +01:00
waitmovement 0
applymovement VAR_0x8008, Common_Movement_Delay48
2017-11-11 01:12:18 +01:00
waitmovement 0
msgbox gUnknown_08273446, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
setflag FLAG_SYS_MYSTERY_GIFT_ENABLE
msgbox gUnknown_082734CC, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
releaseall
end
EventScript_2738FD:: @ 82738FD
releaseall
end
2017-11-10 02:21:31 +01:00
2017-11-11 01:12:18 +01:00
EventScript_2738FF:: @ 82738FF
applymovement VAR_0x8008, Common_Movement_FaceDown
2017-11-11 01:12:18 +01:00
waitmovement 0
2019-08-15 05:38:42 +02:00
msgbox gText_ThankYouForTakingQuestionnaire, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
releaseall
end
2017-11-10 02:21:31 +01:00
UnusualWeather_EventScript_PlaceTilesRoute114North:: @ 8273913
setmetatile 7, 3, METATILE_Fallarbor_RedCaveEntrance_Top, 1
setmetatile 7, 4, METATILE_Fallarbor_RedCaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute114South:: @ 8273926
setmetatile 6, 45, METATILE_Fallarbor_BrownCaveEntrance_Top, 1
setmetatile 6, 46, METATILE_Fallarbor_BrownCaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute115West:: @ 8273939
setmetatile 21, 5, METATILE_Fallarbor_BrownCaveEntrance_Top, 1
setmetatile 21, 6, METATILE_Fallarbor_BrownCaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute115East:: @ 827394C
setmetatile 36, 9, METATILE_Fallarbor_BrownCaveEntrance_Top, 1
setmetatile 36, 10, METATILE_Fallarbor_BrownCaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute116North:: @ 827395F
setmetatile 59, 12, METATILE_General_CaveEntrance_Top, 1
setmetatile 59, 13, METATILE_General_CaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute116South:: @ 8273972
setmetatile 79, 5, METATILE_General_CaveEntrance_Top, 1
setmetatile 79, 6, METATILE_General_CaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute118East:: @ 8273985
setmetatile 42, 5, METATILE_General_CaveEntrance_Top, 1
setmetatile 42, 6, METATILE_General_CaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute118West:: @ 8273998
setmetatile 9, 5, METATILE_General_CaveEntrance_Top, 1
setmetatile 9, 6, METATILE_General_CaveEntrance_Bottom, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute105North:: @ 82739AB
setmetatile 10, 28, METATILE_General_RoughWater, 0
setmetatile 11, 28, METATILE_General_RoughWater, 0
setmetatile 9, 29, METATILE_General_RoughWater, 0
setmetatile 10, 29, METATILE_General_RoughDeepWater, 0
setmetatile 11, 29, METATILE_General_RoughDeepWater, 0
setmetatile 12, 29, METATILE_General_RoughWater, 0
setmetatile 9, 30, METATILE_General_RoughWater, 0
setmetatile 10, 30, METATILE_General_RoughDeepWater, 0
setmetatile 11, 30, METATILE_General_RoughDeepWater, 0
setmetatile 12, 30, METATILE_General_RoughWater, 0
setmetatile 10, 31, METATILE_General_RoughWater, 0
setmetatile 11, 31, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute105South:: @ 8273A18
setmetatile 20, 53, METATILE_General_RoughWater, 0
setmetatile 21, 53, METATILE_General_RoughWater, 0
setmetatile 19, 54, METATILE_General_RoughWater, 0
setmetatile 20, 54, METATILE_General_RoughDeepWater, 0
setmetatile 21, 54, METATILE_General_RoughDeepWater, 0
setmetatile 22, 54, METATILE_General_RoughWater, 0
setmetatile 19, 55, METATILE_General_RoughWater, 0
setmetatile 20, 55, METATILE_General_RoughDeepWater, 0
setmetatile 21, 55, METATILE_General_RoughDeepWater, 0
setmetatile 22, 55, METATILE_General_RoughWater, 0
setmetatile 20, 56, METATILE_General_RoughWater, 0
setmetatile 21, 56, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute125West:: @ 8273A85
setmetatile 8, 16, METATILE_General_RoughWater, 0
setmetatile 9, 16, METATILE_General_RoughWater, 0
setmetatile 7, 17, METATILE_General_RoughWater, 0
setmetatile 8, 17, METATILE_General_RoughDeepWater, 0
setmetatile 9, 17, METATILE_General_RoughDeepWater, 0
setmetatile 10, 17, METATILE_General_RoughWater, 0
setmetatile 7, 18, METATILE_General_RoughWater, 0
setmetatile 8, 18, METATILE_General_RoughDeepWater, 0
setmetatile 9, 18, METATILE_General_RoughDeepWater, 0
setmetatile 10, 18, METATILE_General_RoughWater, 0
setmetatile 8, 19, METATILE_General_RoughWater, 0
setmetatile 9, 19, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute125East:: @ 8273AF2
setmetatile 53, 18, METATILE_General_RoughWater, 0
setmetatile 54, 18, METATILE_General_RoughWater, 0
setmetatile 52, 19, METATILE_General_RoughWater, 0
setmetatile 53, 19, METATILE_General_RoughDeepWater, 0
setmetatile 54, 19, METATILE_General_RoughDeepWater, 0
setmetatile 55, 19, METATILE_General_RoughWater, 0
setmetatile 52, 20, METATILE_General_RoughWater, 0
setmetatile 53, 20, METATILE_General_RoughDeepWater, 0
setmetatile 54, 20, METATILE_General_RoughDeepWater, 0
setmetatile 55, 20, METATILE_General_RoughWater, 0
setmetatile 53, 21, METATILE_General_RoughWater, 0
setmetatile 54, 21, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute127North:: @ 8273B5F
setmetatile 57, 9, METATILE_General_RoughWater, 0
setmetatile 58, 9, METATILE_General_RoughWater, 0
setmetatile 56, 10, METATILE_General_RoughWater, 0
setmetatile 57, 10, METATILE_General_RoughDeepWater, 0
setmetatile 58, 10, METATILE_General_RoughDeepWater, 0
setmetatile 59, 10, METATILE_General_RoughWater, 0
setmetatile 56, 11, METATILE_General_RoughWater, 0
setmetatile 57, 11, METATILE_General_RoughDeepWater, 0
setmetatile 58, 11, METATILE_General_RoughDeepWater, 0
setmetatile 59, 11, METATILE_General_RoughWater, 0
setmetatile 57, 12, METATILE_General_RoughWater, 0
setmetatile 58, 12, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute127South:: @ 8273BCC
setmetatile 61, 30, METATILE_General_RoughWater, 0
setmetatile 62, 30, METATILE_General_RoughWater, 0
setmetatile 60, 31, METATILE_General_RoughWater, 0
setmetatile 61, 31, METATILE_General_RoughDeepWater, 0
setmetatile 62, 31, METATILE_General_RoughDeepWater, 0
setmetatile 63, 31, METATILE_General_RoughWater, 0
setmetatile 60, 32, METATILE_General_RoughWater, 0
setmetatile 61, 32, METATILE_General_RoughDeepWater, 0
setmetatile 62, 32, METATILE_General_RoughDeepWater, 0
setmetatile 63, 32, METATILE_General_RoughWater, 0
setmetatile 61, 33, METATILE_General_RoughWater, 0
setmetatile 62, 33, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute129West:: @ 8273C39
setmetatile 16, 14, METATILE_General_RoughWater, 0
setmetatile 17, 14, METATILE_General_RoughWater, 0
setmetatile 15, 15, METATILE_General_RoughWater, 0
setmetatile 16, 15, METATILE_General_RoughDeepWater, 0
setmetatile 17, 15, METATILE_General_RoughDeepWater, 0
setmetatile 18, 15, METATILE_General_RoughWater, 0
setmetatile 15, 16, METATILE_General_RoughWater, 0
setmetatile 16, 16, METATILE_General_RoughDeepWater, 0
setmetatile 17, 16, METATILE_General_RoughDeepWater, 0
setmetatile 18, 16, METATILE_General_RoughWater, 0
setmetatile 16, 17, METATILE_General_RoughWater, 0
setmetatile 17, 17, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_PlaceTilesRoute129East:: @ 8273CA6
setmetatile 42, 19, METATILE_General_RoughWater, 0
setmetatile 43, 19, METATILE_General_RoughWater, 0
setmetatile 41, 20, METATILE_General_RoughWater, 0
setmetatile 42, 20, METATILE_General_RoughDeepWater, 0
setmetatile 43, 20, METATILE_General_RoughDeepWater, 0
setmetatile 44, 20, METATILE_General_RoughWater, 0
setmetatile 41, 21, METATILE_General_RoughWater, 0
setmetatile 42, 21, METATILE_General_RoughDeepWater, 0
setmetatile 43, 21, METATILE_General_RoughDeepWater, 0
setmetatile 44, 21, METATILE_General_RoughWater, 0
setmetatile 42, 22, METATILE_General_RoughWater, 0
setmetatile 43, 22, METATILE_General_RoughWater, 0
2017-11-10 02:21:31 +01:00
return
Route105_EventScript_273D13:: @ 8273D13
Route114_EventScript_273D13:: @ 8273D13
Route115_EventScript_273D13:: @ 8273D13
Route116_EventScript_273D13:: @ 8273D13
Route118_EventScript_273D13:: @ 8273D13
Route125_EventScript_273D13:: @ 8273D13
Route127_EventScript_273D13:: @ 8273D13
Route129_EventScript_273D13:: @ 8273D13
2019-03-10 13:10:59 +01:00
setflag FLAG_HIDE_MAP_NAME_POPUP
2017-11-10 02:21:31 +01:00
return
UnusualWeather_StartKyogreWeather:: @ 8273D17
setweather WEATHER_RAIN_HEAVY
2017-11-10 02:21:31 +01:00
return
UnusualWeather_StartGroudonWeather:: @ 8273D1B
setweather WEATHER_DROUGHT
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_EndEventAndCleanup_1:: @ 8273D1F
2017-11-10 02:21:31 +01:00
lockall
compare VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_KYOGRE_LOCATIONS_START
goto_if_ge UnusualWeather_EventScript_ShowRainEndedMessage
goto UnusualWeather_EventScript_ShowSunEndedMessage
2017-11-10 02:21:31 +01:00
end
UnusualWeather_EventScript_EndEventAndCleanup_2:: @ 8273D31
2017-11-10 02:21:31 +01:00
closemessage
fadescreenswapbuffers 1
setweather WEATHER_SUNNY
2017-11-10 02:21:31 +01:00
doweather
call UnusualWeather_EventScript_CleanupMapTiles
2017-11-10 02:21:31 +01:00
special DrawWholeMapView
setvar VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_NONE
setvar VAR_SHOULD_END_UNUSUAL_WEATHER, 0
2019-03-10 13:10:59 +01:00
clearflag FLAG_HIDE_MAP_NAME_POPUP
2017-11-10 02:21:31 +01:00
fadescreenswapbuffers 0
releaseall
end
UnusualWeather_EventScript_ShowRainEndedMessage:: @ 8273D51
msgbox gText_UnusualWeatherEnded_Rain, MSGBOX_DEFAULT
goto UnusualWeather_EventScript_EndEventAndCleanup_2
2017-11-10 02:21:31 +01:00
end
UnusualWeather_EventScript_ShowSunEndedMessage:: @ 8273D5F
msgbox gText_UnusualWeatherEnded_Sun, MSGBOX_DEFAULT
goto UnusualWeather_EventScript_EndEventAndCleanup_2
2017-11-10 02:21:31 +01:00
end
UnusualWeather_EventScript_CleanupMapTiles:: @ 8273D6D
switch VAR_UNUSUAL_WEATHER_LOCATION
case UNUSUAL_WEATHER_ROUTE_114_NORTH, UnusualWeather_EventScript_CleanupRoute114North
case UNUSUAL_WEATHER_ROUTE_114_SOUTH, UnusualWeather_EventScript_CleanupRoute114South
case UNUSUAL_WEATHER_ROUTE_115_WEST, UnusualWeather_EventScript_CleanupRoute115West
case UNUSUAL_WEATHER_ROUTE_115_EAST, UnusualWeather_EventScript_CleanupRoute115East
case UNUSUAL_WEATHER_ROUTE_116_NORTH, UnusualWeather_EventScript_CleanupRoute116North
case UNUSUAL_WEATHER_ROUTE_116_SOUTH, UnusualWeather_EventScript_CleanupRoute116South
case UNUSUAL_WEATHER_ROUTE_118_EAST, UnusualWeather_EventScript_CleanupRoute118East
case UNUSUAL_WEATHER_ROUTE_118_WEST, UnusualWeather_EventScript_CleanupRoute118West
case UNUSUAL_WEATHER_ROUTE_105_NORTH, UnusualWeather_EventScript_CleanupRoute105North
case UNUSUAL_WEATHER_ROUTE_105_SOUTH, UnusualWeather_EventScript_CleanupRoute105South
case UNUSUAL_WEATHER_ROUTE_125_WEST, UnusualWeather_EventScript_CleanupRoute125West
case UNUSUAL_WEATHER_ROUTE_125_EAST, UnusualWeather_EventScript_CleanupRoute125East
case UNUSUAL_WEATHER_ROUTE_127_NORTH, UnusualWeather_EventScript_CleanupRoute127North
case UNUSUAL_WEATHER_ROUTE_127_SOUTH, UnusualWeather_EventScript_CleanupRoute127South
case UNUSUAL_WEATHER_ROUTE_129_WEST, UnusualWeather_EventScript_CleanupRoute129West
case UNUSUAL_WEATHER_ROUTE_129_EAST, UnusualWeather_EventScript_CleanupRoute129East
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute114North:: @ 8273E23
setmetatile 7, 3, METATILE_Fallarbor_RedRockWall, 1
setmetatile 7, 4, METATILE_Fallarbor_RedRockWall, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute114South:: @ 8273E36
setmetatile 6, 45, METATILE_Fallarbor_BrownRockWall, 1
setmetatile 6, 46, METATILE_Fallarbor_BrownRockWall, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute115West:: @ 8273E49
setmetatile 21, 5, METATILE_Fallarbor_BrownRockWall, 1
setmetatile 21, 6, METATILE_Fallarbor_BrownRockWall, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute115East:: @ 8273E5C
setmetatile 36, 9, METATILE_Fallarbor_BrownRockWall, 1
setmetatile 36, 10, METATILE_Fallarbor_BrownRockWall, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute116North:: @ 8273E6F
setmetatile 59, 12, METATILE_General_RockWall_RockBase, 1
setmetatile 59, 13, METATILE_General_RockWall_RockBase, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute116South:: @ 8273E82
setmetatile 79, 5, METATILE_General_RockWall_RockBase, 1
setmetatile 79, 6, METATILE_General_RockWall_RockBase, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute118East:: @ 8273E95
setmetatile 42, 5, METATILE_General_RockWall_RockBase, 1
setmetatile 42, 6, METATILE_General_RockWall_GrassBase, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute118West:: @ 8273EA8
setmetatile 9, 5, METATILE_General_RockWall_RockBase, 1
setmetatile 9, 6, METATILE_General_RockWall_GrassBase, 1
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute105North:: @ 8273EBB
setmetatile 10, 28, METATILE_General_CalmWater, 0
setmetatile 11, 28, METATILE_General_CalmWater, 0
setmetatile 9, 29, METATILE_General_CalmWater, 0
setmetatile 10, 29, METATILE_General_CalmWater, 0
setmetatile 11, 29, METATILE_General_CalmWater, 0
setmetatile 12, 29, METATILE_General_CalmWater, 0
setmetatile 9, 30, METATILE_General_CalmWater, 0
setmetatile 10, 30, METATILE_General_CalmWater, 0
setmetatile 11, 30, METATILE_General_CalmWater, 0
setmetatile 12, 30, METATILE_General_CalmWater, 0
setmetatile 10, 31, METATILE_General_CalmWater, 0
setmetatile 11, 31, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute105South:: @ 8273F28
setmetatile 20, 53, METATILE_General_CalmWater, 0
setmetatile 21, 53, METATILE_General_CalmWater, 0
setmetatile 19, 54, METATILE_General_CalmWater, 0
setmetatile 20, 54, METATILE_General_CalmWater, 0
setmetatile 21, 54, METATILE_General_CalmWater, 0
setmetatile 22, 54, METATILE_General_CalmWater, 0
setmetatile 19, 55, METATILE_General_CalmWater, 0
setmetatile 20, 55, METATILE_General_CalmWater, 0
setmetatile 21, 55, METATILE_General_CalmWater, 0
setmetatile 22, 55, METATILE_General_CalmWater, 0
setmetatile 20, 56, METATILE_General_CalmWater, 0
setmetatile 21, 56, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute125West:: @ 8273F95
setmetatile 8, 16, METATILE_General_CalmWater, 0
setmetatile 9, 16, METATILE_General_CalmWater, 0
setmetatile 7, 17, METATILE_General_CalmWater, 0
setmetatile 8, 17, METATILE_General_CalmWater, 0
setmetatile 9, 17, METATILE_General_CalmWater, 0
setmetatile 10, 17, METATILE_General_CalmWater, 0
setmetatile 7, 18, METATILE_General_CalmWater, 0
setmetatile 8, 18, METATILE_General_CalmWater, 0
setmetatile 9, 18, METATILE_General_CalmWater, 0
setmetatile 10, 18, METATILE_General_CalmWater, 0
setmetatile 8, 19, METATILE_General_CalmWater, 0
setmetatile 9, 19, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute125East:: @ 8274002
setmetatile 53, 18, METATILE_General_CalmWater, 0
setmetatile 54, 18, METATILE_General_CalmWater, 0
setmetatile 52, 19, METATILE_General_CalmWater, 0
setmetatile 53, 19, METATILE_General_CalmWater, 0
setmetatile 54, 19, METATILE_General_CalmWater, 0
setmetatile 55, 19, METATILE_General_CalmWater, 0
setmetatile 52, 20, METATILE_General_CalmWater, 0
setmetatile 53, 20, METATILE_General_CalmWater, 0
setmetatile 54, 20, METATILE_General_CalmWater, 0
setmetatile 55, 20, METATILE_General_CalmWater, 0
setmetatile 53, 21, METATILE_General_CalmWater, 0
setmetatile 54, 21, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute127North:: @ 827406F
setmetatile 57, 9, METATILE_General_CalmWater, 0
setmetatile 58, 9, METATILE_General_CalmWater, 0
setmetatile 56, 10, METATILE_General_CalmWater, 0
setmetatile 57, 10, METATILE_General_CalmWater, 0
setmetatile 58, 10, METATILE_General_CalmWater, 0
setmetatile 59, 10, METATILE_General_CalmWater, 0
setmetatile 56, 11, METATILE_General_CalmWater, 0
setmetatile 57, 11, METATILE_General_CalmWater, 0
setmetatile 58, 11, METATILE_General_CalmWater, 0
setmetatile 59, 11, METATILE_General_CalmWater, 0
setmetatile 57, 12, METATILE_General_CalmWater, 0
setmetatile 58, 12, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute127South:: @ 82740DC
setmetatile 61, 30, METATILE_General_CalmWater, 0
setmetatile 62, 30, METATILE_General_CalmWater, 0
setmetatile 60, 31, METATILE_General_CalmWater, 0
setmetatile 61, 31, METATILE_General_CalmWater, 0
setmetatile 62, 31, METATILE_General_CalmWater, 0
setmetatile 63, 31, METATILE_General_CalmWater, 0
setmetatile 60, 32, METATILE_General_CalmWater, 0
setmetatile 61, 32, METATILE_General_CalmWater, 0
setmetatile 62, 32, METATILE_General_CalmWater, 0
setmetatile 63, 32, METATILE_General_CalmWater, 0
setmetatile 61, 33, METATILE_General_CalmWater, 0
setmetatile 62, 33, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute129West:: @ 8274149
setmetatile 16, 14, METATILE_General_CalmWater, 0
setmetatile 17, 14, METATILE_General_CalmWater, 0
setmetatile 15, 15, METATILE_General_CalmWater, 0
setmetatile 16, 15, METATILE_General_CalmWater, 0
setmetatile 17, 15, METATILE_General_CalmWater, 0
setmetatile 18, 15, METATILE_General_CalmWater, 0
setmetatile 15, 16, METATILE_General_CalmWater, 0
setmetatile 16, 16, METATILE_General_CalmWater, 0
setmetatile 17, 16, METATILE_General_CalmWater, 0
setmetatile 18, 16, METATILE_General_CalmWater, 0
setmetatile 16, 17, METATILE_General_CalmWater, 0
setmetatile 17, 17, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_EventScript_CleanupRoute129East:: @ 82741B6
setmetatile 42, 19, METATILE_General_CalmWater, 0
setmetatile 43, 19, METATILE_General_CalmWater, 0
setmetatile 41, 20, METATILE_General_CalmWater, 0
setmetatile 42, 20, METATILE_General_CalmWater, 0
setmetatile 43, 20, METATILE_General_CalmWater, 0
setmetatile 44, 20, METATILE_General_CalmWater, 0
setmetatile 41, 21, METATILE_General_CalmWater, 0
setmetatile 42, 21, METATILE_General_CalmWater, 0
setmetatile 43, 21, METATILE_General_CalmWater, 0
setmetatile 44, 21, METATILE_General_CalmWater, 0
setmetatile 42, 22, METATILE_General_CalmWater, 0
setmetatile 43, 22, METATILE_General_CalmWater, 0
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarp:: @ 8274223
switch VAR_UNUSUAL_WEATHER_LOCATION
case UNUSUAL_WEATHER_ROUTE_105_NORTH, UnusualWeather_Underwater_SetupEscapeWarpRoute105North
case UNUSUAL_WEATHER_ROUTE_105_SOUTH, UnusualWeather_Underwater_SetupEscapeWarpRoute105South
case UNUSUAL_WEATHER_ROUTE_125_WEST, UnusualWeather_Underwater_SetupEscapeWarpRoute125West
case UNUSUAL_WEATHER_ROUTE_125_EAST, UnusualWeather_Underwater_SetupEscapeWarpRoute125East
case UNUSUAL_WEATHER_ROUTE_127_NORTH, UnusualWeather_Underwater_SetupEscapeWarpRoute127North
case UNUSUAL_WEATHER_ROUTE_127_SOUTH, UnusualWeather_Underwater_SetupEscapeWarpRoute127South
case UNUSUAL_WEATHER_ROUTE_129_WEST, UnusualWeather_Underwater_SetupEscapeWarpRoute129West
case UNUSUAL_WEATHER_ROUTE_129_EAST, UnusualWeather_Underwater_SetupEscapeWarpRoute129East
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute105North:: @ 8274281
setescapewarp MAP_ROUTE105, 255, 11, 29
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute105South:: @ 827428A
setescapewarp MAP_ROUTE105, 255, 21, 54
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute125West:: @ 8274293
setescapewarp MAP_ROUTE125, 255, 9, 17
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute125East:: @ 827429C
setescapewarp MAP_ROUTE125, 255, 54, 19
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute127North:: @ 82742A5
setescapewarp MAP_ROUTE127, 255, 58, 10
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute127South:: @ 82742AE
setescapewarp MAP_ROUTE127, 255, 62, 31
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute129West:: @ 82742B7
setescapewarp MAP_ROUTE129, 255, 17, 15
2017-11-10 02:21:31 +01:00
return
UnusualWeather_Underwater_SetupEscapeWarpRoute129East:: @ 82742C0
setescapewarp MAP_ROUTE129, 255, 43, 20
2017-11-10 02:21:31 +01:00
return
2018-03-02 14:44:33 +01:00
Std_RegisteredInMatchCall:: @ 82742C9
2017-11-11 01:12:18 +01:00
buffertrainerclassname 0, VAR_0x8000
buffertrainername 1, VAR_0x8000
closemessage
delay 30
2017-12-22 08:46:19 +01:00
playfanfare MUS_ME_TORE_EYE
msgbox gText_RegisteredTrainerinPokeNav, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
waitfanfare
closemessage
delay 30
return
2017-11-10 02:21:31 +01:00
2017-12-01 21:25:13 +01:00
EventScript_TryGetTrainerScript:: @ 82742E6
special ShouldTryGetTrainerScript
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq EventScript_GotoTrainerScript
2017-11-11 01:12:18 +01:00
releaseall
end
2017-11-10 02:21:31 +01:00
2017-12-01 21:25:13 +01:00
EventScript_GotoTrainerScript:: @ 82742F6
2017-12-17 20:38:01 +01:00
gotobeatenscript
2017-11-10 02:21:31 +01:00
releaseall
end
.include "data/scripts/berry_tree.inc"
.include "data/scripts/secret_base.inc"
.include "data/scripts/cable_club.inc"
.include "data/scripts/contest_hall.inc"
.include "data/text/contest_strings.inc"
2017-11-10 02:21:31 +01:00
gUnknown_0827E8CE:: @ 827E8CE
.string "Missed turn$"
2017-11-10 02:21:31 +01:00
gText_LinkStandby4:: @ 827E8DA
.string "Link standby!$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E8E8:: @ 827E8E8
2018-12-07 16:41:08 +01:00
.string "The winner is {STR_VAR_1}'s {STR_VAR_2}!\n"
.string "Congratulations!$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E910:: @ 827E910
2018-12-07 16:41:08 +01:00
.string "The winner is {STR_VAR_1}'s {STR_VAR_2}!{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E929:: @ 827E929
.string "Primary judging: No. {STR_VAR_1}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E943:: @ 827E943
.string "Secondary judging: No. {STR_VAR_1}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E95F:: @ 827E95F
.string "Set event: No. {STR_VAR_1}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E973:: @ 827E973
.string "The move used most often:\n"
.string "{STR_VAR_1}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E992:: @ 827E992
.string "The most impressive POKéMON:\n"
2018-12-07 16:41:08 +01:00
.string "{STR_VAR_1}'s {STR_VAR_2}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E9B9:: @ 827E9B9
.string "Set event: No. {STR_VAR_1}{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827E9CD:: @ 827E9CD
.string "A link TV program will not be made\n"
.string "because the TRAINER lost.{PAUSE_UNTIL_PRESS}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827EA0C:: @ 827EA0C
.string "{STR_VAR_1}\n"
2018-12-07 16:41:08 +01:00
.string "{STR_VAR_2}'s {STR_VAR_3}$"
2017-11-10 02:21:31 +01:00
gUnknown_0827EA17:: @ 827EA17
.string "CONTEST$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestRankNormal::
.string "NORMAL RANK$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestRankSuper::
.string "SUPER RANK$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestRankHyper::
.string "HYPER RANK$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestRankMaster::
.string "MASTER RANK$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestLink::
.string "LINK$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestCoolness::
.string "COOLNESS$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestBeauty::
.string "BEAUTY$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestCuteness::
.string "CUTENESS$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestSmartness::
.string "SMARTNESS$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestToughness::
.string "TOUGHNESS$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCool1::
.string "Nonstop supercool--\n"
.string "the inestimable {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCool2::
.string "Hey, there!\n"
.string "The good-looking POKéMON {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCool3::
.string "The marvelous, wonderful, and\n"
.string "very great {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingBeauty1::
2018-12-07 16:41:08 +01:00
.string "This century's last Venus--\n"
.string "the beautiful {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingBeauty2::
2018-12-07 16:41:08 +01:00
.string "{STR_VAR_1}'s dazzling,\n"
.string "glittering smile$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingBeauty3::
2018-12-07 16:41:08 +01:00
.string "POKéMON CENTER's super idol--\n"
.string "the incomparable {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCute1::
.string "The lovely and sweet {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCute2::
2018-12-07 16:41:08 +01:00
.string "The pretty {STR_VAR_1}'s\n"
.string "winning portrait$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingCute3::
.string "Give us a wink!\n"
.string "The cutie POKéMON {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingSmart1::
.string "The smartness maestro--\n"
.string "the wise POKéMON {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingSmart2::
.string "{STR_VAR_1}--the one chosen\n"
.string "above all POKéMON$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingSmart3::
2018-12-07 16:41:08 +01:00
.string "The excellent {STR_VAR_1}'s\n"
.string "moment of elegance$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingTough1::
.string "The powerfully muscular\n"
.string "speedster {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingTough2::
.string "The strong, stronger, and\n"
.string "strongest {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2017-11-15 13:55:16 +01:00
gContestPaintingTough3::
.string "The mighty tough\n"
.string "hyper POKéMON {STR_VAR_1}$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Oddish:: @ 27ECBC
.string "ODDISH$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Poochyena:: @ 27ECC3
.string "POOCHYENA$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Taillow:: @ 27ECCD
.string "TAILLOW$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Azurill:: @ 27ECD5
.string "AZURILL$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Lotad:: @ 27ECDD
.string "LOTAD$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Wingull:: @ 27ECE3
.string "WINGULL$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Dustox:: @ 27ECEB
.string "DUSTOX$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Zubat:: @ 27ECF2
.string "ZUBAT$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Nincada:: @ 27ECF8
.string "NINCADA$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Ralts:: @ 27ED00
.string "RALTS$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Zigzagoon:: @ 27ED06
.string "ZIGZAGOON$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Slakoth:: @ 27ED10
.string "SLAKOTH$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Poochyena2:: @ 27ED18
.string "POOCHYENA$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Shroomish:: @ 27ED22
.string "SHROOMISH$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Zigzagoon2:: @ 27ED2C
.string "ZIGZAGOON$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Poochyena3:: @ 27ED36
.string "POOCHYENA$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Zubat2:: @ 27ED40
.string "ZUBAT$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Carvanha:: @ 27ED46
.string "CARVANHA$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_BurnHeal:: @ 27ED4F
.string "BURN HEAL$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_HarborMail:: @ 27ED59
.string "HARBOR MAIL$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_SamePrice:: @ 27ED65
.string "Same price$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_60Yen:: @ 27ED70
.string "¥60$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_55Yen:: @ 27ED74
.string "¥55$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Nothing:: @ 27ED78
.string "Nothing$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_CostMore:: @ 27ED80
.string "They will cost more.$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_CostLess:: @ 27ED95
.string "They will cost less.$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_SamePrice2:: @ 27EDAA
.string "Same price$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Male:: @ 27EDB5
.string "Male$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Female:: @ 27EDBA
.string "Female$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Neither:: @ 27EDC1
.string "Neither$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_ElderlyMen:: @ 27EDC9
.string "Elderly men$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_ElderlyLadies:: @ 27EDD5
.string "Elderly ladies$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_SameNumber:: @ 27EDE4
.string "Same number$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_None:: @ 27EDF0
.string "None$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_One:: @ 27EDF5
.string "1$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Two:: @ 27EDF7
.string "2$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Two2:: @ 27EDF9
.string "2$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Three:: @ 27EDFB
.string "3$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Four:: @ 27EDFD
.string "4$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Six:: @ 27EDFF
.string "6$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Seven:: @ 27EE01
.string "7$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Eight:: @ 27EE03
.string "8$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Six2:: @ 27EE05
.string "6$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Seven2:: @ 27EE07
.string "7$"
2017-11-10 02:21:31 +01:00
2019-09-06 03:17:01 +02:00
gTrickHouse_Mechadoll_Eight2:: @ 27EE09
.string "8$"
.include "data/scripts/tv.inc"
.include "data/text/tv.inc"
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28C7E9:: @ 828C7E9
LilycoveCity_ContestLobby_EventScript_28C7E9:: @ 828C7E9
SlateportCity_OceanicMuseum_1F_EventScript_28C7E9:: @ 828C7E9
SlateportCity_PokemonFanClub_EventScript_28C7E9:: @ 828C7E9
special InterviewAfter
incrementgamestat GAME_STAT_GOT_INTERVIEWED
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C7F0:: @ 828C7F0
setvar VAR_0x8005, 1
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C879
copyvar VAR_0x8009, VAR_0x8006
msgbox SlateportCity_PokemonFanClub_Text_280674, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C827
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C85C
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C827:: @ 828C827
msgbox SlateportCity_PokemonFanClub_Text_28073B, MSGBOX_DEFAULT
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_INTERVIEW
copyvar VAR_0x8005, VAR_0x8009
2019-02-27 19:45:31 +01:00
setvar VAR_0x8006, EASY_CHAT_PERSON_REPORTER_FEMALE
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C866
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C85C
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C85C:: @ 828C85C
msgbox SlateportCity_PokemonFanClub_Text_2805E2, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C866:: @ 828C866
msgbox SlateportCity_PokemonFanClub_Text_280789, MSGBOX_DEFAULT
setvar VAR_0x8005, 1
goto SlateportCity_PokemonFanClub_EventScript_28C7E9
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C879:: @ 828C879
msgbox SlateportCity_PokemonFanClub_Text_28062E, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C883:: @ 828C883
lock
faceplayer
setvar VAR_0x8005, 2
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C939
copyvar VAR_0x8009, VAR_0x8006
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_OCEANIC_MUSEUM_MET_REPORTER, SlateportCity_OceanicMuseum_1F_EventScript_28C8C8
setflag FLAG_OCEANIC_MUSEUM_MET_REPORTER
msgbox SlateportCity_OceanicMuseum_1F_Text_2811A0, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C8E7
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C91C
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C8C8:: @ 828C8C8
msgbox SlateportCity_OceanicMuseum_1F_Text_28126D, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C8E7
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C91C
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C8E7:: @ 828C8E7
msgbox SlateportCity_OceanicMuseum_1F_Text_2812F2, MSGBOX_DEFAULT
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_INTERVIEW
copyvar VAR_0x8005, VAR_0x8009
2019-02-27 19:45:31 +01:00
setvar VAR_0x8006, EASY_CHAT_PERSON_REPORTER_MALE
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C926
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_OceanicMuseum_1F_EventScript_28C91C
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C91C:: @ 828C91C
msgbox SlateportCity_OceanicMuseum_1F_Text_281367, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C926:: @ 828C926
msgbox SlateportCity_OceanicMuseum_1F_Text_2813B9, MSGBOX_DEFAULT
setvar VAR_0x8005, 2
goto SlateportCity_OceanicMuseum_1F_EventScript_28C7E9
end
2017-11-10 02:21:31 +01:00
SlateportCity_OceanicMuseum_1F_EventScript_28C939:: @ 828C939
msgbox SlateportCity_OceanicMuseum_1F_Text_28144D, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C943:: @ 828C943
lock
faceplayer
specialvar VAR_RESULT, sub_80EF8F8
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C7F0
setvar VAR_0x8005, 3
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28CA4F
copyvar VAR_0x8009, VAR_0x8006
msgbox SlateportCity_PokemonFanClub_Text_280270, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28C98C
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28CA45
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C98C:: @ 828C98C
msgbox SlateportCity_PokemonFanClub_Text_28034F, MSGBOX_DEFAULT
random 3
copyvar VAR_0x800A, VAR_RESULT
switch VAR_RESULT
case 0, SlateportCity_PokemonFanClub_EventScript_28C9C3
case 1, SlateportCity_PokemonFanClub_EventScript_28C9D1
case 2, SlateportCity_PokemonFanClub_EventScript_28C9DF
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C9C3:: @ 828C9C3
msgbox SlateportCity_PokemonFanClub_Text_280393, MSGBOX_DEFAULT
goto SlateportCity_PokemonFanClub_EventScript_28C9ED
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C9D1:: @ 828C9D1
msgbox SlateportCity_PokemonFanClub_Text_2803EF, MSGBOX_DEFAULT
goto SlateportCity_PokemonFanClub_EventScript_28C9ED
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C9DF:: @ 828C9DF
msgbox SlateportCity_PokemonFanClub_Text_280454, MSGBOX_DEFAULT
goto SlateportCity_PokemonFanClub_EventScript_28C9ED
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28C9ED:: @ 828C9ED
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_FAN_CLUB
copyvar VAR_0x8005, VAR_0x8009
setvar VAR_0x8006, 0
2019-02-27 19:45:31 +01:00
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28CA45
msgbox SlateportCity_PokemonFanClub_Text_2804AC, MSGBOX_DEFAULT
setvar VAR_0x8006, 1
2019-02-27 19:45:31 +01:00
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_28CA45
msgbox SlateportCity_PokemonFanClub_Text_280523, MSGBOX_DEFAULT
copyvar VAR_0x8007, VAR_0x800A
setvar VAR_0x8005, 3
goto SlateportCity_PokemonFanClub_EventScript_28C7E9
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28CA45:: @ 828CA45
msgbox SlateportCity_PokemonFanClub_Text_2805E2, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
SlateportCity_PokemonFanClub_EventScript_28CA4F:: @ 828CA4F
msgbox SlateportCity_PokemonFanClub_Text_28062E, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CA59:: @ 828CA59
lock
faceplayer
2018-12-22 02:28:24 +01:00
goto_if_set FLAG_TEMP_2, LilycoveCity_ContestLobby_EventScript_28CB21
setvar VAR_0x8005, 6
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CB21
copyvar VAR_0x8009, VAR_0x8006
msgbox LilycoveCity_ContestLobby_Text_27EF15, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CA9B
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CAD0
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CA9B:: @ 828CA9B
msgbox LilycoveCity_ContestLobby_Text_27EFE7, MSGBOX_DEFAULT
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_CONTEST_INTERVIEW
copyvar VAR_0x8005, VAR_0x8009
setvar VAR_0x8006, 0
2019-02-27 19:45:31 +01:00
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CADA
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CAD0
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CAD0:: @ 828CAD0
msgbox LilycoveCity_ContestLobby_Text_27F1EF, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CADA:: @ 828CADA
setvar VAR_0x8004, 24
special SetContestCategoryStringVarForInterview
msgbox LilycoveCity_ContestLobby_Text_27F03E, MSGBOX_DEFAULT
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_CONTEST_INTERVIEW
copyvar VAR_0x8005, VAR_0x8009
setvar VAR_0x8006, 1
2019-02-27 19:45:31 +01:00
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CAD0
msgbox LilycoveCity_ContestLobby_Text_27F0EC, MSGBOX_DEFAULT
2018-10-17 18:25:12 +02:00
setflag FLAG_TEMP_2
setvar VAR_0x8005, 6
goto LilycoveCity_ContestLobby_EventScript_28C7E9
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CB21:: @ 828CB21
msgbox LilycoveCity_ContestLobby_Text_27F23F, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CB2B:: @ 828CB2B
compare VAR_LINK_CONTEST_ROOM_STATE, 2
2018-12-22 02:28:24 +01:00
goto_if_ne LilycoveCity_ContestLobby_EventScript_28CB95
setvar VAR_0x8005, 6
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_ContestLobby_EventScript_28CB95
switch VAR_CONTEST_LOCATION
case 0, LilycoveCity_ContestLobby_EventScript_28CB95
case 2, LilycoveCity_ContestLobby_EventScript_28CB91
case 1, LilycoveCity_ContestLobby_EventScript_28CB91
case 3, LilycoveCity_ContestLobby_EventScript_28CB91
case 4, LilycoveCity_ContestLobby_EventScript_28CB91
case 5, LilycoveCity_ContestLobby_EventScript_28CB95
end
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CB91:: @ 828CB91
clearflag FLAG_HIDE_LILYCOVE_CONTEST_HALL_REPORTER
return
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_EventScript_28CB95:: @ 828CB95
return
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CB96:: @ 828CB96
lock
faceplayer
2018-12-22 02:28:24 +01:00
goto_if_set FLAG_TEMP_2, BattleFrontier_BattleTowerLobby_EventScript_28CC7A
setvar VAR_0x8005, 7
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC7A
copyvar VAR_0x8009, VAR_0x8006
msgbox BattleFrontier_BattleTowerLobby_Text_27F704, MSGBOX_YESNO
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CBD8
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC2E
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CBD8:: @ 828CBD8
2017-11-12 01:17:46 +01:00
message BattleFrontier_BattleTowerLobby_Text_27F7BA
waitmessage
2019-09-19 06:56:51 +02:00
multichoice 20, 8, MULTI_SATISFACTION, 1
copyvar VAR_0x8008, VAR_RESULT
compare VAR_RESULT, 0
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC38
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC41
msgbox BattleFrontier_BattleTowerLobby_Text_27F97A, MSGBOX_DEFAULT
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_BATTLE_TOWER_INTERVIEW
copyvar VAR_0x8005, VAR_0x8009
2019-02-27 19:45:31 +01:00
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC4A
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC70
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC2E:: @ 828CC2E
msgbox BattleFrontier_BattleTowerLobby_Text_27F84C, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC38:: @ 828CC38
msgbox BattleFrontier_BattleTowerLobby_Text_27F8AE, MSGBOX_DEFAULT
return
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC41:: @ 828CC41
msgbox BattleFrontier_BattleTowerLobby_Text_27F921, MSGBOX_DEFAULT
return
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC4A:: @ 828CC4A
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CC70
msgbox BattleFrontier_BattleTowerLobby_Text_27F9FD, MSGBOX_DEFAULT
2018-10-17 18:25:12 +02:00
setflag FLAG_TEMP_2
copyvar VAR_0x8004, VAR_0x8008
setvar VAR_0x8005, 7
goto BattleFrontier_BattleTowerLobby_EventScript_28C7E9
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC70:: @ 828CC70
msgbox BattleFrontier_BattleTowerLobby_Text_27FA6F, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC7A:: @ 828CC7A
msgbox BattleFrontier_BattleTowerLobby_Text_27FAF3, MSGBOX_DEFAULT
release
end
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CC84:: @ 828CC84
2019-02-22 10:18:43 +01:00
compare VAR_BRAVO_TRAINER_BATTLE_TOWER_ON, 0
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CCA6
setvar VAR_0x8005, 7
special InterviewBefore
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattleTowerLobby_EventScript_28CCA6
clearflag FLAG_HIDE_BATTLE_TOWER_REPORTER
return
2017-11-10 02:21:31 +01:00
BattleFrontier_BattleTowerLobby_EventScript_28CCA6:: @ 828CCA6
setflag FLAG_HIDE_BATTLE_TOWER_REPORTER
return
2017-11-10 02:21:31 +01:00
.include "data/scripts/gabby_and_ty.inc"
.include "data/text/pokemon_news.inc"
.include "data/scripts/mauville_man.inc"
.include "data/scripts/field_move_scripts.inc"
.include "data/scripts/item_ball_scripts.inc"
.include "data/scripts/mystery_event_club.inc"
.include "data/scripts/day_care.inc"
2017-11-10 02:21:31 +01:00
EventScript_2926F8:: @ 82926F8
animateflash 1
setflashradius 1
end
2017-11-10 02:21:31 +01:00
.include "data/scripts/players_house.inc"
2017-11-10 02:21:31 +01:00
2018-10-17 04:47:08 +02:00
EventScript_RunningShoesManual:: @ 8292DE5
msgbox LittlerootTown_BrendansHouse_1F_Text_1F7F66, MSGBOX_SIGN
end
2017-11-10 02:21:31 +01:00
.include "data/scripts/pokeblocks.inc"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoPretty:: @ 8294295
.string " so pretty!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoDarling:: @ 82942A1
.string " so darling!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoRelaxed:: @ 82942AE
.string " so relaxed!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoSunny:: @ 82942BB
.string " so sunny!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoDesirable:: @ 82942C6
.string " so desirable!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoExciting:: @ 82942D5
.string " so exciting!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoAmusing:: @ 82942E3
.string " so amusing!$"
2017-11-10 02:21:31 +01:00
2017-12-19 20:52:52 +01:00
gText_SoMagical:: @ 82942F0
.string " so magical!$"
2017-11-10 02:21:31 +01:00
2018-05-02 22:57:34 +02:00
gOtherText_Is:: @ 82942FD
.string " is$"
2017-11-10 02:21:31 +01:00
2018-05-02 22:57:34 +02:00
gOtherText_DontYouAgree:: @ 8294301
.string "\n"
2018-12-07 16:41:08 +01:00
.string "Don't you agree?$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_ISoWantToGoOnAVacation:: @ 8294313
.string "I so want to go on a vacation.\n"
.string "Would you happen to know a nice place?$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_IBoughtCrayonsWith120Colors:: @ 8294359
.string "I bought crayons with 120 colors!\n"
2018-12-07 16:41:08 +01:00
.string "Don't you think that's nice?$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_WouldntItBeNiceIfWeCouldFloat:: @ 8294398
2018-12-07 16:41:08 +01:00
.string "Wouldn't it be nice if we could float\n"
.string "away on a cloud of bubbles?$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_WhenYouWriteOnASandyBeach:: @ 82943DA
.string "When you write on a sandy beach,\n"
.string "they wash away. It makes me sad.$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_WhatsTheBottomOfTheSeaLike:: @ 829441C
2018-12-07 16:41:08 +01:00
.string "What's the bottom of the sea like?\n"
.string "Just once I would so love to go!$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_WhenYouSeeTheSettingSunDoesIt:: @ 8294460
.string "When you see the setting sun, does it\n"
.string "make you want to go home?$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_LyingBackInTheGreenGrass:: @ 82944A0
.string "Lying back in the green grass\n"
2018-12-07 16:41:08 +01:00
.string "Oh, it's so, so nice!$"
2017-11-11 01:12:18 +01:00
2018-12-10 21:50:10 +01:00
gMauvilleManText_SecretBasesAreSoWonderful:: @ 82944D5
.string "SECRET BASES are so wonderful!\n"
2018-12-07 16:41:08 +01:00
.string "Can't you feel the excitement?$"
2017-11-11 01:12:18 +01:00
.include "data/text/trainers.inc"
2017-11-11 01:12:18 +01:00
EventScript_RepelWoreOff:: @ 82A4B2A
msgbox Text_RepelWoreOff, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
Text_RepelWoreOff: @ 82A4B33
2018-12-07 16:41:08 +01:00
.string "REPEL's effect wore off$"
2017-11-10 02:21:31 +01:00
.include "data/scripts/safari_zone.inc"
2017-11-10 02:21:31 +01:00
MauvilleCity_GameCorner_EventScript_2A5AB1:: @ 82A5AB1
checkitem ITEM_COIN_CASE, 1
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_210456
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 0
getpricereduction 2
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_2A5B0D
2017-11-10 02:21:31 +01:00
addvar VAR_0x8004, 128
goto MauvilleCity_GameCorner_EventScript_2A5B0D
end
MauvilleCity_GameCorner_EventScript_2A5ADF:: @ 82A5ADF
checkitem ITEM_COIN_CASE, 1
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_210456
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
getpricereduction 2
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_GameCorner_EventScript_2A5B0D
2017-11-10 02:21:31 +01:00
addvar VAR_0x8004, 128
goto MauvilleCity_GameCorner_EventScript_2A5B0D
end
MauvilleCity_GameCorner_EventScript_2A5B0D:: @ 82A5B0D
2019-01-01 01:07:29 +01:00
special PlayRoulette
2017-11-10 02:21:31 +01:00
waitstate
end
.include "data/text/roulette.inc"
.include "data/text/pokedex_rating.inc"
.include "data/text/lottery_corner.inc"
.include "data/text/event_ticket_1.inc"
.include "data/text/braille.inc"
.include "data/text/berries.inc"
.include "data/text/shoal_cave.inc"
2017-11-10 02:21:31 +01:00
Text_PictureBookShelf: @ 82A81E5
2018-12-07 16:41:08 +01:00
.string "There's a set of POKéMON picture books.$"
2017-11-11 01:12:18 +01:00
Text_BookShelf: @ 82A820D
2018-12-07 16:41:08 +01:00
.string "It's filled with all sorts of books.$"
2017-11-11 01:12:18 +01:00
Text_PokemonCenterBookShelf: @ 82A8232
2017-11-11 01:12:18 +01:00
.string "POKéMON magazines!\n"
.string "POKéMON PAL\p"
.string "POKéMON HANDBOOK\n"
.string "ADORABLE POKéMON$"
Text_Vase: @ 82A8276
2017-11-11 01:12:18 +01:00
.string "This vase looks expensive\n"
.string "Peered inside\p"
.string "But, it was empty.$"
Text_EmptyTrashCan: @ 82A82B3
2018-12-07 16:41:08 +01:00
.string "It's empty.$"
2017-11-11 01:12:18 +01:00
Text_ShopShelf: @ 82A82BF
2017-11-11 01:12:18 +01:00
.string "The shelves brim with all sorts of\n"
.string "POKéMON merchandise.$"
Text_Blueprint: @ 82A82F7
2017-11-11 01:12:18 +01:00
.string "A blueprint of some sort?\n"
2018-12-07 16:41:08 +01:00
.string "It's too complicated!$"
2017-11-10 02:21:31 +01:00
GraniteCave_B1F_MapScript2_2A8327: @ 82A8327
MirageTower_2F_MapScript2_2A8327: @ 82A8327
MirageTower_3F_MapScript2_2A8327: @ 82A8327
MtPyre_2F_MapScript2_2A8327: @ 82A8327
SkyPillar_2F_MapScript2_2A8327: @ 82A8327
SkyPillar_4F_MapScript2_2A8327: @ 82A8327
2018-10-17 04:47:08 +02:00
map_script_2 VAR_ICE_STEP_COUNT, 0, EventScript_FallDownHole
2017-11-10 02:21:31 +01:00
.2byte 0
GraniteCave_B1F_MapScript1_2A8331: @ 82A8331
MirageTower_2F_MapScript1_2A8331: @ 82A8331
MirageTower_3F_MapScript1_2A8331: @ 82A8331
MtPyre_2F_MapScript1_2A8331: @ 82A8331
copyvar VAR_ICE_STEP_COUNT, 0x1
end
2018-10-17 04:47:08 +02:00
EventScript_FallDownHole:: @ 82A8337
2017-11-10 02:21:31 +01:00
lockall
delay 20
applymovement EVENT_OBJ_ID_PLAYER, GraniteCave_B1F_Movement_2A8369
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_RU_HYUU
delay 60
warphole MAP_UNDEFINED
2017-11-10 02:21:31 +01:00
waitstate
end
2015-10-10 14:20:38 +02:00
2016-09-03 10:17:20 +02:00
gUnknown_082A8350:: @ 82A8350
2017-11-11 01:12:18 +01:00
lockall
delay 20
applymovement EVENT_OBJ_ID_PLAYER, GraniteCave_B1F_Movement_2A8369
2017-11-11 01:12:18 +01:00
waitmovement 0
playse SE_RU_HYUU
delay 60
2018-12-28 22:11:15 +01:00
special DoFallWarp
2017-11-11 01:12:18 +01:00
waitstate
end
2017-11-10 02:21:31 +01:00
GraniteCave_B1F_Movement_2A8369: @ 82A8369
set_invisible
2017-11-10 02:21:31 +01:00
step_end
.include "data/scripts/lilycove_lady.inc"
2019-01-03 02:07:47 +01:00
.include "data/text/match_call.inc"
2018-10-14 11:37:44 +02:00
.include "data/scripts/apprentice.inc"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText1::
2017-11-11 01:12:18 +01:00
.string "The best candidate to be a champ!$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText2::
2017-11-11 01:12:18 +01:00
.string "A sure-finalist team.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText3::
2017-11-11 01:12:18 +01:00
.string "A likely top-three finisher.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText4::
2017-11-11 01:12:18 +01:00
.string "A candidate to finish first.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText5::
2017-11-11 01:12:18 +01:00
.string "A team with top-class potential.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText6::
2017-11-11 01:12:18 +01:00
.string "The dark horse team this tournament.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText7::
2017-11-11 01:12:18 +01:00
.string "A better-than-average team.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText8::
2018-12-07 16:41:08 +01:00
.string "This tournament's average team.$"
2017-11-11 01:12:18 +01:00
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText9::
2017-11-11 01:12:18 +01:00
.string "A team with average potential.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText10::
2017-11-11 01:12:18 +01:00
.string "A weaker-than-average team.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText11::
2017-11-11 01:12:18 +01:00
.string "A team looking for its first win.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText12::
2017-11-11 01:12:18 +01:00
.string "One win will make this team proud.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText13::
2017-11-11 01:12:18 +01:00
.string "Overall, a weak team.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText14::
2017-11-11 01:12:18 +01:00
.string "A team with very low potential.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText15::
2017-11-11 01:12:18 +01:00
.string "A team unlikely to win the tournament.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText16::
2017-11-11 01:12:18 +01:00
.string "The team most unlikely to win.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentPotentialText17::
2017-11-11 01:12:18 +01:00
.string "The perfect, invincible superstar!$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText1::
2017-11-11 01:12:18 +01:00
.string "Willing to risk total disaster at times.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText2::
2017-11-11 01:12:18 +01:00
.string "Skilled at enduring long battles.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText3::
2017-11-11 01:12:18 +01:00
.string "Varies tactics to suit the opponent.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText4::
2017-11-11 01:12:18 +01:00
.string "Has a tough winning pattern.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText5::
2017-11-11 01:12:18 +01:00
.string "Occasionally uses a very rare move.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText6::
2017-11-11 01:12:18 +01:00
.string "Uses startling and disruptive moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText7::
2017-11-11 01:12:18 +01:00
.string "Constantly watches HP in battle.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText8::
2017-11-11 01:12:18 +01:00
.string "Good at storing then loosing power.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText9::
2017-11-11 01:12:18 +01:00
.string "Skilled at enfeebling foes.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText10::
2017-11-11 01:12:18 +01:00
.string "Prefers tactics that rely on luck.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText11::
2017-11-11 01:12:18 +01:00
.string "Attacks with a regal atmosphere.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText12::
2017-11-11 01:12:18 +01:00
.string "Attacks with powerful, low-PP moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText13::
2017-11-11 01:12:18 +01:00
.string "Skilled at enfeebling, then attacking.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText14::
2017-11-11 01:12:18 +01:00
.string "Battles while enduring all attacks.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText15::
2017-11-11 01:12:18 +01:00
.string "Skilled at upsetting foes emotionally.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText16::
2017-11-11 01:12:18 +01:00
.string "Uses strong and straightforward moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText17::
2017-11-11 01:12:18 +01:00
.string "Aggressively uses strong moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText18::
2017-11-11 01:12:18 +01:00
.string "Battles while cleverly dodging attacks.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText19::
2017-11-11 01:12:18 +01:00
.string "Skilled at using upsetting attacks.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText20::
2017-11-11 01:12:18 +01:00
.string "Uses many popular moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText21::
2017-11-11 01:12:18 +01:00
.string "Has moves for powerful combinations.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText22::
2017-11-11 01:12:18 +01:00
.string "Uses high-probability attacks.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText23::
2017-11-11 01:12:18 +01:00
.string "Aggressively uses spectacular moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText24::
2017-11-11 01:12:18 +01:00
.string "Emphasizes offense over defense.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText25::
2017-11-11 01:12:18 +01:00
.string "Emphasizes defense over offense.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText26::
2017-11-11 01:12:18 +01:00
.string "Attacks quickly with strong moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText27::
2017-11-11 01:12:18 +01:00
.string "Often uses moves with added effects.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleText28::
2017-11-11 01:12:18 +01:00
.string "Uses a well-balanced mix of moves.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleTextUnused1::
2017-11-11 01:12:18 +01:00
.string "This is sample message 1.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleTextUnused2::
2017-11-11 01:12:18 +01:00
.string "This is sample message 2.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleTextUnused3::
2017-11-11 01:12:18 +01:00
.string "This is sample message 3.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStyleTextUnused4::
2017-11-11 01:12:18 +01:00
.string "This is sample message 4.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText1::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP and ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText2::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP and DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText3::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText4::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText5::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText6::
2017-11-11 01:12:18 +01:00
.string "Emphasizes ATTACK and DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText7::
2017-11-11 01:12:18 +01:00
.string "Emphasizes ATTACK and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText8::
2017-11-11 01:12:18 +01:00
.string "Emphasizes ATTACK and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText9::
2017-11-11 01:12:18 +01:00
.string "Emphasizes ATTACK and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText10::
2017-11-11 01:12:18 +01:00
.string "Emphasizes DEFENSE and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText11::
2017-11-11 01:12:18 +01:00
.string "Emphasizes DEFENSE and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText12::
2017-11-11 01:12:18 +01:00
.string "Emphasizes DEFENSE and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText13::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SPEED and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText14::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SPEED and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText15::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SP. ATTACK and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText16::
2017-11-11 01:12:18 +01:00
.string "Emphasizes HP.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText17::
2017-11-11 01:12:18 +01:00
.string "Emphasizes ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText18::
2017-11-11 01:12:18 +01:00
.string "Emphasizes DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText19::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText20::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText21::
2017-11-11 01:12:18 +01:00
.string "Emphasizes SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText22::
2017-11-11 01:12:18 +01:00
.string "Neglects HP and ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText23::
2017-11-11 01:12:18 +01:00
.string "Neglects HP and DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText24::
2017-11-11 01:12:18 +01:00
.string "Neglects HP and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText25::
2017-11-11 01:12:18 +01:00
.string "Neglects HP and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText26::
2017-11-11 01:12:18 +01:00
.string "Neglects HP and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText27::
2017-11-11 01:12:18 +01:00
.string "Neglects ATTACK and DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText28::
2017-11-11 01:12:18 +01:00
.string "Neglects ATTACK and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText29::
2017-11-11 01:12:18 +01:00
.string "Neglects ATTACK and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText30::
2017-11-11 01:12:18 +01:00
.string "Neglects ATTACK and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText31::
2017-11-11 01:12:18 +01:00
.string "Neglects DEFENSE and SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText32::
2017-11-11 01:12:18 +01:00
.string "Neglects DEFENSE and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText33::
2017-11-11 01:12:18 +01:00
.string "Neglects DEFENSE and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText34::
2017-11-11 01:12:18 +01:00
.string "Neglects SPEED and SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText35::
2017-11-11 01:12:18 +01:00
.string "Neglects SPEED and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText36::
2017-11-11 01:12:18 +01:00
.string "Neglects SP. ATTACK and SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText37::
2017-11-11 01:12:18 +01:00
.string "Neglects HP.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText38::
2017-11-11 01:12:18 +01:00
.string "Neglects ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText39::
2017-11-11 01:12:18 +01:00
.string "Neglects DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText40::
2017-11-11 01:12:18 +01:00
.string "Neglects SPEED.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText41::
2017-11-11 01:12:18 +01:00
.string "Neglects SP. ATTACK.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText42::
2017-11-11 01:12:18 +01:00
.string "Neglects SP. DEFENSE.$"
2019-02-08 18:08:25 +01:00
gBattleDomeOpponentStatsText43::
2017-11-11 01:12:18 +01:00
.string "Raises POKéMON in a well-balanced way.$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText1::
2017-11-11 01:12:18 +01:00
.string "Let the battle begin!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText2::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} won using {STR_VAR_2}!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText3::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} became the champ!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText4::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} won by default!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText5::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} won outright by default!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText6::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} won without using a move!$"
2019-02-08 18:08:25 +01:00
gBattleDomeWinText7::
2017-11-11 01:12:18 +01:00
.string "{STR_VAR_1} won outright with no moves!$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText1::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 1$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText2::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 2$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText3::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 3$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText4::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 4$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText5::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 5$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText6::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 6$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText7::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 7$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText8::
2017-11-11 01:12:18 +01:00
.string "Round 1, Match 8$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText9::
2017-11-11 01:12:18 +01:00
.string "Round 2, Match 1$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText10::
2017-11-11 01:12:18 +01:00
.string "Round 2, Match 2$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText11::
2017-11-11 01:12:18 +01:00
.string "Round 2, Match 3$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText12::
2017-11-11 01:12:18 +01:00
.string "Round 2, Match 4$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText13::
2017-11-11 01:12:18 +01:00
.string "Semifinal Match 1$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText14::
2017-11-11 01:12:18 +01:00
.string "Semifinal Match 2$"
2019-02-08 18:08:25 +01:00
gBattleDomeMatchNumberText15::
2017-11-11 01:12:18 +01:00
.string "Final Match$"
BattleFrontier_BattlePikeRandomRoom1_MapScripts_2C3E1B: @ 82C3E1B
2019-02-22 08:28:32 +01:00
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_BattlePikeRandomRoom1_MapScript1_2C3E25
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattlePikeRandomRoom1_MapScript2_2C3EDE
2017-11-10 02:21:31 +01:00
BattleFrontier_BattlePikeRandomRoom1_MapScript1_2C3E25: @ 82C3E25
setvar VAR_0x8004, 4
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 5
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
case 0, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EB1
case 1, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EB1
case 2, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EC0
case 3, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EA2
case 4, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EB1
case 7, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3E93
case 6, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EA2
case 8, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3ECF
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3E93:: @ 82C3E93
setobjectxyperm 1, 2, 5
setobjectxyperm 2, 6, 5
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EA2:: @ 82C3EA2
setobjectxyperm 1, 4, 4
setobjectxyperm 2, 3, 4
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EB1:: @ 82C3EB1
setobjectxyperm 1, 4, 4
setobjectxyperm 2, 0, 0
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EC0:: @ 82C3EC0
setobjectxyperm 1, 5, 5
setobjectxyperm 2, 0, 0
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3ECF:: @ 82C3ECF
setobjectxyperm 1, 4, 3
setobjectxyperm 2, 4, 4
end
BattleFrontier_BattlePikeRandomRoom1_MapScript2_2C3EDE: @ 82C3EDE
2018-05-19 18:02:43 +02:00
map_script_2 VAR_TEMP_4, 0, BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EE8
2017-11-10 02:21:31 +01:00
.2byte 0
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3EE8:: @ 82C3EE8
2018-12-25 02:12:51 +01:00
setvar VAR_OBJ_GFX_ID_1, EVENT_OBJ_GFX_LINK_RECEPTIONIST
setvar VAR_OBJ_GFX_ID_0, EVENT_OBJ_GFX_LINK_RECEPTIONIST
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 5
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 3
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F35
compare VAR_RESULT, 6
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F35
compare VAR_RESULT, 7
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F35
compare VAR_RESULT, 8
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F3F
hideobjectat 2, MAP_BATTLE_FRONTIER_BATTLE_PIKE_RANDOM_ROOM1
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_4, 1
2019-09-16 05:47:07 +02:00
turnobject EVENT_OBJ_ID_PLAYER, DIR_NORTH
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F35:: @ 82C3F35
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_4, 1
2019-09-16 05:47:07 +02:00
turnobject EVENT_OBJ_ID_PLAYER, DIR_NORTH
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C3F3F:: @ 82C3F3F
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_4, 1
2019-09-16 05:47:07 +02:00
turnobject EVENT_OBJ_ID_PLAYER, DIR_NORTH
hideobjectat 1, MAP_BATTLE_FRONTIER_BATTLE_PIKE_RANDOM_ROOM1
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F4E:: @ 82C3F4E
setvar VAR_0x8007, 0
goto BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F6F
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F59:: @ 82C3F59
setvar VAR_0x8007, 1
goto BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F6F
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F64:: @ 82C3F64
setvar VAR_0x8007, 2
goto BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F6F
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C3F6F:: @ 82C3F6F
setvar VAR_0x8004, 1
setvar VAR_0x8005, 1
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 1
copyvar VAR_0x8006, VAR_RESULT
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 2
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 2
copyvar VAR_0x8006, VAR_RESULT
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 0
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 5
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
case 0, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 1, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 2, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 3, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 4, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 5, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4049
case 6, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 7, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
case 8, BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4030:: @ 82C4030
applymovement EVENT_OBJ_ID_PLAYER, BattleFrontier_BattlePikeThreePathRoom_Movement_2C427A
2017-11-10 02:21:31 +01:00
waitmovement 0
call BattleFrontier_BattlePikeThreePathRoom_EventScript_25BB49
warpsilent MAP_BATTLE_FRONTIER_BATTLE_PIKE_RANDOM_ROOM1, 255, 4, 7
2017-11-10 02:21:31 +01:00
waitstate
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4049:: @ 82C4049
applymovement EVENT_OBJ_ID_PLAYER, BattleFrontier_BattlePikeThreePathRoom_Movement_2C427A
2017-11-10 02:21:31 +01:00
waitmovement 0
call BattleFrontier_BattlePikeThreePathRoom_EventScript_25BB49
warpsilent MAP_BATTLE_FRONTIER_BATTLE_PIKE_RANDOM_ROOM3, 255, 4, 19
2017-11-10 02:21:31 +01:00
waitstate
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4062:: @ 82C4062
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 1
setvar VAR_TEMP_2, 1
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C406D:: @ 82C406D
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 0
setvar VAR_TEMP_2, 0
2017-11-10 02:21:31 +01:00
lockall
msgbox BattleFrontier_BattlePikeThreePathRoom_Text_25CE36, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4082:: @ 82C4082
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 1
setvar VAR_TEMP_2, 1
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C408D:: @ 82C408D
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 0
setvar VAR_TEMP_2, 0
2017-11-10 02:21:31 +01:00
lockall
msgbox BattleFrontier_BattlePikeRandomRoom1_Text_25CE36, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C40A2:: @ 82C40A2
setvar VAR_0x8004, 25
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4128
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_ne BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4136
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 1
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 1
copyvar VAR_0x8006, VAR_RESULT
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 2
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 2
copyvar VAR_0x8006, VAR_RESULT
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 3
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4144
compare VAR_RESULT, 0
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom1_EventScript_2C415C
2017-11-10 02:21:31 +01:00
waitstate
end
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4128:: @ 82C4128
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4128:: @ 82C4128
setvar VAR_0x8004, 24
setvar VAR_0x8005, 1
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
return
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4136:: @ 82C4136
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4136:: @ 82C4136
setvar VAR_0x8004, 24
setvar VAR_0x8005, 0
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
return
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C4144:: @ 82C4144
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4144:: @ 82C4144
applymovement EVENT_OBJ_ID_PLAYER, BattleFrontier_BattlePikeRandomRoom1_Movement_2C427A
2017-11-10 02:21:31 +01:00
waitmovement 0
call BattleFrontier_BattlePikeRandomRoom1_EventScript_25BB49
warpsilent MAP_BATTLE_FRONTIER_BATTLE_PIKE_RANDOM_ROOM2, 255, 2, 7
2017-11-10 02:21:31 +01:00
return
BattleFrontier_BattlePikeRandomRoom1_EventScript_2C415C:: @ 82C415C
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C415C:: @ 82C415C
applymovement EVENT_OBJ_ID_PLAYER, BattleFrontier_BattlePikeRandomRoom1_Movement_2C427A
2017-11-10 02:21:31 +01:00
waitmovement 0
call BattleFrontier_BattlePikeRandomRoom1_EventScript_25BB49
warpsilent MAP_BATTLE_FRONTIER_BATTLE_PIKE_THREE_PATH_ROOM, 255, 6, 10
2017-11-10 02:21:31 +01:00
return
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4174:: @ 82C4174
setvar VAR_0x8004, 7
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 25
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4128
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_ne BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4136
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 1
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 1
copyvar VAR_0x8006, VAR_RESULT
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 2
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
setvar VAR_0x8004, 2
setvar VAR_0x8005, 2
copyvar VAR_0x8006, VAR_RESULT
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 3
2018-11-12 14:35:56 +01:00
special CallBattlePikeFunction
compare VAR_RESULT, 1
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4144
compare VAR_RESULT, 0
2018-12-22 03:32:45 +01:00
call_if_eq BattleFrontier_BattlePikeRandomRoom3_EventScript_2C415C
2017-11-10 02:21:31 +01:00
waitstate
end
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4202:: @ 82C4202
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 1
setvar VAR_TEMP_2, 1
2017-11-10 02:21:31 +01:00
end
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C420D:: @ 82C420D
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 0
setvar VAR_TEMP_2, 0
2017-11-10 02:21:31 +01:00
lockall
msgbox BattleFrontier_BattlePikeRandomRoom3_Text_25CE36, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
end
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4222:: @ 82C4222
setvar VAR_0x8004, 2
setvar VAR_0x8005, 0
setvar VAR_0x8006, 4
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
warp MAP_BATTLE_FRONTIER_BATTLE_PIKE_LOBBY, 255, 5, 6
2017-11-10 02:21:31 +01:00
waitstate
end
BattleFrontier_BattlePikeRandomRoom1_MapScript1_2C423E: @ 82C423E
BattleFrontier_BattlePikeThreePathRoom_MapScript1_2C423E: @ 82C423E
setorcopyvar VAR_0x8006, VAR_RESULT
setvar VAR_0x8004, 1
setvar VAR_0x8005, 0
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
compare VAR_RESULT, 2
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeThreePathRoom_EventScript_2C426B
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq BattleFrontier_BattlePikeThreePathRoom_EventScript_2C426B
2017-11-10 02:21:31 +01:00
call BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4271
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C426B:: @ 82C426B
setorcopyvar VAR_RESULT, VAR_0x8006
end
BattleFrontier_BattlePikeRandomRoom3_EventScript_2C4271:: @ 82C4271
BattleFrontier_BattlePikeThreePathRoom_EventScript_2C4271:: @ 82C4271
setvar VAR_0x8004, 21
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
2017-11-10 02:21:31 +01:00
return
BattleFrontier_BattlePikeRandomRoom1_Movement_2C427A: @ 82C427A
BattleFrontier_BattlePikeThreePathRoom_Movement_2C427A: @ 82C427A
set_invisible
2017-11-10 02:21:31 +01:00
step_end
LilycoveCity_ContestLobby_Text_2C427C: @ 82C427C
.string "BLEND MASTER: Indeed I am!\n"
.string "The BLEND MASTER am I!\p"
.string "Blend with me, and you shall witness\n"
.string "the mastery I bring to blending!$"
LilycoveCity_ContestLobby_Text_2C42F4: @ 82C42F4
.string "BLEND MASTER: Hmmm! So, you wish to\n"
.string "see my mastery in action?$"
LilycoveCity_ContestLobby_Text_2C4332: @ 82C4332
.string "Hmmm!\p"
.string "So, you are too busy now, I see!\p"
.string "But fear not!\n"
.string "I shall be here all day!\l"
.string "Hurry back from your errand!$"
LilycoveCity_ContestLobby_Text_2C439D: @ 82C439D
.string "Hmmm!\p"
2018-12-07 16:41:08 +01:00
.string "You haven't got a single BERRY!\p"
2017-11-10 02:21:31 +01:00
.string "I shall be here all day!\n"
.string "Hurry back with some BERRIES!$"
LilycoveCity_ContestLobby_Text_2C43FA: @ 82C43FA
.string "Of course!\n"
.string "Of course!\p"
.string "Incidentally\n"
.string "You do know how to blend {POKEBLOCK}S\l"
.string "from BERRIES?$"
LilycoveCity_ContestLobby_Text_2C444C: @ 82C444C
.string "Hmmm!\p"
.string "Ah, but it is a simple process!\p"
2018-12-07 16:41:08 +01:00
.string "When the BLENDER's arrow comes to\n"
2017-11-10 02:21:31 +01:00
.string "your marker, just press the A Button.\p"
2018-12-07 16:41:08 +01:00
.string "That's all you have to do.\p"
2017-11-10 02:21:31 +01:00
.string "When you see how precisely I press\n"
.string "the A Button, you will understand.$"
LilycoveCity_ContestLobby_Text_2C451B: @ 82C451B
.string "Fine!\p"
2018-12-07 16:41:08 +01:00
.string "Let's get started, then!\p"
2017-11-10 02:21:31 +01:00
.string "All together with the BLEND MASTER,\n"
2018-12-07 16:41:08 +01:00
.string "let's BERRY BLENDER!$"
2017-11-10 02:21:31 +01:00
LilycoveCity_ContestLobby_Text_2C4573: @ 82C4573
.string "Hmmm!\p"
2018-12-07 16:41:08 +01:00
.string "You don't appear to have gotten\n"
2017-11-10 02:21:31 +01:00
.string "the {POKEBLOCK} CASE!\p"
.string "I shall be here all day!\n"
.string "Obtain the {POKEBLOCK} CASE and hurry back!$"
LilycoveCity_ContestLobby_Text_2C45E8: @ 82C45E8
.string "Hmmm!\p"
.string "Your {POKEBLOCK} CASE appears to be full!\p"
.string "I shall be here all day!\n"
.string "Use some {POKEBLOCK}S and hurry back!$"
LilycoveCity_ContestLobby_Text_2C464B: @ 82C464B
.string "Whoa!\n"
.string "Awesome!$"
LilycoveCity_ContestLobby_Text_2C465A: @ 82C465A
.string "Wickedly fast!$"
LilycoveCity_ContestLobby_Text_2C4669: @ 82C4669
.string "What an expert!$"
LilycoveCity_ContestLobby_Text_2C4679: @ 82C4679
.string "When I blended with the MASTER,\n"
.string "we made amazing {POKEBLOCK}S!$"
LilycoveCity_ContestLobby_Text_2C46B1: @ 82C46B1
.string "Eyes that track the arrow with\n"
.string "machinelike intensity\p"
.string "A hand that taps the A Button\n"
.string "with clockwork-like precision\p"
.string "Possessing these qualities makes\n"
.string "the BLEND MASTER truly great.$"
LilycoveCity_ContestLobby_Text_2C4763: @ 82C4763
2018-12-07 16:41:08 +01:00
.string "The BLEND MASTER's supposed to work\n"
2017-11-10 02:21:31 +01:00
.string "on his skills deep in the mountains.\p"
.string "Sometimes, he comes to LILYCOVE\n"
.string "to blend BERRIES all day long.$"
FallarborTown_BattleTentLobby_Text_2C47EB: @ 82C47EB
.string "I welcome you to the BATTLE TENT\n"
.string "FALLARBOR SITE!\p"
.string "I am your guide to the Set KO Tourney!$"
FallarborTown_BattleTentLobby_Text_2C4843: @ 82C4843
.string "Now, do you wish to take the challenge\n"
.string "of a Set KO Tourney?$"
FallarborTown_BattleTentLobby_Text_2C487F: @ 82C487F
.string "We await your challenge on\n"
.string "another occasion!$"
FallarborTown_BattleTentLobby_Text_2C48AC: @ 82C48AC
.string "In the FALLARBOR BATTLE TENT,\n"
.string "we undertake the Set KO Tourney.\p"
.string "All participants enter with a team of\n"
.string "three POKéMON.\p"
.string "The three POKéMON must be lined up\n"
.string "in the order that they are to appear in.\p"
.string "During battle, the POKéMON will appear\n"
.string "one at a time in the preset order.\p"
.string "Once a POKéMON enters battle, it must\n"
.string "remain out until the match is decided.\p"
.string "If a match remains undecided in\n"
.string "three turns, it goes to judging.\p"
.string "If you wish to interrupt your challenge,\n"
.string "please save the game.\p"
2018-12-07 16:41:08 +01:00
.string "If you don't save, you will not be able\n"
2017-11-10 02:21:31 +01:00
.string "to continue with your challenge.\p"
.string "If you pull off the feat of beating\n"
.string "three TRAINERS in succession,\l"
.string "we will present you with a fine prize.$"
FallarborTown_BattleTentLobby_Text_2C4B35: @ 82C4B35
.string "Before showing you to the BATTLE\n"
.string "TENT, I must save. Is that okay?$"
2017-11-11 01:12:18 +01:00
FallarborTown_BattleTentLobby_Text_2C4B77: @ 82C4B77
.string "We offer two levels of challenge,\n"
.string "Level 50 and Open Level.\l"
.string "Which is your choice?$"
2017-11-10 02:21:31 +01:00
FallarborTown_BattleTentLobby_Text_2C4BC8: @ 82C4BC8
.string "Very well, now select your\n"
.string "three POKéMON, please.$"
FallarborTown_BattleTentLobby_Text_2C4BFA: @ 82C4BFA
.string "My dear challenger!\p"
.string "You do not have the three POKéMON\n"
.string "required for entry.\p"
.string "They also must not hold the same\n"
.string "kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "When you have made your preparations,\n"
.string "please do return.$"
FallarborTown_BattleTentLobby_Text_2C4CC0: @ 82C4CC0
.string "My dear challenger!\p"
.string "You do not have the three POKéMON\n"
.string "required for entry.\p"
.string "To qualify, you must bring three\n"
.string "different kinds of POKéMON.\p"
.string "They also must not hold the same\n"
.string "kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "When you have made your preparations,\n"
.string "please do return.$"
FallarborTown_BattleTentLobby_Text_2C4DC3: @ 82C4DC3
.string "I shall now guide you to\n"
.string "the BATTLE TENT.$"
FallarborTown_BattleTentLobby_Text_2C4DED: @ 82C4DED
.string "My dear challenger!\p"
.string "You did not save the game before\n"
.string "shutting down, did you?\p"
.string "It is unfortunate, but that has\n"
.string "resulted in your disqualification\l"
.string "from your challenge.\p"
.string "You may, of course, start with a fresh\n"
.string "challenge.$"
FallarborTown_BattleTentLobby_Text_2C4EC3: @ 82C4EC3
.string "How splendid! You have beaten\n"
.string "three TRAINERS in succession!$"
FallarborTown_BattleTentLobby_Text_2C4EFF: @ 82C4EFF
.string "Please wait while I save the game.$"
FallarborTown_BattleTentLobby_Text_2C4F22: @ 82C4F22
.string "In commemoration of your 3-win streak,\n"
.string "we present you with this prize.$"
FallarborTown_BattleTentLobby_Text_2C4F69: @ 82C4F69
.string "{PLAYER} received the prize\n"
.string "{STR_VAR_1}.$"
FallarborTown_BattleTentLobby_Text_2C4F83: @ 82C4F83
.string "Oh?\n"
.string "Your BAG seems to be full.\p"
.string "I urge you to clear space and\n"
.string "return for your prize.$"
FallarborTown_BattleTentLobby_Text_2C4FD7: @ 82C4FD7
.string "Thank you so much for participating!\p"
.string "Please wait while I save the game.$"
FallarborTown_BattleTentLobby_Text_2C501F: @ 82C501F
.string "We await your challenge on\n"
.string "another occasion!$"
FallarborTown_BattleTentLobby_Text_2C504C: @ 82C504C
.string "We have been looking forward to\n"
.string "your arrival.\p"
.string "Before I show you to the BATTLE TENT,\n"
.string "I must save the game. Please wait.$"
VerdanturfTown_BattleTentLobby_Text_2C50C3: @ 82C50C3
.string "I welcome you to the BATTLE TENT\n"
.string "VERDANTURF SITE!\p"
2018-12-07 16:41:08 +01:00
.string "Here, the TRAINER's trust toward\n"
2017-11-10 02:21:31 +01:00
.string "POKéMON is tested.$"
VerdanturfTown_BattleTentLobby_Text_2C5129: @ 82C5129
.string "Do you wish to take the VERDANTURF\n"
.string "BATTLE TENT challenge?$"
VerdanturfTown_BattleTentLobby_Text_2C5163: @ 82C5163
.string "In the VERDANTURF BATTLE TENT,\n"
.string "there is one crucial rule that must\l"
.string "be obeyed.\p"
.string "TRAINERS are permitted only to switch\n"
.string "their POKéMON in and out.\p"
.string "TRAINERS are otherwise forbidden to\n"
.string "command their POKéMON.\p"
.string "The POKéMON are to behave according\n"
.string "to their nature and battle on their own.\p"
.string "You must put your trust in your\n"
.string "POKéMON and watch over them.\p"
.string "If you achieve the honor of beating\n"
.string "three TRAINERS in succession,\l"
.string "we will present you with a prize.\p"
.string "If you want to interrupt your\n"
.string "challenge, please save the game.\p"
2018-12-07 16:41:08 +01:00
.string "If you don't save before interrupting,\n"
2017-11-10 02:21:31 +01:00
.string "you will be disqualified.$"
VerdanturfTown_BattleTentLobby_Text_2C539A: @ 82C539A
.string "When you have fortified your heart\n"
.string "and POKéMON, you must return.$"
2017-11-11 01:12:18 +01:00
VerdanturfTown_BattleTentLobby_Text_2C53DB: @ 82C53DB
.string "There are two levels of difficulty,\n"
.string "Level 50 and Open Level.\l"
.string "Which is your choice of a challenge?$"
2017-11-10 02:21:31 +01:00
VerdanturfTown_BattleTentLobby_Text_2C543D: @ 82C543D
.string "Sigh\p"
.string "You do not have the three POKéMON\n"
.string "required for the challenge.\p"
.string "To enter, you must provide three\n"
.string "different kinds of POKéMON.\p"
.string "They also must not be holding\n"
.string "the same kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "Come back when you have made\n"
.string "your preparations.$"
VerdanturfTown_BattleTentLobby_Text_2C5538: @ 82C5538
.string "Sigh\p"
.string "You do not have the three POKéMON\n"
.string "required for the challenge.\p"
.string "To enter, you must provide three\n"
.string "different kinds of POKéMON.\p"
.string "They also must not be holding\n"
.string "the same kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "Come back when you have made\n"
.string "your preparations.$"
VerdanturfTown_BattleTentLobby_Text_2C5633: @ 82C5633
.string "Good. Now, you must select your\n"
.string "three POKéMON.$"
VerdanturfTown_BattleTentLobby_Text_2C5662: @ 82C5662
.string "I must save before I show you to\n"
.string "the BATTLE TENT. Is that okay?$"
VerdanturfTown_BattleTentLobby_Text_2C56A2: @ 82C56A2
.string "Good.\n"
.string "Now, follow me.$"
VerdanturfTown_BattleTentLobby_Text_2C56B8: @ 82C56B8
.string "I feel privileged for having seen\n"
2018-12-07 16:41:08 +01:00
.string "your POKéMON's exploits.\p"
2017-11-10 02:21:31 +01:00
.string "The results will be recorded.\n"
.string "I must ask you to briefly wait.$"
VerdanturfTown_BattleTentLobby_Text_2C5731: @ 82C5731
.string "To achieve a 3-win streak\p"
.string "The bonds that bind your heart with\n"
.string "your POKéMON seem firm and true.$"
VerdanturfTown_BattleTentLobby_Text_2C5791: @ 82C5791
.string "Your feat will be recorded.\n"
.string "I must ask you to briefly wait.$"
VerdanturfTown_BattleTentLobby_Text_2C57CD: @ 82C57CD
.string "For the feat of your 3-win streak,\n"
.string "we present you with this prize.$"
SlateportCity_BattleTentLobby_Text_2C5810: @ 82C5810
.string "Welcome to the BATTLE TENT\n"
.string "SLATEPORT SITE!\p"
.string "I am your guide to the Battle Swap\n"
.string "Tournament.$"
SlateportCity_BattleTentLobby_Text_2C586A: @ 82C586A
.string "Would you like to take the Battle\n"
.string "Swap challenge?$"
SlateportCity_BattleTentLobby_Text_2C589C: @ 82C589C
.string "Here at the SLATEPORT BATTLE TENT,\n"
.string "we hold Battle Swap events\l"
.string "using rental POKéMON.\p"
.string "First, you will be loaned three\n"
.string "POKéMON specifically for this event.\p"
.string "Using the supplied rental POKéMON,\n"
.string "you must conduct a SINGLE BATTLE.\p"
.string "If you win, you are permitted to trade\n"
.string "one of your rental POKéMON.\p"
.string "Repeat this cycle of battling and\n"
.string "trading--if you win three times in\l"
.string "a row, you will earn a fine prize.\p"
.string "If you want to interrupt your\n"
.string "challenge, please save the game.\p"
2018-12-07 16:41:08 +01:00
.string "If you don't save before interrupting,\n"
2017-11-10 02:21:31 +01:00
.string "you will be disqualified.$"
SlateportCity_BattleTentLobby_Text_2C5AA5: @ 82C5AA5
.string "We look forward to your next visit.$"
2017-11-11 01:12:18 +01:00
SlateportCity_BattleTentLobby_Text_2C5AC9: @ 82C5AC9
.string "Which level do you wish to challenge?\n"
.string "Level 50 or Level 100?$"
2017-11-10 02:21:31 +01:00
SlateportCity_BattleTentLobby_Text_2C5B06: @ 82C5B06
.string "Before you begin your challenge,\n"
.string "I need to save data. Is that okay?$"
2017-11-11 01:12:18 +01:00
SlateportCity_BattleTentLobby_Text_2C5B4A: @ 82C5B4A
.string "Okay, I will hold your POKéMON for\n"
.string "safekeeping while you compete.$"
2017-11-10 02:21:31 +01:00
SlateportCity_BattleTentLobby_Text_2C5B8C: @ 82C5B8C
.string "Please step this way.$"
SlateportCity_BattleTentLobby_Text_2C5BA2: @ 82C5BA2
.string "Thank you for participating!\p"
.string "I will return your POKéMON in exchange\n"
.string "for our rental POKéMON.\p"
.string "I must also save your event results.\n"
.string "Please wait.$"
2017-11-11 01:12:18 +01:00
SlateportCity_BattleTentLobby_Text_2C5C30: @ 82C5C30
.string "I will return your POKéMON in exchange\n"
.string "for our rental POKéMON.$"
2017-11-10 02:21:31 +01:00
SlateportCity_BattleTentLobby_Text_2C5C6F: @ 82C5C6F
.string "Congratulations!\n"
2018-12-07 16:41:08 +01:00
.string "You've won three straight matches!\p"
2017-11-10 02:21:31 +01:00
.string "I will return your POKéMON in exchange\n"
.string "for our rental POKéMON.\p"
.string "I must also save your event results.\n"
.string "Please wait.$"
SlateportCity_BattleTentLobby_Text_2C5D14: @ 82C5D14
.string "In recognition of your 3-win streak,\n"
.string "we award you this prize.$"
SlateportCity_BattleTentLobby_Text_2C5D52: @ 82C5D52
.string "Oh?\n"
.string "You seem to have no room for this.\p"
.string "Please make room in your BAG and\n"
.string "let me know.$"
SlateportCity_BattleTentLobby_Text_2C5DA7: @ 82C5DA7
2018-12-07 16:41:08 +01:00
.string "We've been waiting for you!\p"
2017-11-10 02:21:31 +01:00
.string "Before we resume your challenge,\n"
.string "I must save the game.$"
SlateportCity_BattleTentLobby_Text_2C5DFA: @ 82C5DFA
2018-12-07 16:41:08 +01:00
.string "I'm sorry to say this, but you didn't\n"
2017-11-10 02:21:31 +01:00
.string "save before you quit playing last time.\p"
.string "As a result, you have been disqualified\n"
.string "from your challenge.$"
2017-11-11 01:12:18 +01:00
SlateportCity_BattleTentLobby_Text_2C5E85: @ 82C5E85
2018-12-07 16:41:08 +01:00
.string "We'll return your personal POKéMON.$"
2017-11-11 01:12:18 +01:00
SlateportCity_BattleTentLobby_Text_2C5EA9: @ 82C5EA9
.string "{PLAYER} received the prize\n"
.string "{STR_VAR_1}.$"
SlateportCity_BattleTentLobby_Text_2C5EC3: @ 82C5EC3
.string "The Battle Swap rules are listed.$"
SlateportCity_BattleTentLobby_Text_2C5EE5: @ 82C5EE5
.string "Which heading do you want to read?$"
2017-11-10 02:21:31 +01:00
SlateportCity_BattleTentLobby_Text_2C5F08: @ 82C5F08
.string "In a Battle Swap event, you may use\n"
.string "only three POKéMON.\p"
.string "Whether you are renting or swapping,\n"
.string "your team may not have two or more\l"
.string "of the same POKéMON.$"
SlateportCity_BattleTentLobby_Text_2C5F9D: @ 82C5F9D
.string "You may swap POKéMON only with\n"
.string "the TRAINER you have just defeated.\p"
.string "You may swap for only those POKéMON\n"
.string "used by the beaten TRAINER.$"
SlateportCity_BattleTentLobby_Text_2C6020: @ 82C6020
.string "After every battle you win, you may\n"
.string "swap for one of your defeated\l"
2018-12-07 16:41:08 +01:00
.string "opponent's POKéMON.\p"
2017-11-10 02:21:31 +01:00
.string "You will not be able to swap POKéMON\n"
.string "with the third TRAINER in the event.$"
SlateportCity_BattleTentLobby_Text_2C60C0: @ 82C60C0
.string "There are two key points to be aware\n"
.string "of when swapping POKéMON.\p"
2018-12-07 16:41:08 +01:00
.string "First, when swapping, you can't check\n"
2017-11-10 02:21:31 +01:00
.string "the stats of the POKéMON you are\l"
.string "about to receive.\p"
.string "Second, the POKéMON on your team\n"
.string "are lined up in sequence, depending on\l"
.string "the order in which you rented them.\p"
.string "This sequence remains unchanged\n"
.string "even when swaps are made.$"
SlateportCity_BattleTentLobby_Text_2C61FE: @ 82C61FE
.string "The POKéMON of the SLATEPORT\n"
.string "BATTLE TENT are all rentals.\p"
.string "All rental POKéMON are kept at\n"
.string "Level 30.$"
2017-11-11 01:12:18 +01:00
VerdanturfTown_BattleTentLobby_Text_2C6261: @ 82C6261
.string "The VERDANTURF BATTLE TENT\n"
.string "rules are listed.$"
VerdanturfTown_BattleTentLobby_Text_2C628E: @ 82C628E
.string "Which heading do you want to read?$"
VerdanturfTown_BattleTentLobby_Text_2C62B1: @ 82C62B1
.string "Here at the VERDANTURF BATTLE TENT,\n"
.string "POKéMON are required to think and\l"
.string "battle by themselves.\p"
.string "Unlike in the wild, POKéMON that live\n"
.string "with people behave differently\l"
.string "depending on their nature.$"
VerdanturfTown_BattleTentLobby_Text_2C636D: @ 82C636D
.string "Depending on its nature, a POKéMON\n"
.string "may prefer to attack no matter what.\p"
.string "Another POKéMON may prefer to protect\n"
.string "itself from any harm.\p"
.string "Yet another may enjoy vexing or\n"
.string "confounding its foes.\p"
.string "Depending on its nature, a POKéMON\n"
.string "will have favorite moves that it is good\l"
.string "at using.\p"
.string "It may also dislike certain moves that\n"
.string "it has trouble using.$"
VerdanturfTown_BattleTentLobby_Text_2C64BA: @ 82C64BA
.string "There are offensive moves that inflict\n"
.string "direct damage on the foe.\p"
.string "There are defensive moves that are\n"
.string "used to prepare for enemy attacks or\l"
.string "used to heal HP and so on.\p"
.string "There are also other somewhat-odd\n"
.string "moves that may enfeeble the foes with\l"
.string "stat problems including poison and \l"
.string "paralysis.\p"
.string "POKéMON will consider using moves in\n"
.string "these three categories.$"
VerdanturfTown_BattleTentLobby_Text_2C6612: @ 82C6612
.string "When not under command by its TRAINER,\n"
.string "a POKéMON may be unable to effectively\l"
.string "use certain moves.\p"
.string "A POKéMON is not good at using any\n"
.string "move that it dislikes.\p"
.string "If a POKéMON only knows moves that\n"
.string "do not match its nature, it will often\l"
.string "be unable to live up to its potential.$"
VerdanturfTown_BattleTentLobby_Text_2C671E: @ 82C671E
.string "Depending on its nature, a POKéMON may\n"
2018-12-07 16:41:08 +01:00
.string "start using moves that don't match its\l"
2017-11-11 01:12:18 +01:00
.string "nature when it is in trouble.\p"
.string "If a POKéMON begins behaving oddly\n"
.string "in a pinch, watch it carefully.$"
2017-11-10 02:21:31 +01:00
FallarborTown_BattleTentLobby_Text_2C67CD: @ 82C67CD
VerdanturfTown_BattleTentLobby_Text_2C67CD: @ 82C67CD
.string "At this BATTLE TENT, the levels of\n"
.string "your opponents will be adjusted to\l"
.string "match the levels of your POKéMON.\p"
.string "However, no TRAINER you face will\n"
.string "have any POKéMON below Level 30.$"
VerdanturfTown_BattleTentLobby_Text_2C6878: @ 82C6878
.string "The VERDANTURF BATTLE TENT\n"
.string "rules are listed.$"
.include "data/text/event_ticket_2.inc"
2017-11-10 02:21:31 +01:00
MauvilleCity_Text_2C6E05: @ 82C6E05
.string "This move can be learned only\n"
.string "once. Is that okay?$"
SlateportCity_PokemonFanClub_Text_2C6E37: @ 82C6E37
.string "Heh! My POKéMON totally rules!\n"
2018-12-07 16:41:08 +01:00
.string "It's cooler than any POKéMON!\p"
2017-11-10 02:21:31 +01:00
.string "I was lipping off with a swagger in\n"
.string "my step like that when the CHAIRMAN\l"
.string "chewed me out.\p"
.string "That took the swagger out of my step.\p"
2018-12-07 16:41:08 +01:00
.string "If you'd like, I'll teach the move\n"
2017-11-10 02:21:31 +01:00
.string "SWAGGER to a POKéMON of yours.$"
SlateportCity_PokemonFanClub_Text_2C6F33: @ 82C6F33
2018-12-07 16:41:08 +01:00
.string "What, no? Can't you get into\n"
2017-11-10 02:21:31 +01:00
.string "the spirit of things?$"
SlateportCity_PokemonFanClub_Text_2C6F66: @ 82C6F66
.string "All right, which POKéMON wants to\n"
.string "learn how to SWAGGER?$"
SlateportCity_PokemonFanClub_Text_2C6F9E: @ 82C6F9E
2018-12-07 16:41:08 +01:00
.string "I'll just praise my POKéMON from now\n"
2017-11-10 02:21:31 +01:00
.string "on without the swagger.$"
MauvilleCity_Text_2C6FDB: @ 82C6FDB
.string "Did you know that you can go from\n"
.string "here a long way in that direction\l"
.string "without changing direction?\p"
.string "I might even be able to roll\n"
.string "that way.\p"
.string "Do you think your POKéMON will\n"
.string "want to roll, too?\p"
.string "I can teach one the move ROLLOUT\n"
2018-12-07 16:41:08 +01:00
.string "if you'd like.$"
2017-11-10 02:21:31 +01:00
MauvilleCity_Text_2C70C4: @ 82C70C4
2018-12-07 16:41:08 +01:00
.string "You don't need to be shy about it.\n"
.string "Let's roll!$"
2017-11-10 02:21:31 +01:00
MauvilleCity_Text_2C70F3: @ 82C70F3
2018-12-07 16:41:08 +01:00
.string "Ehehe, sure thing! It'd be great if\n"
2017-11-10 02:21:31 +01:00
.string "the POKéMON looked like me.$"
MauvilleCity_Text_2C7133: @ 82C7133
.string "Rolling around in the grass makes me\n"
2018-12-07 16:41:08 +01:00
.string "happy. Come on, let's roll!$"
2017-11-10 02:21:31 +01:00
VerdanturfTown_PokemonCenter_1F_Text_2C7174: @ 82C7174
2018-12-07 16:41:08 +01:00
.string "There's a move that gets stronger\n"
2017-11-10 02:21:31 +01:00
.string "when you keep using it in a row.\p"
2018-12-07 16:41:08 +01:00
.string "It's a BUG-type move, and it is\n"
2017-11-10 02:21:31 +01:00
.string "wickedly cool.\p"
2018-12-07 16:41:08 +01:00
.string "It's called FURY CUTTER.\n"
2017-11-10 02:21:31 +01:00
.string "Want me to teach it to a POKéMON?$"
VerdanturfTown_PokemonCenter_1F_Text_2C7221: @ 82C7221
2018-12-07 16:41:08 +01:00
.string "We're not on the same wavelength.$"
2017-11-10 02:21:31 +01:00
VerdanturfTown_PokemonCenter_1F_Text_2C7243: @ 82C7243
.string "Yay!\n"
.string "Show me which POKéMON I should teach.$"
VerdanturfTown_PokemonCenter_1F_Text_2C726E: @ 82C726E
.string "I get a thrill watching to see if\n"
.string "the move keeps hitting in succession!$"
LavaridgeTown_House_Text_2C72B6: @ 82C72B6
.string "Ah, young one!\p"
.string "I am also a young one, but I mimic\n"
.string "the styles and speech of the elderly\l"
.string "folks of this town.\p"
.string "What do you say, young one?\n"
.string "Would you agree to it if I were to\l"
.string "offer to teach the move MIMIC?$"
LavaridgeTown_House_Text_2C737F: @ 82C737F
.string "Oh, boo! I wanted to teach MIMIC\n"
.string "to your POKéMON!$"
LavaridgeTown_House_Text_2C73B1: @ 82C73B1
.string "Fwofwo! And so I shall!\n"
.string "Let me see the POKéMON\l"
.string "you wish me to teach.$"
LavaridgeTown_House_Text_2C73F6: @ 82C73F6
.string "MIMIC is a move of great depth.\p"
.string "Could you execute it to perfection\n"
.string "as well as me?$"
FallarborTown_Mart_Text_2C7449: @ 82C7449
.string "I want all sorts of things!\n"
.string "But I used up my allowance\p"
2018-12-07 16:41:08 +01:00
.string "Wouldn't it be nice if there were\n"
2017-11-10 02:21:31 +01:00
.string "a spell that made money appear when\l"
.string "you waggle a finger?\p"
.string "If you want, I can teach your POKéMON\n"
.string "the move METRONOME.\p"
2018-12-07 16:41:08 +01:00
.string "Money won't appear, but your POKéMON\n"
2017-11-10 02:21:31 +01:00
.string "will waggle a finger. Yes?$"
FallarborTown_Mart_Text_2C7556: @ 82C7556
2018-12-07 16:41:08 +01:00
.string "Okay. I'll be here if you change\n"
2017-11-10 02:21:31 +01:00
.string "your mind.$"
FallarborTown_Mart_Text_2C7582: @ 82C7582
2018-12-07 16:41:08 +01:00
.string "Okay! I'll teach it!\n"
2017-11-10 02:21:31 +01:00
.string "Which POKéMON should I teach?$"
FallarborTown_Mart_Text_2C75B5: @ 82C75B5
.string "When a POKéMON waggles its finger\n"
.string "like a METRONOME, all sorts of nice\l"
.string "things happen.\p"
2018-12-07 16:41:08 +01:00
.string "Wouldn't it be nice if we could\n"
2017-11-10 02:21:31 +01:00
.string "use it, too?$"
FortreeCity_House2_Text_2C7637: @ 82C7637
.string "Humph! My wife relies on HIDDEN\n"
.string "POWER to stay awake.\p"
.string "She should just take a nap like I do,\n"
.string "and SLEEP TALK.\p"
.string "I can teach your POKéMON how to\n"
.string "SLEEP TALK instead. Interested?$"
FortreeCity_House2_Text_2C76E2: @ 82C76E2
.string "Oh, fine, fine. You want to stay awake\n"
.string "with HIDDEN POWER, too$"
FortreeCity_House2_Text_2C7721: @ 82C7721
.string "Ah, an appreciative child!\n"
.string "Which POKéMON should I teach?$"
FortreeCity_House2_Text_2C775A: @ 82C775A
2018-12-07 16:41:08 +01:00
.string "I've never once gotten my wife's\n"
2017-11-10 02:21:31 +01:00
.string "coin trick right.\p"
.string "I would be happy if I got it right\n"
.string "even as I SLEEP TALK$"
LilycoveCity_DepartmentStoreRooftop_Text_2C77C6: @ 82C77C6
.string "When I see the wide world from up\n"
.string "here on the roof\p"
.string "I think about how nice it would be\n"
.string "if there were more than just one me\l"
.string "so I could enjoy all sorts of lives.\p"
2018-12-07 16:41:08 +01:00
.string "Of course it's not possible.\n"
2017-11-10 02:21:31 +01:00
.string "Giggle\p"
.string "I know! Would you be interested in\n"
.string "having a POKéMON learn SUBSTITUTE?$"
LilycoveCity_DepartmentStoreRooftop_Text_2C78D1: @ 82C78D1
.string "Oh, no?\p"
.string "A POKéMON can make a copy of\n"
.string "itself using it, you know.$"
LilycoveCity_DepartmentStoreRooftop_Text_2C7911: @ 82C7911
.string "Giggle\n"
.string "Which POKéMON do you want me to\l"
.string "teach SUBSTITUTE?$"
LilycoveCity_DepartmentStoreRooftop_Text_2C794B: @ 82C794B
.string "We human beings should enjoy our\n"
.string "own lives to the utmost!\p"
2018-12-07 16:41:08 +01:00
.string "I hope you'll get that way, too!$"
2017-11-10 02:21:31 +01:00
MossdeepCity_Text_2C79A6: @ 82C79A6
2018-12-07 16:41:08 +01:00
.string "I can't do this anymore!\p"
.string "It's utterly hopeless!\p"
.string "I'm a FIGHTING-type TRAINER,\n"
.string "so I can't win at the MOSSDEEP GYM\l"
2017-11-10 02:21:31 +01:00
.string "no matter how hard I try!\p"
.string "Argh! Punch! Punch! Punch!\n"
.string "Punch! Punch! Punch!\p"
2018-12-07 16:41:08 +01:00
.string "What, don't look at me that way!\n"
.string "I'm only hitting the ground!\p"
2017-11-10 02:21:31 +01:00
.string "Or do you want me to teach your\n"
.string "POKéMON DYNAMICPUNCH?$"
MossdeepCity_Text_2C7AD4: @ 82C7AD4
2018-12-07 16:41:08 +01:00
.string "Darn! You're even making fun of me?\n"
2017-11-10 02:21:31 +01:00
.string "Punch! Punch! Punch!$"
MossdeepCity_Text_2C7B0D: @ 82C7B0D
2018-12-07 16:41:08 +01:00
.string "What? You do? You're a good person!\n"
2017-11-10 02:21:31 +01:00
.string "Which POKéMON should I teach?$"
MossdeepCity_Text_2C7B4F: @ 82C7B4F
.string "I want you to win at the MOSSDEEP GYM\n"
.string "using that DYNAMICPUNCH!$"
SootopolisCity_PokemonCenter_1F_Text_2C7B8E: @ 82C7B8E
.string "Sigh\p"
2018-12-07 16:41:08 +01:00
.string "SOOTOPOLIS's GYM LEADER is really\n"
2017-11-10 02:21:31 +01:00
.string "lovably admirable.\p"
.string "But that also means I have many\n"
.string "rivals for his attention.\p"
2018-12-07 16:41:08 +01:00
.string "He's got appeal with a DOUBLE-EDGE.\n"
.string "I couldn't even catch his eye.\p"
2017-11-10 02:21:31 +01:00
.string "Please, let me teach your POKéMON\n"
.string "the move DOUBLE-EDGE!$"
SootopolisCity_PokemonCenter_1F_Text_2C7C7E: @ 82C7C7E
.string "Oh\n"
.string "Even you rejected me$"
SootopolisCity_PokemonCenter_1F_Text_2C7C98: @ 82C7C98
.string "Okay, which POKéMON should I teach\n"
.string "DOUBLE-EDGE?$"
SootopolisCity_PokemonCenter_1F_Text_2C7CC8: @ 82C7CC8
2018-12-07 16:41:08 +01:00
.string "I won't live for love anymore!\n"
.string "I'll become tough!$"
2017-11-10 02:21:31 +01:00
PacifidlogTown_PokemonCenter_1F_Text_2C7CFA: @ 82C7CFA
2018-12-07 16:41:08 +01:00
.string "I don't intend to be going nowhere\n"
2017-11-10 02:21:31 +01:00
.string "fast in the sticks like this forever.\p"
2018-12-07 16:41:08 +01:00
.string "You watch me, I'll get out to the city\n"
2017-11-10 02:21:31 +01:00
.string "and become a huge hit.\p"
2018-12-07 16:41:08 +01:00
.string "Seriously, I'm going to cause\n"
2017-11-10 02:21:31 +01:00
.string "a huge EXPLOSION of popularity!\p"
2018-12-07 16:41:08 +01:00
.string "If you overheard that, I'll happily\n"
2017-11-10 02:21:31 +01:00
.string "teach EXPLOSION to your POKéMON!$"
PacifidlogTown_PokemonCenter_1F_Text_2C7E04: @ 82C7E04
2018-12-07 16:41:08 +01:00
.string "Gaah! You're turning me down because\n"
2017-11-10 02:21:31 +01:00
.string "I live in the country?$"
PacifidlogTown_PokemonCenter_1F_Text_2C7E40: @ 82C7E40
.string "Fine! An EXPLOSION it is!\n"
.string "Which POKéMON wants to blow up?$"
PacifidlogTown_PokemonCenter_1F_Text_2C7E7A: @ 82C7E7A
2018-12-07 16:41:08 +01:00
.string "For a long time, I've taught POKéMON\n"
.string "how to use EXPLOSION, but I've yet\l"
2017-11-10 02:21:31 +01:00
.string "to ignite my own EXPLOSION\p"
2018-12-07 16:41:08 +01:00
.string "Maybe it's because deep down,\n"
2017-11-10 02:21:31 +01:00
.string "I would rather stay here$"
SlateportCity_PokemonFanClub_EventScript_2C7F16:: @ 82C7F16
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_SWAGGER, SlateportCity_PokemonFanClub_EventScript_2C7F74
msgbox SlateportCity_PokemonFanClub_Text_2C6E37, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_2C7F6A
2017-11-10 02:21:31 +01:00
call SlateportCity_PokemonFanClub_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_2C7F6A
msgbox SlateportCity_PokemonFanClub_Text_2C6F66, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 23
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SlateportCity_PokemonFanClub_EventScript_2C7F6A
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_SWAGGER
2017-11-10 02:21:31 +01:00
goto SlateportCity_PokemonFanClub_EventScript_2C7F74
end
SlateportCity_PokemonFanClub_EventScript_2C7F6A:: @ 82C7F6A
msgbox SlateportCity_PokemonFanClub_Text_2C6F33, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
SlateportCity_PokemonFanClub_EventScript_2C7F74:: @ 82C7F74
msgbox SlateportCity_PokemonFanClub_Text_2C6F9E, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
MauvilleCity_EventScript_2C7F7E:: @ 82C7F7E
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_ROLLOUT, MauvilleCity_EventScript_2C7FDC
msgbox MauvilleCity_Text_2C6FDB, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_EventScript_2C7FD2
2017-11-10 02:21:31 +01:00
call MauvilleCity_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_EventScript_2C7FD2
msgbox MauvilleCity_Text_2C70F3, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 16
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MauvilleCity_EventScript_2C7FD2
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_ROLLOUT
2017-11-10 02:21:31 +01:00
goto MauvilleCity_EventScript_2C7FDC
end
MauvilleCity_EventScript_2C7FD2:: @ 82C7FD2
msgbox MauvilleCity_Text_2C70C4, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
MauvilleCity_EventScript_2C7FDC:: @ 82C7FDC
msgbox MauvilleCity_Text_2C7133, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
VerdanturfTown_PokemonCenter_1F_EventScript_2C7FE6:: @ 82C7FE6
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_FURY_CUTTER, VerdanturfTown_PokemonCenter_1F_EventScript_2C8044
msgbox VerdanturfTown_PokemonCenter_1F_Text_2C7174, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq VerdanturfTown_PokemonCenter_1F_EventScript_2C803A
2017-11-10 02:21:31 +01:00
call VerdanturfTown_PokemonCenter_1F_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq VerdanturfTown_PokemonCenter_1F_EventScript_2C803A
msgbox VerdanturfTown_PokemonCenter_1F_Text_2C7243, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 29
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq VerdanturfTown_PokemonCenter_1F_EventScript_2C803A
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_FURY_CUTTER
2017-11-10 02:21:31 +01:00
goto VerdanturfTown_PokemonCenter_1F_EventScript_2C8044
end
VerdanturfTown_PokemonCenter_1F_EventScript_2C803A:: @ 82C803A
msgbox VerdanturfTown_PokemonCenter_1F_Text_2C7221, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
VerdanturfTown_PokemonCenter_1F_EventScript_2C8044:: @ 82C8044
msgbox VerdanturfTown_PokemonCenter_1F_Text_2C726E, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
LavaridgeTown_House_EventScript_2C804E:: @ 82C804E
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_MIMIC, LavaridgeTown_House_EventScript_2C80AC
msgbox LavaridgeTown_House_Text_2C72B6, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LavaridgeTown_House_EventScript_2C80A2
2017-11-10 02:21:31 +01:00
call LavaridgeTown_House_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LavaridgeTown_House_EventScript_2C80A2
msgbox LavaridgeTown_House_Text_2C73B1, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 7
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LavaridgeTown_House_EventScript_2C80A2
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_MIMIC
2017-11-10 02:21:31 +01:00
goto LavaridgeTown_House_EventScript_2C80AC
end
LavaridgeTown_House_EventScript_2C80A2:: @ 82C80A2
msgbox LavaridgeTown_House_Text_2C737F, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
LavaridgeTown_House_EventScript_2C80AC:: @ 82C80AC
msgbox LavaridgeTown_House_Text_2C73F6, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
FallarborTown_Mart_EventScript_2C80B6:: @ 82C80B6
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_METRONOME, FallarborTown_Mart_EventScript_2C8114
msgbox FallarborTown_Mart_Text_2C7449, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FallarborTown_Mart_EventScript_2C810A
2017-11-10 02:21:31 +01:00
call FallarborTown_Mart_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FallarborTown_Mart_EventScript_2C810A
msgbox FallarborTown_Mart_Text_2C7582, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 8
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FallarborTown_Mart_EventScript_2C810A
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_METRONOME
2017-11-10 02:21:31 +01:00
goto FallarborTown_Mart_EventScript_2C8114
end
FallarborTown_Mart_EventScript_2C810A:: @ 82C810A
msgbox FallarborTown_Mart_Text_2C7556, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
FallarborTown_Mart_EventScript_2C8114:: @ 82C8114
msgbox FallarborTown_Mart_Text_2C75B5, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
FortreeCity_House2_EventScript_2C811E:: @ 82C811E
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_SLEEP_TALK, FortreeCity_House2_EventScript_2C817C
msgbox FortreeCity_House2_Text_2C7637, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FortreeCity_House2_EventScript_2C8172
2017-11-10 02:21:31 +01:00
call FortreeCity_House2_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FortreeCity_House2_EventScript_2C8172
msgbox FortreeCity_House2_Text_2C7721, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 24
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq FortreeCity_House2_EventScript_2C8172
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_SLEEP_TALK
2017-11-10 02:21:31 +01:00
goto FortreeCity_House2_EventScript_2C817C
end
FortreeCity_House2_EventScript_2C8172:: @ 82C8172
msgbox FortreeCity_House2_Text_2C76E2, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
FortreeCity_House2_EventScript_2C817C:: @ 82C817C
msgbox FortreeCity_House2_Text_2C775A, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
LilycoveCity_DepartmentStoreRooftop_EventScript_2C8186:: @ 82C8186
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_SUBSTITUTE, LilycoveCity_DepartmentStoreRooftop_EventScript_2C81E4
msgbox LilycoveCity_DepartmentStoreRooftop_Text_2C77C6, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_DepartmentStoreRooftop_EventScript_2C81DA
2017-11-10 02:21:31 +01:00
call LilycoveCity_DepartmentStoreRooftop_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_DepartmentStoreRooftop_EventScript_2C81DA
msgbox LilycoveCity_DepartmentStoreRooftop_Text_2C7911, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 14
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq LilycoveCity_DepartmentStoreRooftop_EventScript_2C81DA
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_SUBSTITUTE
2017-11-10 02:21:31 +01:00
goto LilycoveCity_DepartmentStoreRooftop_EventScript_2C81E4
end
LilycoveCity_DepartmentStoreRooftop_EventScript_2C81DA:: @ 82C81DA
msgbox LilycoveCity_DepartmentStoreRooftop_Text_2C78D1, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
LilycoveCity_DepartmentStoreRooftop_EventScript_2C81E4:: @ 82C81E4
msgbox LilycoveCity_DepartmentStoreRooftop_Text_2C794B, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
MossdeepCity_EventScript_2C81EE:: @ 82C81EE
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_DYNAMICPUNCH, MossdeepCity_EventScript_2C824C
msgbox MossdeepCity_Text_2C79A6, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MossdeepCity_EventScript_2C8242
2017-11-10 02:21:31 +01:00
call MossdeepCity_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MossdeepCity_EventScript_2C8242
msgbox MossdeepCity_Text_2C7B0D, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 15
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq MossdeepCity_EventScript_2C8242
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_DYNAMICPUNCH
2017-11-10 02:21:31 +01:00
goto MossdeepCity_EventScript_2C824C
end
MossdeepCity_EventScript_2C8242:: @ 82C8242
msgbox MossdeepCity_Text_2C7AD4, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
MossdeepCity_EventScript_2C824C:: @ 82C824C
msgbox MossdeepCity_Text_2C7B4F, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
SootopolisCity_PokemonCenter_1F_EventScript_2C8256:: @ 82C8256
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_DOUBLE_EDGE, SootopolisCity_PokemonCenter_1F_EventScript_2C82B4
msgbox SootopolisCity_PokemonCenter_1F_Text_2C7B8E, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SootopolisCity_PokemonCenter_1F_EventScript_2C82AA
2017-11-10 02:21:31 +01:00
call SootopolisCity_PokemonCenter_1F_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SootopolisCity_PokemonCenter_1F_EventScript_2C82AA
msgbox SootopolisCity_PokemonCenter_1F_Text_2C7C98, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 4
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq SootopolisCity_PokemonCenter_1F_EventScript_2C82AA
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_DOUBLE_EDGE
2017-11-10 02:21:31 +01:00
goto SootopolisCity_PokemonCenter_1F_EventScript_2C82B4
end
SootopolisCity_PokemonCenter_1F_EventScript_2C82AA:: @ 82C82AA
msgbox SootopolisCity_PokemonCenter_1F_Text_2C7C7E, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
SootopolisCity_PokemonCenter_1F_EventScript_2C82B4:: @ 82C82B4
msgbox SootopolisCity_PokemonCenter_1F_Text_2C7CC8, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
PacifidlogTown_PokemonCenter_1F_EventScript_2C82BE:: @ 82C82BE
lock
faceplayer
2019-01-02 22:12:43 +01:00
goto_if_set FLAG_MOVE_TUTOR_TAUGHT_EXPLOSION, PacifidlogTown_PokemonCenter_1F_EventScript_2C831C
msgbox PacifidlogTown_PokemonCenter_1F_Text_2C7CFA, MSGBOX_YESNO
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq PacifidlogTown_PokemonCenter_1F_EventScript_2C8312
2017-11-10 02:21:31 +01:00
call PacifidlogTown_PokemonCenter_1F_EventScript_2C832D
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq PacifidlogTown_PokemonCenter_1F_EventScript_2C8312
msgbox PacifidlogTown_PokemonCenter_1F_Text_2C7E40, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 12
2019-02-23 02:21:26 +01:00
call EventScript_ShowPartyMenu
compare VAR_RESULT, 0
2018-12-22 02:28:24 +01:00
goto_if_eq PacifidlogTown_PokemonCenter_1F_EventScript_2C8312
2019-01-02 22:12:43 +01:00
setflag FLAG_MOVE_TUTOR_TAUGHT_EXPLOSION
2017-11-10 02:21:31 +01:00
goto PacifidlogTown_PokemonCenter_1F_EventScript_2C831C
end
PacifidlogTown_PokemonCenter_1F_EventScript_2C8312:: @ 82C8312
msgbox PacifidlogTown_PokemonCenter_1F_Text_2C7E04, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
PacifidlogTown_PokemonCenter_1F_EventScript_2C831C:: @ 82C831C
msgbox PacifidlogTown_PokemonCenter_1F_Text_2C7E7A, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-02-23 02:21:26 +01:00
EventScript_ShowPartyMenu:: @ 82C8326
2017-11-10 02:21:31 +01:00
special sub_81B892C
waitstate
lock
faceplayer
return
FallarborTown_Mart_EventScript_2C832D:: @ 82C832D
FortreeCity_House2_EventScript_2C832D:: @ 82C832D
LavaridgeTown_House_EventScript_2C832D:: @ 82C832D
LilycoveCity_DepartmentStoreRooftop_EventScript_2C832D:: @ 82C832D
MauvilleCity_EventScript_2C832D:: @ 82C832D
MossdeepCity_EventScript_2C832D:: @ 82C832D
PacifidlogTown_PokemonCenter_1F_EventScript_2C832D:: @ 82C832D
SlateportCity_PokemonFanClub_EventScript_2C832D:: @ 82C832D
SootopolisCity_PokemonCenter_1F_EventScript_2C832D:: @ 82C832D
VerdanturfTown_PokemonCenter_1F_EventScript_2C832D:: @ 82C832D
msgbox MauvilleCity_Text_2C6E05, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
return
TrainerHill_1F_MapScript1_2C8336: @ 82C8336
TrainerHill_2F_MapScript1_2C8336: @ 82C8336
TrainerHill_3F_MapScript1_2C8336: @ 82C8336
TrainerHill_4F_MapScript1_2C8336: @ 82C8336
TrainerHill_Roof_MapScript1_2C8336: @ 82C8336
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 0
setvar VAR_0x8004, TRAINER_HILL_FUNC_RESUME_TIMER
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
setvar VAR_0x8005, 5
2018-11-01 21:31:10 +01:00
special CallFrontierUtilFunc
compare VAR_RESULT, B_OUTCOME_LOST
2018-12-22 02:28:24 +01:00
goto_if_eq TrainerHill_1F_EventScript_2C83C9
compare VAR_RESULT, B_OUTCOME_DREW
2018-12-22 02:28:24 +01:00
goto_if_eq TrainerHill_1F_EventScript_2C83C9
compare VAR_RESULT, B_OUTCOME_FORFEITED
2018-12-22 02:28:24 +01:00
goto_if_eq TrainerHill_1F_EventScript_2C83C9
2017-11-10 02:21:31 +01:00
end
TrainerHill_1F_MapScript2_2C8372: @ 82C8372
TrainerHill_2F_MapScript2_2C8372: @ 82C8372
2018-05-19 18:02:43 +02:00
map_script_2 VAR_TEMP_3, 0, TrainerHill_1F_EventScript_2C837C
2017-11-10 02:21:31 +01:00
.2byte 0
TrainerHill_1F_EventScript_2C837C:: @ 82C837C
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_3, 1
2017-11-10 02:21:31 +01:00
@ forced stop
TrainerHill_1F_MapScript2_2C8381: @ 82C8381
TrainerHill_2F_MapScript2_2C8381: @ 82C8381
TrainerHill_3F_MapScript2_2C8381: @ 82C8381
TrainerHill_4F_MapScript2_2C8381: @ 82C8381
TrainerHill_Roof_MapScript2_2C8381: @ 82C8381
2018-05-19 18:02:43 +02:00
map_script_2 VAR_TEMP_2, 0, TrainerHill_1F_EventScript_2C83A6
map_script_2 VAR_TEMP_1, 1, TrainerHill_1F_EventScript_2C83DF
2017-11-10 02:21:31 +01:00
.2byte 0
2015-10-10 14:20:38 +02:00
2018-10-17 04:47:08 +02:00
EventScript_TrainerHillTimer:: @ 82C8393
2017-11-11 01:12:18 +01:00
lockall
setvar VAR_0x8004, TRAINER_HILL_FUNC_7
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
msgbox TrainerHill_Entrance_Text_268D47, MSGBOX_DEFAULT
2017-11-11 01:12:18 +01:00
releaseall
end
2017-11-10 02:21:31 +01:00
TrainerHill_1F_EventScript_2C83A6:: @ 82C83A6
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
setvar VAR_0x8004, TRAINER_HILL_FUNC_9
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
compare VAR_RESULT, 1
2018-12-22 02:28:24 +01:00
goto_if_eq TrainerHill_1F_EventScript_2C83BF
2017-11-10 02:21:31 +01:00
end
TrainerHill_1F_EventScript_2C83BF:: @ 82C83BF
warpsilent MAP_TRAINER_HILL_ENTRANCE, 255, 9, 6
2017-11-10 02:21:31 +01:00
waitstate
end
TrainerHill_1F_EventScript_2C83C9:: @ 82C83C9
setvar VAR_0x8004, TRAINER_HILL_FUNC_12
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
setvar VAR_0x8004, TRAINER_HILL_FUNC_SET_LOST
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
2017-11-10 02:21:31 +01:00
end
TrainerHill_1F_EventScript_2C83DF:: @ 82C83DF
TrainerHill_Entrance_EventScript_2C83DF:: @ 82C83DF
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 0
warp MAP_TRAINER_HILL_ENTRANCE, 255, 9, 6
2017-11-10 02:21:31 +01:00
waitstate
end
2017-11-11 01:12:18 +01:00
TrainerHill_1F_Movement_2C83EE:: @ 82C83EE
set_invisible
2017-11-11 01:12:18 +01:00
step_end
EventScript_2C83F0:: @ 82C83F0
2019-02-07 18:37:28 +01:00
trainerbattle TRAINER_BATTLE_12, TRAINER_PHILLIP, 0, BattleFacility_TrainerBattle_PlaceholderText, BattleFacility_TrainerBattle_PlaceholderText
setvar VAR_0x8004, TRAINER_HILL_FUNC_11
2019-01-13 13:15:23 +01:00
special CallTrainerHillFunction
2017-11-11 01:12:18 +01:00
waitmessage
waitbuttonpress
closemessage
end
2017-12-01 21:25:13 +01:00
Text_ThisIsATestSignpostMsg:: @ 82C840A
2017-11-11 01:12:18 +01:00
.string "This is a test message.\n"
.string "This is a signpost.$"
2017-12-01 21:25:13 +01:00
EventScript_TestSignpostMsg:: @ 82C8436
msgbox Text_ThisIsATestSignpostMsg, MSGBOX_SIGN
2017-11-11 01:12:18 +01:00
end
gText_082C843F:: @ 82C843F
2018-12-07 16:41:08 +01:00
.string "It's very disappointing$"
2017-11-11 01:12:18 +01:00
gText_082C8458:: @ 82C8458
2017-11-11 01:12:18 +01:00
.string "Okay, I understand$"
gText_082C846C:: @ 82C846C
2018-12-07 16:41:08 +01:00
.string "I'm terribly sorry$"
2017-11-11 01:12:18 +01:00
gText_082C8480:: @ 82C8480
2017-11-11 01:12:18 +01:00
.string "Thank you$"
gText_082C848B:: @ 82C848B
2018-12-07 16:41:08 +01:00
.string "Ahahaha! Aren't you embarrassed?\n"
.string "Everyone's watching!$"
2017-11-11 01:12:18 +01:00
gText_082C84C1:: @ 82C84C1
2017-11-11 01:12:18 +01:00
.string "Grr\n"
.string "What the$"
gText_082C84D0:: @ 82C84D0
2018-12-07 16:41:08 +01:00
.string "My DOME ACE title isn't just for show!$"
2017-11-11 01:12:18 +01:00
gText_082C84F7:: @ 82C84F7
2017-11-11 01:12:18 +01:00
.string "Ahahaha!\n"
2018-12-07 16:41:08 +01:00
.string "You're inspiring!$"
2017-11-11 01:12:18 +01:00
gText_082C8512:: @ 82C8512
2017-11-11 01:12:18 +01:00
.string "Way to work!\n"
.string "That was a good lesson, eh?$"
gText_082C853B:: @ 82C853B
2017-11-11 01:12:18 +01:00
.string "Good job!\n"
2018-12-07 16:41:08 +01:00
.string "You know what you're doing!$"
2017-11-11 01:12:18 +01:00
gText_082C8561:: @ 82C8561
2017-11-11 01:12:18 +01:00
.string "Hey, hey, hey!\n"
2018-12-07 16:41:08 +01:00
.string "You're finished already?$"
2017-11-11 01:12:18 +01:00
gText_082C8589:: @ 82C8589
2017-11-11 01:12:18 +01:00
.string "What happened here?$"
gText_082C859D:: @ 82C859D
2017-11-11 01:12:18 +01:00
.string "Humph$"
gText_082C85A4:: @ 82C85A4
2017-11-11 01:12:18 +01:00
.string "Urk$"
gText_082C85A9:: @ 82C85A9
2017-11-11 01:12:18 +01:00
.string "Hah!$"
gText_082C85AE:: @ 82C85AE
2017-11-11 01:12:18 +01:00
.string "Darn!$"
gText_082C85B4:: @ 82C85B4
2017-11-11 01:12:18 +01:00
.string "Oh, come on!\n"
.string "You have to try harder than that!$"
gText_082C85E3:: @ 82C85E3
2017-11-11 01:12:18 +01:00
.string "No way!\n"
.string "Good job!$"
gText_082C85F5:: @ 82C85F5
2017-11-11 01:12:18 +01:00
.string "Heheh!\n"
.string "What did you expect?$"
gText_082C8611:: @ 82C8611
2017-11-11 01:12:18 +01:00
.string "Huh?\n"
.string "Are you serious?!$"
gText_082C8628:: @ 82C8628
2017-11-11 01:12:18 +01:00
.string "Your POKéMON are wimpy because\n"
2018-12-07 16:41:08 +01:00
.string "you're wimpy as a TRAINER!$"
2017-11-11 01:12:18 +01:00
gText_082C8662:: @ 82C8662
2017-11-11 01:12:18 +01:00
.string "Ah\n"
.string "Now this is something else$"
gText_082C8682:: @ 82C8682
2017-11-11 01:12:18 +01:00
.string "Gwahahaha!\n"
.string "My brethren, we have nothing to fear!$"
gText_082C86B3:: @ 82C86B3
2017-11-11 01:12:18 +01:00
.string "Gwah!\n"
.string "Hahahaha!$"
gText_082C86C3:: @ 82C86C3
2018-12-07 16:41:08 +01:00
.string "Hey! What's wrong with you!\n"
.string "Let's see some effort! Get up!$"
2017-11-11 01:12:18 +01:00
gText_082C86FE:: @ 82C86FE
2018-12-07 16:41:08 +01:00
.string "That's it! You've done great!\n"
.string "You've worked hard for this!$"
2015-10-10 14:20:38 +02:00
gText_082C8739:: @ 82C8739
2018-12-07 16:41:08 +01:00
.string "Hey! Don't you give up now!\n"
.string "Get up! Don't lose faith in yourself!$"
2015-10-10 14:20:38 +02:00
gText_082C877B:: @ 82C877B
2018-12-07 16:41:08 +01:00
.string "That's it! You've done it!\n"
2017-11-11 01:12:18 +01:00
.string "You kept working for this!$"
2015-10-10 14:20:38 +02:00
2017-11-11 01:12:18 +01:00
.align 2
.include "data/text/save.inc"
.include "data/text/birch_speech.inc"