Added prismarine related recipes (#2749)

* Added prismarine related recipes

* Fixed glowstone recipe for chemical reactor

* On second thought, removed the chemical reactor recipes.

* Revert "On second thought, removed the chemical reactor recipes."

This reverts commit 708dfb308c55577584cb85e8cf253f0cd8c21174.
This commit is contained in:
Ayutac 2022-01-17 23:40:58 +01:00 committed by GitHub
parent 9ae1f53c7d
commit 2278b76d8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 252 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:chemical_reactor",
"power": 30,
"time": 400,
"ingredients": [
{
"item": "minecraft:prismarine",
"count": 2
},
{
"item": "minecraft:black_dye"
}
],
"results": [
{
"item": "minecraft:dark_prismarine"
}
]
}

View file

@ -0,0 +1,21 @@
{
"type": "techreborn:chemical_reactor",
"power": 30,
"time": 400,
"ingredients": [
{
"item": "minecraft:ink_sac",
"count": 3
},
{
"item": "minecraft:prismarine_crystals",
"count": 2
}
],
"results": [
{
"item": "minecraft:glow_ink_sac",
"count": 3
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:chemical_reactor",
"power": 30,
"time": 400,
"ingredients": [
{
"tag": "c:glowstone_small_dusts",
"count": 6
},
{
"item": "minecraft:sea_lantern"
}
],
"results": [
{
"item": "minecraft:glowstone"
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:chemical_reactor",
"power": 30,
"time": 400,
"ingredients": [
{
"item": "minecraft:prismarine_crystals",
"count": 6
},
{
"item": "minecraft:glowstone"
}
],
"results": [
{
"item": "minecraft:sea_lantern"
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:compressor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "minecraft:prismarine",
"count": 2
}
],
"results": [
{
"item": "minecraft:prismarine_bricks"
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "minecraft:prismarine_shard"
}
],
"results": [
{
"item": "minecraft:cyan_dye"
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 1000,
"ingredients": [
{
"item": "minecraft:conduit"
}
],
"results": [
{
"item": "minecraft:heart_of_the_sea"
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 500,
"ingredients" : [
{
"item": "minecraft:conduit"
}
],
"results" : [
{
"item": "techreborn:calcite_dust",
"count": 2
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 400,
"ingredients" : [
{
"item": "minecraft:sea_lantern"
}
],
"results" : [
{
"item": "minecraft:prismarine_crystals",
"count": 4
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 400,
"ingredients" : [
{
"item": "minecraft:prismarine"
}
],
"results" : [
{
"item": "minecraft:prismarine_shard",
"count": 3
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 400,
"ingredients" : [
{
"item": "minecraft:prismarine_bricks"
}
],
"results" : [
{
"item": "minecraft:prismarine_shard",
"count": 7
}
]
}

View file

@ -0,0 +1,32 @@
{
"type": "techreborn:industrial_grinder",
"power": 64,
"time": 100,
"tank": {
"fluid": "techreborn:mercury",
"amount": 1000
},
"ingredients": [
{
"item": "minecraft:heart_of_the_sea"
}
],
"results": [
{
"item": "techreborn:diamond_dust",
"count": 2
},
{
"item": "techreborn:titanium_dust",
"count": 2
},
{
"item": "techreborn:platinum_dust",
"count": 1
},
{
"item": "techreborn:raw_iridium",
"count": 1
}
]
}

View file

@ -0,0 +1,32 @@
{
"type": "techreborn:industrial_grinder",
"power": 64,
"time": 100,
"tank": {
"fluid": "minecraft:water",
"amount": 1000
},
"ingredients": [
{
"item": "minecraft:heart_of_the_sea"
}
],
"results": [
{
"item": "techreborn:diamond_small_dust",
"count": 3
},
{
"item": "techreborn:titanium_small_dust",
"count": 3
},
{
"item": "techreborn:platinum_small_dust",
"count": 2
},
{
"item": "techreborn:iridium_nugget",
"count": 3
}
]
}