remove crafts

This commit is contained in:
Bruno Rybársky 2022-08-13 09:01:33 +02:00
parent 2aa9e37e12
commit 524ce1cf77

@ -124,7 +124,7 @@ for _,tube in ipairs(nixie_types) do
"nixie_tube_anode.png", "nixie_tube_anode.png",
"nixie_tube_glass.png", "nixie_tube_glass.png",
}, },
use_texture_alpha = true, use_texture_alpha = "blend",
groups = groups, groups = groups,
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
@ -159,7 +159,7 @@ for _,tube in ipairs(nixie_types) do
"nixie_tube_anode.png", "nixie_tube_anode.png",
"nixie_tube_glass.png", "nixie_tube_glass.png",
}, },
use_texture_alpha = true, use_texture_alpha = "blend",
groups = groups, groups = groups,
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
@ -196,7 +196,7 @@ for _,tube in ipairs(nixie_types) do
cathode2, cathode2,
"nixie_tube_glass.png", "nixie_tube_glass.png",
}, },
use_texture_alpha = true, use_texture_alpha = "blend",
groups = groups, groups = groups,
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
@ -465,7 +465,7 @@ for i in ipairs(alnum_chars) do
"nixie_tube_anode.png", "nixie_tube_anode.png",
"nixie_tube_glass.png", "nixie_tube_glass.png",
}, },
use_texture_alpha = true, use_texture_alpha = "blend",
groups = groups, groups = groups,
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
@ -489,34 +489,3 @@ for i in ipairs(alnum_chars) do
drop = "nixie_tubes:alnum_32" drop = "nixie_tubes:alnum_32"
}) })
end end
-- crafts
minetest.register_craft({
output = "nixie_tubes:tube_off 4",
recipe = {
{ "", "default:glass", "" },
{ "default:glass", "default:sign_wall", "default:glass" },
{ "default:glass", "default:mese_crystal_fragment", "default:glass" }
},
})
minetest.register_craft({
output = "nixie_tubes:numitron_off 4",
recipe = {
{ "", "default:glass", "" },
{ "default:glass", "default:copper_ingot", "default:glass" },
{ "default:glass", "default:mese_crystal_fragment", "default:glass" }
},
})
minetest.register_craft({
output = "nixie_tubes:alnum_32 4",
recipe = {
{ "", "default:glass", "" },
{ "default:glass", "default:sign_wall", "default:glass" },
{ "default:glass", "default:mese_crystal", "default:glass" }
},
})