mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Replaced the Red and Blue Orbs' sprites
This commit is contained in:
parent
d769920a15
commit
d31700d2ac
@ -1,19 +1,19 @@
|
||||
JASC-PAL
|
||||
0100
|
||||
16
|
||||
180 180 180
|
||||
49 49 49
|
||||
106 115 230
|
||||
156 156 222
|
||||
74 82 197
|
||||
57 65 148
|
||||
205 205 255
|
||||
255 255 255
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
255 126 0
|
||||
48 48 48
|
||||
136 160 248
|
||||
104 128 248
|
||||
72 104 240
|
||||
240 240 248
|
||||
168 184 248
|
||||
128 208 248
|
||||
48 72 192
|
||||
248 248 248
|
||||
224 248 248
|
||||
232 248 248
|
||||
40 40 168
|
||||
184 248 248
|
||||
80 152 248
|
||||
0 0 0
|
||||
|
@ -1,19 +1,19 @@
|
||||
JASC-PAL
|
||||
0100
|
||||
16
|
||||
180 180 180
|
||||
49 49 49
|
||||
230 115 106
|
||||
222 156 156
|
||||
197 82 74
|
||||
148 65 57
|
||||
255 205 205
|
||||
255 255 255
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
255 126 0
|
||||
48 48 48
|
||||
248 248 248
|
||||
248 88 112
|
||||
248 128 128
|
||||
248 40 56
|
||||
248 216 216
|
||||
216 32 56
|
||||
176 32 56
|
||||
248 136 72
|
||||
248 224 96
|
||||
144 24 64
|
||||
248 200 96
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
|
BIN
graphics/items/icons/blue_orb.png
Normal file
BIN
graphics/items/icons/blue_orb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 299 B |
Binary file not shown.
Before Width: | Height: | Size: 264 B |
BIN
graphics/items/icons/red_orb.png
Normal file
BIN
graphics/items/icons/red_orb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 309 B |
@ -3815,8 +3815,9 @@ extern const u32 gItemIconPalette_PokeblockCase[];
|
||||
extern const u32 gItemIcon_Letter[];
|
||||
extern const u32 gItemIcon_EonTicket[];
|
||||
extern const u32 gItemIconPalette_EonTicket[];
|
||||
extern const u32 gItemIcon_Orb[];
|
||||
extern const u32 gItemIcon_RedOrb[];
|
||||
extern const u32 gItemIconPalette_RedOrb[];
|
||||
extern const u32 gItemIcon_BlueOrb[];
|
||||
extern const u32 gItemIconPalette_BlueOrb[];
|
||||
extern const u32 gItemIcon_Scanner[];
|
||||
extern const u32 gItemIconPalette_Scanner[];
|
||||
|
@ -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 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 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 gItemIcon_Scanner[] = INCBIN_U32("graphics/items/icons/scanner.4bpp.lz");
|
||||
|
@ -239,8 +239,8 @@ const u32 *const gItemIconTable[][2] =
|
||||
[ITEM_POKEBLOCK_CASE] = {gItemIcon_PokeblockCase, gItemIconPalette_PokeblockCase},
|
||||
[ITEM_LETTER] = {gItemIcon_Letter, gItemIconPalette_LavaCookieAndLetter},
|
||||
[ITEM_EON_TICKET] = {gItemIcon_EonTicket, gItemIconPalette_EonTicket},
|
||||
[ITEM_RED_ORB] = {gItemIcon_Orb, gItemIconPalette_RedOrb},
|
||||
[ITEM_BLUE_ORB] = {gItemIcon_Orb, gItemIconPalette_BlueOrb},
|
||||
[ITEM_RED_ORB] = {gItemIcon_RedOrb, gItemIconPalette_RedOrb},
|
||||
[ITEM_BLUE_ORB] = {gItemIcon_BlueOrb, gItemIconPalette_BlueOrb},
|
||||
[ITEM_SCANNER] = {gItemIcon_Scanner, gItemIconPalette_Scanner},
|
||||
[ITEM_GO_GOGGLES] = {gItemIcon_GoGoggles, gItemIconPalette_GoGoggles},
|
||||
[ITEM_METEORITE] = {gItemIcon_Meteorite, gItemIconPalette_Meteorite},
|
||||
|
Loading…
Reference in New Issue
Block a user