
ExNihilio Compatibility
TehNut opened this issue ยท 3 comments
Add a way to define Sieve interactions.
Fields needed:
sourceBlock
- Block to run through sieve. Will take aBlockStack
. Defaults toBlocks.dirt
sieveChance
- Chance of the Seed dropping. Defaults to0
.
JSON would look similar to:
{
"seeds": [
{
"name": "Iron",
"tier": 2,
"amount": 4,
"input": "ingotIron",
"output": "ingotIron#8",
"color": "#D0CBC7",
"compat": {
"exnihilio": {
"sourceBlock": {
"name": "minecraft:sand",
"meta": 0
},
"sieveChance": 8
}
}
}
]
}