diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-28 13:56:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 13:56:42 -0400 |
commit | 6c38837b266c0dd36ccdd04559199282daa7a8a0 (patch) | |
tree | 6c63ce12a739da34a2a86fb886da7c9b43953c76 /include | |
parent | 58cef0ae52b9655f4ad121218933b1e7c23fca9c (diff) | |
parent | e40f89b175189bcfca33285ee5a98de1b7ff74a6 (diff) |
Merge pull request #1420 from GriffinRichards/doc-dataanims
Document battler affine anims, default pokeball throw
Diffstat (limited to 'include')
-rw-r--r-- | include/data.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/data.h b/include/data.h index 2f8c44746..f94f55a8f 100644 --- a/include/data.h +++ b/include/data.h @@ -5,6 +5,12 @@ #define SPECIES_SHINY_TAG 500 +enum { + BATTLER_AFFINE_NORMAL, + BATTLER_AFFINE_EMERGE, + BATTLER_AFFINE_RETURN, +}; + struct MonCoords { // This would use a bitfield, but some function @@ -87,9 +93,9 @@ extern const struct SpriteFrameImage gTrainerBackPicTable_Steven[]; extern const union AffineAnimCmd *const gAffineAnims_BattleSpritePlayerSide[]; extern const union AffineAnimCmd *const gAffineAnims_BattleSpriteOpponentSide[]; -extern const union AffineAnimCmd *const gUnknown_082FF6C0[]; +extern const union AffineAnimCmd *const gAffineAnims_BattleSpriteContest[]; -extern const union AnimCmd *const gUnknown_082FF70C[]; +extern const union AnimCmd *const gAnims_MonPic[]; extern const struct MonCoords gMonFrontPicCoords[]; extern const struct CompressedSpriteSheet gMonStillFrontPicTable[]; extern const struct MonCoords gMonBackPicCoords[]; |