Solid Canning Machine

This commit is contained in:
modmuss50 2019-08-19 13:52:42 +01:00
parent 2d34ebc480
commit 5511b598d7
12 changed files with 176 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{
"variants": {
"facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor" },
"facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 180 },
"facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 270 },
"facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 90 },
"facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on" },
"facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 180 },
"facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 270 },
"facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 90 }
}
}

View file

@ -78,6 +78,7 @@
"block.techreborn.lamp_led": "LED Lamp",
"block.techreborn.alarm": "Alarm",
"block.techreborn.farm": "Farm",
"block.techreborn.solid_canning_machine": "Solid Canning Machine",
"_comment1": "Blocks",

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/tier1_machines/compressor"
}

View file

@ -0,0 +1,22 @@
{
"type": "techreborn:solid_canning_machine",
"power": 1,
"time": 100,
"ingredients": [
{
"item": "techreborn:cell",
"nbt": "empty"
},
{
"item": "techreborn:compressed_plantball"
}
],
"results": [
{
"item": "techreborn:cell",
"nbt": {
"fluid": "techreborn:biofuel"
}
}
]
}