Fluid Replicator recipes are not working ))
This commit is contained in:
parent
03bebee309
commit
ab0293c7e9
4 changed files with 47 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:fluid_replicator",
|
||||
"power": 20,
|
||||
"time": 100,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:uu_matter",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"fluid": "techreborn:compressedair"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:fluid_replicator",
|
||||
"power": 2,
|
||||
"time": 80,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:uu_matter"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"fluid": "minecraft:lava"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:fluid_replicator",
|
||||
"power": 2,
|
||||
"time": 40,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:uu_matter"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"fluid": "minecraft:water"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue