diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-17 14:22:27 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-17 14:22:27 -0400 |
commit | f82097b8949c490cd09355dc6d8fee5598498bd4 (patch) | |
tree | 69309ea07172ab70b2477cb93993afa7128fc3c8 /constants/map_object_constants.asm | |
parent | 3b003960d413090cb1f68da61399e186ea5716bd (diff) |
Identify some map object related constants
Diffstat (limited to 'constants/map_object_constants.asm')
-rw-r--r-- | constants/map_object_constants.asm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/constants/map_object_constants.asm b/constants/map_object_constants.asm index 459fae4a..9993a6a9 100644 --- a/constants/map_object_constants.asm +++ b/constants/map_object_constants.asm @@ -45,10 +45,13 @@ TRAINER EQU $40 WALK EQU $FE STAY EQU $FF -DOWN EQU $D0 -UP EQU $D1 -LEFT EQU $D2 -RIGHT EQU $D3 -NONE EQU $FF +ANY_DIR EQU $00 +UP_DOWN EQU $01 +LEFT_RIGHT EQU $02 +DOWN EQU $D0 +UP EQU $D1 +LEFT EQU $D2 +RIGHT EQU $D3 +NONE EQU $FF BOULDER_MOVEMENT_BYTE_2 EQU $10 |