Added item - Control Logic Unit
authorRealBadAngel <mk@realbadangel.pl>
Sat, 2 Feb 2013 20:26:34 +0000 (21:26 +0100)
committerRealBadAngel <mk@realbadangel.pl>
Sat, 2 Feb 2013 20:26:34 +0000 (21:26 +0100)
technic/items.lua
technic/textures/technic_control_logic_unit.png [new file with mode: 0644]
technic/textures/technicx32/technic_control_logic_unit.png [new file with mode: 0644]

index c2b596e22d2f6e64862c455f39ae8d3018e9785b..3fa1fc377662d241f0ea8086392a455f28918657 100644 (file)
@@ -18,6 +18,12 @@ minetest.register_craft({
                {'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", {
        description = "Diamond Drill Head",
@@ -49,7 +55,6 @@ minetest.register_node( "technic:diamond_block", {
        is_ground_content = true,
        groups = {cracky=3},
        sounds = default.node_sound_stone_defaults(),
-       drop = 'craft "technic:diamond_block" 1',
 }) 
 
 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', ''},
+       }
+})
diff --git a/technic/textures/technic_control_logic_unit.png b/technic/textures/technic_control_logic_unit.png
new file mode 100644 (file)
index 0000000..56caaf9
Binary files /dev/null and b/technic/textures/technic_control_logic_unit.png differ
diff --git a/technic/textures/technicx32/technic_control_logic_unit.png b/technic/textures/technicx32/technic_control_logic_unit.png
new file mode 100644 (file)
index 0000000..56caaf9
Binary files /dev/null and b/technic/textures/technicx32/technic_control_logic_unit.png differ