summaryrefslogtreecommitdiff
path: root/include/constants
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2021-11-15 11:02:26 -0800
committerGitHub <noreply@github.com>2021-11-15 11:02:26 -0800
commitbfaa55f2fe3d557570260f6b4956e39c3b0f1218 (patch)
tree77611afc222d74c9a68a5577df3ce9916d9b3b97 /include/constants
parent0ea22237c933523f66d7468a953c5a5057b3a899 (diff)
Label and doc iq skills and tactics info (#75)
* label/doc iq skills/tactics info * decomp a few more dungeon_util and label some funcs * doc the IQSkills field
Diffstat (limited to 'include/constants')
-rw-r--r--include/constants/iq_skill.h3
-rw-r--r--include/constants/tactic.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/include/constants/iq_skill.h b/include/constants/iq_skill.h
index 759c350..f36cee0 100644
--- a/include/constants/iq_skill.h
+++ b/include/constants/iq_skill.h
@@ -25,7 +25,8 @@ enum IQSkill
IQ_SKILL_LAVA_EVADER = 0x14,
IQ_SKILL_DEDICATED_TRAVELER = 0x15,
IQ_SKILL_ITEM_MASTER = 0x16,
- IQ_SKILL_EXCLUSIVE_MOVE_USER = 0x17
+ IQ_SKILL_EXCLUSIVE_MOVE_USER = 0x17,
+ NUM_IQ_SKILLS = 0x18
};
#endif
diff --git a/include/constants/tactic.h b/include/constants/tactic.h
index 4d24b01..33e9d84 100644
--- a/include/constants/tactic.h
+++ b/include/constants/tactic.h
@@ -13,7 +13,9 @@ enum Tactic
TACTIC_BE_PATIENT = 0x7,
TACTIC_KEEP_YOUR_DISTANCE = 0x8,
TACTIC_WAIT_THERE = 0x9,
- TACTIC_GET_AWAY = 0xA
+ TACTIC_GET_AWAY = 0xA,
+ TACTIC_UNUSED = 0xB,
+ NUM_TACTICS = 0xC
};
#endif