From 4503c4562bf831185834abbc84bab7c85056fe2e Mon Sep 17 00:00:00 2001 From: Maciej Kasatkin Date: Mon, 24 Sep 2012 01:42:49 +0200 Subject: fixes to nodebreaker, change textures --- node_breaker.lua | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'node_breaker.lua') diff --git a/node_breaker.lua b/node_breaker.lua index fc4d49f..3a7f53b 100644 --- a/node_breaker.lua +++ b/node_breaker.lua @@ -1,6 +1,16 @@ +minetest.register_craft({ + output = 'technic:nodebreaker_off 1', + recipe = { + {'default:wood', 'default:pick_mese','default:wood'}, + {'default:stone', 'mesecons:piston','default:stone'}, + {'default:stone', 'mesecons:mesecon','default:stone'}, + + } +}) + minetest.register_node("technic:nodebreaker_off", { description = "Node Breaker", - tile_images = {"technic_nodebreaker_top.png","technic_nodebreaker_bottom.png","technic_nodebreaker_side2.png","technic_nodebreaker_side1.png", + tile_images = {"technic_nodebreaker_top_off.png","technic_nodebreaker_bottom_off.png","technic_nodebreaker_side2_off.png","technic_nodebreaker_side1_off.png", "technic_nodebreaker_back.png","technic_nodebreaker_front_off.png"}, is_ground_content = true, paramtype2 = "facedir", @@ -14,12 +24,12 @@ minetest.register_node("technic:nodebreaker_off", { minetest.register_node("technic:nodebreaker_on", { description = "Node Breaker", - tile_images = {"technic_nodebreaker_top.png","technic_nodebreaker_bottom.png","technic_nodebreaker_side2.png","technic_nodebreaker_side1.png", + tile_images = {"technic_nodebreaker_top_on.png","technic_nodebreaker_bottom_on.png","technic_nodebreaker_side2_on.png","technic_nodebreaker_side1_on.png", "technic_nodebreaker_back.png","technic_nodebreaker_front_on.png"}, is_ground_content = true, paramtype2 = "facedir", tubelike=1, - groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1,not_in_creative_inventory=1}, sounds = default.node_sound_stone_defaults(), }) -- cgit v1.2.3