VoxeLibre/mods/ITEMS/REDSTONE/mesecons_lightstone/init.lua

44 lines
1.5 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 = {handy=1, mesecon_effector_off = 1, mesecon = 2},
is_ground_content = false,
2015-06-29 19:55:56 +02:00
description= "Redstone Lamp",
_doc_items_longdesc = "Redstone lamps are simple redstone components which glow brightly (light level 14) when they receive redstone power.",
sounds = mcl_sounds.node_sound_stone_defaults(),
2015-06-29 19:55:56 +02:00
mesecons = {effector = {
action_on = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_on")
end
2017-02-22 16:22:28 +01:00
}},
_mcl_blast_resistance = 1.5,
_mcl_hardness = 0.3,
2015-06-29 19:55:56 +02:00
})
minetest.register_node("mesecons_lightstone:lightstone_on", {
tiles = {"jeija_lightstone_gray_on.png"},
inventory_image = minetest.inventorycube("jeija_lightstone_gray_off.png"),
groups = {handy=1, not_in_creative_inventory=1, mesecon = 2},
2015-06-29 19:55:56 +02:00
drop = "node mesecons_lightstone:lightstone_off",
is_ground_content = false,
2017-02-01 22:12:08 +01:00
-- Real light level: 15 (Minetest caps at 14)
2017-01-04 10:11:35 +01:00
light_source = 14,
sounds = mcl_sounds.node_sound_stone_defaults(),
2015-06-29 19:55:56 +02:00
mesecons = {effector = {
action_off = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_off")
end
2017-02-22 16:22:28 +01:00
}},
_mcl_blast_resistance = 1.5,
_mcl_hardness = 0.3,
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
output = "node mesecons_lightstone:lightstone_off",
recipe = {
2017-01-09 18:45:34 +01:00
{'',"mesecons:redstone",''},
{"mesecons:redstone",'mcl_nether:glowstone',"mesecons:redstone"},
2017-01-09 18:45:34 +01:00
{'','mesecons:redstone',''},
2015-06-29 19:55:56 +02:00
}
})