Add Stellar Tera Shard sprite (#4595)
* Add Stellar Tera Shard sprite * Update items.h
This commit is contained in:
parent
4ccfd5355d
commit
b7fc2b447a
5 changed files with 25 additions and 1 deletions
18
graphics/items/icon_palettes/stellar_tera_shard.pal
Normal file
18
graphics/items/icon_palettes/stellar_tera_shard.pal
Normal file
|
@ -0,0 +1,18 @@
|
|||
JASC-PAL
|
||||
0100
|
||||
15
|
||||
0 255 92
|
||||
147 87 0
|
||||
0 161 79
|
||||
0 0 0
|
||||
209 155 7
|
||||
57 67 189
|
||||
167 25 135
|
||||
217 120 165
|
||||
189 109 220
|
||||
167 219 139
|
||||
255 239 132
|
||||
246 240 183
|
||||
171 225 199
|
||||
137 195 227
|
||||
233 240 241
|
BIN
graphics/items/icons/stellar_tera_shard.png
Normal file
BIN
graphics/items/icons/stellar_tera_shard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 259 B |
|
@ -1681,6 +1681,9 @@ extern const u32 gItemIconPalette_DragonTeraShard[];
|
|||
extern const u32 gItemIconPalette_SteelTeraShard[];
|
||||
extern const u32 gItemIconPalette_FairyTeraShard[];
|
||||
|
||||
extern const u32 gItemIcon_StellarTeraShard[];
|
||||
extern const u32 gItemIconPalette_StellarTeraShard[];
|
||||
|
||||
extern const u32 gItemIcon_AdamantCrystal[];
|
||||
extern const u32 gItemIconPalette_AdamantCrystal[];
|
||||
extern const u32 gItemIcon_GriseousCore[];
|
||||
|
|
|
@ -2025,6 +2025,9 @@ const u32 gItemIconPalette_DragonTeraShard[] = INCBIN_U32("graphics/items/icon_p
|
|||
const u32 gItemIconPalette_SteelTeraShard[] = INCBIN_U32("graphics/items/icon_palettes/steel_tera_shard.gbapal.lz");
|
||||
const u32 gItemIconPalette_FairyTeraShard[] = INCBIN_U32("graphics/items/icon_palettes/fairy_tera_shard.gbapal.lz");
|
||||
|
||||
const u32 gItemIcon_StellarTeraShard[] = INCBIN_U32("graphics/items/icons/stellar_tera_shard.4bpp.lz");
|
||||
const u32 gItemIconPalette_StellarTeraShard[] = INCBIN_U32("graphics/items/icon_palettes/stellar_tera_shard.gbapal.lz");
|
||||
|
||||
// Mochi
|
||||
|
||||
const u32 gItemIcon_Mochi[] = INCBIN_U32("graphics/items/icons/mochi.4bpp.lz");
|
||||
|
|
|
@ -860,7 +860,7 @@ const u32 *const gItemIconTable[ITEMS_COUNT + 1][2] =
|
|||
[ITEM_FRESH_START_MOCHI] = {gItemIcon_Mochi, gItemIconPalette_FreshStartMochi},
|
||||
[ITEM_GLIMMERING_CHARM] = {gItemIcon_GlimmeringCharm, gItemIconPalette_GlimmeringCharm},
|
||||
[ITEM_METAL_ALLOY] = {gItemIcon_MetalAlloy, gItemIconPalette_MetalAlloy},
|
||||
[ITEM_STELLAR_TERA_SHARD] = {gItemIcon_QuestionMark, gItemIconPalette_QuestionMark}, //{gItemIcon_TeraShard, gItemIconPalette_StellarTeraShard},
|
||||
[ITEM_STELLAR_TERA_SHARD] = {gItemIcon_StellarTeraShard, gItemIconPalette_StellarTeraShard},
|
||||
[ITEM_JUBILIFE_MUFFIN] = {gItemIcon_JubilifeMuffin, gItemIconPalette_JubilifeMuffin},
|
||||
[ITEM_REMEDY] = {gItemIcon_Remedy, gItemIconPalette_Remedy},
|
||||
[ITEM_FINE_REMEDY] = {gItemIcon_FineRemedy, gItemIconPalette_FineRemedy},
|
||||
|
|
Loading…
Reference in a new issue