| | |
| | | on_place_on_ground = minetest.craftitem_place_item, |
| | | }) |
| | | |
| | | -- tubes crafting recipes |
| | | |
| | | minetest.register_craft({ |
| | | output = 'pipeworks:tube_000000 9', |
| | | recipe = { |
| | |
| | | } |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | | output = 'pipeworks:accelerator_tube_000000', |
| | | recipe = { |
| | | {'technic:copper_coil', 'pipeworks:tube_000000', 'technic:copper_coil'}, |
| | | } |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | | output = 'pipeworks:detector_tube_off_000000', |
| | | recipe = { |
| | | {'mesecons:mesecon', 'pipeworks:tube_000000', 'mesecons:mesecon'}, |
| | | } |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | | output = 'pipeworks:sand_tube_000000', |
| | | recipe = { |
| | | {'default:sand', 'pipeworks:tube_000000', 'default:sand'}, |
| | | } |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | | output = 'pipeworks:teleport_tube_000000', |
| | | recipe = { |
| | | {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'}, |
| | | {'pipeworks:tube_000000', 'technic:control_logic_unit', 'pipeworks:tube_000000'}, |
| | | {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'}, |
| | | } |
| | | }) |
| | | |
| | | minetest.register_craftitem( "technic:diamond_drill_head", { |
| | | description = "Diamond Drill Head", |
| | | inventory_image = "technic_diamond_drill_head.png", |