Bee Family
A bee family consists of four key pieces of information necessary for breeding a bee:
- The first parent required 
- The second parent required 
- The weighting of how likely the child is to be selected among potential candidates 
- The chance the child is created if selected 
"resourcefulbees:breeding/v1": {
  "parents": [
    {
      "parent1": "diamond",
      "parent2": "coal",
      "weight": 75.0,
      "chance": 0.67
    }
  ]
}Customization Options
weight
weightFor all possible children these two parents can create how likely is it this one will be picked? Weight affects the result distribution among potential outcomes.
chance
chanceOnce this child has been chosen as the result type, what is the chance that it will be created?
Note: The value has a range of 0.0 - 1.0.
A value of 0.5 = a 50% chance of the child being created.
parent1
parent1The ID of the first parent.
If not provided family will be ignored!
parent2
parent2The ID of the second parent.
If not provided family will be ignored!
Last updated
Was this helpful?