summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2019-03-12 05:35:15 -0400
committerPhlosioneer <mattmdrr2@gmail.com>2019-03-12 05:35:15 -0400
commit7f70b629f569ce9a4c1b90cca3a3ce86ebd3e1c2 (patch)
treecd6562917dcd00902f3b862af4f72f1aaee811cc /include
parent8e1537fb57dc7ed17079b30f7a3851132cf462bd (diff)
Document sAreaGlowTilemapMapping
I used a script to generate the format for the array, so I can easily change its formatting if needed.
Diffstat (limited to 'include')
-rw-r--r--include/constants/maps.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/constants/maps.h b/include/constants/maps.h
index e1e2da992..93291f29e 100644
--- a/include/constants/maps.h
+++ b/include/constants/maps.h
@@ -9,4 +9,10 @@
#define MAP_GROUP(map) (MAP_##map >> 8)
#define MAP_NUM(map) (MAP_##map & 0xFF)
+// These groups are used by pokedex_area_screen.c to find wild
+// pokemon locations.
+#define MAP_AREA_OVERWORLD_MONS MAP_GROUP(PETALBURG_CITY)
+#define MAP_AREA_SPECIAL_MONS_1 MAP_GROUP(METEOR_FALLS_1F_1R)
+#define MAP_AREA_SPECIAL_MONS_2 MAP_GROUP(SAFARI_ZONE_NORTHWEST)
+
#endif // GUARD_CONSTANTS_MAPS_H