Replaced the Red and Blue Orbs' sprites

This commit is contained in:
LOuroboros 2021-10-23 13:49:02 -03:00
parent d769920a15
commit d31700d2ac
8 changed files with 34 additions and 32 deletions

View File

@ -1,19 +1,19 @@
JASC-PAL JASC-PAL
0100 0100
16 16
180 180 180 255 126 0
49 49 49 48 48 48
106 115 230 136 160 248
156 156 222 104 128 248
74 82 197 72 104 240
57 65 148 240 240 248
205 205 255 168 184 248
255 255 255 128 208 248
0 0 0 48 72 192
0 0 0 248 248 248
0 0 0 224 248 248
0 0 0 232 248 248
0 0 0 40 40 168
0 0 0 184 248 248
0 0 0 80 152 248
0 0 0 0 0 0

View File

@ -1,19 +1,19 @@
JASC-PAL JASC-PAL
0100 0100
16 16
180 180 180 255 126 0
49 49 49 48 48 48
230 115 106 248 248 248
222 156 156 248 88 112
197 82 74 248 128 128
148 65 57 248 40 56
255 205 205 248 216 216
255 255 255 216 32 56
0 0 0 176 32 56
0 0 0 248 136 72
0 0 0 248 224 96
0 0 0 144 24 64
0 0 0 248 200 96
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

View File

@ -3815,8 +3815,9 @@ extern const u32 gItemIconPalette_PokeblockCase[];
extern const u32 gItemIcon_Letter[]; extern const u32 gItemIcon_Letter[];
extern const u32 gItemIcon_EonTicket[]; extern const u32 gItemIcon_EonTicket[];
extern const u32 gItemIconPalette_EonTicket[]; extern const u32 gItemIconPalette_EonTicket[];
extern const u32 gItemIcon_Orb[]; extern const u32 gItemIcon_RedOrb[];
extern const u32 gItemIconPalette_RedOrb[]; extern const u32 gItemIconPalette_RedOrb[];
extern const u32 gItemIcon_BlueOrb[];
extern const u32 gItemIconPalette_BlueOrb[]; extern const u32 gItemIconPalette_BlueOrb[];
extern const u32 gItemIcon_Scanner[]; extern const u32 gItemIcon_Scanner[];
extern const u32 gItemIconPalette_Scanner[]; extern const u32 gItemIconPalette_Scanner[];

View File

@ -630,8 +630,9 @@ const u32 gItemIcon_EonTicket[] = INCBIN_U32("graphics/items/icons/eon_ticket.4b
const u32 gItemIconPalette_EonTicket[] = INCBIN_U32("graphics/items/icon_palettes/eon_ticket.gbapal.lz"); const u32 gItemIconPalette_EonTicket[] = INCBIN_U32("graphics/items/icon_palettes/eon_ticket.gbapal.lz");
const u32 gItemIcon_Orb[] = INCBIN_U32("graphics/items/icons/orb.4bpp.lz"); const u32 gItemIcon_RedOrb[] = INCBIN_U32("graphics/items/icons/red_orb.4bpp.lz");
const u32 gItemIconPalette_RedOrb[] = INCBIN_U32("graphics/items/icon_palettes/red_orb.gbapal.lz"); const u32 gItemIconPalette_RedOrb[] = INCBIN_U32("graphics/items/icon_palettes/red_orb.gbapal.lz");
const u32 gItemIcon_BlueOrb[] = INCBIN_U32("graphics/items/icons/blue_orb.4bpp.lz");
const u32 gItemIconPalette_BlueOrb[] = INCBIN_U32("graphics/items/icon_palettes/blue_orb.gbapal.lz"); const u32 gItemIconPalette_BlueOrb[] = INCBIN_U32("graphics/items/icon_palettes/blue_orb.gbapal.lz");
const u32 gItemIcon_Scanner[] = INCBIN_U32("graphics/items/icons/scanner.4bpp.lz"); const u32 gItemIcon_Scanner[] = INCBIN_U32("graphics/items/icons/scanner.4bpp.lz");

View File

@ -239,8 +239,8 @@ const u32 *const gItemIconTable[][2] =
[ITEM_POKEBLOCK_CASE] = {gItemIcon_PokeblockCase, gItemIconPalette_PokeblockCase}, [ITEM_POKEBLOCK_CASE] = {gItemIcon_PokeblockCase, gItemIconPalette_PokeblockCase},
[ITEM_LETTER] = {gItemIcon_Letter, gItemIconPalette_LavaCookieAndLetter}, [ITEM_LETTER] = {gItemIcon_Letter, gItemIconPalette_LavaCookieAndLetter},
[ITEM_EON_TICKET] = {gItemIcon_EonTicket, gItemIconPalette_EonTicket}, [ITEM_EON_TICKET] = {gItemIcon_EonTicket, gItemIconPalette_EonTicket},
[ITEM_RED_ORB] = {gItemIcon_Orb, gItemIconPalette_RedOrb}, [ITEM_RED_ORB] = {gItemIcon_RedOrb, gItemIconPalette_RedOrb},
[ITEM_BLUE_ORB] = {gItemIcon_Orb, gItemIconPalette_BlueOrb}, [ITEM_BLUE_ORB] = {gItemIcon_BlueOrb, gItemIconPalette_BlueOrb},
[ITEM_SCANNER] = {gItemIcon_Scanner, gItemIconPalette_Scanner}, [ITEM_SCANNER] = {gItemIcon_Scanner, gItemIconPalette_Scanner},
[ITEM_GO_GOGGLES] = {gItemIcon_GoGoggles, gItemIconPalette_GoGoggles}, [ITEM_GO_GOGGLES] = {gItemIcon_GoGoggles, gItemIconPalette_GoGoggles},
[ITEM_METEORITE] = {gItemIcon_Meteorite, gItemIconPalette_Meteorite}, [ITEM_METEORITE] = {gItemIcon_Meteorite, gItemIconPalette_Meteorite},