2012-03-05 19:21:26 +01:00
|
|
|
function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
|
2012-12-08 19:02:34 +01:00
|
|
|
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", {
|
|
|
|
tiles = {texture_off},
|
|
|
|
inventory_image = minetest.inventorycube(texture_off),
|
|
|
|
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
|
|
|
|
description=name.." Lightstone",
|
|
|
|
mesecons = {effector = {
|
|
|
|
action_on = function (pos, node)
|
|
|
|
minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_" .. name .. "_on"})
|
|
|
|
mesecon:receptor_on(pos)
|
|
|
|
end
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
2012-12-08 19:02:34 +01:00
|
|
|
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", {
|
|
|
|
tiles = {texture_on},
|
|
|
|
inventory_image = minetest.inventorycube(texture_on),
|
|
|
|
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
|
|
|
|
drop = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
|
|
|
|
light_source = LIGHT_MAX-2,
|
|
|
|
mesecons = {effector = {
|
|
|
|
action_off = function (pos, node)
|
|
|
|
minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_" .. name .. "_off"})
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
2012-12-08 19:02:34 +01:00
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
|
|
|
|
recipe = {
|
|
|
|
{'',base_item,''},
|
2012-08-12 02:53:47 +02:00
|
|
|
{base_item,'default:torch',base_item},
|
|
|
|
{'','group:mesecon_conductor_craftable',''},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2012-03-25 08:15:25 +02:00
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
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")
|
2012-08-25 10:33:48 +02:00
|
|
|
mesecon:lightstone_add("blue", "node mesecons_materials:fiber 1", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
|
2012-03-05 19:21:26 +01:00
|
|
|
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")
|