wild pokemon data

- Thanks to Sanqui for many Ruby/Sapphire names. https://github.com/Sanqui/romhacking/blob/master/pokemon/location-area-names
This commit is contained in:
YamaArashi
2015-10-25 22:56:06 -07:00
parent 269cda7ac9
commit 832b0b525f
8 changed files with 5585 additions and 23 deletions
+15
View File
@@ -0,0 +1,15 @@
.macro new_map_group
.set cur_map_group, cur_map_group + 1
.set cur_map_num, 0
.endm
.macro map_group map_name
.set GROUP_\map_name, cur_map_group
.set MAP_\map_name, cur_map_num
.set cur_map_num, cur_map_num + 1
.endm
.macro map map_name
.byte GROUP_\map_name
.byte MAP_\map_name
.endm