2012-09-11 13:57:16 +02:00
|
|
|
minetest.register_craftitem( "technic:silicon_wafer", {
|
|
|
|
description = "Silicon Wafer",
|
|
|
|
inventory_image = "technic_silicon_wafer.png",
|
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem( "technic:doped_silicon_wafer", {
|
|
|
|
description = "Doped Silicon Wafer",
|
|
|
|
inventory_image = "technic_doped_silicon_wafer.png",
|
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2012-09-11 14:39:10 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'pipeworks:tube_000000 8',
|
|
|
|
recipe = {
|
|
|
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
|
|
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
|
|
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
|
|
|
}
|
2012-09-11 13:57:16 +02:00
|
|
|
})
|