pokecrystal-board/maps/Route32.asm

965 lines
19 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 ROUTE32_FISHER1
const ROUTE32_FISHER2
const ROUTE32_FISHER3
const ROUTE32_YOUNGSTER1
const ROUTE32_YOUNGSTER2
const ROUTE32_YOUNGSTER3
const ROUTE32_LASS1
const ROUTE32_COOLTRAINER_M
const ROUTE32_YOUNGSTER4
const ROUTE32_FISHER4
const ROUTE32_POKE_BALL1
const ROUTE32_FISHER5
2016-04-06 21:59:45 -07:00
const ROUTE32_FRIEDA
2015-11-26 21:22:14 -08:00
const ROUTE32_POKE_BALL2
Route32_MapScripts:
db 3 ; scene scripts
scene_script .DummyScene0 ; SCENE_DEFAULT
scene_script .DummyScene1 ; SCENE_ROUTE32_OFFER_SLOWPOKETAIL
scene_script .DummyScene2 ; SCENE_ROUTE32_NOTHING
db 1 ; callbacks
callback MAPCALLBACK_OBJECTS, .Frieda
.DummyScene0:
end
.DummyScene1:
end
.DummyScene2:
end
2015-12-16 18:57:42 -08:00
.Frieda:
checkcode VAR_WEEKDAY
2018-02-02 18:09:17 -08:00
ifequal FRIDAY, .FriedaAppears
2016-04-06 21:59:45 -07:00
disappear ROUTE32_FRIEDA
return
.FriedaAppears:
2016-04-06 21:59:45 -07:00
appear ROUTE32_FRIEDA
return
2015-12-16 18:57:42 -08:00
Route32CooltrainerMScript:
faceplayer
Route32CooltrainerMContinueScene:
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
2015-12-16 18:57:42 -08:00
iftrue .GotMiracleSeed
2015-07-10 05:08:03 -07:00
checkflag ENGINE_ZEPHYRBADGE
2015-12-16 18:57:42 -08:00
iffalse .DontHaveZephyrBadge
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TOGEPI_EGG_FROM_ELMS_AIDE
2015-12-16 18:57:42 -08:00
iftrue .GiveMiracleSeed
writetext Route32CooltrainerMText_AideIsWaiting
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.Unreferenced:
2015-12-16 18:57:42 -08:00
writetext Route32CooltrainerMText_UnusedSproutTower
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
.GiveMiracleSeed:
writetext Route32CooltrainerMText_HaveThisSeed
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem MIRACLE_SEED
2015-12-16 18:57:42 -08:00
iffalse .BagFull
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
2015-12-16 18:57:42 -08:00
jump .GotMiracleSeed
2015-12-16 18:57:42 -08:00
.DontHaveZephyrBadge:
writetext Route32CooltrainerMText_VioletGym
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
.GotMiracleSeed:
writetext Route32CooltrainerMText_ExperiencesShouldBeUseful
2015-11-25 07:16:29 -08:00
waitbutton
2015-12-16 18:57:42 -08:00
.BagFull:
2015-11-25 07:16:29 -08:00
closetext
end
Route32CooltrainerMStopsYouScene:
objectface ROUTE32_COOLTRAINER_M, LEFT
objectface PLAYER, RIGHT
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext Route32CooltrainerMText_WhatsTheHurry
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2015-11-26 21:22:14 -08:00
follow PLAYER, ROUTE32_COOLTRAINER_M
2015-12-16 18:57:42 -08:00
applymovement PLAYER, Movement_Route32CooltrainerMPushesYouBackToViolet
stopfollow
objectface PLAYER, DOWN
scall Route32CooltrainerMContinueScene
2015-12-16 18:57:42 -08:00
applymovement ROUTE32_COOLTRAINER_M, Movement_Route32CooltrainerMReset1
applymovement ROUTE32_COOLTRAINER_M, Movement_Route32CooltrainerMReset2
end
2015-12-16 18:57:42 -08:00
Route32RoarTMGuyScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_TM05_ROAR
2015-12-16 18:57:42 -08:00
iftrue .AlreadyHaveRoar
writetext Text_RoarIntro
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem TM_ROAR
2015-12-16 18:57:42 -08:00
iffalse .Finish
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_TM05_ROAR
2015-12-16 18:57:42 -08:00
.AlreadyHaveRoar:
writetext Text_RoarOutro
2015-11-25 07:16:29 -08:00
waitbutton
2015-12-16 18:57:42 -08:00
.Finish:
2015-11-25 07:16:29 -08:00
closetext
end
2015-12-16 18:57:42 -08:00
Route32WannaBuyASlowpokeTailScript:
objectface ROUTE32_FISHER4, DOWN
objectface PLAYER, UP
2015-12-16 18:57:42 -08:00
jump _OfferToSellSlowpokeTail
2015-12-16 18:57:42 -08:00
SlowpokeTailSalesmanScript:
faceplayer
2015-12-16 18:57:42 -08:00
_OfferToSellSlowpokeTail:
setscene SCENE_ROUTE32_NOTHING
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext Text_MillionDollarSlowpokeTail
yesorno
2015-12-16 18:57:42 -08:00
iffalse .refused
writetext Text_ThoughtKidsWereLoaded
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
.refused
2015-12-16 18:57:42 -08:00
writetext Text_RefusedToBuySlowpokeTail
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
TrainerCamperRoland:
trainer CAMPER, ROLAND, EVENT_BEAT_CAMPER_ROLAND, CamperRolandSeenText, CamperRolandBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext CamperRolandAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
TrainerFisherJustin:
trainer FISHER, JUSTIN, EVENT_BEAT_FISHER_JUSTIN, FisherJustinSeenText, FisherJustinBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext FisherJustinAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
TrainerFisherRalph1:
trainer FISHER, RALPH1, EVENT_BEAT_FISHER_RALPH, FisherRalph1SeenText, FisherRalph1BeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
writecode VAR_CALLERID, PHONE_FISHER_RALPH
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
checkflag ENGINE_RALPH
2015-12-16 18:57:42 -08:00
iftrue .Rematch
checkflag ENGINE_FISH_SWARM
2015-12-16 18:57:42 -08:00
iftrue .Swarm
checkcellnum PHONE_FISHER_RALPH
2015-12-16 18:57:42 -08:00
iftrue .NumberAccepted
checkevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
iftrue .AskAgain
writetext FisherRalphAfterText
2015-11-29 19:29:45 -08:00
buttonsound
setevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
scall .AskNumber1
jump .AskForNumber
2015-12-16 18:57:42 -08:00
.AskAgain:
scall .AskNumber2
.AskForNumber:
askforphonenumber PHONE_FISHER_RALPH
2018-02-02 18:09:17 -08:00
ifequal PHONE_CONTACTS_FULL, .PhoneFull
ifequal PHONE_CONTACT_REFUSED, .NumberDeclined
2018-01-11 22:40:20 -08:00
trainertotext FISHER, RALPH1, MEM_BUFFER_0
2015-12-16 18:57:42 -08:00
scall .RegisteredNumber
jump .NumberAccepted
2015-12-16 18:57:42 -08:00
.Rematch:
scall .RematchStd
2015-11-02 11:37:02 -08:00
winlosstext FisherRalph1BeatenText, 0
2015-07-10 13:04:00 -07:00
copybytetovar wRalphFightCount
2018-02-02 18:09:17 -08:00
ifequal 4, .Fight4
ifequal 3, .Fight3
ifequal 2, .Fight2
ifequal 1, .Fight1
ifequal 0, .LoadFight0
.Fight4:
2013-09-24 00:48:58 -07:00
checkevent EVENT_RESTORED_POWER_TO_KANTO
iftrue .LoadFight4
.Fight3:
2015-06-24 20:20:04 -07:00
checkevent EVENT_BEAT_ELITE_FOUR
iftrue .LoadFight3
.Fight2:
checkflag ENGINE_FLYPOINT_LAKE_OF_RAGE
iftrue .LoadFight2
.Fight1:
checkflag ENGINE_FLYPOINT_ECRUTEAK
iftrue .LoadFight1
.LoadFight0:
loadtrainer FISHER, RALPH1
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wRalphFightCount, 1
clearflag ENGINE_RALPH
end
.LoadFight1:
loadtrainer FISHER, RALPH2
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wRalphFightCount, 2
clearflag ENGINE_RALPH
end
.LoadFight2:
loadtrainer FISHER, RALPH3
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wRalphFightCount, 3
clearflag ENGINE_RALPH
end
.LoadFight3:
loadtrainer FISHER, RALPH4
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wRalphFightCount, 4
clearflag ENGINE_RALPH
end
.LoadFight4:
loadtrainer FISHER, RALPH5
startbattle
reloadmapafterbattle
clearflag ENGINE_RALPH
end
2015-12-16 18:57:42 -08:00
.Swarm:
writetext FisherRalphSwarmText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
.AskNumber1:
2015-06-24 18:26:24 -07:00
jumpstd asknumber1m
end
2015-12-16 18:57:42 -08:00
.AskNumber2:
2015-06-24 18:26:24 -07:00
jumpstd asknumber2m
end
2015-12-16 18:57:42 -08:00
.RegisteredNumber:
2015-06-24 18:26:24 -07:00
jumpstd registerednumberm
end
2015-12-16 18:57:42 -08:00
.NumberAccepted:
2015-06-24 18:26:24 -07:00
jumpstd numberacceptedm
end
2015-12-16 18:57:42 -08:00
.NumberDeclined:
2015-06-24 18:26:24 -07:00
jumpstd numberdeclinedm
end
2015-12-16 18:57:42 -08:00
.PhoneFull:
2015-06-24 18:26:24 -07:00
jumpstd phonefullm
end
2015-12-16 18:57:42 -08:00
.RematchStd:
2015-06-24 18:26:24 -07:00
jumpstd rematchm
end
2015-06-25 21:01:08 -07:00
TrainerFisherHenry:
trainer FISHER, HENRY, EVENT_BEAT_FISHER_HENRY, FisherHenrySeenText, FisherHenryBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext FisherHenryAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
TrainerPicnickerLiz1:
trainer PICNICKER, LIZ1, EVENT_BEAT_PICNICKER_LIZ, PicnickerLiz1SeenText, PicnickerLiz1BeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
writecode VAR_CALLERID, PHONE_PICNICKER_LIZ
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
checkflag ENGINE_LIZ
2015-12-16 18:57:42 -08:00
iftrue .Rematch
checkcellnum PHONE_PICNICKER_LIZ
iftrue .NumberAccepted
checkevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
iftrue .AskAgain
writetext PicnickerLiz1AfterText
2015-11-29 19:29:45 -08:00
buttonsound
setevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
2015-12-16 18:57:42 -08:00
scall .AskNumber1
jump .AskForNumber
2015-12-16 18:57:42 -08:00
.AskAgain:
scall .AskNumber2
.AskForNumber:
askforphonenumber PHONE_PICNICKER_LIZ
2018-02-02 18:09:17 -08:00
ifequal PHONE_CONTACTS_FULL, .PhoneFull
ifequal PHONE_CONTACT_REFUSED, .NumberDeclined
2018-01-11 22:40:20 -08:00
trainertotext PICNICKER, LIZ1, MEM_BUFFER_0
2015-12-16 18:57:42 -08:00
scall .RegisteredNumber
jump .NumberAccepted
2015-12-16 18:57:42 -08:00
.Rematch:
scall .RematchStd
2015-11-02 11:37:02 -08:00
winlosstext PicnickerLiz1BeatenText, 0
2015-07-10 13:04:00 -07:00
copybytetovar wLizFightCount
2018-02-02 18:09:17 -08:00
ifequal 4, .Fight4
ifequal 3, .Fight3
ifequal 2, .Fight2
ifequal 1, .Fight1
ifequal 0, .LoadFight0
.Fight4:
2015-06-24 20:20:04 -07:00
checkevent EVENT_BEAT_ELITE_FOUR
iftrue .LoadFight4
.Fight3:
2013-09-24 00:48:58 -07:00
checkevent EVENT_CLEARED_RADIO_TOWER
iftrue .LoadFight3
.Fight2:
2013-09-24 00:48:58 -07:00
checkevent EVENT_CLEARED_ROCKET_HIDEOUT
iftrue .LoadFight2
.Fight1:
checkflag ENGINE_FLYPOINT_ECRUTEAK
iftrue .LoadFight1
.LoadFight0:
loadtrainer PICNICKER, LIZ1
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wLizFightCount, 1
clearflag ENGINE_LIZ
end
.LoadFight1:
loadtrainer PICNICKER, LIZ2
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wLizFightCount, 2
clearflag ENGINE_LIZ
end
.LoadFight2:
loadtrainer PICNICKER, LIZ3
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wLizFightCount, 3
clearflag ENGINE_LIZ
end
.LoadFight3:
loadtrainer PICNICKER, LIZ4
startbattle
reloadmapafterbattle
2015-07-10 13:04:00 -07:00
loadvar wLizFightCount, 4
clearflag ENGINE_LIZ
end
.LoadFight4:
loadtrainer PICNICKER, LIZ5
startbattle
reloadmapafterbattle
clearflag ENGINE_LIZ
end
2015-12-16 18:57:42 -08:00
.AskNumber1:
2015-06-24 18:26:24 -07:00
jumpstd asknumber1f
end
2015-12-16 18:57:42 -08:00
.AskNumber2:
2015-06-24 18:26:24 -07:00
jumpstd asknumber2f
end
2015-12-16 18:57:42 -08:00
.RegisteredNumber:
2015-06-24 18:26:24 -07:00
jumpstd registerednumberf
end
2015-12-16 18:57:42 -08:00
.NumberAccepted:
2015-06-24 18:26:24 -07:00
jumpstd numberacceptedf
end
2015-12-16 18:57:42 -08:00
.NumberDeclined:
2015-06-24 18:26:24 -07:00
jumpstd numberdeclinedf
end
2015-12-16 18:57:42 -08:00
.PhoneFull:
2015-06-24 18:26:24 -07:00
jumpstd phonefullf
end
2015-12-16 18:57:42 -08:00
.RematchStd:
2015-06-24 18:26:24 -07:00
jumpstd rematchf
end
2015-06-25 21:01:08 -07:00
TrainerYoungsterAlbert:
trainer YOUNGSTER, ALBERT, EVENT_BEAT_YOUNGSTER_ALBERT, YoungsterAlbertSeenText, YoungsterAlbertBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext YoungsterAlbertAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-06-25 21:01:08 -07:00
TrainerYoungsterGordon:
trainer YOUNGSTER, GORDON, EVENT_BEAT_YOUNGSTER_GORDON, YoungsterGordonSeenText, YoungsterGordonBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
2015-12-16 18:57:42 -08:00
writetext YoungsterGordonAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
TrainerBirdKeeperPeter:
trainer BIRD_KEEPER, PETER, EVENT_BEAT_BIRD_KEEPER_PETER, BirdKeeperPeterSeenText, BirdKeeperPeterBeatenText, 0, .Script
2015-12-16 18:57:42 -08:00
.Script:
2018-02-02 18:09:17 -08:00
endifjustbattled
2015-12-09 15:25:44 -08:00
opentext
writetext BirdKeeperPeterAfterText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2014-10-26 18:37:15 -07:00
FriedaScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
2015-12-16 18:57:42 -08:00
iftrue .Friday
checkcode VAR_WEEKDAY
2018-02-02 18:09:17 -08:00
ifnotequal FRIDAY, .NotFriday
2013-09-24 00:48:58 -07:00
checkevent EVENT_MET_FRIEDA_OF_FRIDAY
2014-10-26 18:37:15 -07:00
iftrue .MetFrieda
2015-01-20 00:01:23 -08:00
writetext MeetFriedaText
2015-11-29 19:29:45 -08:00
buttonsound
2013-09-24 00:48:58 -07:00
setevent EVENT_MET_FRIEDA_OF_FRIDAY
.MetFrieda:
2015-01-20 00:01:23 -08:00
writetext FriedaGivesGiftText
2015-11-29 19:29:45 -08:00
buttonsound
2015-11-04 17:20:14 -08:00
verbosegiveitem POISON_BARB
2015-12-16 18:57:42 -08:00
iffalse .Done
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
2015-01-20 00:01:23 -08:00
writetext FriedaGaveGiftText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-16 18:57:42 -08:00
.Friday:
2015-01-20 00:01:23 -08:00
writetext FriedaFridayText
2015-11-25 07:16:29 -08:00
waitbutton
2015-12-16 18:57:42 -08:00
.Done:
2015-11-25 07:16:29 -08:00
closetext
end
2015-12-16 18:57:42 -08:00
.NotFriday:
2015-01-20 00:01:23 -08:00
writetext FriedaNotFridayText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-15 07:55:56 -08:00
Route32GreatBall:
itemball GREAT_BALL
2015-12-15 07:55:56 -08:00
Route32Repel:
itemball REPEL
2015-06-25 21:01:08 -07:00
Route32Sign:
jumptext Route32SignText
2015-06-25 21:01:08 -07:00
Route32RuinsSign:
jumptext Route32RuinsSignText
2015-06-25 21:01:08 -07:00
Route32UnionCaveSign:
jumptext Route32UnionCaveSignText
Route32PokecenterSign:
2015-06-23 14:02:58 -07:00
jumpstd pokecentersign
Route32HiddenGreatBall:
hiddenitem GREAT_BALL, EVENT_ROUTE_32_HIDDEN_GREAT_BALL
Route32HiddenSuperPotion:
hiddenitem SUPER_POTION, EVENT_ROUTE_32_HIDDEN_SUPER_POTION
2015-12-16 18:57:42 -08:00
Movement_Route32CooltrainerMPushesYouBackToViolet:
2016-05-14 10:46:14 -07:00
step UP
step UP
step_end
2015-12-16 18:57:42 -08:00
Movement_Route32CooltrainerMReset1:
2016-05-14 10:46:14 -07:00
step DOWN
step_end
2015-12-16 18:57:42 -08:00
Movement_Route32CooltrainerMReset2:
2016-05-14 10:46:14 -07:00
step RIGHT
step_end
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_WhatsTheHurry:
text "Wait up!"
line "What's the hurry?"
done
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_AideIsWaiting:
text "<PLAYER>, right?"
line "Some guy wearing"
para "glasses was look-"
line "ing for you."
para "See for yourself."
line "He's waiting for"
para "you at the #MON"
line "CENTER."
done
; might not be referenced anywhere
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_UnusedSproutTower:
text "Have you gone to"
line "SPROUT TOWER?"
para "If you ever visit"
line "VIOLET CITY, "
para "they'll expect you"
line "to train there."
para "That's basic for"
line "trainers. Go to"
cont "SPROUT TOWER!"
done
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_VioletGym:
text "Have you gone to"
line "the #MON GYM?"
para "You can test your"
line "#MON and your-"
cont "self there."
para "It's a rite of"
line "passage for all"
cont "trainers!"
done
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_HaveThisSeed:
text "You have some good"
line "#MON there."
para "It must be from"
line "the training you"
para "gave them around"
line "VIOLET CITY."
para "The training at"
line "the GYM must have"
para "been especially"
line "helpful."
para "As a souvenir of"
line "VIOLET CITY, take"
cont "this."
para "It increases the"
line "power of grass-"
cont "type moves."
done
2015-12-16 18:57:42 -08:00
Route32CooltrainerMText_ExperiencesShouldBeUseful:
text "Your experiences"
line "in VIOLET CITY"
para "should be useful"
line "for your journey."
done
2015-12-16 18:57:42 -08:00
Text_MillionDollarSlowpokeTail:
text "How would you like"
line "to have this"
para "tasty, nutritious"
line "SLOWPOKETAIL?"
para "For you right now,"
line "just ¥1,000,000!"
para "You'll want this!"
done
2015-12-16 18:57:42 -08:00
Text_ThoughtKidsWereLoaded:
text "Tch! I thought"
line "kids these days"
cont "were loaded…"
done
2015-12-16 18:57:42 -08:00
Text_RefusedToBuySlowpokeTail:
text "You don't want it?"
line "Then scram. Shoo!"
done
2015-06-25 21:01:08 -07:00
FisherJustinSeenText:
text "Whoa!"
para "You made me lose"
line "that fish!"
done
2015-06-25 21:01:08 -07:00
FisherJustinBeatenText:
text "Sploosh!"
done
2015-12-16 18:57:42 -08:00
FisherJustinAfterText:
text "Calm, collected…"
line "The essence of"
para "fishing and #-"
line "MON is the same."
done
2015-06-25 21:01:08 -07:00
FisherRalph1SeenText:
text "I'm really good at"
line "both fishing and"
cont "#MON."
para "I'm not about to"
line "lose to any kid!"
done
2015-06-25 21:01:08 -07:00
FisherRalph1BeatenText:
text "Tch! I tried to"
line "rush things…"
done
2015-12-16 18:57:42 -08:00
FisherRalphAfterText:
text "Fishing is a life-"
line "long passion."
para "#MON are life-"
line "long friends!"
done
2015-12-16 18:57:42 -08:00
FisherRalphSwarmText:
text "One, two, three…"
line "Muahahaha, what a"
para "great haul!"
line "I'm done! Go ahead"
para "and catch as many"
line "as you can, kid!"
done
; --- start a segment of possibly unused texts
2015-12-16 18:57:42 -08:00
Route32UnusedFisher1SeenText:
text "I keep catching"
line "the same #MON…"
para "Maybe a battle"
line "will turn things"
cont "around for me."
done
2015-12-16 18:57:42 -08:00
Route32UnusedFisher1BeatenText:
text "Nothing ever goes"
line "right for me now…"
done
2015-12-16 18:57:42 -08:00
Route32UnusedFisher1AfterText:
text "How come the guy"
line "next to me catches"
cont "good #MON?"
done
2015-12-16 18:57:42 -08:00
Route32UnusedFisher2SeenText:
text "Heh, I'm on a roll"
line "today. How about a"
cont "battle, kid?"
done
2015-12-16 18:57:42 -08:00
Route32UnusedFisher2BeatenText:
text "Oof. I wasn't"
line "lucky that time."
done
2015-12-16 18:57:42 -08:00
Route32UnusedFisher2AfterText:
text "You have to have a"
line "good ROD if you"
para "want to catch good"
line "#MON."
done
; --- end a segment of possibly unused texts
2015-06-25 21:01:08 -07:00
FisherHenrySeenText:
text "My #MON?"
line "Freshly caught!"
done
2015-06-25 21:01:08 -07:00
FisherHenryBeatenText:
text "SPLASH?"
done
2015-12-16 18:57:42 -08:00
FisherHenryAfterText:
text "Freshly caught"
line "#MON are no"
para "match for properly"
line "raised ones."
done
2015-06-25 21:01:08 -07:00
YoungsterAlbertSeenText:
text "I haven't seen you"
line "around before."
para "So you think you"
line "are pretty tough?"
done
2015-06-25 21:01:08 -07:00
YoungsterAlbertBeatenText:
text "You're strong!"
done
2015-12-16 18:57:42 -08:00
YoungsterAlbertAfterText:
text "I'm going to try"
line "to be the best"
cont "with my favorites."
para "I'm not using the"
line "same tough #MON"
cont "as everyone else."
done
2015-06-25 21:01:08 -07:00
YoungsterGordonSeenText:
text "I found some good"
line "#MON in the"
cont "grass!"
para "I think they'll do"
line "it for me!"
done
2015-06-25 21:01:08 -07:00
YoungsterGordonBeatenText:
text "Darn. I thought I"
line "could win."
done
2015-12-16 18:57:42 -08:00
YoungsterGordonAfterText:
text "The grass is full"
line "of clingy things."
done
2015-06-25 21:01:08 -07:00
CamperRolandSeenText:
text "That glance…"
line "It's intriguing."
done
2015-06-25 21:01:08 -07:00
CamperRolandBeatenText:
text "Hmmm. This is"
line "disappointing."
done
2015-12-16 18:57:42 -08:00
CamperRolandAfterText:
text "If you don't want"
line "to battle, just"
cont "avoid eye contact."
done
2015-06-25 21:01:08 -07:00
PicnickerLiz1SeenText:
text "Uh-huh. Yeah, and"
line "you know…"
para "Pardon? Battle?"
line "I'm on the phone."
para "Oh, all right. But"
line "make it fast."
done
2015-06-25 21:01:08 -07:00
PicnickerLiz1BeatenText:
text "Oh! I've got to"
line "relieve my anger!"
done
2015-12-16 18:57:42 -08:00
PicnickerLiz1AfterText:
text "I was having a"
line "nice chat too."
done
BirdKeeperPeterSeenText:
text "That BADGE! It's"
line "from VIOLET CITY!"
para "You beat FALKNER?"
done
BirdKeeperPeterBeatenText:
text "I know what my"
line "weaknesses are."
done
BirdKeeperPeterAfterText:
text "I should train"
line "again at the GYM"
cont "in VIOLET CITY."
done
; unused
2015-12-16 18:57:42 -08:00
Route32UnusedText:
text "The fishermen"
line "yelled at me for"
cont "bugging them…"
done
2015-12-16 18:57:42 -08:00
Text_RoarIntro:
text "WROOOOAR!"
line "PEOPLE RUN WHEN I"
para "ROAR! BUT YOU"
line "CAME LOOKING!"
para "THAT PLEASES ME!"
line "NOW TAKE THIS!"
done
2015-12-16 18:57:42 -08:00
Text_RoarOutro:
text "WROOOAR!"
line "IT'S ROAR!"
para "EVEN #MON RUN"
line "FROM A GOOD ROAR!"
done
2014-10-26 18:37:15 -07:00
MeetFriedaText:
text "FRIEDA: Yahoo!"
line "It's Friday!"
para "I'm FRIEDA of"
line "Friday!"
para "Nice to meet you!"
done
2014-10-26 18:37:15 -07:00
FriedaGivesGiftText:
text "Here's a POISON"
line "BARB for you!"
done
2014-10-26 18:37:15 -07:00
FriedaGaveGiftText:
text "FRIEDA: Give it to"
line "a #MON that has"
cont "poison-type moves."
para "Oh!"
para "It's wicked!"
para "You'll be shocked"
line "how good it makes"
cont "poison moves!"
done
2014-10-26 18:37:15 -07:00
FriedaFridayText:
text "FRIEDA: Hiya! What"
line "day do you like?"
para "I love Friday. No"
line "doubt about it!"
para "Don't you think"
line "it's great too?"
done
2014-10-26 18:37:15 -07:00
FriedaNotFridayText:
text "FRIEDA: Isn't it"
line "Friday today?"
para "It's so boring"
line "when it's not!"
done
2015-06-25 21:01:08 -07:00
Route32SignText:
text "ROUTE 32"
para "VIOLET CITY -"
line "AZALEA TOWN"
done
2015-06-25 21:01:08 -07:00
Route32RuinsSignText:
text "RUINS OF ALPH"
line "EAST ENTRANCE"
done
2015-06-25 21:01:08 -07:00
Route32UnionCaveSignText:
text "UNION CAVE"
line "AHEAD"
done
Route32_MapEvents:
db 0, 0 ; filler
db 4 ; warp events
2018-02-01 18:54:00 -08:00
warp_event 11, 73, ROUTE_32_POKECENTER_1F, 1
2018-02-01 19:22:07 -08:00
warp_event 4, 2, ROUTE_32_RUINS_OF_ALPH_GATE, 3
warp_event 4, 3, ROUTE_32_RUINS_OF_ALPH_GATE, 4
warp_event 6, 79, UNION_CAVE_1F, 4
db 2 ; coord events
2018-02-01 19:22:07 -08:00
coord_event 18, 8, SCENE_DEFAULT, Route32CooltrainerMStopsYouScene
coord_event 7, 71, SCENE_ROUTE32_OFFER_SLOWPOKETAIL, Route32WannaBuyASlowpokeTailScript
db 6 ; bg events
2018-02-01 19:22:07 -08:00
bg_event 13, 5, BGEVENT_READ, Route32Sign
bg_event 9, 1, BGEVENT_READ, Route32RuinsSign
bg_event 10, 84, BGEVENT_READ, Route32UnionCaveSign
bg_event 12, 73, BGEVENT_READ, Route32PokecenterSign
bg_event 12, 67, BGEVENT_ITEM, Route32HiddenGreatBall
bg_event 11, 40, BGEVENT_ITEM, Route32HiddenSuperPotion
db 14 ; object events
2018-02-01 19:22:07 -08:00
object_event 8, 49, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherJustin, -1
object_event 12, 56, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerFisherRalph1, -1
2018-02-01 19:22:07 -08:00
object_event 6, 48, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherHenry, -1
object_event 12, 22, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerYoungsterAlbert, -1
2018-02-01 19:22:07 -08:00
object_event 4, 63, SPRITE_YOUNGSTER, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerYoungsterGordon, -1
object_event 3, 45, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerCamperRoland, -1
object_event 10, 30, SPRITE_LASS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerPicnickerLiz1, -1
2018-02-01 19:22:07 -08:00
object_event 19, 8, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, Route32CooltrainerMScript, -1
object_event 11, 82, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBirdKeeperPeter, -1
2018-02-01 19:22:07 -08:00
object_event 7, 70, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, SlowpokeTailSalesmanScript, EVENT_SLOWPOKE_WELL_ROCKETS
object_event 6, 53, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, Route32GreatBall, EVENT_ROUTE_32_GREAT_BALL
object_event 15, 13, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, Route32RoarTMGuyScript, -1
object_event 12, 67, SPRITE_LASS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, FriedaScript, EVENT_ROUTE_32_FRIEDA_OF_FRIDAY
2018-02-01 19:22:07 -08:00
object_event 3, 30, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, Route32Repel, EVENT_ROUTE_32_REPEL