diff --git a/nether-compressor-recipe.lua b/nether-compressor-recipe.lua new file mode 100644 index 0000000..96b0681 --- /dev/null +++ b/nether-compressor-recipe.lua @@ -0,0 +1,22 @@ +local S = minetest.get_translator("nether") + +technic.register_recipe_type("compressing", { description = S("Compressing") }) + +function technic.register_compressor_recipe(data) + data.time = data.time or 4 + technic.register_recipe("compressing", data) +end + +local recipes = { + {"nether:rack", "nether:brick",}, + {"nether:rack_deep", "nether:brick_deep"}, + {"nether:brick 9", "nether:brick_compressed", 12}, + {"nether:brick_compressed 9", "nether:nether_lump", 12} + +} + +for _, data in pairs(recipes) do + technic.register_compressor_recipe({input = {data[1]}, output = data[2], time = data[3]}) +end + +