mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-06 00:01:05 +01:00
Stonecutter recipes
This commit is contained in:
parent
d6b329d657
commit
6a1ef29e2b
1 changed files with 12 additions and 0 deletions
|
@ -25,6 +25,8 @@ for i = 1, #mcl_hollow_logs.logs do
|
|||
{"", material, ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe(material, "mcl_hollow_logs:"..name.."_hollow", 1)
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_hollow_logs:stripped_"..name.."_hollow 4",
|
||||
|
@ -34,6 +36,8 @@ for i = 1, #mcl_hollow_logs.logs do
|
|||
{"", stripped_material, ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe(stripped_material, "mcl_hollow_logs:stripped_"..name.."_hollow", 1)
|
||||
end
|
||||
|
||||
if minetest.get_modpath("mcl_crimson") then
|
||||
|
@ -45,6 +49,8 @@ if minetest.get_modpath("mcl_crimson") then
|
|||
{"", "mcl_crimson:crimson_hyphae", ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe("mcl_crimson:crimson_hyphae", "mcl_crimson:crimson_hyphae_hollow", 1)
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_crimson:stripped_crimson_hyphae_hollow 4",
|
||||
|
@ -54,6 +60,8 @@ if minetest.get_modpath("mcl_crimson") then
|
|||
{"", "mcl_crimson:stripped_crimson_hyphae", ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe("mcl_crimson:stripped_crismon_hyphae", "mcl_crimson:stripped_crimson_hyphae_hollow", 1)
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_crimson:warped_hyphae_hollow 4",
|
||||
|
@ -63,6 +71,8 @@ if minetest.get_modpath("mcl_crimson") then
|
|||
{"", "mcl_crimson:warped_hyphae", ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe("mcl_crimson:warped_hyphae", "mcl_crimson:warped_hyphae_hollow", 1)
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_crimson:stripped_warped_hyphae_hollow 4",
|
||||
|
@ -72,6 +82,8 @@ if minetest.get_modpath("mcl_crimson") then
|
|||
{"", "mcl_crimson:stripped_warped_hyphae", ""}
|
||||
}
|
||||
})
|
||||
|
||||
mcl_stonecutter.register_recipe("mcl_crimson:stripped_warped_hyphae", "mcl_crimson:stripped_warped_hyphae_hollow", 1)
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Reference in a new issue