pokecrystal/maps/Route4.asm

146 lines
2.9 KiB
NASM
Raw Normal View History

2015-11-27 05:22:14 +00:00
const_value set 2
const ROUTE4_YOUNGSTER
const ROUTE4_LASS1
const ROUTE4_LASS2
const ROUTE4_POKE_BALL
2015-07-10 08:20:21 +00:00
Route4_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-07-10 08:20:21 +00:00
TrainerBird_keeperHank:
2015-11-02 19:37:02 +00:00
trainer EVENT_BEAT_BIRD_KEEPER_HANK, BIRD_KEEPER, HANK, Bird_keeperHankSeenText, Bird_keeperHankBeatenText, 0, Bird_keeperHankScript
2015-07-10 08:20:21 +00:00
Bird_keeperHankScript:
2015-11-25 15:16:29 +00:00
end_if_just_battled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext Bird_keeperHankAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 08:20:21 +00:00
TrainerPicnickerHope:
2015-11-02 19:37:02 +00:00
trainer EVENT_BEAT_PICNICKER_HOPE, PICNICKER, HOPE, PicnickerHopeSeenText, PicnickerHopeBeatenText, 0, PicnickerHopeScript
2015-07-10 08:20:21 +00:00
PicnickerHopeScript:
2015-11-25 15:16:29 +00:00
end_if_just_battled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext PicnickerHopeAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2015-07-10 08:20:21 +00:00
TrainerPicnickerSharon:
2015-11-02 19:37:02 +00:00
trainer EVENT_BEAT_PICNICKER_SHARON, PICNICKER, SHARON, PicnickerSharonSeenText, PicnickerSharonBeatenText, 0, PicnickerSharonScript
2015-07-10 08:20:21 +00:00
PicnickerSharonScript:
2015-11-25 15:16:29 +00:00
end_if_just_battled
2015-12-09 23:25:44 +00:00
opentext
2017-12-10 20:36:58 +00:00
writetext PicnickerSharonAfterBattleText
2015-11-25 15:16:29 +00:00
waitbutton
closetext
end
2016-04-07 04:59:45 +00:00
MtMoonSquareSign:
jumptext MtMoonSquareSignText
2015-12-15 15:55:56 +00:00
Route4HPUp:
itemball HP_UP
Route4HiddenUltraBall:
dwb EVENT_ROUTE_4_HIDDEN_ULTRA_BALL, ULTRA_BALL
2015-07-10 08:20:21 +00:00
Bird_keeperHankSeenText:
text "I'm raising my"
line "#MON. Want to"
cont "battle with me?"
done
2015-07-10 08:20:21 +00:00
Bird_keeperHankBeatenText:
text "Ack! I lost that"
line "one…"
done
2017-12-10 20:36:58 +00:00
Bird_keeperHankAfterBattleText:
text "If you have a"
line "specific #MON"
para "that you want to"
line "raise, put it out"
para "first, then switch"
line "it right away."
para "That's how to do"
line "it."
done
2015-07-10 08:20:21 +00:00
PicnickerHopeSeenText:
text "I have a feeling"
line "that I can win."
para "Let's see if I'm"
line "right!"
done
2015-07-10 08:20:21 +00:00
PicnickerHopeBeatenText:
text "Aww, you are too"
line "strong."
done
2017-12-10 20:36:58 +00:00
PicnickerHopeAfterBattleText:
text "I heard CLEFAIRY"
line "appear at MT.MOON."
para "But where could"
line "they be?"
done
2015-07-10 08:20:21 +00:00
PicnickerSharonSeenText:
text "Um…"
line "I…"
done
2015-07-10 08:20:21 +00:00
PicnickerSharonBeatenText:
text "…"
done
2017-12-10 20:36:58 +00:00
PicnickerSharonAfterBattleText:
text "……I'll go train"
line "some more…"
done
2016-04-07 04:59:45 +00:00
MtMoonSquareSignText:
text "MT.MOON SQUARE"
para "Just go up the"
line "stairs."
done
2015-07-10 08:20:21 +00:00
Route4_MapEventHeader:
; filler
db 0, 0
.Warps:
db 1
warp_def $5, $2, 2, MOUNT_MOON
.XYTriggers:
db 0
.Signposts:
db 2
2016-04-07 04:59:45 +00:00
signpost 7, 3, SIGNPOST_READ, MtMoonSquareSign
signpost 3, 10, SIGNPOST_ITEM, Route4HiddenUltraBall
.PersonEvents:
db 4
2017-12-11 01:50:08 +00:00
person_event SPRITE_YOUNGSTER, 9, 17, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_TRAINER, 3, TrainerBird_keeperHank, -1
person_event SPRITE_LASS, 8, 9, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 4, TrainerPicnickerHope, -1
person_event SPRITE_LASS, 6, 21, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_TRAINER, 4, TrainerPicnickerSharon, -1
2015-12-15 15:55:56 +00:00
person_event SPRITE_POKE_BALL, 3, 26, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, PERSONTYPE_ITEMBALL, 0, Route4HPUp, EVENT_ROUTE_4_HP_UP