summaryrefslogtreecommitdiff
path: root/constants/metatile_constants.asm
diff options
context:
space:
mode:
authorobskyr <powpowd@gmail.com>2018-07-03 04:50:33 +0200
committerobskyr <powpowd@gmail.com>2018-07-03 04:50:33 +0200
commit382fd4b50e27cea7e0f97839363235ea2eac14fa (patch)
treed9836c547ac68f14a4b1766453334812380d050b /constants/metatile_constants.asm
parentd26c5f6937518f891d7cb699e237e172588f4a26 (diff)
parent2dfc7fc635b13291588ba8aae65fd0ece7211799 (diff)
Merge branch 'collisions-movements' of https://github.com/Pokeglitch/pokegold-spaceworld into master
And that's the last of the manual merges for now! Hooray!
Diffstat (limited to 'constants/metatile_constants.asm')
-rw-r--r--constants/metatile_constants.asm31
1 files changed, 31 insertions, 0 deletions
diff --git a/constants/metatile_constants.asm b/constants/metatile_constants.asm
new file mode 100644
index 0000000..88d54ab
--- /dev/null
+++ b/constants/metatile_constants.asm
@@ -0,0 +1,31 @@
+; all outside tileset share certain metatiles
+; this is used in overworld code when editing the map
+; D - dirt
+; L - lawn
+; T - small tree
+; C - cut tree
+; G - grass
+METATILE_GROUND EQU $01 ; DD
+ ; DD
+METATILE_LAWN EQU $04 ; LL
+ ; LL
+METATILE_SMALL_TREES_N EQU $25 ; TT
+ ; LL
+METATILE_SMALL_TREES_W EQU $28 ; TL
+ ; TL
+METATILE_SMALL_TREES_E EQU $2a ; LT
+ ; LT
+METATILE_CUT_SE_TREES_N EQU $30 ; TT
+ ; LC
+METATILE_CUT_NW_TREES_E EQU $31 ; CT
+ ; LT
+METATILE_CUT_NE_TREE_NW EQU $32 ; TC
+ ; LL
+METATILE_CUT_NE_TREE_SE EQU $33 ; LC
+ ; LT
+METATILE_SMALL_TREE_NW EQU $34 ; TL
+ ; LL
+METATILE_SMALL_TREE_SE EQU $35 ; TL
+ ; LL
+METATILE_GRASS EQU $3b ; GG
+ ; GG