diff options
author | yenatch <yenatch@gmail.com> | 2013-07-14 13:49:37 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-07-14 13:49:37 -0400 |
commit | 4071137870b669dd9c660e045dfa4e4996f13379 (patch) | |
tree | 10b4ff779f5ccd43b0c32c6c4c365443b79e023c | |
parent | 4ac88d6cdcc9d579a2a180d91401c49dc8086265 (diff) |
more sprite constants
-rw-r--r-- | constants/map_constants.asm | 24 |
1 files changed, 24 insertions, 0 deletions
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 + |