You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Create data/collision/ for tile collision-related data
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
; std scripts associated with tile collisions
|
||||
|
||||
stdcoll: MACRO
|
||||
db \1
|
||||
dw (\2StdScript - StdScripts) / 3
|
||||
ENDM
|
||||
|
||||
TileCollisionStdScripts:
|
||||
; collision type, std script
|
||||
stdcoll COLL_BOOKSHELF, MagazineBookshelfScript
|
||||
stdcoll COLL_PC, PCScript
|
||||
stdcoll COLL_RADIO, Radio1Script
|
||||
stdcoll COLL_TOWN_MAP, TownMapScript
|
||||
stdcoll COLL_MART_SHELF, MerchandiseShelfScript
|
||||
stdcoll COLL_TV, TVScript
|
||||
stdcoll COLL_WINDOW, WindowScript
|
||||
stdcoll COLL_INCENSE_BURNER, IncenseBurnerScript
|
||||
db -1 ; end
|
@@ -1,52 +0,0 @@
|
||||
CutTreeBlockPointers:
|
||||
; tileset, block list pointer
|
||||
dbw TILESET_JOHTO, .johto
|
||||
dbw TILESET_JOHTO_MODERN, .johto_modern
|
||||
dbw TILESET_KANTO, .kanto
|
||||
dbw TILESET_PARK, .park
|
||||
dbw TILESET_FOREST, .forest
|
||||
db -1 ; end
|
||||
|
||||
.johto:
|
||||
; facing block, replacement block, animation
|
||||
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
|
||||
|
||||
.johto_modern:
|
||||
; facing block, replacement block, animation
|
||||
db $03, $02, $01 ; grass
|
||||
db -1 ; end
|
||||
|
||||
.kanto:
|
||||
; facing block, replacement block, animation
|
||||
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
|
||||
db $13, $03, 1 ; grass
|
||||
db $03, $04, 1 ; grass
|
||||
db -1 ; end
|
||||
|
||||
.forest:
|
||||
; facing block, replacement block, animation
|
||||
db $0f, $17, 0
|
||||
db -1 ; end
|
||||
|
||||
WhirlpoolBlockPointers:
|
||||
dbw TILESET_JOHTO, .johto
|
||||
db -1 ; end
|
||||
|
||||
.johto:
|
||||
; facing block, replacement block, animation
|
||||
db $07, $36, 0
|
||||
db -1 ; end
|
Reference in New Issue
Block a user