mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-13 16:47:22 -05:00
16 lines
447 B
C
16 lines
447 B
C
#ifndef GUARD_STR_STAT_INDEX_X
|
|
#define GUARD_STR_STAT_INDEX_X
|
|
|
|
#define STAT_INDEX_PHYSICAL 0 // Atk, Def
|
|
#define STAT_INDEX_SPECIAL 1 // Sp Atk, Sp Def
|
|
#define STAT_INDEX_ACCURACY STAT_INDEX_PHYSICAL
|
|
#define STAT_INDEX_EVASION STAT_INDEX_SPECIAL
|
|
|
|
// Needed to match in Blue/Sky. I wonder what was the reason for making it a struct as opposed to a simple int...
|
|
typedef struct StatIndex
|
|
{
|
|
s32 id;
|
|
} StatIndex;
|
|
|
|
#endif // GUARD_STR_STAT_INDEX_X
|