pokecrystal-board/maps/PalletTown.asm

89 lines
1.7 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const PALLETTOWN_TEACHER
const PALLETTOWN_FISHER
PalletTown_MapScripts:
def_scene_scripts
def_callbacks
callback MAPCALLBACK_NEWMAP, .FlyPoint
.FlyPoint:
2015-06-25 22:30:16 -07:00
setflag ENGINE_FLYPOINT_PALLET
endcallback
2017-12-17 16:48:04 -08:00
PalletTownTeacherScript:
jumptextfaceplayer PalletTownTeacherText
2017-12-17 16:48:04 -08:00
PalletTownFisherScript:
jumptextfaceplayer PalletTownFisherText
2015-06-25 22:30:16 -07:00
PalletTownSign:
jumptext PalletTownSignText
2015-06-25 22:30:16 -07:00
RedsHouseSign:
jumptext RedsHouseSignText
2015-06-25 22:30:16 -07:00
OaksLabSign:
jumptext OaksLabSignText
2015-06-25 22:30:16 -07:00
BluesHouseSign:
jumptext BluesHouseSignText
2017-12-17 16:48:04 -08:00
PalletTownTeacherText:
text "I'm raising #-"
line "MON too."
para "They serve as my"
line "private guards."
done
2017-12-17 16:48:04 -08:00
PalletTownFisherText:
text "Technology is"
line "incredible!"
para "You can now trade"
line "#MON across"
cont "time like e-mail."
done
2015-06-25 22:30:16 -07:00
PalletTownSignText:
text "PALLET TOWN"
para "A Tranquil Setting"
line "of Peace & Purity"
done
2015-06-25 22:30:16 -07:00
RedsHouseSignText:
text "RED'S HOUSE"
done
2015-06-25 22:30:16 -07:00
OaksLabSignText:
text "OAK #MON"
line "RESEARCH LAB"
done
2015-06-25 22:30:16 -07:00
BluesHouseSignText:
text "BLUE'S HOUSE"
done
PalletTown_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 5, 5, REDS_HOUSE_1F, 1
warp_event 13, 5, BLUES_HOUSE, 1
2018-02-01 18:54:00 -08:00
warp_event 12, 11, OAKS_LAB, 1
def_coord_events
def_bg_events
2018-02-01 19:22:07 -08:00
bg_event 7, 9, BGEVENT_READ, PalletTownSign
bg_event 3, 5, BGEVENT_READ, RedsHouseSign
bg_event 13, 13, BGEVENT_READ, OaksLabSign
2018-02-01 19:22:07 -08:00
bg_event 11, 5, BGEVENT_READ, BluesHouseSign
def_object_events
2018-02-01 19:22:07 -08:00
object_event 3, 8, SPRITE_TEACHER, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PalletTownTeacherScript, -1
object_event 12, 14, SPRITE_FISHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 2, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PalletTownFisherScript, -1