diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-03-17 08:53:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 08:53:50 -0400 |
commit | 0b1ddd584239d04f08b92cfe66c1aa6e598f4d57 (patch) | |
tree | 20c5861d1595c9cebc2798b0ce77adf689e870e0 /include/global.fieldmap.h | |
parent | d52f2aa5712d042f344409d8925ed80d7109706e (diff) | |
parent | ebf2f04d912497333455245bb503e6b2d109cfac (diff) |
Merge pull request #303 from GriffinRichards/doc-metatr
Label used metatile attributes
Diffstat (limited to 'include/global.fieldmap.h')
-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, |