crafting recipes

This commit is contained in:
flux
2019-07-06 07:07:07 +01:00
committed by y
parent da9556bd3a
commit 6062d9b08e
4 changed files with 44 additions and 9 deletions

View File

@@ -31,7 +31,7 @@ minetest.register_node("digistuff:piezo", {
local meta = minetest.get_meta(pos)
if fields.channel then meta:set_string("channel",fields.channel) end
end,
digiline =
digiline =
{
receptor = {},
effector = {
@@ -78,3 +78,11 @@ minetest.register_node("digistuff:piezo", {
},
},
})
minetest.register_craft({
output = "digistuff:piezo",
recipe = {
{"quartz:quartz_crystal_piece","basic_materials:steel_strip"},
{"digilines:wire_std_00000000","mesecons_luacontroller:luacontroller0000"},
},
})