diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/map_object_constants.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/constants/map_object_constants.asm b/constants/map_object_constants.asm index 5a6c446c8..bcf70b428 100644 --- a/constants/map_object_constants.asm +++ b/constants/map_object_constants.asm @@ -63,6 +63,15 @@ LOW_PRIORITY EQU 1 << LOW_PRIORITY_F HIGH_PRIORITY EQU 1 << HIGH_PRIORITY_F OVERHEAD EQU 1 << OVERHEAD_F +; object_struct OBJECT_PALETTE bit flags +WALK_ON_WATER_F EQU 5 +STRENGTH_BOULDER_F EQU 6 +BIG_OBJECT_F EQU 7 + +WALK_ON_WATER EQU 1 << WALK_ON_WATER_F +STRENGTH_BOULDER EQU 1 << STRENGTH_BOULDER_F +BIG_OBJECT EQU 1 << BIG_OBJECT_F + ; map_object struct members (see macros/wram.asm) const_def const MAPOBJECT_OBJECT_STRUCT_ID ; 0 |