summaryrefslogtreecommitdiff
path: root/include/data2.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/data2.h')
-rw-r--r--include/data2.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/data2.h b/include/data2.h
index 3ce3c33c8..4378e8226 100644
--- a/include/data2.h
+++ b/include/data2.h
@@ -2,12 +2,13 @@
#define GUARD_DATA2_H
#include "global.h"
+#include "constants/species.h"
struct MonCoords
{
// This would use a bitfield, but some function
// uses it as a u8 and casting won't match.
- u8 coords; // u8 x:4, y:4;
+ u8 size; // u8 width:4, height:4;
u8 y_offset;
};
@@ -23,8 +24,22 @@ extern const u16 gUnknown_8251FEE[];
extern const u16 gUnknown_8252324[];
extern const u16 gUnknown_82539D4[];
+extern const struct CompressedSpriteSheet gMonFrontPicTable[];
+extern const struct CompressedSpriteSheet gMonBackPicTable[];
extern const struct CompressedSpritePalette gMonPaletteTable[];
extern const struct CompressedSpritePalette gMonShinyPaletteTable[];
+extern const struct CompressedSpriteSheet gTrainerFrontPicTable[];
+extern const struct CompressedSpritePalette gTrainerFrontPicPaletteTable[];
+extern const struct CompressedSpritePalette gUnknown_8239FD4[];
+
+extern const struct CompressedSpriteSheet gSpriteSheet_EnemyShadow;
+extern const struct SpriteTemplate gSpriteTemplate_EnemyShadow;
+
+extern const u8 gEnemyMonElevation[NUM_SPECIES];
+
+extern const u8 *const gBattleAnims_General[];
+extern const u8 *const gBattleAnims_Special[];
+
extern const union AnimCmd *const *const gTrainerBackAnimsPtrTable[];
extern const union AnimCmd *const *const gTrainerFrontAnimsPtrTable[];