pokecrystal-board/data/collision/field_move_blocks.asm

56 lines
1.2 KiB
NASM
Raw Permalink Normal View History

; these blocks all use COLL_CUT_TREE in one quadrant
2018-06-24 07:09:41 -07:00
CutTreeBlockPointers:
; tileset, block list pointer
2018-01-17 11:50:34 -08:00
dbw TILESET_JOHTO, .johto
dbw TILESET_JOHTO_MODERN, .johto_modern
dbw TILESET_KANTO, .kanto
dbw TILESET_PARK, .park
dbw TILESET_FOREST, .forest
2018-01-17 09:49:21 -08:00
db -1 ; end
2018-01-17 11:50:34 -08:00
.johto:
; facing block, replacement block, animation
2018-01-17 09:49:21 -08:00
db $03, $02, 1 ; grass
db $5b, $3c, 0 ; tree
db $5f, $3d, 0 ; tree
db $63, $3f, 0 ; tree
db $67, $3e, 0 ; tree
db -1 ; end
2018-01-17 11:50:34 -08:00
.johto_modern:
; facing block, replacement block, animation
db $03, $02, $01 ; grass
2018-01-17 09:49:21 -08:00
db -1 ; end
2018-01-17 09:49:21 -08:00
.kanto:
; facing block, replacement block, animation
2018-01-17 09:49:21 -08:00
db $0b, $0a, 1 ; grass
db $32, $6d, 0 ; tree
db $33, $6c, 0 ; tree
db $34, $6f, 0 ; tree
db $35, $4c, 0 ; tree
db $60, $6e, 0 ; tree
db -1 ; end
.park:
; facing block, replacement block, animation
2018-01-17 09:49:21 -08:00
db $13, $03, 1 ; grass
db $03, $04, 1 ; grass
db -1 ; end
2018-01-17 11:50:34 -08:00
.forest:
; facing block, replacement block, animation
2018-01-17 09:49:21 -08:00
db $0f, $17, 0
db -1 ; end
; these blocks all use COLL_WHIRLPOOL in one quadrant
2018-06-24 07:09:41 -07:00
WhirlpoolBlockPointers:
2018-01-17 11:50:34 -08:00
dbw TILESET_JOHTO, .johto
2018-01-17 09:49:21 -08:00
db -1 ; end
2018-01-17 09:49:21 -08:00
.johto:
; facing block, replacement block, animation
2018-01-17 09:49:21 -08:00
db $07, $36, 0
db -1 ; end