
Turn Pokemon breeding into a polished, visual, and automatable workflow.
Cobblemon Incubator is an addon for Cobblemon and Cobbreeding that adds a dedicated Egg Incubator machine. Insert an egg to incubate it faster, inspect its breeding information, configure advanced filters, or connect the machine to a Pasture and storage system for full automation.
The Egg Incubator provides a custom interface inspired by Cobblemon's PC screens. While an egg is inside, the interface displays:
The block also changes visually when it contains an egg and lights up while its interface is open.
Eggs incubate at 5x speed by default. Add a Speed Upgrade to reach 10x speed with the default configuration.
Server owners can customize both the base speed and the Speed Upgrade multiplier in:
config/cobblemon_incubator.json
Multiplies the machine's incubation speed, allowing eggs to finish much faster.
Right-click while holding the upgrade to bind it to your player. Once installed, hatched Pokemon are sent directly to your PC.
The link uses your UUID, so changing your Minecraft name will not break it. When a Pokemon is delivered, you receive a chat notification. Hover over the Pokemon's name to view its Nature, Ability, and IVs.
If you are offline or your PC is full, the egg safely falls back to the machine's output slot.
Build precise breeding rules without requiring every field:
>=, <=, or =After selecting a species, the Ability selector only shows abilities that species can actually have, including hidden abilities.
Rejected eggs can either be moved to the output slot or deleted, depending on your chosen action.
Place the Incubator directly against a compatible Pasture and it will automatically collect available eggs whenever its input is empty.
Place a chest or another compatible inventory against the machine and completed output eggs will be inserted automatically. Input and output automation works on all six faces and respects sided inventory rules.
This enables complete production lines:
Pasture -> Egg Incubator -> Chest
Fabric installations also require:
NeoForge installations also require:
Supported loaders:
Cobblemon Incubator must be installed on both the server and client.
Cobblemon Incubator includes a server-side JSON config that lets modpack makers customize how much control and information the Egg Incubator provides.
Configurable options include:
Gameplay rules are enforced server-side, and the incubator UI syncs with the server config so players only see the options available on that server.
{
"baseSpeed": 5,
"speedUpgradeMultiplier": 2.0,
"display": {
"pokemonModel": true,
"species": true,
"nature": true,
"ability": true,
"ivs": true
},
"upgrades": {
"speed": true,
"pc": true,
"filter": true
},
"filters": {
"species": true,
"nature": true,
"ability": true,
"ivs": true,
"rejectAction": true,
"deleteRejectedEggs": true
},
"automation": {
"autoInputFromPastures": true,
"autoOutputToInventories": true
}
}
Restart the game or server after editing the configuration.