Implemented missing TMs/HMs type palettes (#327)

* Implemented palettes for Bug type and Fairy type TMs/HMs thanks to Ghoulslash

* Actually added the Bug and Fairy type TM/HM sprite palettes now
This commit is contained in:
LOuroboros 2020-04-16 04:27:13 -03:00 committed by GitHub
parent 09dcff81f8
commit 32bb717bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,19 @@
JASC-PAL
0100
16
181 181 181
49 49 49
74 74 99
224 240 208
216 240 192
208 240 176
184 232 152
176 232 136
168 232 120
160 232 104
123 123 148
123 123 123
99 99 123
255 255 255
232 240 240
82 82 82

View File

@ -0,0 +1,19 @@
JASC-PAL
0100
16
181 181 181
49 49 49
74 74 99
231 205 239
222 189 247
214 173 247
206 148 254
189 132 254
222 141 239
247 148 215
123 123 148
123 123 123
99 99 123
255 255 255
246 221 255
82 82 82

View File

@ -4397,6 +4397,8 @@ extern const u32 gItemIcon_SteelMemory[];
extern const u32 gItemIconPalette_SteelMemory[];
extern const u32 gItemIcon_WaterMemory[];
extern const u32 gItemIconPalette_WaterMemory[];
extern const u32 gItemIconPalette_BugTMHM[];
extern const u32 gItemIconPalette_FairyTMHM[];
extern const u32 gItemIcon_ReturnToFieldArrow[];
extern const u32 gItemIconPalette_ReturnToFieldArrow[];

View File

@ -1514,3 +1514,7 @@ const u32 gItemIconPalette_SteelMemory[] = INCBIN_U32("graphics/items/icon_palet
const u32 gItemIcon_WaterMemory[] = INCBIN_U32("graphics/items/icons/water_memory.4bpp.lz");
const u32 gItemIconPalette_WaterMemory[] = INCBIN_U32("graphics/items/icon_palettes/water_memory.gbapal.lz");
const u32 gItemIconPalette_BugTMHM[] = INCBIN_U32("graphics/items/icon_palettes/bug_tm_hm.gbapal.lz");
const u32 gItemIconPalette_FairyTMHM[] = INCBIN_U32("graphics/items/icon_palettes/fairy_tm_hm.gbapal.lz");