Add files via upload

adding compressor recipe for brick brick_deep brick_compressed and nether_lump
This commit is contained in:
Diablosxm 2023-05-19 23:35:16 -04:00 committed by GitHub
parent 53bab7a33a
commit f0e825f542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

View File

@ -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