pokecrystal-board/maps/PalletTown.asm

94 lines
1.6 KiB
NASM
Raw Normal View History

2015-06-25 22:30:16 -07:00
PalletTown_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 1
; callbacks
2015-06-25 22:30:16 -07:00
dbw 5, .FlyPoint
2015-06-25 22:30:16 -07:00
.FlyPoint
setflag ENGINE_FLYPOINT_PALLET
return
2015-06-25 22:30:16 -07:00
TeacherScript_0x1ac6d5:
jumptextfaceplayer UnknownText_0x1ac6e7
2015-06-25 22:30:16 -07:00
FisherScript_0x1ac6d8:
jumptextfaceplayer UnknownText_0x1ac720
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
2015-06-25 22:30:16 -07:00
UnknownText_0x1ac6e7:
text "I'm raising #-"
line "MON too."
para "They serve as my"
line "private guards."
done
2015-06-25 22:30:16 -07:00
UnknownText_0x1ac720:
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
2015-06-25 22:30:16 -07:00
PalletTown_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $5, $5, 1, REDS_HOUSE_1F
warp_def $5, $d, 1, BLUES_HOUSE
warp_def $b, $c, 1, OAKS_LAB
.XYTriggers:
db 0
.Signposts:
db 4
signpost 9, 7, SIGNPOST_READ, PalletTownSign
signpost 5, 3, SIGNPOST_READ, RedsHouseSign
signpost 13, 13, SIGNPOST_READ, OaksLabSign
signpost 5, 11, SIGNPOST_READ, BluesHouseSign
.PersonEvents:
db 2
2015-11-06 13:42:38 -08:00
person_event SPRITE_TEACHER, 8, 3, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, 0, 0, 0, TeacherScript_0x1ac6d5, -1
2015-10-31 18:05:02 -07:00
person_event SPRITE_FISHER, 14, 12, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, (1 << 3) | PAL_OW_GREEN, 0, 0, FisherScript_0x1ac6d8, -1