Added red sand -> soul sand via blast furnace (#2925)

This commit is contained in:
Ayutac 2022-04-28 10:47:24 +02:00 committed by GitHub
parent adb3bb8d30
commit 7f2cb5cb95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:blast_furnace/soul_sand"
]
},
"criteria": {
"has_red_sand": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:red_sand"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:blast_furnace/soul_sand"
}
}
},
"requirements": [
[
"has_red_sand",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,23 @@
{
"type": "techreborn:blast_furnace",
"power": 128,
"time": 500,
"heat": 3000,
"ingredients": [
{
"item": "minecraft:red_sand",
"count": 8
},
{
"fluid": "techreborn:carbon",
"holder": "techreborn:cell",
"count": 5
}
],
"results": [
{
"item": "minecraft:soul_sand",
"count": 8
}
]
}