diff options
author | yenatch <yenatch@gmail.com> | 2014-08-13 19:44:56 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-08-13 19:44:56 -0700 |
commit | da799c80d4f6f3c1b22687b6177ff09fecf6c324 (patch) | |
tree | b013a1069e8175346cdf3de7d80778ab7c975046 /constants/misc_constants.asm | |
parent | 88a15c50387d02a7cdb95b508c43fa9f10a46982 (diff) |
Better trainer AI comments and finish off trainer attributes.
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 15 |
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 |