pokecrystal/maps/GoldenrodGym.asm

401 lines
7.9 KiB
NASM
Raw Normal View History

2018-01-31 16:38:45 +00:00
const_def 2 ; object constants
2015-11-27 05:22:14 +00:00
const GOLDENRODGYM_WHITNEY
const GOLDENRODGYM_LASS1
const GOLDENRODGYM_LASS2
const GOLDENRODGYM_BUENA1
const GOLDENRODGYM_BUENA2
const GOLDENRODGYM_GYM_GUY
GoldenrodGym_MapScripts:
db 2 ; scene scripts
scene_script .DummyScene0 ; SCENE_GOLDENRODGYM_NOTHING
scene_script .DummyScene1 ; SCENE_GOLDENRODGYM_WHITNEY_STOPS_CRYING
db 0 ; callbacks
.DummyScene0:
end
.DummyScene1:
end
2018-02-28 21:50:43 +00:00
GoldenrodGymWhitneyScript:
faceplayer
2013-09-24 07:48:58 +00:00
checkevent EVENT_BEAT_WHITNEY
2015-07-10 07:00:27 +00:00
iftrue .FightDone
2015-12-09 23:25:44 +00:00
opentext
2018-03-03 02:39:29 +00:00
writetext WhitneyBeforeText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
2018-03-03 02:39:29 +00:00
winlosstext WhitneyShouldntBeSoSeriousText, 0
loadtrainer WHITNEY, WHITNEY1
startbattle
reloadmapafterbattle
2013-09-24 07:48:58 +00:00
setevent EVENT_BEAT_WHITNEY
setevent EVENT_MADE_WHITNEY_CRY
setscene SCENE_GOLDENRODGYM_WHITNEY_STOPS_CRYING
2013-09-24 07:48:58 +00:00
setevent EVENT_BEAT_BEAUTY_VICTORIA
setevent EVENT_BEAT_BEAUTY_SAMANTHA
setevent EVENT_BEAT_LASS_CARRIE
setevent EVENT_BEAT_LASS_BRIDGET
.FightDone:
2015-12-09 23:25:44 +00:00
opentext
2013-09-24 07:48:58 +00:00
checkevent EVENT_MADE_WHITNEY_CRY
2015-07-10 07:00:27 +00:00
iffalse .StoppedCrying
2018-03-03 02:39:29 +00:00
writetext WhitneyYouMeanieText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
.StoppedCrying:
2013-09-24 07:48:58 +00:00
checkevent EVENT_GOT_TM45_ATTRACT
2018-02-28 22:47:31 +00:00
iftrue .GotAttract
2015-07-10 07:00:27 +00:00
checkflag ENGINE_PLAINBADGE
2018-02-28 22:47:31 +00:00
iftrue .GotPlainBadge
2018-03-03 02:39:29 +00:00
writetext WhitneyWhatDoYouWantText
2015-11-30 03:29:45 +00:00
buttonsound
2015-11-25 15:16:29 +00:00
waitsfx
2018-03-03 02:39:29 +00:00
writetext PlayerReceivedPlainBadgeText
playsound SFX_GET_BADGE
2015-11-25 15:16:29 +00:00
waitsfx
2015-07-10 07:00:27 +00:00
setflag ENGINE_PLAINBADGE
checkcode VAR_BADGES
scall GoldenrodGymActivateRockets
2018-02-28 22:47:31 +00:00
.GotPlainBadge:
2018-03-03 02:39:29 +00:00
writetext WhitneyPlainBadgeText
2015-11-30 03:29:45 +00:00
buttonsound
2015-11-05 01:20:14 +00:00
verbosegiveitem TM_ATTRACT
2018-02-28 22:47:31 +00:00
iffalse .NoRoomForAttract
2013-09-24 07:48:58 +00:00
setevent EVENT_GOT_TM45_ATTRACT
2018-03-03 02:39:29 +00:00
writetext WhitneyAttractText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2018-02-28 22:47:31 +00:00
.GotAttract:
2018-03-03 02:39:29 +00:00
writetext WhitneyGoodCryText
2015-11-25 15:16:29 +00:00
waitbutton
2018-02-28 22:47:31 +00:00
.NoRoomForAttract:
2015-11-25 15:16:29 +00:00
closetext
end
GoldenrodGymActivateRockets:
2018-02-03 02:09:17 +00:00
ifequal 7, .RadioTowerRockets
ifequal 6, .GoldenrodRockets
end
.GoldenrodRockets:
2015-06-25 01:26:24 +00:00
jumpstd goldenrodrockets
.RadioTowerRockets:
2015-06-25 01:26:24 +00:00
jumpstd radiotowerrockets
2015-07-10 07:00:27 +00:00
TrainerLassCarrie:
trainer LASS, CARRIE, EVENT_BEAT_LASS_CARRIE, LassCarrieSeenText, LassCarrieBeatenText, 0, .Script
2017-12-18 01:45:04 +00:00
.Script:
2018-02-03 02:09:17 +00:00
endifjustbattled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext LassCarrieAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 07:00:27 +00:00
WhitneyCriesScript:
2015-11-27 05:22:14 +00:00
showemote EMOTE_SHOCK, GOLDENRODGYM_LASS2, 15
applymovement GOLDENRODGYM_LASS2, BridgetWalksUpMovement
turnobject PLAYER, DOWN
2015-12-09 23:25:44 +00:00
opentext
2015-01-20 08:01:23 +00:00
writetext BridgetWhitneyCriesText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
2015-11-27 05:22:14 +00:00
applymovement GOLDENRODGYM_LASS2, BridgetWalksAwayMovement
setscene SCENE_GOLDENRODGYM_NOTHING
2013-09-24 07:48:58 +00:00
clearevent EVENT_MADE_WHITNEY_CRY
end
2015-07-10 07:00:27 +00:00
TrainerLassBridget:
trainer LASS, BRIDGET, EVENT_BEAT_LASS_BRIDGET, LassBridgetSeenText, LassBridgetBeatenText, 0, .Script
2017-12-18 01:45:04 +00:00
.Script:
2018-02-03 02:09:17 +00:00
endifjustbattled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext LassBridgetAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 07:00:27 +00:00
TrainerBeautyVictoria:
trainer BEAUTY, VICTORIA, EVENT_BEAT_BEAUTY_VICTORIA, BeautyVictoriaSeenText, BeautyVictoriaBeatenText, 0, .Script
2017-12-18 01:45:04 +00:00
.Script:
2018-02-03 02:09:17 +00:00
endifjustbattled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext BeautyVictoriaAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 07:00:27 +00:00
TrainerBeautySamantha:
trainer BEAUTY, SAMANTHA, EVENT_BEAT_BEAUTY_SAMANTHA, BeautySamanthaSeenText, BeautySamanthaBeatenText, 0, .Script
2017-12-18 01:45:04 +00:00
.Script:
2018-02-03 02:09:17 +00:00
endifjustbattled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext BeautySamanthaAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 07:00:27 +00:00
GoldenrodGymGuyScript:
faceplayer
2013-09-24 07:48:58 +00:00
checkevent EVENT_BEAT_WHITNEY
iftrue .GoldenrodGymGuyWinScript
2015-12-09 23:25:44 +00:00
opentext
2015-01-20 08:01:23 +00:00
writetext GoldenrodGymGuyText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
.GoldenrodGymGuyWinScript:
2015-12-09 23:25:44 +00:00
opentext
2015-01-20 08:01:23 +00:00
writetext GoldenrodGymGuyWinText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-06-25 03:51:36 +00:00
GoldenrodGymStatue:
checkflag ENGINE_PLAINBADGE
iftrue .Beaten
2015-06-25 01:26:24 +00:00
jumpstd gymstatue1
.Beaten:
2018-01-12 06:40:20 +00:00
trainertotext WHITNEY, WHITNEY1, MEM_BUFFER_1
2015-06-25 01:26:24 +00:00
jumpstd gymstatue2
2015-07-10 07:00:27 +00:00
BridgetWalksUpMovement:
2016-05-14 17:46:14 +00:00
step LEFT
turn_head UP
step_end
2015-07-10 07:00:27 +00:00
BridgetWalksAwayMovement:
2016-05-14 17:46:14 +00:00
step RIGHT
turn_head LEFT
step_end
2018-03-03 02:39:29 +00:00
WhitneyBeforeText:
text "Hi! I'm WHITNEY!"
para "Everyone was into"
line "#MON, so I got"
cont "into it too!"
para "#MON are"
line "super-cute!"
para "You want to bat-"
line "tle? I'm warning"
cont "you--I'm good!"
done
2018-03-03 02:39:29 +00:00
WhitneyShouldntBeSoSeriousText:
text "Sob…"
para "…Waaaaaaah!"
line "You're mean!"
para "You shouldn't be"
line "so serious! You…"
cont "you child, you!"
done
2018-03-03 02:39:29 +00:00
WhitneyYouMeanieText:
text "Waaaaah!"
para "Waaaaah!"
para "…Snivel, hic…"
line "…You meanie!"
done
2018-03-03 02:39:29 +00:00
WhitneyWhatDoYouWantText:
text "…Sniff…"
para "What? What do you"
line "want? A BADGE?"
para "Oh, right."
line "I forgot. Here's"
cont "PLAINBADGE."
done
2018-03-03 02:39:29 +00:00
PlayerReceivedPlainBadgeText:
text "<PLAYER> received"
line "PLAINBADGE."
done
2018-03-03 02:39:29 +00:00
WhitneyPlainBadgeText:
text "PLAINBADGE lets"
line "your #MON use"
para "STRENGTH outside"
line "of battle."
para "It also boosts"
line "your #MON's"
cont "SPEED."
para "Oh, you can have"
line "this too!"
done
2018-03-03 02:39:29 +00:00
WhitneyAttractText:
text "It's ATTRACT!"
line "It makes full use"
para "of a #MON's"
line "charm."
para "Isn't it just per-"
line "fect for a cutie"
cont "like me?"
done
2018-03-03 02:39:29 +00:00
WhitneyGoodCryText:
text "Ah, that was a"
line "good cry!"
para "Come for a visit"
line "again! Bye-bye!"
done
2015-07-10 07:00:27 +00:00
LassCarrieSeenText:
text "Don't let my"
line "#MON's cute"
para "looks fool you."
line "They can whip you!"
done
2015-07-10 07:00:27 +00:00
LassCarrieBeatenText:
text "Darn… I thought"
line "you were weak…"
done
2017-12-10 20:36:58 +00:00
LassCarrieAfterBattleText:
text "Do my #MON"
line "think I'm cute?"
done
2015-07-10 07:00:27 +00:00
LassBridgetSeenText:
text "I like cute #-"
line "MON better than"
cont "strong #MON."
para "But I have strong"
line "and cute #MON!"
done
2015-07-10 07:00:27 +00:00
LassBridgetBeatenText:
text "Oh, no, no, no!"
done
2017-12-10 20:36:58 +00:00
LassBridgetAfterBattleText:
text "I'm trying to beat"
line "WHITNEY, but…"
cont "It's depressing."
para "I'm okay! If I"
line "lose, I'll just"
para "try harder next"
line "time!"
done
2015-07-10 07:00:27 +00:00
BridgetWhitneyCriesText:
text "Oh, no. You made"
line "WHITNEY cry."
para "It's OK. She'll"
line "stop soon. She"
para "always cries when"
line "she loses."
done
2015-07-10 07:00:27 +00:00
BeautyVictoriaSeenText:
text "Oh, you are a cute"
line "little trainer! "
para "I like you, but I"
line "won't hold back!"
done
2015-07-10 07:00:27 +00:00
BeautyVictoriaBeatenText:
text "Let's see… Oops,"
line "it's over?"
done
2017-12-10 20:36:58 +00:00
BeautyVictoriaAfterBattleText:
text "Wow, you must be"
line "good to beat me!"
cont "Keep it up!"
done
2015-07-10 07:00:27 +00:00
BeautySamanthaSeenText:
text "Give it your best"
line "shot, or I'll take"
cont "you down!"
done
2015-07-10 07:00:27 +00:00
BeautySamanthaBeatenText:
text "No! Oh, MEOWTH,"
line "I'm so sorry!"
done
2017-12-10 20:36:58 +00:00
BeautySamanthaAfterBattleText:
text "I taught MEOWTH"
line "moves for taking"
cont "on any type…"
done
2015-07-10 07:00:27 +00:00
GoldenrodGymGuyText:
text "Yo! CHAMP in"
line "making!"
para "This GYM is home"
line "to normal-type"
cont "#MON trainers."
para "I recommend you"
line "use fighting-type"
cont "#MON."
done
2015-07-10 07:00:27 +00:00
GoldenrodGymGuyWinText:
text "You won? Great! I"
line "was busy admiring"
cont "the ladies here."
done
GoldenrodGym_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-02 03:22:07 +00:00
warp_event 2, 17, GOLDENROD_CITY, 1
warp_event 3, 17, GOLDENROD_CITY, 1
db 1 ; coord events
2018-02-02 03:22:07 +00:00
coord_event 8, 5, SCENE_GOLDENRODGYM_WHITNEY_STOPS_CRYING, WhitneyCriesScript
db 2 ; bg events
2018-02-02 03:22:07 +00:00
bg_event 1, 15, BGEVENT_READ, GoldenrodGymStatue
bg_event 4, 15, BGEVENT_READ, GoldenrodGymStatue
db 6 ; object events
2018-02-28 21:50:43 +00:00
object_event 8, 3, SPRITE_WHITNEY, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodGymWhitneyScript, -1
2018-02-02 03:22:07 +00:00
object_event 9, 13, SPRITE_LASS, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 4, TrainerLassCarrie, -1
object_event 9, 6, SPRITE_LASS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 1, TrainerLassBridget, -1
object_event 0, 2, SPRITE_BUENA, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBeautyVictoria, -1
object_event 19, 5, SPRITE_BUENA, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBeautySamantha, -1
object_event 5, 15, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodGymGuyScript, -1