diff options
author | Astatin <[email protected]> | 2025-02-14 17:16:05 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-14 17:16:05 +0900 |
commit | cce14a83a5ef7b8bd3e8affa1cf5d52b00329b0a (patch) | |
tree | 3bbea23771b4cf981796eb9fb50c781b1886e93b /tileset.gbasm | |
parent | ecd565bc8625f7b80ebe197554ab01e1ef9a604b (diff) |
Fix laser animation + make EP work + add leaf to restore EP
Diffstat (limited to 'tileset.gbasm')
-rw-r--r-- | tileset.gbasm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tileset.gbasm b/tileset.gbasm index 7c950a4..cb07c51 100644 --- a/tileset.gbasm +++ b/tileset.gbasm @@ -87,19 +87,25 @@ BG_Tile_Image_Data: .DB $00, $00, $30, $30, $58, $68, $74, $5c, $7e, $6a, $fc, $d4, $58, $78, $20, $20 ; 0x65 .DB $10, $10, $10, $10, $21, $20, $23, $20, $47, $43, $4c, $4c, $70, $70, $00, $00 ; 0x66 .DB $30, $10, $70, $10, $e0, $20, $c0, $c0, $00, $00, $00, $00, $00, $00, $00, $00 ; 0x67 + + ; Leaf + .DB $00, $00, $01, $01, $06, $06, $0a, $09, $15, $12, $2b, $24, $57, $48, $57, $48 ; 0x68 + .DB $00, $00, $fe, $fe, $82, $7e, $7c, $84, $e8, $18, $f0, $10, $d0, $30, $d0, $30 ; 0x69 + .DB $6f, $50, $6f, $50, $1e, $21, $58, $4f, $97, $b7, $a0, $e0, $a0, $e0, $40, $40 ; 0x6a + .DB $a0, $60, $a0, $60, $20, $e0, $40, $c0, $80, $80, $00, $00, $00, $00, $00, $00 ; 0x6b Small_sprites: ; Heart - .DB $00, $00, $6c, $6c, $fe, $92, $fe, $82, $7c, $44, $38, $28, $10, $10, $00, $00 ; 0x68 - - ; Cursor - .DB $00, $00, $60, $60, $78, $78, $7e, $7e, $7e, $7e, $78, $78, $60, $60, $00, $00 ; 0x69 + .DB $00, $00, $6c, $6c, $fe, $92, $fe, $82, $7c, $44, $38, $28, $10, $10, $00, $00 ; 0xf0 ; Energy - .DB $70, $70, $f8, $88, $fe, $be, $ff, $91, $ff, $b5, $ff, $81, $7e, $76, $08, $08 ; 0x6a + .DB $70, $70, $f8, $88, $fe, $be, $ff, $91, $ff, $b5, $ff, $81, $7e, $76, $08, $08 ; 0xf1 + + ; Cursor + .DB $00, $00, $60, $60, $78, $78, $7e, $7e, $7e, $7e, $78, $78, $60, $60, $00, $00 ; 0xf2 ; Disabled Cursor - .DB $00, $00, $22, $00, $36, $00, $1c, $00, $1c, $00, $36, $00, $22, $00, $00, $00 ; 0x6b + .DB $00, $00, $22, $00, $36, $00, $1c, $00, $1c, $00, $36, $00, $22, $00, $00, $00 ; 0xf3 Font_Data: .DB $00, $00, $38, $3c, $44, $46, $44, $46, $44, $46, $44, $46, $38, $3c, $00, $00 ; 0x80 |