pokecrystal-board/maps/Route12.asm

187 lines
4.0 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 ROUTE12_FISHER1
const ROUTE12_FISHER2
const ROUTE12_FISHER3
const ROUTE12_FISHER4
const ROUTE12_POKE_BALL1
const ROUTE12_POKE_BALL2
Route12_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2015-07-10 01:20:21 -07:00
TrainerFisherKyle:
trainer FISHER, KYLE, EVENT_BEAT_FISHER_KYLE, FisherKyleSeenText, FisherKyleBeatenText, 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 FisherKyleAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerFisherMartin:
trainer FISHER, MARTIN, EVENT_BEAT_FISHER_MARTIN, FisherMartinSeenText, FisherMartinBeatenText, 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 FisherMartinAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerFisherStephen:
trainer FISHER, STEPHEN, EVENT_BEAT_FISHER_STEPHEN, FisherStephenSeenText, FisherStephenBeatenText, 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 FisherStephenAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerFisherBarney:
trainer FISHER, BARNEY, EVENT_BEAT_FISHER_BARNEY, FisherBarneySeenText, FisherBarneyBeatenText, 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 FisherBarneyAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2016-04-06 21:59:45 -07:00
Route12Sign:
jumptext Route12SignText
2016-04-06 21:59:45 -07:00
FishingSpotSign:
jumptext FishingSpotSignText
2015-12-15 07:55:56 -08:00
Route12Calcium:
itemball CALCIUM
2015-12-15 07:55:56 -08:00
Route12Nugget:
itemball NUGGET
Route12HiddenElixer:
hiddenitem ELIXER, EVENT_ROUTE_12_HIDDEN_ELIXER
2015-07-10 01:20:21 -07:00
FisherMartinSeenText:
text "Patience is the"
line "key to both fish-"
cont "ing and #MON."
done
2015-07-10 01:20:21 -07:00
FisherMartinBeatenText:
text "Gwaaah!"
done
2017-12-10 12:36:58 -08:00
FisherMartinAfterBattleText:
text "I'm too impatient"
line "for fishing…"
done
2015-07-10 01:20:21 -07:00
FisherStephenSeenText:
text "I feel so content,"
line "fishing while lis-"
cont "tening to some"
cont "tunes on my radio."
done
2015-07-10 01:20:21 -07:00
FisherStephenBeatenText:
text "My stupid radio"
line "distracted me!"
done
2017-12-10 12:36:58 -08:00
FisherStephenAfterBattleText:
text "Have you checked"
line "out KANTO's radio"
para "programs? We get a"
line "good variety here."
done
2015-07-10 01:20:21 -07:00
FisherBarneySeenText:
text "What's most impor-"
line "tant in our every-"
cont "day lives?"
done
2015-07-10 01:20:21 -07:00
FisherBarneyBeatenText:
text "The answer is"
line "coming up next!"
done
2017-12-10 12:36:58 -08:00
FisherBarneyAfterBattleText:
text "I think electric-"
line "ity is the most"
para "important thing in"
line "our daily lives."
para "If it weren't,"
line "people wouldn't"
para "have made such a"
line "fuss when the"
para "POWER PLANT went"
line "out of commission."
done
2015-07-10 01:20:21 -07:00
FisherKyleSeenText:
text "Do you remember?"
done
2015-07-10 01:20:21 -07:00
FisherKyleBeatenText:
text "You do remember?"
done
2017-12-10 12:36:58 -08:00
FisherKyleAfterBattleText:
text "The tug you feel"
line "on the ROD when"
para "you hook a #-"
line "MON…"
para "That's the best"
line "feeling ever for"
cont "an angler like me."
done
2016-04-06 21:59:45 -07:00
Route12SignText:
text "ROUTE 12"
para "NORTH TO LAVENDER"
line "TOWN"
done
2016-04-06 21:59:45 -07:00
FishingSpotSignText:
text "FISHING SPOT"
done
Route12_MapEvents:
db 0, 0 ; filler
db 1 ; warp events
2018-02-01 18:54:00 -08:00
warp_event 11, 33, ROUTE_12_SUPER_ROD_HOUSE, 1
db 0 ; coord events
db 3 ; bg events
bg_event 11, 27, BGEVENT_READ, Route12Sign
2018-02-01 19:22:07 -08:00
bg_event 13, 9, BGEVENT_READ, FishingSpotSign
bg_event 14, 13, BGEVENT_ITEM, Route12HiddenElixer
db 6 ; object events
2018-02-01 19:22:07 -08:00
object_event 5, 13, SPRITE_FISHER, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherMartin, -1
object_event 14, 23, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherStephen, -1
object_event 10, 38, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 5, TrainerFisherBarney, -1
2018-02-01 19:22:07 -08:00
object_event 6, 7, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerFisherKyle, -1
object_event 5, 43, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, Route12Calcium, EVENT_ROUTE_12_CALCIUM
object_event 5, 51, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, Route12Nugget, EVENT_ROUTE_12_NUGGET