summaryrefslogtreecommitdiff
path: root/jeija/lightstone.lua
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2012-01-09 16:44:34 +0100
committersfan5 <sfan5@live.de>2012-01-09 16:44:34 +0100
commit04847917a8eeb75cdf65336c487077d7167d2ca2 (patch)
treecdde07743ecc00be6379ccfa7fe2cdeb73ed9fc4 /jeija/lightstone.lua
parent2dba4d917fef7c043a92d3076a094534b9dcbc08 (diff)
downloadmesecons-04847917a8eeb75cdf65336c487077d7167d2ca2.tar
mesecons-04847917a8eeb75cdf65336c487077d7167d2ca2.tar.gz
mesecons-04847917a8eeb75cdf65336c487077d7167d2ca2.tar.bz2
mesecons-04847917a8eeb75cdf65336c487077d7167d2ca2.tar.xz
mesecons-04847917a8eeb75cdf65336c487077d7167d2ca2.zip
Added Lightstone API (1 Lightstone already added)
Diffstat (limited to 'jeija/lightstone.lua')
-rw-r--r--jeija/lightstone.lua36
1 files changed, 36 insertions, 0 deletions
diff --git a/jeija/lightstone.lua b/jeija/lightstone.lua
new file mode 100644
index 0000000..6c1deaf
--- /dev/null
+++ b/jeija/lightstone.lua
@@ -0,0 +1,36 @@
+function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
+ minetest.register_node("jeija:lightstone_" .. name .. "_off", {
+ tile_images = {texture_off},
+ inventory_image = minetest.inventorycube(texture_off),
+ material = minetest.digprop_stonelike(0.5),
+ })
+ minetest.register_node("jeija:lightstone_" .. name .. "_on", {
+ tile_images = {texture_on},
+ inventory_image = minetest.inventorycube(texture_on),
+ material = minetest.digprop_stonelike(0.5),
+ dug_item = "node jeija:lightstone_" .. name .. "_off 1",
+ light_source = LIGHT_MAX-2,
+ })
+ assert(loadstring('mesecon:register_on_signal_on(function(pos, node) \n \
+ if node.name == "jeija:lightstone_' .. name .. '_off" then \n \
+ minetest.env:add_node(pos, {name="jeija:lightstone_' .. name .. '_on"}) \n \
+ nodeupdate(pos) \n \
+ end \n \
+ end)'))()
+ assert(loadstring('mesecon:register_on_signal_off(function(pos, node) \n \
+ if node.name == "jeija:lightstone_' .. name .. '_on" then \n \
+ minetest.env:add_node(pos, {name="jeija:lightstone_' .. name .. '_off"}) \n \
+ nodeupdate(pos) \n \
+ end \n \
+ end)'))()
+ minetest.register_craft({
+ output = "node jeija:lightstone_" .. name .. "_off 1",
+ recipe = {
+ {'',base_item,''},
+ {base_item,'node default:torch 1',base_item},
+ {'','node jeija:mesecon_off 1',''},
+ }
+ })
+end
+
+mesecon:lightstone_add("red", "craft default:clay_brick 1", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")