diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-27 16:35:16 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-27 16:35:16 -0400 |
commit | 0e92e2f50eff05118f27a150c028b5a7ed72a88b (patch) | |
tree | 2e1d604c293a91e17de06c8b365098377ff0847a /include | |
parent | 1fd22171ace73d435834ab4468ea4df22df6a904 (diff) |
Spinda spots to binary files pending utility to convert to/from png
Diffstat (limited to 'include')
-rw-r--r-- | include/data/pokemon/spinda_spots.h | 79 |
1 files changed, 4 insertions, 75 deletions
diff --git a/include/data/pokemon/spinda_spots.h b/include/data/pokemon/spinda_spots.h index 2c8ec036a..234cdf00e 100644 --- a/include/data/pokemon/spinda_spots.h +++ b/include/data/pokemon/spinda_spots.h @@ -6,81 +6,10 @@ #define POKERUBY_SPINDA_SPOTS_H const struct SpindaSpot gSpindaSpotGraphics[] = { - {16, 14, { - 0x0070, // 0000000001110000 - 0x01fc, // 0000000111111100 - 0x03fe, // 0000001111111110 - 0x07fe, // 0000011111111110 - 0x07ff, // 0000011111111111 - 0x0fff, // 0000111111111111 - 0x0fff, // 0000111111111111 - 0x0fff, // 0000111111111111 - 0x07fe, // 0000011111111110 - 0x07fe, // 0000011111111110 - 0x03fc, // 0000001111111100 - 0x01e0, // 0000000111100000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000 // 0000000000000000 - }}, - - {40, 15, { - 0x01e0, // 0000000111100000 - 0x03f8, // 0000001111111000 - 0x07fc, // 0000011111111100 - 0x0ffe, // 0000111111111110 - 0x0ffe, // 0000111111111110 - 0x1fff, // 0001111111111111 - 0x1fff, // 0001111111111111 - 0x1fff, // 0001111111111111 - 0x0ffe, // 0000111111111110 - 0x0ffe, // 0000111111111110 - 0x07fc, // 0000011111111100 - 0x07f8, // 0000011111111000 - 0x00e0, // 0000000011100000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000 // 0000000000000000 - }}, - - {22, 32, { - 0x001c, // 0000000000011100 - 0x003e, // 0000000000111110 - 0x007f, // 0000000001111111 - 0x007f, // 0000000001111111 - 0x007f, // 0000000001111111 - 0x007f, // 0000000001111111 - 0x007f, // 0000000001111111 - 0x003e, // 0000000000111110 - 0x001c, // 0000000000011100 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000 // 0000000000000000 - }}, - - {34, 33, { - 0x003c, // 0000000000111100 - 0x007e, // 0000000001111110 - 0x00ff, // 0000000011111111 - 0x00ff, // 0000000011111111 - 0x00ff, // 0000000011111111 - 0x00ff, // 0000000011111111 - 0x00ff, // 0000000011111111 - 0x007e, // 0000000001111110 - 0x003c, // 0000000000111100 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000, // 0000000000000000 - 0x0000 // 0000000000000000 - }} + {16, 14, INCBIN_U16("graphics/spinda_spots/spot_0.bin")}, + {40, 15, INCBIN_U16("graphics/spinda_spots/spot_1.bin")}, + {22, 32, INCBIN_U16("graphics/spinda_spots/spot_2.bin")}, + {34, 33, INCBIN_U16("graphics/spinda_spots/spot_3.bin")} }; #endif //POKERUBY_SPINDA_SPOTS_H |