diff --git a/constants/map_constants.asm b/constants/map_constants.asm index aa77b3f1b..8c9d1a505 100644 --- a/constants/map_constants.asm +++ b/constants/map_constants.asm @@ -1743,3 +1743,27 @@ SPRITE_FUSCHIA_GYM_4 EQU $fa SPRITE_COPYCAT EQU $fb SPRITE_JANINE_IMPERSONATOR EQU $fc +; sprite types +WALKING_SPRITE EQU 1 +STANDING_SPRITE EQU 2 +STILL_SPRITE EQU 3 + +; sprite palettes +PAL_OW_RED EQU 0 +PAL_OW_BLUE EQU 1 +PAL_OW_GREEN EQU 2 +PAL_OW_BROWN EQU 3 +PAL_OW_PINK EQU 4 +PAL_OW_SILVER EQU 5 +PAL_OW_TREE EQU 6 +PAL_OW_ROCK EQU 7 + +; permissions +TOWN EQU 1 +ROUTE EQU 2 +INDOOR EQU 3 +CAVE EQU 4 + +GATE EQU 6 +DUNGEON EQU 7 +