mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-26 02:40:29 +01:00
Added item - Control Logic Unit
This commit is contained in:
parent
fdc0562b3a
commit
3b5e6ca05a
@ -18,6 +18,12 @@ minetest.register_craft({
|
|||||||
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'pipeworks:mese_tube_000000',
|
||||||
|
recipe = {
|
||||||
|
{'default:mese_crystal_fragment', 'pipeworks:tube_000000', 'default:mese_crystal_fragment'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craftitem( "technic:diamond_drill_head", {
|
minetest.register_craftitem( "technic:diamond_drill_head", {
|
||||||
description = "Diamond Drill Head",
|
description = "Diamond Drill Head",
|
||||||
@ -49,7 +55,6 @@ minetest.register_node( "technic:diamond_block", {
|
|||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
drop = 'craft "technic:diamond_block" 1',
|
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
@ -155,3 +160,17 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem( "technic:control_logic_unit", {
|
||||||
|
description = "Control Logic Unit",
|
||||||
|
inventory_image = "technic_control_logic_unit.png",
|
||||||
|
on_place_on_ground = minetest.craftitem_place_item,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technic:control_logic_unit',
|
||||||
|
recipe = {
|
||||||
|
{'', 'moreores:gold_ingot', ''},
|
||||||
|
{'moreores:copper_ingot', 'technic:silicon_wafer', 'moreores:copper_ingot'},
|
||||||
|
{'', 'moreores:copper_ingot', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
BIN
technic/textures/technic_control_logic_unit.png
Normal file
BIN
technic/textures/technic_control_logic_unit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
technic/textures/technicx32/technic_control_logic_unit.png
Normal file
BIN
technic/textures/technicx32/technic_control_logic_unit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in New Issue
Block a user