summaryrefslogtreecommitdiff
path: root/include/constants/iq_skill.h
diff options
context:
space:
mode:
authorCheng Hann Gan <chenghanngan.us@gmail.com>2021-09-09 19:22:48 -0400
committerGitHub <noreply@github.com>2021-09-09 16:22:48 -0700
commit8237e29a164211eb2ec4cd161eb4183cc1947fee (patch)
tree67dc502264b755dc620f56969f3bea68a40b17af /include/constants/iq_skill.h
parent4eff1882443b0004d9c9fa4895cdfefdc356565f (diff)
Defined more in-dungeon structs and enums (#53)
* Defined DungeonEntity * Rename EntityType enums * Revert EntityType rename * Defined more in-dungeon structs and enums * Added more dungeon global structs/enums * Prefixed dungeonGlobalData with g * Fixed compile errors * Removed some CRLFs * Fixed compile after merge * Revert Makefile * Rename DungeonEntityData.entityType Co-authored-by: Seth Barberee <seth.barberee@gmail.com> * Renamed symbols per PR comments Co-authored-by: Cheng Hann Gan <chenghann_gan@ultimatesoftware.com> Co-authored-by: Seth Barberee <seth.barberee@gmail.com>
Diffstat (limited to 'include/constants/iq_skill.h')
-rw-r--r--include/constants/iq_skill.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/constants/iq_skill.h b/include/constants/iq_skill.h
new file mode 100644
index 0000000..759c350
--- /dev/null
+++ b/include/constants/iq_skill.h
@@ -0,0 +1,31 @@
+#ifndef GUARD_CONSTANTS_IQ_SKILL_H
+#define GUARD_CONSTANTS_IQ_SKILL_H
+
+enum IQSkill
+{
+ IQ_SKILL_TYPE_ADVANTAGE_MASTER = 0x1,
+ IQ_SKILL_ITEM_CATCHER = 0x2,
+ IQ_SKILL_COURSE_CHECKER = 0x3,
+ IQ_SKILL_SURE_HIT_ATTACKER = 0x4,
+ IQ_SKILL_QUICK_DODGER = 0x5,
+ IQ_SKILL_PP_CHECKER = 0x6,
+ IQ_SKILL_NONTRAITOR = 0x7,
+ IQ_SKILL_STATUS_CHECKER = 0x8,
+ IQ_SKILL_EXP_GO_GETTER = 0x9,
+ IQ_SKILL_EFFICIENCY_EXPERT = 0xA,
+ IQ_SKILL_WEAK_TYPE_PICKER = 0xB,
+ IQ_SKILL_ALL_TERRAIN_HIKER = 0xC,
+ IQ_SKILL_SUPER_MOBILE = 0xD,
+ IQ_SKILL_TRAP_AVOIDER = 0xE,
+ IQ_SKILL_HOUSE_AVOIDER = 0xF,
+ IQ_SKILL_ENERGY_SAVER = 0x10,
+ IQ_SKILL_NONSLEEPER = 0x11,
+ IQ_SKILL_SELF_CURER = 0x12,
+ IQ_SKILL_TRAP_SEER = 0x13,
+ IQ_SKILL_LAVA_EVADER = 0x14,
+ IQ_SKILL_DEDICATED_TRAVELER = 0x15,
+ IQ_SKILL_ITEM_MASTER = 0x16,
+ IQ_SKILL_EXCLUSIVE_MOVE_USER = 0x17
+};
+
+#endif