VoxeLibre/mods/redstone/mesecons_lightstone/init.lua

36 lines
1.2 KiB
Lua
Raw Normal View History

2015-06-29 19:55:56 +02:00
minetest.register_node("mesecons_lightstone:lightstone_off", {
tiles = {"jeija_lightstone_gray_off.png"},
inventory_image = minetest.inventorycube("jeija_lightstone_gray_off.png"),
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
description= "Redstone Lamp",
sounds = default.node_sound_stone_defaults(),
mesecons = {effector = {
action_on = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_on")
end
}}
})
minetest.register_node("mesecons_lightstone:lightstone_on", {
tiles = {"jeija_lightstone_gray_on.png"},
inventory_image = minetest.inventorycube("jeija_lightstone_gray_off.png"),
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
drop = "node mesecons_lightstone:lightstone_off",
2017-01-04 10:11:35 +01:00
light_source = 14,
2015-06-29 19:55:56 +02:00
sounds = default.node_sound_stone_defaults(),
mesecons = {effector = {
action_off = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_off")
end
}}
})
minetest.register_craft({
output = "node mesecons_lightstone:lightstone_off",
recipe = {
2017-01-04 05:04:13 +01:00
{'',"mesecons:redstone_dust",''},
{"mesecons:redstone_dust",'default:glowstone',"mesecons:redstone_dust"},
{'','mesecons:redstone_dust',''},
2015-06-29 19:55:56 +02:00
}
})