Update friendship evo threshold to gen 8+ with config (#3376)
This commit is contained in:
parent
bcf0377d9a
commit
3755155e9d
2 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,9 @@
|
|||
#define P_UPDATED_ABILITIES GEN_LATEST // Since Gen 6, certain Pokémon have their abilities changed.
|
||||
#define P_UPDATED_EGG_GROUPS GEN_LATEST // Since Gen 8, certain Pokémon have gained new egg groups.
|
||||
|
||||
// Evolution settings
|
||||
#define P_FRIENDSHIP_EVO_THRESHOLD GEN_LATEST // Since Gen 8, Pokémon that evolve by friendship evolve at or above 160 friendship instead of 220.
|
||||
|
||||
// Breeding settings
|
||||
#define P_NIDORAN_M_DITTO_BREED GEN_LATEST // 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.
|
||||
#define P_INCENSE_BREEDING GEN_LATEST // Since Gen 9, cross-generation Baby Pokémon don't require Incense being held by the parents to be obtained via breeding.
|
||||
|
|
|
@ -62,7 +62,11 @@
|
|||
#define NIGHT_EVO_HOUR_BEGIN 0
|
||||
#define NIGHT_EVO_HOUR_END 12
|
||||
|
||||
#if P_FRIENDSHIP_EVO_THRESHOLD >= GEN_9
|
||||
#define FRIENDSHIP_EVO_THRESHOLD 160
|
||||
#else
|
||||
#define FRIENDSHIP_EVO_THRESHOLD 220
|
||||
#endif
|
||||
|
||||
struct SpeciesItem
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue