fix quark wart loop

This commit is contained in:
grimmauld 2020-08-18 23:01:10 +02:00
parent bc5bcd0a6d
commit 7493da4543
3 changed files with 36 additions and 19 deletions

View File

@ -1,18 +0,0 @@
{
"type": "crafting_shaped",
"pattern": [
"CS"
],
"key": {
"C": {
"item": "create:andesite_casing"
},
"S": {
"item": "create:shaft"
}
},
"result": {
"item": "create:encased_shaft",
"count": 1
}
}

View File

@ -1,10 +1,19 @@
{
"conditions": [
{
"type": "forge:not",
"value": {
"type": "forge:mod_loaded",
"modid": "quark"
}
}
],
"type": "create:crushing",
"ingredients": [
{
"item": "minecraft:nether_wart_block"
}
],
],
"results": [
{
"item": "minecraft:nether_wart",

View File

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "quark"
}
],
"type": "create:crushing",
"ingredients": [
{
"item": "minecraft:nether_wart_block"
}
],
"results": [
{
"item": "minecraft:nether_wart",
"count": 2
},
{
"item": "minecraft:nether_wart",
"count": 2,
"chance": 0.5
}
],
"processingTime": 150
}