diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2017-10-12 19:46:39 -0500 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2017-10-12 19:46:39 -0500 |
commit | df04aca8d2c4c834cccabf94825fb310f34fcb1c (patch) | |
tree | 5f2c075582cdc263c8fb2922f1ec428e3c2004d6 /include/battle_ai_switch_items.h | |
parent | 9ac5f464fd01fe5663e9f3532667d2de7218bf0f (diff) | |
parent | a3b62f43ee4ce02d8b7dd28acf53692567754bd3 (diff) |
Merge branch 'decompile_battle_9' of https://github.com/DizzyEggg/pokeemerald into DizzyEggg-decompile_battle_9
Diffstat (limited to 'include/battle_ai_switch_items.h')
-rw-r--r-- | include/battle_ai_switch_items.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/battle_ai_switch_items.h b/include/battle_ai_switch_items.h new file mode 100644 index 000000000..0a230e7f6 --- /dev/null +++ b/include/battle_ai_switch_items.h @@ -0,0 +1,17 @@ +#ifndef GUARD_BATTLE_AI_SWITCH_ITEMS_H +#define GUARD_BATTLE_AI_SWITCH_ITEMS_H + +enum +{ + AI_ITEM_FULL_RESTORE = 1, + AI_ITEM_HEAL_HP, + AI_ITEM_CURE_CONDITION, + AI_ITEM_X_STAT, + AI_ITEM_GUARD_SPECS, + AI_ITEM_NOT_RECOGNIZABLE +}; + +void AI_TrySwitchOrUseItem(void); +u8 GetMostSuitableMonToSwitchInto(void); + +#endif // GUARD_BATTLE_AI_SWITCH_ITEMS_H |