mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Store Magnet Train tilemaps in their own files
This commit is contained in:
parent
01618d3cc4
commit
6962d843a3
@ -175,19 +175,19 @@ DrawMagnetTrain:
|
|||||||
|
|
||||||
hlbgcoord 0, 6
|
hlbgcoord 0, 6
|
||||||
ld de, MagnetTrainTilemap
|
ld de, MagnetTrainTilemap
|
||||||
ld c, 20
|
ld c, SCREEN_WIDTH
|
||||||
call .FillLine
|
call .FillLine
|
||||||
hlbgcoord 0, 7
|
hlbgcoord 0, 7
|
||||||
ld de, MagnetTrainTilemap + 20
|
ld de, MagnetTrainTilemap + SCREEN_WIDTH
|
||||||
ld c, 20
|
ld c, SCREEN_WIDTH
|
||||||
call .FillLine
|
call .FillLine
|
||||||
hlbgcoord 0, 8
|
hlbgcoord 0, 8
|
||||||
ld de, MagnetTrainTilemap + (20 * 2)
|
ld de, MagnetTrainTilemap + (SCREEN_WIDTH * 2)
|
||||||
ld c, 20
|
ld c, SCREEN_WIDTH
|
||||||
call .FillLine
|
call .FillLine
|
||||||
hlbgcoord 0, 9
|
hlbgcoord 0, 9
|
||||||
ld de, MagnetTrainTilemap + (20 * 3)
|
ld de, MagnetTrainTilemap + (SCREEN_WIDTH * 3)
|
||||||
ld c, 20
|
ld c, SCREEN_WIDTH
|
||||||
call .FillLine
|
call .FillLine
|
||||||
ret
|
ret
|
||||||
|
|
||||||
@ -222,25 +222,8 @@ GetMagnetTrainBGTiles:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
MagnetTrainBGTiles:
|
MagnetTrainBGTiles:
|
||||||
; Alternating tiles for each line of the Magnet Train tilemap.
|
; 2x18 tilemap, repeated in vertical strips for the background.
|
||||||
db $4c, $4d ; bush
|
INCBIN "gfx/overworld/magnet_train_bg.tilemap"
|
||||||
db $5c, $5d ; bush
|
|
||||||
db $4c, $4d ; bush
|
|
||||||
db $5c, $5d ; bush
|
|
||||||
db $08, $08 ; fence
|
|
||||||
db $18, $18 ; fence
|
|
||||||
db $1f, $1f ; track
|
|
||||||
db $31, $31 ; track
|
|
||||||
db $11, $11 ; track
|
|
||||||
db $11, $11 ; track
|
|
||||||
db $0d, $0d ; track
|
|
||||||
db $31, $31 ; track
|
|
||||||
db $04, $04 ; fence
|
|
||||||
db $18, $18 ; fence
|
|
||||||
db $4c, $4d ; bush
|
|
||||||
db $5c, $5d ; bush
|
|
||||||
db $4c, $4d ; bush
|
|
||||||
db $5c, $5d ; bush
|
|
||||||
|
|
||||||
MagnetTrain_InitLYOverrides:
|
MagnetTrain_InitLYOverrides:
|
||||||
ld hl, wLYOverrides
|
ld hl, wLYOverrides
|
||||||
@ -451,7 +434,5 @@ MagnetTrain_Jumptable_FirstRunThrough:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
MagnetTrainTilemap:
|
MagnetTrainTilemap:
|
||||||
db $1f, $05, $06, $0a, $0a, $0a, $09, $0a, $0a, $0a, $0a, $0a, $0a, $09, $0a, $0a, $0a, $0b, $0c, $1f
|
; 20x4 tilemap
|
||||||
db $14, $15, $16, $1a, $1a, $1a, $19, $1a, $1a, $1a, $1a, $1a, $1a, $19, $1a, $1a, $1a, $1b, $1c, $1d
|
INCBIN "gfx/overworld/magnet_train_fg.tilemap"
|
||||||
db $24, $25, $26, $27, $07, $2f, $29, $28, $28, $28, $28, $28, $28, $29, $07, $2f, $2a, $2b, $2c, $2d
|
|
||||||
db $20, $1f, $2e, $1f, $17, $00, $2e, $1f, $1f, $1f, $1f, $1f, $1f, $2e, $17, $00, $1f, $2e, $1f, $0f
|
|
||||||
|
1
gfx/overworld/magnet_train_bg.tilemap
Normal file
1
gfx/overworld/magnet_train_bg.tilemap
Normal file
@ -0,0 +1 @@
|
|||||||
|
LM\]LM\]11
11LM\]LM\]
|
BIN
gfx/overworld/magnet_train_fg.tilemap
Normal file
BIN
gfx/overworld/magnet_train_fg.tilemap
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user