mirror of
https://github.com/pret/pokeemerald.git
synced 2026-04-26 09:33:41 -05:00
29 lines
1.7 KiB
C
29 lines
1.7 KiB
C
//data prep start
|
|
const u32 gMonFrontPic_Ecosaur[] = INCBIN_U32("graphics/pokemon/ecosaur/front.4bpp.lz");
|
|
const u32 gMonBackPic_Ecosaur[] = INCBIN_U32("graphics/pokemon/ecosaur/back.4bpp.lz");
|
|
const u16 gMonPalette_Ecosaur[] = INCBIN_U16("graphics/pokemon/ecosaur/normal.gbapal");
|
|
const u16 gMonShinyPalette_Ecosaur[] = INCBIN_U16("graphics/pokemon/ecosaur/normal.gbapal");
|
|
const u8 gMonIcon_Ecosaur[] = INCBIN_U8("graphics/pokemon/ecosaur/icon.4bpp");
|
|
const u8 gMonFootprint_Ecosaur[] = INCBIN_U8("graphics/pokemon/ecosaur/footprint.1bpp");
|
|
|
|
SINGLE_ANIMATION(Ecosaur);
|
|
|
|
const u32 gMonFrontPic_Terarisaur[] = INCBIN_U32("graphics/pokemon/terarisaur/front.4bpp.lz");
|
|
const u32 gMonBackPic_Terarisaur[] = INCBIN_U32("graphics/pokemon/terarisaur/back.4bpp.lz");
|
|
const u16 gMonPalette_Terarisaur[] = INCBIN_U16("graphics/pokemon/terarisaur/normal.gbapal");
|
|
const u16 gMonShinyPalette_Terarisaur[] = INCBIN_U16("graphics/pokemon/terarisaur/normal.gbapal");
|
|
const u8 gMonIcon_Terarisaur[] = INCBIN_U8("graphics/pokemon/terarisaur/icon.4bpp");
|
|
const u8 gMonFootprint_Terarisaur[] = INCBIN_U8("graphics/pokemon/terarisaur/footprint.1bpp");
|
|
|
|
SINGLE_ANIMATION(Terarisaur);
|
|
|
|
const u32 gMonFrontPic_Symbisaur[] = INCBIN_U32("graphics/pokemon/symbisaur/front.4bpp.lz");
|
|
const u32 gMonBackPic_Symbisaur[] = INCBIN_U32("graphics/pokemon/symbisaur/back.4bpp.lz");
|
|
const u16 gMonPalette_Symbisaur[] = INCBIN_U16("graphics/pokemon/symbisaur/normal.gbapal");
|
|
const u16 gMonShinyPalette_Symbisaur[] = INCBIN_U16("graphics/pokemon/symbisaur/normal.gbapal");
|
|
const u8 gMonIcon_Symbisaur[] = INCBIN_U8("graphics/pokemon/symbisaur/icon.4bpp");
|
|
const u8 gMonFootprint_Symbisaur[] = INCBIN_U8("graphics/pokemon/symbisaur/footprint.1bpp");
|
|
|
|
SINGLE_ANIMATION(Symbisaur);
|
|
|