2020-10-17 01:04:11 +01:00
# ifndef GUARD_CONSTANTS_POKEMON_CONFIG_H
# define GUARD_CONSTANTS_POKEMON_CONFIG_H
# ifndef GEN_3
# define GEN_3 0
# define GEN_4 1
# define GEN_5 2
# define GEN_6 3
# define GEN_7 4
# define GEN_8 5
# endif
2022-05-08 00:45:06 +01:00
# define P_UPDATED_TYPES GEN_8 // Since Gen 6, several Pokémon were changed to be partially or fully Fairy type.
2020-10-24 12:04:30 +01:00
# define P_UPDATED_STATS GEN_8 // Since Gen 6, Pokémon stats are updated with each passing generation.
2022-08-25 00:35:13 +01:00
# define P_UPDATED_ABILITIES GEN_8 // Since Gen 6, certain Pokémon have their abilities changed.
2020-11-01 17:50:29 +00:00
# define P_UPDATED_EGG_GROUPS GEN_8 // Since Gen 8, certain Pokémon have gained new egg groups.
2021-10-23 00:50:53 +01:00
# define P_SHEDINJA_BALL GEN_8 // Since Gen 4, Shedinja requires a Poké Ball for its evolution. In Gen 3, Shedinja inherits Nincada's Ball.
2022-04-16 17:51:02 +01:00
# define P_LEGENDARY_PERFECT_IVS GEN_8 // Since Gen 6, Legendaries, Mythicals and Ultra Beasts found in the wild or given through gifts have at least 3 perfect IVs.
2022-02-27 01:04:24 +00:00
# define P_KADABRA_EVERSTONE GEN_8 // Since Gen 4, Kadabra can evolve even when holding an Everstone.
2021-11-27 01:56:48 +00:00
# define P_NIDORAN_M_DITTO_BREED GEN_8 // Since Gen 5, when Nidoran♂ breeds with Ditto it can produce Nidoran♀ offspring. Before, it would only yield male offspring. This change also applies to Volbeat.
2020-10-17 01:04:11 +01:00
2022-08-22 22:27:21 +01:00
# define P_NEW_POKEMON TRUE // Turning this to FALSE will remove all newly added Pokémon and Forms. Only Unown, Castform and Deoxys forms will remain.
2021-12-03 10:02:22 +00:00
# define P_ENABLE_DEBUG TRUE // Enables a debug menu for pokemon sprites and icons, accessed by pressing SELECT in the summary screen.
2020-10-17 01:04:11 +01:00
# endif // GUARD_CONSTANTS_POKEMON_CONFIG_H