diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-16 19:01:48 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-03-16 19:09:13 -0400 |
commit | ebf2f04d912497333455245bb503e6b2d109cfac (patch) | |
tree | 5bf4cedb3f4af3fdee411b903fba5e9f552a43b2 /include | |
parent | 2c7387951ba78349712d891ca71b55db4d0ec96e (diff) |
Label used metatile attributes
Diffstat (limited to 'include')
-rw-r--r-- | include/global.fieldmap.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index 6e92ddd06..e1998afdf 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -14,6 +14,34 @@ enum { + METATILE_ATTRIBUTE_BEHAVIOR, + METATILE_ATTRIBUTE_TERRAIN, + METATILE_ATTRIBUTE_2, + METATILE_ATTRIBUTE_3, + METATILE_ATTRIBUTE_ENCOUNTER_TYPE, + METATILE_ATTRIBUTE_5, + METATILE_ATTRIBUTE_LAYER_TYPE, + METATILE_ATTRIBUTE_7, + METATILE_ATTRIBUTE_COUNT, +}; + +enum +{ + TILE_ENCOUNTER_NONE, + TILE_ENCOUNTER_GRASS, + TILE_ENCOUNTER_WATER, +}; + +enum +{ + TILE_TERRAIN_NORMAL, + TILE_TERRAIN_GRASS, + TILE_TERRAIN_WATER, + TILE_TERRAIN_WATERFALL, +}; + +enum +{ CONNECTION_SOUTH = 1, CONNECTION_NORTH, CONNECTION_WEST, |