Skip to content

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.

Fields

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.

Examples

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"
      }
    }
  ]
}

Clone this wiki locally