-
-
Notifications
You must be signed in to change notification settings - Fork 3
Potential Offspring
Provi edited this page Aug 3, 2026
·
3 revisions
Describes a possible child from a breeding pair. Used to describe non-standard breeding scenarios, such as how Phione comes from Manaphy.
| Field | Type | Default | Description |
|---|---|---|---|
| weight | Integer | 1 |
The weight of this offspring. If a Breeding Rule has multiple possible offspring, higher weighted offspring are more likely to be chosen. |
| pokemon | PokemonSupplier | The data of the offspring to create. |
This is the Indeedee offspring list using Potential Offspring to account for it using different forms for its genders.
{
"offspring": [
{
"pokemon": {
"gender": "MALE",
"species": "indeedee"
}
},
{
"pokemon": {
"gender": "FEMALE",
"species": "indeedee"
}
}
]
}