pokecrystal-board/maps/RadioTower2F.asm

741 lines
15 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
2015-11-26 21:22:14 -08:00
const RADIOTOWER2F_SUPER_NERD
const RADIOTOWER2F_TEACHER
const RADIOTOWER2F_ROCKET1
const RADIOTOWER2F_ROCKET2
const RADIOTOWER2F_ROCKET3
const RADIOTOWER2F_ROCKET_GIRL
const RADIOTOWER2F_BLACK_BELT1
const RADIOTOWER2F_BLACK_BELT2
const RADIOTOWER2F_JIGGLYPUFF
const RADIOTOWER2F_BUENA
const RADIOTOWER2F_RECEPTIONIST
RadioTower2F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2018-02-28 14:47:31 -08:00
RadioTower2FUnusedDummyScene:
; unused
end
2017-12-17 16:48:04 -08:00
RadioTower2FSuperNerdScript:
jumptextfaceplayer RadioTower2FSuperNerdText
2018-02-28 14:47:31 -08:00
RadioTower2FTeacherScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-07-10 05:12:28 -07:00
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
2016-04-07 03:13:59 -07:00
iftrue .Rockets
2018-02-28 14:47:31 -08:00
writetext RadioTower2FTeacherText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.Rockets:
2018-02-28 14:47:31 -08:00
writetext RadioTower2FTeacherText_Rockets
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2016-04-07 03:13:59 -07:00
RadioTowerJigglypuff:
2015-12-09 15:25:44 -08:00
opentext
2016-04-07 03:13:59 -07:00
writetext RadioTowerJigglypuffText
cry JIGGLYPUFF
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
RadioTower2FBlackBelt1Script:
jumptextfaceplayer RadioTower2FBlackBelt1Text
2017-12-17 16:48:04 -08:00
RadioTower2FBlackBelt2Script:
jumptextfaceplayer RadioTower2FBlackBelt2Text
2015-07-10 01:20:21 -07:00
TrainerGruntM4:
trainer GRUNTM, GRUNTM_4, EVENT_BEAT_ROCKET_GRUNTM_4, GruntM4SeenText, GruntM4BeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext GruntM4AfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerGruntM5:
trainer GRUNTM, GRUNTM_5, EVENT_BEAT_ROCKET_GRUNTM_5, GruntM5SeenText, GruntM5BeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext GruntM5AfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerGruntM6:
trainer GRUNTM, GRUNTM_6, EVENT_BEAT_ROCKET_GRUNTM_6, GruntM6SeenText, GruntM6BeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext GruntM6AfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerGruntF2:
trainer GRUNTF, GRUNTF_2, EVENT_BEAT_ROCKET_GRUNTF_2, GruntF2SeenText, GruntF2BeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2017-12-10 12:36:58 -08:00
writetext GruntF2AfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
Buena:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-07-10 05:12:28 -07:00
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
2018-02-01 20:39:14 -08:00
iftrue .MidRocketTakeover
2013-09-24 00:48:58 -07:00
checkevent EVENT_MET_BUENA
2018-02-01 20:39:14 -08:00
iffalse .Introduction
checkflag ENGINE_BUENAS_PASSWORD_2
2018-02-01 20:39:14 -08:00
iftrue .PlayedAlready
checkcode VAR_HOUR
ifless 18, .TooEarly
checkflag ENGINE_BUENAS_PASSWORD
2018-02-01 20:39:14 -08:00
iffalse .TuneIn
checkitem BLUE_CARD
2018-02-01 20:39:14 -08:00
iffalse .NoBlueCard
checkcode VAR_BLUECARDBALANCE
ifequal 30, .BlueCardCapped0
playmusic MUSIC_BUENAS_PASSWORD
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5de35
special AskRememberPassword
2018-02-01 20:39:14 -08:00
iffalse .ForgotPassword
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5de84
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
checkcode VAR_FACING
ifnotequal RIGHT, .DontNeedToMove
applymovement PLAYER, MovementData_0x5d921
2018-02-01 20:39:14 -08:00
.DontNeedToMove:
turnobject PLAYER, RIGHT
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5dedd
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, DOWN
2018-01-11 22:40:20 -08:00
refreshscreen
special BuenasPassword
2015-11-25 07:16:29 -08:00
closetext
2018-02-01 20:39:14 -08:00
iffalse .WrongAnswer
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5dfc1
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcode VAR_BLUECARDBALANCE
2018-01-11 22:40:20 -08:00
addvar 1
writevarcode VAR_BLUECARDBALANCE
2015-11-25 07:16:29 -08:00
waitsfx
playsound SFX_TRANSACTION
setflag ENGINE_BUENAS_PASSWORD_2
pause 20
turnobject RADIOTOWER2F_BUENA, RIGHT
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e054
2015-11-25 07:16:29 -08:00
waitbutton
closetext
special FadeOutMusic
pause 20
special RestartMapMusic
checkcode VAR_BLUECARDBALANCE
ifequal 30, .BlueCardCapped1
end
2018-02-01 20:39:14 -08:00
.Introduction:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5dcf4
2015-11-29 19:29:45 -08:00
buttonsound
2013-09-24 00:48:58 -07:00
setevent EVENT_MET_BUENA
2015-11-04 17:20:14 -08:00
verbosegiveitem BLUE_CARD
2018-02-01 20:39:14 -08:00
.TuneIn:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5de10
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .Registered0
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
.Registered0:
turnobject RADIOTOWER2F_BUENA, RIGHT
end
2018-02-01 20:39:14 -08:00
.ForgotPassword:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5df29
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
special FadeOutMusic
pause 20
special RestartMapMusic
end
2018-02-01 20:39:14 -08:00
.PlayedAlready:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5df6c
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .Registered1
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
.Registered1:
turnobject RADIOTOWER2F_BUENA, RIGHT
pause 10
end
2018-02-01 20:39:14 -08:00
.WrongAnswer:
setflag ENGINE_BUENAS_PASSWORD_2
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e01c
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
pause 20
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e054
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
special FadeOutMusic
pause 20
special RestartMapMusic
end
2018-02-01 20:39:14 -08:00
.MidRocketTakeover:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e0c2
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-01 20:39:14 -08:00
.NoBlueCard:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e192
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .Registered2
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER_NO_BLUE_CARD
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
.Registered2:
turnobject RADIOTOWER2F_BUENA, RIGHT
end
2018-02-01 20:39:14 -08:00
.BlueCardCapped0:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e0f1
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .Registered3
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER_NO_BLUE_CARD
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
.Registered3:
turnobject RADIOTOWER2F_BUENA, RIGHT
end
2018-02-01 20:39:14 -08:00
.TooEarly:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e131
2015-11-25 07:16:29 -08:00
waitbutton
closetext
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .Registered4
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
.Registered4:
end
2018-02-01 20:39:14 -08:00
.BlueCardCapped1:
checkcellnum PHONE_BUENA
2018-02-01 20:39:14 -08:00
iftrue .HasNumber
pause 20
turnobject RADIOTOWER2F_BUENA, DOWN
pause 15
turnobject PLAYER, UP
pause 15
2013-09-24 00:48:58 -07:00
checkevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER_NO_BLUE_CARD
2018-02-01 20:39:14 -08:00
iftrue .OfferedNumberBefore
2015-11-26 21:22:14 -08:00
showemote EMOTE_SHOCK, RADIOTOWER2F_BUENA, 15
2013-09-24 00:48:58 -07:00
setevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER_NO_BLUE_CARD
setevent EVENT_BUENA_OFFERED_HER_PHONE_NUMBER
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e1ee
2018-02-01 20:39:14 -08:00
jump .AskForNumber
2018-02-01 20:39:14 -08:00
.OfferedNumberBefore:
2015-12-09 15:25:44 -08:00
opentext
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e2bf
2018-02-01 20:39:14 -08:00
.AskForNumber:
askforphonenumber PHONE_BUENA
ifequal PHONE_CONTACTS_FULL, .PhoneFull
ifequal PHONE_CONTACT_REFUSED, .NumberDeclined
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e2f3
playsound SFX_REGISTER_PHONE_NUMBER
2015-11-25 07:16:29 -08:00
waitsfx
2015-11-29 19:29:45 -08:00
buttonsound
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e310
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
addcellnum PHONE_BUENA
end
2018-02-01 20:39:14 -08:00
.NumberDeclined:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e33c
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
end
2018-02-01 20:39:14 -08:00
.PhoneFull:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e35e
2015-11-25 07:16:29 -08:00
waitbutton
closetext
turnobject RADIOTOWER2F_BUENA, RIGHT
2018-02-01 20:39:14 -08:00
.HasNumber:
end
2018-02-01 20:39:14 -08:00
RadioTowerBuenaPrizeReceptionist:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
checkitem BLUE_CARD
2018-02-01 20:39:14 -08:00
iffalse .NoCard
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e392
2015-11-29 19:29:45 -08:00
buttonsound
special BuenaPrize
2015-11-25 07:16:29 -08:00
closetext
end
2018-02-01 20:39:14 -08:00
.NoCard:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x5e3d8
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-25 07:16:29 -08:00
closetext
end
RadioTower2FSalesSign:
jumptext RadioTower2FSalesSignText
RadioTower2FOaksPKMNTalkSign:
jumptext RadioTower2FOaksPKMNTalkSignText
RadioTower2FPokemonRadioSign:
jumptext RadioTower2FPokemonRadioSignText
2015-06-25 21:01:08 -07:00
RadioTower2FBookshelf:
jumpstd magazinebookshelf
2015-07-10 01:20:21 -07:00
MovementData_0x5d921:
2016-05-14 10:46:14 -07:00
slow_step DOWN
slow_step RIGHT
step_end
2017-12-17 16:48:04 -08:00
RadioTower2FSuperNerdText:
text "You can listen to"
line "the radio any-"
cont "where. Tune in!"
done
2018-02-28 14:47:31 -08:00
RadioTower2FTeacherText:
text "Lullabies on the"
line "radio may make"
cont "#MON sleep."
done
2018-02-28 14:47:31 -08:00
RadioTower2FTeacherText_Rockets:
text "Why would they"
line "want to take over"
cont "the RADIO TOWER?"
done
2016-04-07 03:13:59 -07:00
RadioTowerJigglypuffText:
text "JIGGLYPUFF:"
line "Jiggly…"
done
2017-12-17 16:48:04 -08:00
RadioTower2FBlackBelt1Text:
text "Sorry. Authorized"
line "personnel only"
cont "beyond this point."
para "It wasn't that way"
line "before."
para "There's something"
line "wrong with the"
cont "DIRECTOR…"
done
2017-12-17 16:48:04 -08:00
RadioTower2FBlackBelt2Text:
text "Feel free to look"
line "around anywhere."
para "The DIRECTOR is"
line "nice again, just"
cont "as he was before."
done
2015-07-10 01:20:21 -07:00
GruntM4SeenText:
text "Three years ago,"
line "TEAM ROCKET was"
cont "forced to disband."
para "But we're making a"
line "comeback here!"
done
2015-07-10 01:20:21 -07:00
GruntM4BeatenText:
text "Gwah! Don't get"
line "cute!"
done
2017-12-10 12:36:58 -08:00
GruntM4AfterBattleText:
text "We won't let you"
line "ruin our plans"
cont "for our comeback!"
done
2015-07-10 01:20:21 -07:00
GruntM5SeenText:
text "We're TEAM ROCKET,"
line "the exploiters of"
cont "#MON!"
para "We love being"
line "evil! Scared?"
done
2015-07-10 01:20:21 -07:00
GruntM5BeatenText:
text "You think you're a"
line "hero?"
done
2017-12-10 12:36:58 -08:00
GruntM5AfterBattleText:
text "We're not always"
line "evil. We just do"
cont "whatever we like."
done
2015-07-10 01:20:21 -07:00
GruntM6SeenText:
text "Hey, hey! Keep out"
line "of our way!"
done
2015-07-10 01:20:21 -07:00
GruntM6BeatenText:
text "Arggh. I give up."
done
2017-12-10 12:36:58 -08:00
GruntM6AfterBattleText:
text "Our EXECUTIVES are"
line "trying to take"
cont "this place over."
para "They have some big"
line "plan. I wonder"
cont "what that is?"
done
2015-07-10 01:20:21 -07:00
GruntF2SeenText:
text "Hahaha!"
para "How boring."
line "It was far too"
para "easy to take over"
line "this place!"
para "Come on, keep me"
line "amused!"
done
2015-07-10 01:20:21 -07:00
GruntF2BeatenText:
text "Wh-who are you?"
done
2017-12-10 12:36:58 -08:00
GruntF2AfterBattleText:
text "You beat me, and"
line "I won't forget it!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5dcf4:
text "BUENA: Hi! I'm"
line "BUENA!"
para "Do you know about"
line "a radio program"
cont "called PASSWORD?"
para "If you can tell me"
line "the password from"
para "the program, you"
line "will earn points."
para "Save up those"
line "points and trade"
para "them to that sweet"
line "young lady over"
para "there for some"
line "choice prizes!"
para "Here you go!"
para "It's your very own"
line "point card!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5de10:
text "BUENA: Tune in to"
line "my PASSWORD SHOW!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5de35:
text "BUENA: Hi!"
line "Did you tune in to"
cont "my radio show?"
para "Do you remember"
line "today's password?"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5de84:
text "BUENA: Oh, wow!"
line "Thank you!"
para "What was your name"
line "again?"
para "…<PLAY_G>, OK!"
para "Come on, <PLAY_G>."
line "Join the show."
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5dedd:
text "BUENA: Everyone"
line "ready?"
para "I want to hear you"
line "shout out today's"
para "password for"
line "<PLAY_G>!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5df29:
text "BUENA: Come back"
line "after you listen"
para "to my show, OK?"
line "Catch ya later!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5df6c:
text "BUENA: Sorry…"
para "You get just one"
line "chance each day."
para "Come back tomorrow"
line "for another try!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5dfc1:
text "BUENA: YIPPEE!"
line "That's right!"
para "You did tune in!"
line "I'm so happy!"
para "You earned one"
line "point! Congrats!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e01c:
text "BUENA: Aww…"
line "That's not it…"
para "Did you forget the"
line "password?"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e054:
text "BUENA: Yup! Our"
line "contestant was"
para "<PLAY_G>."
line "Thanks for coming!"
para "I hope all you"
line "listeners will"
para "come too!"
line "I'll be waiting!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e0c2:
text "BUENA: Huh?"
line "Today's password?"
para "HELP, of course!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e0f1:
text "BUENA: Your BLUE"
line "CARD's full."
para "Trade it in for a"
line "fabulous prize!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e131:
text "BUENA: Tune in to"
line "PASSWORD every"
para "night from six to"
line "midnight!"
para "Tune in, then drop"
line "in for a visit!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e192:
text "BUENA: Oh? You"
line "forgot to bring"
cont "your BLUE CARD?"
para "I can't give you"
line "points if you"
cont "don't have it."
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e1ee:
text "BUENA: Oh! Your"
line "BLUE CARD reached"
para "30 points today!"
line "That's so wild!"
para "Hmm… There isn't a"
line "prize for hitting"
cont "30 points, but…"
para "You came by so"
line "often, <PLAY_G>."
para "I'll make you a"
line "special deal!"
para "How would you like"
line "my phone number?"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e2bf:
text "BUENA: <PLAY_G>,"
line "do you want to"
para "register my phone"
line "number?"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e2f3:
text "<PLAYER> registered"
line "BUENA's number."
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e310:
text "BUENA: I look"
line "forward to hearing"
cont "from you!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e33c:
text "BUENA: Aww… It's a"
line "special prize…"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e35e:
text "BUENA: <PLAY_G>,"
line "your phone list"
para "has no room left"
line "for me…"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e392:
text "You can cash in"
line "your saved points"
para "for a lovely prize"
line "of your choice!"
done
2015-07-10 01:20:21 -07:00
UnknownText_0x5e3d8:
text "You can't trade in"
line "points without"
cont "your BLUE CARD."
para "Don't forget your"
line "BLUE CARD!"
done
RadioTower2FSalesSignText:
text "2F SALES"
done
RadioTower2FOaksPKMNTalkSignText:
text "PROF.OAK'S #MON"
line "TALK"
para "The Hottest Show"
line "on the Air!"
done
RadioTower2FPokemonRadioSignText:
text "Anywhere, Anytime"
line "#MON Radio"
done
RadioTower2F_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 0, 0, RADIO_TOWER_3F, 1
warp_event 15, 0, RADIO_TOWER_1F, 3
db 0 ; coord events
db 6 ; bg events
bg_event 3, 0, BGEVENT_READ, RadioTower2FSalesSign
bg_event 5, 0, BGEVENT_READ, RadioTower2FOaksPKMNTalkSign
2018-02-01 19:22:07 -08:00
bg_event 9, 1, BGEVENT_READ, RadioTower2FBookshelf
bg_event 10, 1, BGEVENT_READ, RadioTower2FBookshelf
bg_event 11, 1, BGEVENT_READ, RadioTower2FBookshelf
bg_event 13, 0, BGEVENT_READ, RadioTower2FPokemonRadioSign
db 11 ; object events
2018-02-01 19:22:07 -08:00
object_event 6, 6, SPRITE_SUPER_NERD, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, RadioTower2FSuperNerdScript, EVENT_GOLDENROD_CITY_CIVILIANS
2018-02-28 14:47:31 -08:00
object_event 17, 2, SPRITE_TEACHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, RadioTower2FTeacherScript, -1
2018-02-01 19:22:07 -08:00
object_event 1, 4, SPRITE_ROCKET, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_TRAINER, 3, TrainerGruntM4, EVENT_RADIO_TOWER_ROCKET_TAKEOVER
object_event 8, 4, SPRITE_ROCKET, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_TRAINER, 3, TrainerGruntM5, EVENT_RADIO_TOWER_ROCKET_TAKEOVER
object_event 4, 1, SPRITE_ROCKET, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_TRAINER, 2, TrainerGruntM6, EVENT_RADIO_TOWER_ROCKET_TAKEOVER
object_event 10, 5, SPRITE_ROCKET_GIRL, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 3, TrainerGruntF2, EVENT_RADIO_TOWER_ROCKET_TAKEOVER
object_event 0, 1, SPRITE_BLACK_BELT, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, RadioTower2FBlackBelt1Script, EVENT_RADIO_TOWER_BLACKBELT_BLOCKS_STAIRS
object_event 1, 1, SPRITE_BLACK_BELT, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, RadioTower2FBlackBelt2Script, EVENT_RADIO_TOWER_CIVILIANS_AFTER
object_event 12, 1, SPRITE_JIGGLYPUFF, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, RadioTowerJigglypuff, -1
object_event 14, 5, SPRITE_BUENA, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Buena, -1
object_event 12, 7, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, RadioTowerBuenaPrizeReceptionist, EVENT_GOLDENROD_CITY_CIVILIANS