Cobblemon Poke Fusion
๐ก Updated this yearโ ๏ธ Install Order ยท 2 steps
Install in this order, then this mod last โ most mods fail to load without their framework and dependencies in place.
๐ผ๏ธ Gallery (3 images)
๐ Analysis
- ๐ 0.0% endorsement rate
- ๐ #1013 of 1032 fabric mods in this game by downloads
๐ About This Mod
# ๐งฌ Cobblemon Poke Fusion **Cobblemon Poke Fusion** adds a powerful and fully customizable fusion system to Cobblemon, allowing you to combine Pokรฉmon together and create unique, powerful, or even chaotic results. From simple 2 Pokemon fusions to 3 way combinations, everything is controlled through its config --- ## โจ Features - Fuse Pokรฉmon together to create whatever you configure - Fully configurable fusion system - Supports multiple input orders - Supports fusions between 2 or 3 Pokemon - Weighted random outcomes - Custom levels, IVs, forms, and stats - Works with modded Pokรฉmon --- ## ๐ฎ Fusion Chamber item > โ ๏ธ The fusion chamber currently has **no crafting recipe** version 1-3 You must give it to yourself: ```mcfunction /give @p cobblemonpokefusion:fusion_chamber ``` as of 3.5.0 it now has a recipe which can be seen in gallery section --- <details> <summary>๐ฆ Datapack Integration (Fusion Chamber)</summary> ## ๐ฆ Datapack Integration (Fusion Chamber) **For Cobblemon Pokรฉ Fusion 2.0.0** Datapack creators can fully add custom fusion recipes to the **Fusion Chamber** using the below structure. ### ๐ Folder Structure ```text data/<namespace>/fusions/" then put any json file ``` for example in my mechamew2 addon for testing purposes i did ```text \datapacks\mechamew2.zip\data\cobblemon\fusions\bazinga.json ``` this doesnt interfere with base config and you can name the .json whatever you want </details> --- <details> <summary>๐ New in 3.0.0</summary> ### ๐ Input Constraints Fusion recipes can now **lock specific aspects and level ranges** for input Pokรฉmon. This allows you to require things like: - Only **shiny Pokรฉmon** - Specific **level ranges** --- ### ๐ก Example ```json { "id": "vulpix_triple", "inputs": , "minLevel": 20, "maxLevel": 40 }, { "side": "y1", "speciesId": "cobblemon:vulpix", "aspects": , "minLevel": 20, "maxLevel": 40 }, { "side": "z1", "speciesId": "cobblemon:vulpix", "aspects": , "minLevel": 20, "maxLevel": 40 } ], "results": } ``` ๐ This fusion will only work if: - All Vulpix are **shiny** and between level 20-40 ```json { "id": "vulpix_triple_random", "inputs": , "minLevel": 20, "maxLevel": 40 }, { "side": "y1", "speciesId": "cobblemon:vulpix", "aspects": , "minLevel": 20, "maxLevel": 40 }, { "side": "z1", "speciesId": "cobblemon:vulpix", "aspects": , "minLevel": 20, "maxLevel": 40 } ], "results": } ``` ๐ This fusion will only work if: - All Vulpix are **shiny**, **alolan** and between level 20-40 --- ### ๐ Dynamic Level Scaling Fusion results can now **inherit levels dynamically**. - If **no level is defined in inputs or results** ๐ The result level is calculated from the Pokรฉmon placed in the chamber --- All fusions are defined in: ```text config/cobblemonpokefusion/fusions.json ``` Each recipe contains: - **Inputs** โ Pokรฉmon required - **Results** โ Possible outcomes </details> --- <details> <summary>๐ Example Fusion (Simple)</summary> ```json { "id": "starter_duo_fire_water", "inputs": , "results": } ``` ๐ Charmander + Squirtle โ Charizard </details> --- <details> <summary>๐ Ordered Fusion Example</summary> Some fusions require Pokรฉmon to be placed in a **specific order** using `side` values like `x1`, `y1`, `z1`. ```json { "id": "starter_trio_kanto", "inputs": , "results": [ { "id": "venusaur", "speciesId": "cobblemon:venusaur", "weight": 33 }, { "id": "charizard", "speciesId": "cobblemon:charizard", "weight": 33 }, { "id": "blastoise",
# ๐งฌ Cobblemon Poke Fusion
Cobblemon Poke Fusion adds a powerful and fully customizable fusion system to Cobblemon, allowing you to combine Pokรฉmon together and create unique, powerful, or even chaotic results.
From simple 2 Pokemon fusions to 3 way combinations, everything is controlled through its config
## โจ Features
- Fuse Pokรฉmon together to create whatever you configure
- Fully configurable fusion system
- Supports multiple input orders
- Supports fusions between 2 or 3 Pokemon
- Weighted random outcomes
- Custom levels, IVs, forms, and stats
- Works with modded Pokรฉmon
## ๐ฎ Fusion Chamber item
> โ ๏ธ The fusion chamber currently has no crafting recipe version 1-3
You must give it to yourself:
```mcfunction /give @p cobblemonpokefusion:fusion_chamber ```
as of 3. 5. 0 it now has a recipe which can be seen in gallery section
๐ฆ Datapack Integration (Fusion Chamber)
## ๐ฆ Datapack Integration (Fusion Chamber) For Cobblemon Pokรฉ Fusion 2. 0. 0
Datapack creators can fully add custom fusion recipes to the Fusion Chamber using the below structure.
### ๐ Folder Structure
```text
data/
for example in my mechamew2 addon for testing purposes i did
```text \datapacks\mechamew2.zip\data\cobblemon\fusions\bazinga.json ```
this doesnt interfere with base config and you can name the .json whatever you want
๐ New in 3. 0. 0
### ๐ Input Constraints
Fusion recipes can now lock specific aspects and level ranges for input Pokรฉmon.
This allows you to require things like: - Only shiny Pokรฉmon - Specific level ranges
### ๐ก Example
```json { "id": "vulpix_triple", "inputs": [ { "side": "x1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny"], "minLevel": 20, "maxLevel": 40 }, { "side": "y1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny"], "minLevel": 20, "maxLevel": 40 }, { "side": "z1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny"], "minLevel": 20, "maxLevel": 40 } ], "results": [ { "id": "ninetales", "displayName": "ninetales", "speciesId": "cobblemon:ninetales", "spec": "ninetales shiny=true", "weight": 100, "form": "", "ivs": {} } ] } ```
๐ This fusion will only work if: - All Vulpix are shiny and between level 20-40
```json { "id": "vulpix_triple_random", "inputs": [ { "side": "x1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny", "alolan"], "minLevel": 20, "maxLevel": 40 }, { "side": "y1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny", "alolan"], "minLevel": 20, "maxLevel": 40 }, { "side": "z1", "speciesId": "cobblemon:vulpix", "aspects": ["shiny", "alolan"], "minLevel": 20, "maxLevel": 40 } ], "results": [ { "id": "ninetales", "displayName": "ninetales", "speciesId": "cobblemon:ninetales", "spec": "ninetales alolan=true shiny=true", "weight": 100, "form": "", "ivs": {} } ] } ```
๐ This fusion will only work if: - All Vulpix are shiny, alolan and between level 20-40
### ๐ Dynamic Level Scaling
Fusion results can now inherit levels dynamically.
- If no level is defined in inputs or results
- ๐ The result level is calculated from the Pokรฉmon placed in the chamber
All fusions are defined in:
```text config/cobblemonpokefusion/fusions.json ```
Each recipe contains: - Inputs โ Pokรฉmon required - Results โ Possible outcomes
๐ Example Fusion (Simple)
```json { "id": "starter_duo_fire_water", "inputs": [ { "speciesId": "cobblemon:charmander" }, { "speciesId": "cobblemon:squirtle" } ], "results": [ { "speciesId": "cobblemon:charizard", "level": 16 } ] } ```
๐ Charmander + Squirtle โ Charizard
๐ Ordered Fusion Example
Some fusions require Pokรฉmon to be placed in a specific order using `side` values like `x1`, `y1`, `z1`.
```json { "id": "starter_trio_kanto", "inputs": [ { "side": "x1", "speciesId": "cobblemon:bulbasaur" }, { "side": "y1", "speciesId": "cobblemon:charmander" }, { "side": "z1", "speciesId": "cobblemon:squirtle" } ], "results": [ { "id": "venusaur", "speciesId": "cobblemon:venusaur", "weight": 33 }, { "id": "charizard", "speciesId": "cobblemon:charizard", "weight": 33 }, { "id": "blastoise",
๐ Mod Details
- Game
- Minecraft Mods
- Author
- doctorshabs
- Version
- 3.5.0
- Downloads
- 92,355
- Endorsements
- 17
- Category
- fabric
- Created
- 4/30/2026
- Updated
- 5/26/2026
- Game Versions
- 1.21.1
- Tags
- game-mechanics, mobs, technology
๐ง How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Mods โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Mods versions does Cobblemon Poke Fusion support?
The author lists 1.21.1. Other versions may work but are untested by the author.
What is the latest version of Cobblemon Poke Fusion?
Version 3.5.0, published 2026-05-26 with 92,355 downloads recorded at the source.
Keep browsing โ more Minecraft Mods mods await


