summaryrefslogtreecommitdiff
path: root/include/constants/trainers.h
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-09-25 13:49:34 -0400
committerGitHub <noreply@github.com>2019-09-25 13:49:34 -0400
commit44f8d694ce5760fba5272936cfe3ab1fe48537a8 (patch)
tree59ef21892a02c9d266f5cac36872458bdbe0de61 /include/constants/trainers.h
parent6539884c8850aca6c2057017dba9c3d78ca15784 (diff)
parent0e217e22d8fa3e075416cb332435c3756548357e (diff)
Merge pull request #86 from jiangzhengwenjz/battle
battle
Diffstat (limited to 'include/constants/trainers.h')
-rw-r--r--include/constants/trainers.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/constants/trainers.h b/include/constants/trainers.h
new file mode 100644
index 000000000..1aad499a1
--- /dev/null
+++ b/include/constants/trainers.h
@@ -0,0 +1,12 @@
+#ifndef GUARD_TRAINERS_H
+#define GUARD_TRAINERS_H
+
+#define F_TRAINER_FEMALE (1 << 7)
+
+// All trainer parties specify the IV, level, and species for each Pokémon in the
+// party. Some trainer parties also specify held items and custom moves for each
+// Pokémon.
+#define F_TRAINER_PARTY_CUSTOM_MOVESET (1 << 0)
+#define F_TRAINER_PARTY_HELD_ITEM (1 << 1)
+
+#endif // GUARD_TRAINERS_H