pokecrystal-board/maps/Route6.asm
Remy Oukaour 0a1fef45fd Rename maps:
- Underground -> UndergroundPath
- Route5UndergroundEntrance -> Route5UndergroundPathEntrance
- Route6UndergroundEntrance -> Route6UndergroundPathEntrance

- WarehouseEntrance -> GoldenrodUnderground
- UndergroundWarehouse -> GoldenrodUndergroundWarehouse
- UndergroundPathSwitchRoomEntrances -> GoldenrodUndergroundSwitchRoomEntrances
2017-12-24 18:06:12 -05:00

115 lines
2.3 KiB
NASM

const_value set 2
const ROUTE6_POKEFAN_M1
const ROUTE6_POKEFAN_M2
const ROUTE6_POKEFAN_M3
Route6_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
TrainerPokefanmRex:
trainer EVENT_BEAT_POKEFANM_REX, POKEFANM, REX, PokefanmRexSeenText, PokefanmRexBeatenText, 0, .Script
.Script:
end_if_just_battled
opentext
writetext PokefanmRexAfterBattleText
waitbutton
closetext
end
TrainerPokefanmAllan:
trainer EVENT_BEAT_POKEFANM_ALLAN, POKEFANM, ALLAN, PokefanmAllanSeenText, PokefanmAllanBeatenText, 0, .Script
.Script:
end_if_just_battled
opentext
writetext PokefanmAllanAfterBattleText
waitbutton
closetext
end
Route6PokefanMScript:
jumptextfaceplayer Route6PokefanMText
Route6UndergroundPathSign:
jumptext Route6UndergroundPathSignText
Route6PokefanMText:
text "The road is closed"
line "until the problem"
para "at the POWER PLANT"
line "is solved."
done
Route6UndergroundPathSignText:
text "UNDERGROUND PATH"
para "CERULEAN CITY -"
line "VERMILION CITY"
done
PokefanmRexSeenText:
text "My PHANPY is the"
line "cutest in the"
cont "world."
done
PokefanmRexBeatenText:
text "My PHANPY!"
done
PokefanmRexAfterBattleText:
text "Look how adorable"
line "my PHANPY acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
PokefanmAllanSeenText:
text "My TEDDIURSA is"
line "the cutest in the"
cont "world."
done
PokefanmAllanBeatenText:
text "My TEDDIURSA!"
done
PokefanmAllanAfterBattleText:
text "Look how adorable"
line "my TEDDIURSA acts!"
para "Isn't it cute"
line "enough to make"
cont "your heart melt?"
done
Route6_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $3, $11, 1, ROUTE_6_UNDERGROUND_PATH_ENTRANCE
warp_def $1, $6, 3, ROUTE_6_SAFFRON_GATE
.CoordEvents:
db 0
.BGEvents:
db 1
bg_event 5, 19, BGEVENT_READ, Route6UndergroundPathSign
.ObjectEvents:
db 3
object_event SPRITE_POKEFAN_M, 4, 17, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 2, Route6PokefanMScript, EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
object_event SPRITE_POKEFAN_M, 12, 9, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 0, TrainerPokefanmRex, -1
object_event SPRITE_POKEFAN_M, 12, 10, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 0, TrainerPokefanmAllan, -1