-
-
Notifications
You must be signed in to change notification settings - Fork 26
Biomancy 2 Recipes
Elenterius edited this page Aug 18, 2023
·
13 revisions
{
"item": "minecraft:golden_carrot"
}
{
"tag": "forge:eggs"
}
type | biomancy:decomposing |
input | 1 ingredient |
output | 1 item |
- count is optional
{
"type": "biomancy:digesting",
"ingredient": <object (minecraft ingredient)>,
"result": {
"count": <int>,
"item": <string (registry-key)>
},
"time": <int (ticks)>
}
{
"type": "biomancy:digesting",
"ingredient": {
"tag": "forge:seeds"
},
"result": {
"item": "biomancy:nutrient_paste"
},
"time": 220
}
type | biomancy:decomposing |
input | 1 ingredient |
output | max 6 items |
{
"type": "biomancy:decomposing",
"input": {
"ingredient": <object (minecraft ingredient)>
},
"outputs": [
{
"result": {
"count_range": <object (count range)>,
"item": <string (registry-key)>
}
}
],
"time": <int (ticks)>
}
{
"type": "biomancy:decomposing",
"input": {
"count": 1,
"ingredient": {
"item": "minecraft:chicken"
}
},
"outputs": [
{
"result": {
"count_range": {
"type": "constant",
"value": 4
},
"item": "biomancy:flesh_bits"
}
},
{
"result": {
"count_range": {
"type": "uniform",
"max": 4,
"min": 2
},
"item": "biomancy:bone_fragments"
}
},
{
"result": {
"count_range": {
"type": "binomial",
"n": 5,
"p": 0.75
},
"item": "biomancy:elastic_fibers"
}
}
],
"time": 202
}
"type": "constant",
"value": <int>
- min and max values are inclusive
"type": "uniform",
"min": <int>,
"max": <int>
"type": "binomial",
"n": <int>,
"p": <float>