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 /tiles.gbasm | |
parent | ecd565bc8625f7b80ebe197554ab01e1ef9a604b (diff) |
Fix laser animation + make EP work + add leaf to restore EP
Diffstat (limited to 'tiles.gbasm')
-rw-r--r-- | tiles.gbasm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tiles.gbasm b/tiles.gbasm index 0ef0425..65655c2 100644 --- a/tiles.gbasm +++ b/tiles.gbasm @@ -19,6 +19,11 @@ Load_Tile: LD BC, $04c0 CALL =memcpy + LD HL, $8f00 + LD DE, =Small_sprites + LD BC, $0040 + CALL =memcpy + LD HL, $8600 LD DE, =Animation_Sprites_Data LD BC, $0060 @@ -87,5 +92,5 @@ Dialogue_Box_Tilemap_data: Cost_Window_Tilemap_data: .DB 0x11, 0x17, 0x17, 0x17, 0x17, 0x17, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 .DB 0x15, 0xab, 0xac, 0xad, 0xae, 0xaf, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - .DB 0x15, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + .DB 0x15, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 .DB 0x12, 0x18, 0x18, 0x18, 0x18, 0x18, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |