mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 19:54:21 +01:00
Added the item sprite of the Safety Goggles.
This commit is contained in:
parent
25ff138ead
commit
7d7e54c59a
BIN
graphics/items/icon_palettes/safety_goggles.png
Executable file
BIN
graphics/items/icon_palettes/safety_goggles.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 386 B |
BIN
graphics/items/icons/safety_goggles.png
Executable file
BIN
graphics/items/icons/safety_goggles.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 386 B |
@ -3996,6 +3996,8 @@ extern const u32 gItemIcon_AssaultVest[];
|
||||
extern const u32 gItemIconPalette_AssaultVest[];
|
||||
extern const u32 gItemIcon_PixiePlate[];
|
||||
extern const u32 gItemIconPalette_PixiePlate[];
|
||||
extern const u32 gItemIcon_SafetyGoggles[];
|
||||
extern const u32 gItemIconPalette_SafetyGoggles[];
|
||||
extern const u32 gItemIcon_Gengarite[];
|
||||
extern const u32 gItemIconPalette_Gengarite[];
|
||||
extern const u32 gItemIcon_Gardevoirite[];
|
||||
|
@ -962,6 +962,9 @@ const u32 gItemIconPalette_AssaultVest[] = INCBIN_U32("graphics/items/icon_palet
|
||||
const u32 gItemIcon_PixiePlate[] = INCBIN_U32("graphics/items/icons/pixie_plate.4bpp.lz");
|
||||
const u32 gItemIconPalette_PixiePlate[] = INCBIN_U32("graphics/items/icon_palettes/pixie_plate.gbapal.lz");
|
||||
|
||||
const u32 gItemIcon_SafetyGoggles[] = INCBIN_U32("graphics/items/icons/safety_goggles.4bpp.lz");
|
||||
const u32 gItemIconPalette_SafetyGoggles[] = INCBIN_U32("graphics/items/icon_palettes/safety_goggles.gbapal.lz");
|
||||
|
||||
const u32 gItemIcon_Gengarite[] = INCBIN_U32("graphics/items/icons/gengarite.4bpp.lz");
|
||||
const u32 gItemIconPalette_Gengarite[] = INCBIN_U32("graphics/items/icon_palettes/gengarite.gbapal.lz");
|
||||
|
||||
|
@ -478,6 +478,7 @@ const u32 *const gItemIconTable[][2] =
|
||||
// Gen 6 Items
|
||||
[ITEM_ASSAULT_VEST] = {gItemIcon_AssaultVest, gItemIconPalette_AssaultVest},
|
||||
[ITEM_PIXIE_PLATE] = {gItemIcon_PixiePlate, gItemIconPalette_PixiePlate},
|
||||
[ITEM_SAFETY_GOGGLES] = {gItemIcon_SafetyGoggles, gItemIconPalette_SafetyGoggles},
|
||||
[ITEM_GENGARITE] = {gItemIcon_Gengarite, gItemIconPalette_Gengarite},
|
||||
[ITEM_GARDEVOIRITE] = {gItemIcon_Gardevoirite, gItemIconPalette_Gardevoirite},
|
||||
[ITEM_AMPHAROSITE] = {gItemIcon_Ampharosite, gItemIconPalette_Ampharosite},
|
||||
|
Loading…
Reference in New Issue
Block a user