mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-08 01:01:06 +01:00
New recipes for copper door and copper trapdoor
This commit is contained in:
parent
86632c9e43
commit
c125013528
1 changed files with 17 additions and 11 deletions
|
@ -33,17 +33,6 @@ local function get_shape(name, material)
|
|||
{material},
|
||||
{material},
|
||||
}
|
||||
elseif name == "door" then
|
||||
return {
|
||||
{material, material},
|
||||
{material, material},
|
||||
{material, material}
|
||||
}
|
||||
elseif name == "trapdoor" then
|
||||
return {
|
||||
{material, material, material},
|
||||
{material, material, material}
|
||||
}
|
||||
elseif name == "bulb_off" then
|
||||
return {
|
||||
{"", material, ""},
|
||||
|
@ -202,3 +191,20 @@ minetest.register_craft({
|
|||
recipe = "mcl_copper:block_raw",
|
||||
cooktime = 90,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_copper:door 3",
|
||||
recipe = {
|
||||
{"mcl_copper:copper_ingot", "mcl_copper:copper_ingot"},
|
||||
{"mcl_copper:copper_ingot", "mcl_copper:copper_ingot"},
|
||||
{"mcl_copper:copper_ingot", "mcl_copper:copper_ingot"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_copper:trapdoor 2",
|
||||
recipe = {
|
||||
{"mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot"},
|
||||
{"mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot"}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue