diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/battle.h | 2 | ||||
-rw-r--r-- | include/pokemon.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/battle.h b/include/battle.h index 2cbcb4d61..59bfea1d2 100644 --- a/include/battle.h +++ b/include/battle.h @@ -410,7 +410,7 @@ struct BattleStruct /* 0x2000000 */ /*0x160D4*/ u16 AI_usedItemId[2]; /*0x160D8*/ u8 AI_usedItemType[2]; /*0x160DA*/ u8 AI_usedItemEffect[2]; - /*0x160DC*/ u8 unk160DC; + /*0x160DC*/ u8 statAnimPlayed; /*0x160DD*/ u8 intimidateBank; /*0x160DE*/ u8 unk160DE; /*0x160DF*/ u8 unk160DF; diff --git a/include/pokemon.h b/include/pokemon.h index 0d99ed5e8..cbad2c9ae 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -269,6 +269,8 @@ enum STAT_SPD, // 3 STAT_SPATK, // 4 STAT_SPDEF, // 5 + STAT_ACC, // 6 + STAT_EVA, // 7 }; struct BaseStats |