Blockus compatibility (1.15+) (#2091)

* Balance marble dust centrifuge input/output item counts

* Add recipes using blockus items
This commit is contained in:
Sturmlilie 2020-04-25 15:48:56 +02:00 committed by GitHub
parent 350d1fada6
commit d68888df57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 74 additions and 2 deletions

View file

@ -4,7 +4,8 @@
"time": 2050,
"ingredients": [
{
"item": "techreborn:marble_dust"
"item": "techreborn:marble_dust",
"count": 8
}
],
"results": [
@ -16,4 +17,4 @@
"count": 7
}
]
}
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"WWW",
"WBW",
"WPW"
],
"key": {
"B": {
"tag": "blockus:barrels"
},
"P": {
"item": "minecraft:paper"
},
"W": {
"tag": "minecraft:planks"
}
},
"result": {
"item": "techreborn:crude_storage_unit"
},
"conditions": {
"reborncore:tag": "blockus:barrels"
}
}

View file

@ -0,0 +1,21 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 180,
"ingredients" : [
{
"tag": "c:limestone"
}
],
"results" : [
{
"item": "techreborn:marble_dust"
}
],
"conditions": {
"reborncore:tag": "c:limestone"
}
}

View file

@ -0,0 +1,21 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 180,
"ingredients" : [
{
"tag": "c:marble"
}
],
"results" : [
{
"item": "techreborn:marble_dust"
}
],
"conditions": {
"reborncore:tag": "c:marble"
}
}