diff options
| author | Jeija <norrepli@gmail.com> | 2012-03-05 19:21:26 +0100 | 
|---|---|---|
| committer | Jeija <norrepli@gmail.com> | 2012-03-05 19:21:26 +0100 | 
| commit | 36ae0cc1a54538742f1d1f3709bb2c1840a33539 (patch) | |
| tree | 2865e2f7240108c0b82e45ef7c2f8e4a833929ba /mesecons_lightstone | |
| parent | f8ac52c35073875e2ba1872532577c27f9677c3d (diff) | |
| download | mesecons-36ae0cc1a54538742f1d1f3709bb2c1840a33539.tar mesecons-36ae0cc1a54538742f1d1f3709bb2c1840a33539.tar.gz mesecons-36ae0cc1a54538742f1d1f3709bb2c1840a33539.tar.bz2 mesecons-36ae0cc1a54538742f1d1f3709bb2c1840a33539.tar.xz mesecons-36ae0cc1a54538742f1d1f3709bb2c1840a33539.zip  | |
Upload after major code reorganization - Version 0.6 DEV - Split mesecons mod into several modules - [BUGGY?]
Diffstat (limited to 'mesecons_lightstone')
| -rw-r--r-- | mesecons_lightstone/depends.txt | 1 | ||||
| -rw-r--r-- | mesecons_lightstone/init.lua | 41 | 
2 files changed, 42 insertions, 0 deletions
diff --git a/mesecons_lightstone/depends.txt b/mesecons_lightstone/depends.txt new file mode 100644 index 0000000..acaa924 --- /dev/null +++ b/mesecons_lightstone/depends.txt @@ -0,0 +1 @@ +mesecons diff --git a/mesecons_lightstone/init.lua b/mesecons_lightstone/init.lua new file mode 100644 index 0000000..fda5e39 --- /dev/null +++ b/mesecons_lightstone/init.lua @@ -0,0 +1,41 @@ +function mesecon:lightstone_add(name, base_item, texture_off, texture_on) +    minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", { +	    tile_images = {texture_off}, +	    inventory_image = minetest.inventorycube(texture_off), +	    material = minetest.digprop_stonelike(0.5), +    	    description=name.." Lightstone", +    }) +    minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", { +	    tile_images = {texture_on}, +	    inventory_image = minetest.inventorycube(texture_on), +	    material = minetest.digprop_stonelike(0.5), +	    drop = "node mesecons_lightstone:lightstone_" .. name .. "_off 1", +	    light_source = LIGHT_MAX-2, +    	    description=name.." Lightstone", +    }) +    assert(loadstring('mesecon:register_on_signal_on(function(pos, node) \n \ +                    if node.name == "mesecons_lightstone:lightstone_' .. name .. '_off" then \n \ +                        minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_' .. name .. '_on"}) \n \ +                        nodeupdate(pos) \n \ +                    end \n \ +                end)'))() +    assert(loadstring('mesecon:register_on_signal_off(function(pos, node) \n \ +                    if node.name == "mesecons_lightstone:lightstone_' .. name .. '_on" then \n \ +                        minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_' .. name .. '_off"}) \n \ +                        nodeupdate(pos) \n \ +                    end \n \ +                end)'))() +    minetest.register_craft({ +	    output = "node mesecons_lightstone:lightstone_" .. name .. "_off 1", +	    recipe = { +		    {'',base_item,''}, +		    {base_item,'node default:torch 1',base_item}, +		    {'','node mesecons:mesecon_off 1',''}, +	    } +    }) +end + +mesecon:lightstone_add("red", "craft default:clay_brick 1", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png") +mesecon:lightstone_add("green", "node default:cactus 1", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png") +mesecon:lightstone_add("gray", "node default:cobble 1", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png") +mesecon:lightstone_add("darkgray", "node default:gravel 1", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")  | 
