mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 22:02:32 +01:00
added tubes crafting recipes
This commit is contained in:
parent
e83a4c652f
commit
4411ba6e03
@ -10,6 +10,8 @@ minetest.register_craftitem( "technic:doped_silicon_wafer", {
|
|||||||
on_place_on_ground = minetest.craftitem_place_item,
|
on_place_on_ground = minetest.craftitem_place_item,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- tubes crafting recipes
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'pipeworks:tube_000000 9',
|
output = 'pipeworks:tube_000000 9',
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -25,6 +27,36 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
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", {
|
minetest.register_craftitem( "technic:diamond_drill_head", {
|
||||||
description = "Diamond Drill Head",
|
description = "Diamond Drill Head",
|
||||||
inventory_image = "technic_diamond_drill_head.png",
|
inventory_image = "technic_diamond_drill_head.png",
|
||||||
|
Loading…
Reference in New Issue
Block a user