pokecrystal-board/maps/Route12.asm

195 lines
4.0 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const ROUTE12_FISHER1
const ROUTE12_FISHER2
const ROUTE12_FISHER3
const ROUTE12_FISHER4
const ROUTE12_POKE_BALL1
const ROUTE12_POKE_BALL2
2015-07-10 01:20:21 -07:00
Route12_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-07-10 01:20:21 -07:00
TrainerFisherKyle:
2015-11-02 11:37:02 -08:00
trainer EVENT_BEAT_FISHER_KYLE, FISHER, KYLE, FisherKyleSeenText, FisherKyleBeatenText, 0, FisherKyleScript
2015-07-10 01:20:21 -07:00
FisherKyleScript:
2015-11-25 07:16:29 -08:00
end_if_just_battled
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:
2015-11-02 11:37:02 -08:00
trainer EVENT_BEAT_FISHER_MARTIN, FISHER, MARTIN, FisherMartinSeenText, FisherMartinBeatenText, 0, FisherMartinScript
2015-07-10 01:20:21 -07:00
FisherMartinScript:
2015-11-25 07:16:29 -08:00
end_if_just_battled
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:
2015-11-02 11:37:02 -08:00
trainer EVENT_BEAT_FISHER_STEPHEN, FISHER, STEPHEN, FisherStephenSeenText, FisherStephenBeatenText, 0, FisherStephenScript
2015-07-10 01:20:21 -07:00
FisherStephenScript:
2015-11-25 07:16:29 -08:00
end_if_just_battled
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:
2015-11-02 11:37:02 -08:00
trainer EVENT_BEAT_FISHER_BARNEY, FISHER, BARNEY, FisherBarneySeenText, FisherBarneyBeatenText, 0, FisherBarneyScript
2015-07-10 01:20:21 -07:00
FisherBarneyScript:
2015-11-25 07:16:29 -08:00
end_if_just_battled
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:
dwb EVENT_ROUTE_12_HIDDEN_ELIXER, 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
2015-07-10 01:20:21 -07:00
Route12_MapEventHeader:
; filler
db 0, 0
.Warps:
db 1
warp_def $21, $b, 1, ROUTE_12_SUPER_ROD_HOUSE
.XYTriggers:
db 0
.Signposts:
db 3
2016-04-06 21:59:45 -07:00
signpost 27, 11, SIGNPOST_READ, Route12Sign
signpost 9, 13, SIGNPOST_READ, FishingSpotSign
signpost 13, 14, SIGNPOST_ITEM, Route12HiddenElixer
.PersonEvents:
db 6
2017-12-10 17:50:08 -08:00
person_event SPRITE_FISHER, 13, 5, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 1, TrainerFisherMartin, -1
person_event SPRITE_FISHER, 23, 14, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 1, TrainerFisherStephen, -1
person_event SPRITE_FISHER, 38, 10, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 5, TrainerFisherBarney, -1
person_event SPRITE_FISHER, 7, 6, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 3, TrainerFisherKyle, -1
2015-12-15 07:55:56 -08:00
person_event SPRITE_POKE_BALL, 43, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, Route12Calcium, EVENT_ROUTE_12_CALCIUM
person_event SPRITE_POKE_BALL, 51, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, Route12Nugget, EVENT_ROUTE_12_NUGGET