Fluid Replicator recipes are not working ))

This commit is contained in:
drcrazy 2019-08-05 17:05:59 +03:00
parent 03bebee309
commit ab0293c7e9
4 changed files with 47 additions and 3 deletions

View file

@ -33,9 +33,7 @@ public class FluidReplicatorRecipes {
/* TODO 1.13 :D
public static void init() {
register(1, FluidRegistry.WATER, 40, 2);
register(1, FluidRegistry.LAVA, 80, 2);
register(2, ModFluids.COMPRESSED_AIR, 100, 20);
register(2, ModFluids.CARBON, 100, 20);
register(2, ModFluids.CALCIUM, 100, 20);
register(2, ModFluids.CARBON_FIBER, 100, 20);

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:fluid_replicator",
"power": 20,
"time": 100,
"ingredients": [
{
"item": "techreborn:uu_matter",
"count": 2
}
],
"results": [
{
"fluid": "techreborn:compressedair"
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "techreborn:fluid_replicator",
"power": 2,
"time": 80,
"ingredients": [
{
"item": "techreborn:uu_matter"
}
],
"results": [
{
"fluid": "minecraft:lava"
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "techreborn:fluid_replicator",
"power": 2,
"time": 40,
"ingredients": [
{
"item": "techreborn:uu_matter"
}
],
"results": [
{
"fluid": "minecraft:water"
}
]
}