diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-12-30 23:30:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 23:30:28 -0600 |
commit | 122cbc06aea38592b037cf0e6d5f5c7f48e98ac5 (patch) | |
tree | 7f02cc6c0d935e7d1c158e698bd89f004e13e73d /src/constants/script_constants.asm | |
parent | 60a68b2611959035e4b49fcd758656c2c8d9b5e7 (diff) | |
parent | 409058484b5f59f02ece691c3dbceb6aa33c8bdf (diff) |
Merge pull request #84 from anmart/master
Created macros for all known script commands
Diffstat (limited to 'src/constants/script_constants.asm')
-rw-r--r-- | src/constants/script_constants.asm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/constants/script_constants.asm b/src/constants/script_constants.asm index 9607ba0..9f37375 100644 --- a/src/constants/script_constants.asm +++ b/src/constants/script_constants.asm @@ -138,10 +138,12 @@ IMAKUNI_SCIENCE_CLUB EQU 1 IMAKUNI_LIGHTNING_CLUB EQU 2 IMAKUNI_WATER_CLUB EQU 3 -NO_JUMP EQU $0000 +NULL EQU $0000 NORTH EQU $00 EAST EQU $01 SOUTH EQU $02 WEST EQU $03 NO_MOVE EQU %10000000 ; For rotations without movement + +VARIABLE_CARD EQU 0 ; use the card located in wd697 instead of using the script's argument |