2021-09-28 16:50:36 +00:00
|
|
|
# Pokémon species data
|
|
|
|
|
|
|
|
POKEMON_DIR = $(DATA_ASM_SUBDIR)/pokemon
|
|
|
|
POKEMON_SPECIES = $(POKEMON_DIR)/species_data.inc
|
|
|
|
|
2021-12-19 21:27:11 +00:00
|
|
|
# Headers included by tools/dungeonjson/dungeonjson.cpp:generate_species_data_text
|
|
|
|
POKEMON_SPECIES_INC = \
|
|
|
|
include/constants/ability.h \
|
|
|
|
include/constants/evolve_type.h \
|
|
|
|
include/constants/friend_area.h \
|
|
|
|
include/constants/item.h \
|
|
|
|
include/constants/species.h \
|
|
|
|
include/constants/type.h \
|
|
|
|
include/constants/walkable_tile.h
|
|
|
|
|
2021-09-28 16:50:36 +00:00
|
|
|
data_pokemon: $(POKEMON_SPECIES);
|
|
|
|
|
2021-12-19 21:27:11 +00:00
|
|
|
$(POKEMON_SPECIES): $(POKEMON_DIR)/species_data.json $(POKEMON_SPECIES_INC)
|
2021-10-06 00:09:53 +00:00
|
|
|
$(DUNGEONJSON) species pmd-red $<
|