2018-01-31 16:38:45 +00:00
|
|
|
const_def 2 ; object constants
|
2015-11-27 05:22:14 +00:00
|
|
|
const BATTLETOWERBATTLEROOM_YOUNGSTER
|
|
|
|
const BATTLETOWERBATTLEROOM_RECEPTIONIST
|
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
BattleTowerBattleRoom_MapScripts:
|
2018-01-30 19:15:47 +00:00
|
|
|
db 2 ; scene scripts
|
2018-02-01 17:40:58 +00:00
|
|
|
scene_script .EnterBattleRoom ; SCENE_DEFAULT
|
2018-02-01 20:06:06 +00:00
|
|
|
scene_script .DummyScene ; SCENE_FINISHED
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; callbacks
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-03-01 22:33:43 +00:00
|
|
|
.EnterBattleRoom:
|
2015-11-27 05:22:14 +00:00
|
|
|
disappear BATTLETOWERBATTLEROOM_YOUNGSTER
|
2015-08-24 23:56:30 +00:00
|
|
|
priorityjump Script_BattleRoom
|
2018-02-01 20:06:06 +00:00
|
|
|
setscene SCENE_FINISHED
|
2017-12-24 18:46:34 +00:00
|
|
|
.DummyScene:
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_BattleRoom:
|
2015-11-27 02:05:32 +00:00
|
|
|
applymovement PLAYER, MovementData_BattleTowerBattleRoomPlayerWalksIn
|
2015-08-24 23:56:30 +00:00
|
|
|
; beat all 7 opponents in a row
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_BattleRoomLoop:
|
2015-12-08 21:06:13 +00:00
|
|
|
writebyte BATTLETOWERBATTLEROOM_YOUNGSTER
|
2018-01-24 16:17:05 +00:00
|
|
|
special LoadOpponentTrainerAndPokemonWithOTSprite
|
2015-11-27 05:22:14 +00:00
|
|
|
appear BATTLETOWERBATTLEROOM_YOUNGSTER
|
2013-02-17 06:54:07 +00:00
|
|
|
warpsound
|
2015-11-25 15:16:29 +00:00
|
|
|
waitsfx
|
2015-11-27 05:22:14 +00:00
|
|
|
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksIn
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2018-01-15 00:26:55 +00:00
|
|
|
battletowertext BATTLETOWERTEXT_INTRO
|
2015-11-30 03:29:45 +00:00
|
|
|
buttonsound
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerBattle ; calls predef startbattle
|
|
|
|
special FadeOutPalettes
|
2013-12-02 19:18:03 +00:00
|
|
|
reloadmap
|
2018-02-03 02:09:17 +00:00
|
|
|
ifnotequal $0, Script_FailedBattleTowerChallenge
|
2018-07-28 23:27:34 +00:00
|
|
|
copybytetovar wNrOfBeatenBattleTowerTrainers
|
2018-02-03 02:09:17 +00:00
|
|
|
ifequal BATTLETOWER_STREAK_LENGTH, Script_BeatenAllTrainers
|
2015-11-27 05:22:14 +00:00
|
|
|
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksOut
|
2013-02-17 06:54:07 +00:00
|
|
|
warpsound
|
2015-11-27 05:22:14 +00:00
|
|
|
disappear BATTLETOWERBATTLEROOM_YOUNGSTER
|
|
|
|
applymovement BATTLETOWERBATTLEROOM_RECEPTIONIST, MovementData_BattleTowerBattleRoomReceptionistWalksToPlayer
|
2015-11-27 02:05:32 +00:00
|
|
|
applymovement PLAYER, MovementData_BattleTowerBattleRoomPlayerTurnsToFaceReceptionist
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2018-02-22 16:13:29 +00:00
|
|
|
writetext Text_YourMonWillBeHealedToFullHealth
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
2014-04-30 10:04:35 +00:00
|
|
|
playmusic MUSIC_HEAL
|
2018-01-24 16:17:05 +00:00
|
|
|
special FadeOutPalettes
|
|
|
|
special LoadMapPalettes
|
2013-02-17 06:54:07 +00:00
|
|
|
pause 60
|
2018-01-24 16:17:05 +00:00
|
|
|
special FadeInPalettes
|
2015-02-11 23:03:42 +00:00
|
|
|
special RestartMapMusic
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-08-24 17:35:05 +00:00
|
|
|
writetext Text_NextUpOpponentNo
|
2013-02-17 06:54:07 +00:00
|
|
|
yesorno
|
2015-08-24 23:56:30 +00:00
|
|
|
iffalse Script_DontBattleNextOpponent
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_ContinueAndBattleNextOpponent:
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2015-11-27 02:05:32 +00:00
|
|
|
applymovement PLAYER, MovementData_BattleTowerBattleRoomPlayerTurnsToFaceNextOpponent
|
2015-11-27 05:22:14 +00:00
|
|
|
applymovement BATTLETOWERBATTLEROOM_RECEPTIONIST, MovementData_BattleTowerBattleRoomReceptionistWalksAway
|
2015-08-24 23:56:30 +00:00
|
|
|
jump Script_BattleRoomLoop
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_DontBattleNextOpponent:
|
2015-08-24 17:35:05 +00:00
|
|
|
writetext Text_SaveAndEndTheSession
|
2013-02-17 06:54:07 +00:00
|
|
|
yesorno
|
2015-08-24 23:56:30 +00:00
|
|
|
iffalse Script_DontSaveAndEndTheSession
|
2015-11-27 02:05:32 +00:00
|
|
|
writebyte BATTLETOWERACTION_SAVELEVELGROUP ; save level group
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-12-08 21:06:13 +00:00
|
|
|
writebyte BATTLETOWERACTION_SAVEOPTIONS ; choose reward
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-12-08 21:06:13 +00:00
|
|
|
writebyte BATTLETOWERACTION_SAVE_AND_QUIT ; quicksave
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2014-04-30 10:04:35 +00:00
|
|
|
playsound SFX_SAVE
|
2015-11-25 15:16:29 +00:00
|
|
|
waitsfx
|
2018-01-24 16:17:05 +00:00
|
|
|
special FadeOutPalettes
|
2015-02-11 23:03:42 +00:00
|
|
|
special Reset
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_DontSaveAndEndTheSession:
|
2015-08-24 17:35:05 +00:00
|
|
|
writetext Text_CancelYourBattleRoomChallenge
|
2013-02-17 06:54:07 +00:00
|
|
|
yesorno
|
2015-08-24 23:56:30 +00:00
|
|
|
iffalse Script_ContinueAndBattleNextOpponent
|
2015-11-27 02:05:32 +00:00
|
|
|
writebyte BATTLETOWERACTION_CHALLENGECANCELED
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-11-27 02:05:32 +00:00
|
|
|
writebyte BATTLETOWERACTION_06
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2018-01-24 16:17:05 +00:00
|
|
|
special FadeOutPalettes
|
2018-01-09 23:45:25 +00:00
|
|
|
warpfacing UP, BATTLE_TOWER_1F, 7, 7
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-11-27 02:05:32 +00:00
|
|
|
jump Script_BattleTowerHopeToServeYouAgain
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-11-03 20:05:19 +00:00
|
|
|
Script_FailedBattleTowerChallenge:
|
2013-02-17 06:54:07 +00:00
|
|
|
pause 60
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerFade
|
2018-01-09 23:45:25 +00:00
|
|
|
warpfacing UP, BATTLE_TOWER_1F, 7, 7
|
2015-11-27 02:05:32 +00:00
|
|
|
writebyte BATTLETOWERACTION_CHALLENGECANCELED
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-08-24 23:56:30 +00:00
|
|
|
writetext Text_ThanksForVisiting
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-03-01 22:33:43 +00:00
|
|
|
Script_BeatenAllTrainers:
|
2013-02-17 06:54:07 +00:00
|
|
|
pause 60
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerFade
|
2018-01-09 23:45:25 +00:00
|
|
|
warpfacing UP, BATTLE_TOWER_1F, 7, 7
|
2015-11-27 02:05:32 +00:00
|
|
|
Script_BeatenAllTrainers2:
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-08-24 23:56:30 +00:00
|
|
|
writetext Text_CongratulationsYouveBeatenAllTheTrainers
|
|
|
|
jump Script_GivePlayerHisPrize
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2015-11-27 02:05:32 +00:00
|
|
|
UnreferencedScript_0x9f4eb:
|
|
|
|
writebyte BATTLETOWERACTION_CHALLENGECANCELED
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-08-24 23:56:30 +00:00
|
|
|
writetext Text_TooMuchTimeElapsedNoRegister
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-11-27 02:05:32 +00:00
|
|
|
UnreferencedScript_0x9f4f7:
|
|
|
|
writebyte BATTLETOWERACTION_CHALLENGECANCELED
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-11-27 02:05:32 +00:00
|
|
|
writebyte BATTLETOWERACTION_06
|
2018-01-24 16:17:05 +00:00
|
|
|
special BattleTowerAction
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2015-08-24 23:56:30 +00:00
|
|
|
writetext Text_ThanksForVisiting
|
2015-08-24 17:35:05 +00:00
|
|
|
writetext Text_WeHopeToServeYouAgain
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-11-27 02:05:32 +00:00
|
|
|
Text_ReturnedAfterSave_Mobile:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "You'll be returned"
|
|
|
|
line "after you SAVE."
|
|
|
|
done
|
2013-05-01 17:29:45 +00:00
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
BattleTowerBattleRoom_MapEvents:
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0, 0 ; filler
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 2 ; warp events
|
2018-02-02 03:22:07 +00:00
|
|
|
warp_event 3, 7, BATTLE_TOWER_HALLWAY, 4
|
|
|
|
warp_event 4, 7, BATTLE_TOWER_HALLWAY, 4
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; coord events
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0 ; bg events
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-30 19:15:47 +00:00
|
|
|
db 2 ; object events
|
2018-02-02 03:22:07 +00:00
|
|
|
object_event 4, 0, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ObjectEvent, EVENT_BATTLE_TOWER_BATTLE_ROOM_YOUNGSTER
|
|
|
|
object_event 1, 6, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ObjectEvent, -1
|