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},
|
|
|
|
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
|
|
|
|
description=name.." Lightstone",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 19:02:34 +01:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_on = function (pos, node)
|
2012-12-11 18:15:44 +01:00
|
|
|
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_on")
|
2012-12-08 19:02:34 +01:00
|
|
|
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},
|
|
|
|
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
|
2013-04-28 12:40:08 +02:00
|
|
|
drop = "mesecons_lightstone:lightstone_" .. name .. "_off",
|
2012-12-08 19:02:34 +01:00
|
|
|
light_source = LIGHT_MAX-2,
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 19:02:34 +01:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_off = function (pos, node)
|
2012-12-11 18:15:44 +01:00
|
|
|
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_off")
|
2012-12-08 19:02:34 +01:00
|
|
|
end
|
|
|
|
}}
|
2013-04-28 12:40:08 +02:00
|
|
|
})
|
2012-12-08 19:02:34 +01:00
|
|
|
|
2013-04-28 12:40:08 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "mesecons_lightstone:lightstone_" .. name .. "_off",
|
|
|
|
recipe = {
|
|
|
|
{"",base_item,""},
|
|
|
|
{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
|
|
|
|
2013-04-28 12:40:08 +02:00
|
|
|
mesecon:lightstone_add("red", "default:clay_brick", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")
|
|
|
|
mesecon:lightstone_add("green", "default:cactus", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png")
|
|
|
|
mesecon:lightstone_add("blue", "mesecons_materials:fiber", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
|
|
|
|
mesecon:lightstone_add("gray", "default:cobble", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png")
|
|
|
|
mesecon:lightstone_add("darkgray", "default:gravel", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")
|
2013-06-01 11:17:38 +02:00
|
|
|
mesecon:lightstone_add("yellow", "default:mese_crystal_fragment", "jeija_lightstone_yellow_off.png", "jeija_lightstone_yellow_on.png")
|