Add Fairy Feather sprite (#3520)
This commit is contained in:
parent
53b7e4bf66
commit
90471741e9
5 changed files with 26 additions and 1 deletions
19
graphics/items/icon_palettes/fairy_feather.pal
Normal file
19
graphics/items/icon_palettes/fairy_feather.pal
Normal file
|
@ -0,0 +1,19 @@
|
|||
JASC-PAL
|
||||
0100
|
||||
16
|
||||
180 180 180
|
||||
11 15 16
|
||||
33 19 27
|
||||
59 38 38
|
||||
102 90 92
|
||||
200 124 124
|
||||
182 116 141
|
||||
255 124 189
|
||||
227 140 140
|
||||
253 155 155
|
||||
222 173 189
|
||||
255 175 175
|
||||
195 191 192
|
||||
252 161 206
|
||||
225 221 223
|
||||
245 245 245
|
BIN
graphics/items/icons/fairy_feather.png
Normal file
BIN
graphics/items/icons/fairy_feather.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 266 B |
|
@ -9288,6 +9288,9 @@ extern const u32 gItemIconPalette_LustrousGlobe[];
|
|||
extern const u32 gItemIcon_BerserkGene[];
|
||||
extern const u32 gItemIconPalette_BerserkGene[];
|
||||
|
||||
extern const u32 gItemIcon_FairyFeather[];
|
||||
extern const u32 gItemIconPalette_FairyFeather[];
|
||||
|
||||
extern const u32 gItemIcon_ReturnToFieldArrow[];
|
||||
extern const u32 gItemIconPalette_ReturnToFieldArrow[];
|
||||
|
||||
|
|
|
@ -2023,3 +2023,6 @@ const u32 gItemIconPalette_LustrousGlobe[] = INCBIN_U32("graphics/items/icon_pal
|
|||
|
||||
const u32 gItemIcon_BerserkGene[] = INCBIN_U32("graphics/items/icons/berserk_gene.4bpp.lz");
|
||||
const u32 gItemIconPalette_BerserkGene[] = INCBIN_U32("graphics/items/icon_palettes/berserk_gene.gbapal.lz");
|
||||
|
||||
const u32 gItemIcon_FairyFeather[] = INCBIN_U32("graphics/items/icons/fairy_feather.4bpp.lz");
|
||||
const u32 gItemIconPalette_FairyFeather[] = INCBIN_U32("graphics/items/icon_palettes/fairy_feather.gbapal.lz");
|
||||
|
|
|
@ -844,7 +844,7 @@ const u32 *const gItemIconTable[ITEMS_COUNT + 1][2] =
|
|||
[ITEM_LINKING_CORD] = {gItemIcon_LinkingCord, gItemIconPalette_LinkingCord},
|
||||
[ITEM_PEAT_BLOCK] = {gItemIcon_PeatBlock, gItemIconPalette_PeatBlock},
|
||||
[ITEM_BERSERK_GENE] = {gItemIcon_BerserkGene, gItemIconPalette_BerserkGene},
|
||||
[ITEM_FAIRY_FEATHER] = {gItemIcon_QuestionMark, gItemIconPalette_QuestionMark}, // {gItemIcon_FairyFeather, gItemIconPalette_FairyFeather},
|
||||
[ITEM_FAIRY_FEATHER] = {gItemIcon_FairyFeather, gItemIconPalette_FairyFeather},
|
||||
[ITEM_SYRUPY_APPLE] = {gItemIcon_QuestionMark, gItemIconPalette_QuestionMark}, // {gItemIcon_SyrupyApple, gItemIconPalette_SyrupyApple},
|
||||
[ITEM_UNREMARKABLE_TEACUP] = {gItemIcon_QuestionMark, gItemIconPalette_QuestionMark}, // {gItemIcon_UnremarkableTeacup, gItemIconPalette_UnremarkableTeacup},
|
||||
[ITEM_MASTERPIECE_TEACUP] = {gItemIcon_QuestionMark, gItemIconPalette_QuestionMark}, // {gItemIcon_MasterpieceTeacup, gItemIconPalette_MasterpieceTeacup},
|
||||
|
|
Loading…
Reference in a new issue