diff options
Diffstat (limited to 'src/constants')
-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 |