diff --git a/constants/sprite_constants.asm b/constants/sprite_constants.asm index 700ec47a..090a2ae6 100644 --- a/constants/sprite_constants.asm +++ b/constants/sprite_constants.asm @@ -62,6 +62,7 @@ const SPRITE_BRUNO ; $3a const SPRITE_LORELEI ; $3b const SPRITE_SEEL ; $3c + const SPRITE_CAT ; new - PvK DEF FIRST_STILL_SPRITE EQU const_value const SPRITE_POKE_BALL ; $3d const SPRITE_FOSSIL ; $3e diff --git a/data/sprites/sprites.asm b/data/sprites/sprites.asm index 72715087..9b5cb7a5 100644 --- a/data/sprites/sprites.asm +++ b/data/sprites/sprites.asm @@ -79,4 +79,5 @@ SpriteSheetPointerTable: overworld_sprite GamblerAsleepSprite, 4 ; SPRITE_UNUSED_GAMBLER_ASLEEP_1 overworld_sprite GamblerAsleepSprite, 4 ; SPRITE_UNUSED_GAMBLER_ASLEEP_2 overworld_sprite GamblerAsleepSprite, 4 ; SPRITE_GAMBLER_ASLEEP + overworld_sprite CatSprite, 12 assert_table_length NUM_SPRITES diff --git a/gfx/sprites.asm b/gfx/sprites.asm index 4bcf678c..22f2dcf4 100644 --- a/gfx/sprites.asm +++ b/gfx/sprites.asm @@ -71,3 +71,7 @@ AgathaSprite:: INCBIN "gfx/sprites/agatha.2bpp" BrunoSprite:: INCBIN "gfx/sprites/bruno.2bpp" LoreleiSprite:: INCBIN "gfx/sprites/lorelei.2bpp" SeelSprite:: INCBIN "gfx/sprites/seel.2bpp" + +SECTION "NPC Sprites 3", ROMX + +CatSprite:: INCBIN "gfx/sprites/cat.2bpp" diff --git a/gfx/sprites/cat.png b/gfx/sprites/cat.png new file mode 100644 index 00000000..e56c01bc Binary files /dev/null and b/gfx/sprites/cat.png differ