summaryrefslogtreecommitdiff
path: root/constants/misc_constants.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-08-13 19:44:56 -0700
committeryenatch <yenatch@gmail.com>2014-08-13 19:44:56 -0700
commitda799c80d4f6f3c1b22687b6177ff09fecf6c324 (patch)
treeb013a1069e8175346cdf3de7d80778ab7c975046 /constants/misc_constants.asm
parent88a15c50387d02a7cdb95b508c43fa9f10a46982 (diff)
Better trainer AI comments and finish off trainer attributes.
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r--constants/misc_constants.asm15
1 files changed, 15 insertions, 0 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm
index 5b291f6e8..5ad9826f4 100644
--- a/constants/misc_constants.asm
+++ b/constants/misc_constants.asm
@@ -73,3 +73,18 @@ STEP_TURN EQU 5
STEP_BACK_LEDGE EQU 6
STEP_WALK_IN_PLACE EQU 7
+
+; ai
+CONTEXT_USE_F EQU 6
+UNKNOWN_USE_F EQU 5
+ALWAYS_USE_F EQU 4
+SWITCH_SOMETIMES_F EQU 2
+SWITCH_RARELY_F EQU 1
+SWITCH_OFTEN_F EQU 0
+
+CONTEXT_USE EQU 1 << CONTEXT_USE_F
+UNKNOWN_USE EQU 1 << UNKNOWN_USE_F
+ALWAYS_USE EQU 1 << ALWAYS_USE_F
+SWITCH_SOMETIMES EQU 1 << SWITCH_SOMETIMES_F
+SWITCH_RARELY EQU 1 << SWITCH_RARELY_F
+SWITCH_OFTEN EQU 1 << SWITCH_OFTEN_F