pokecrystal-board/maps/Route6.asm

115 lines
2.3 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const ROUTE6_POKEFAN_M1
const ROUTE6_POKEFAN_M2
const ROUTE6_POKEFAN_M3
2015-07-10 01:20:21 -07:00
Route6_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-07-10 01:20:21 -07:00
TrainerPokefanmRex:
2017-12-17 17:45:04 -08:00
trainer EVENT_BEAT_POKEFANM_REX, POKEFANM, REX, PokefanmRexSeenText, PokefanmRexBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
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 PokefanmRexAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
TrainerPokefanmAllan:
2017-12-17 17:45:04 -08:00
trainer EVENT_BEAT_POKEFANM_ALLAN, POKEFANM, ALLAN, PokefanmAllanSeenText, PokefanmAllanBeatenText, 0, .Script
2017-12-17 17:45:04 -08:00
.Script:
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 PokefanmAllanAfterBattleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
Route6PokefanMScript:
jumptextfaceplayer Route6PokefanMText
2016-04-06 21:59:45 -07:00
Route6UndergroundPathSign:
jumptext Route6UndergroundPathSignText
2017-12-17 16:48:04 -08:00
Route6PokefanMText:
text "The road is closed"
line "until the problem"
para "at the POWER PLANT"
line "is solved."
done
2016-04-06 21:59:45 -07:00
Route6UndergroundPathSignText:
text "UNDERGROUND PATH"
para "CERULEAN CITY -"
line "VERMILION CITY"
done
2015-07-10 01:20:21 -07:00
PokefanmRexSeenText:
text "My PHANPY is the"
line "cutest in the"
cont "world."
done
2015-07-10 01:20:21 -07:00
PokefanmRexBeatenText:
text "My PHANPY!"
done
2017-12-10 12:36:58 -08:00
PokefanmRexAfterBattleText:
text "Look how adorable"
line "my PHANPY acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
2015-07-10 01:20:21 -07:00
PokefanmAllanSeenText:
text "My TEDDIURSA is"
line "the cutest in the"
cont "world."
done
2015-07-10 01:20:21 -07:00
PokefanmAllanBeatenText:
text "My TEDDIURSA!"
done
2017-12-10 12:36:58 -08:00
PokefanmAllanAfterBattleText:
text "Look how adorable"
line "my TEDDIURSA acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
2015-07-10 01:20:21 -07:00
Route6_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $3, $11, 1, ROUTE_6_UNDERGROUND_ENTRANCE
warp_def $1, $6, 3, ROUTE_6_SAFFRON_GATE
.XYTriggers:
db 0
.Signposts:
db 1
2016-04-06 21:59:45 -07:00
signpost 5, 19, SIGNPOST_READ, Route6UndergroundPathSign
.PersonEvents:
db 3
2017-12-17 16:48:04 -08:00
person_event SPRITE_POKEFAN_M, 4, 17, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, PERSONTYPE_SCRIPT, 2, Route6PokefanMScript, EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
2017-12-10 17:50:08 -08:00
person_event SPRITE_POKEFAN_M, 12, 9, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_TRAINER, 0, TrainerPokefanmRex, -1
person_event SPRITE_POKEFAN_M, 12, 10, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_TRAINER, 0, TrainerPokefanmAllan, -1