Skip to content

Commit

Permalink
Duraludon battle animation (#6086)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cafeei authored Jan 26, 2025
1 parent 99c24c5 commit 37b6f03
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
Binary file added graphics/pokemon/duraludon/anim_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed graphics/pokemon/duraludon/front.png
Binary file not shown.
2 changes: 1 addition & 1 deletion graphics/pokemon/duraludon/shiny.pal
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ JASC-PAL
16 16 16
81 96 101
226 157 109
253 248 236
242 211 111
118 138 154
149 163 164
8 36 82
Expand Down
2 changes: 1 addition & 1 deletion src/data/graphics/pokemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -24186,7 +24186,7 @@ const u32 gObjectEventPic_Substitute[] = INCBIN_COMP("graphics/pokemon/question_
#endif //P_FAMILY_ARCTOVISH

#if P_FAMILY_DURALUDON
const u32 gMonFrontPic_Duraludon[] = INCBIN_U32("graphics/pokemon/duraludon/front.4bpp.lz");
const u32 gMonFrontPic_Duraludon[] = INCBIN_U32("graphics/pokemon/duraludon/anim_front.4bpp.lz");
const u32 gMonPalette_Duraludon[] = INCBIN_U32("graphics/pokemon/duraludon/normal.gbapal.lz");
const u32 gMonBackPic_Duraludon[] = INCBIN_U32("graphics/pokemon/duraludon/back.4bpp.lz");
const u32 gMonShinyPalette_Duraludon[] = INCBIN_U32("graphics/pokemon/duraludon/shiny.gbapal.lz");
Expand Down
2 changes: 1 addition & 1 deletion src/data/pokemon/species_info/gen_8_families.h
Original file line number Diff line number Diff line change
Expand Up @@ -5988,7 +5988,7 @@ const struct SpeciesInfo gSpeciesInfoGen8[] =
.frontPicSize = MON_COORDS_SIZE(56, 64),
.frontPicYOffset = 0,
.frontAnimFrames = sAnims_Duraludon,
//.frontAnimId = ANIM_V_SQUISH_AND_BOUNCE,
.frontAnimId = ANIM_SHAKE_FLASH_YELLOW_FAST,
.backPic = gMonBackPic_Duraludon,
.backPicSize = MON_COORDS_SIZE(64, 64),
.backPicYOffset = 0,
Expand Down
9 changes: 8 additions & 1 deletion src/data/pokemon_graphics/front_pic_anims.h
Original file line number Diff line number Diff line change
Expand Up @@ -9737,7 +9737,14 @@ PLACEHOLDER_ANIM_SINGLE_FRAME(Arctovish);
#endif //P_FAMILY_ARCTOVISH

#if P_FAMILY_DURALUDON
PLACEHOLDER_ANIM_SINGLE_FRAME(Duraludon);
static const union AnimCmd sAnim_Duraludon_1[] =
{

ANIMCMD_FRAME(0, 20),
ANIMCMD_FRAME(1, 60),
ANIMCMD_FRAME(0, 2),
ANIMCMD_END,
};

#if P_GIGANTAMAX_FORMS
PLACEHOLDER_ANIM_SINGLE_FRAME(DuraludonGmax);
Expand Down

0 comments on commit 37b6f03

Please sign in to comment.