mirror of
https://github.com/minetest-mods/nether.git
synced 2024-11-15 15:00:40 +01:00
f0e825f542
adding compressor recipe for brick brick_deep brick_compressed and nether_lump
23 lines
649 B
Lua
23 lines
649 B
Lua
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
|
|
|
|
|