diff options
author | Daniel Harding <33dannye@gmail.com> | 2021-04-02 08:52:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 08:52:26 -0500 |
commit | 2bd3cc006136b1e0ac1949a169b74fa2c8215e84 (patch) | |
tree | d586d12eb9b24216dea805c3cb9bba416c87337b /src/constants/gfx_constants.asm | |
parent | 5fdf423da5fdcc24d73e88ea21cc98f58c448c96 (diff) | |
parent | 9632cb6a7e8b10a699c766b6c8188c3a5aab5771 (diff) |
Merge pull request #102 from ElectroDeoxys/master
Disassemble and document some bank $2
Diffstat (limited to 'src/constants/gfx_constants.asm')
-rw-r--r-- | src/constants/gfx_constants.asm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/constants/gfx_constants.asm b/src/constants/gfx_constants.asm index 0e82519..6ec2e0b 100644 --- a/src/constants/gfx_constants.asm +++ b/src/constants/gfx_constants.asm @@ -19,3 +19,18 @@ tiles EQUS "* TILE_SIZE" TILE_SIZE_1BPP EQU 8 ; bytes tiles_1bpp EQUS "* TILE_SIZE_1BPP" + +; icon tile offsets +ICON_TILE_BASIC_POKEMON EQU $d0 +ICON_TILE_STAGE_1_POKEMON EQU $d4 +ICON_TILE_STAGE_2_POKEMON EQU $d8 +ICON_TILE_TRAINER EQU $dc + +ICON_TILE_FIRE EQU $e0 +ICON_TILE_GRASS EQU $e4 +ICON_TILE_LIGHTNING EQU $e8 +ICON_TILE_WATER EQU $ec +ICON_TILE_FIGHTING EQU $f0 +ICON_TILE_PSYCHIC EQU $f4 +ICON_TILE_COLORLESS EQU $f8 +ICON_TILE_ENERGY EQU $fc |