2019-03-16 02:00:48 +01:00
|
|
|
local S = minetest.get_translator("mesecons_lightstone")
|
|
|
|
|
2019-12-14 18:57:17 +01:00
|
|
|
local light = minetest.LIGHT_MAX
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
minetest.register_node("mesecons_lightstone:lightstone_off", {
|
|
|
|
tiles = {"jeija_lightstone_gray_off.png"},
|
2017-02-27 01:52:24 +01:00
|
|
|
groups = {handy=1, mesecon_effector_off = 1, mesecon = 2},
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2019-03-16 02:00:48 +01:00
|
|
|
description= S("Redstone Lamp"),
|
2020-02-19 04:54:17 +01:00
|
|
|
_tt_help = S("Glows when powered by redstone power"),
|
2019-12-14 18:57:17 +01:00
|
|
|
_doc_items_longdesc = S("Redstone lamps are simple redstone components which glow brightly (light level @1) when they receive redstone power.", light),
|
2017-07-24 17:14:55 +02:00
|
|
|
sounds = mcl_sounds.node_sound_glass_defaults(),
|
2015-06-29 19:55:56 +02:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_on = function (pos, node)
|
2017-07-31 00:12:21 +02:00
|
|
|
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_on", param2 = node.param2})
|
2017-09-14 02:20:47 +02:00
|
|
|
end,
|
|
|
|
rules = mesecon.rules.alldirs,
|
2017-02-22 16:22:28 +01:00
|
|
|
}},
|
2020-04-17 21:40:13 +02:00
|
|
|
_mcl_blast_resistance = 0.3,
|
2017-02-27 01:52:24 +01:00
|
|
|
_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"},
|
2018-01-09 15:19:10 +01:00
|
|
|
groups = {handy=1, not_in_creative_inventory=1, mesecon = 2, opaque = 1},
|
2015-06-29 19:55:56 +02:00
|
|
|
drop = "node mesecons_lightstone:lightstone_off",
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2017-06-13 14:46:21 +02:00
|
|
|
paramtype = "light",
|
2019-12-14 18:57:17 +01:00
|
|
|
light_source = light,
|
2017-07-24 17:14:55 +02:00
|
|
|
sounds = mcl_sounds.node_sound_glass_defaults(),
|
2015-06-29 19:55:56 +02:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_off = function (pos, node)
|
2017-07-31 00:12:21 +02:00
|
|
|
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_off", param2 = node.param2})
|
2017-09-14 02:20:47 +02:00
|
|
|
end,
|
|
|
|
rules = mesecon.rules.alldirs,
|
2017-02-22 16:22:28 +01:00
|
|
|
}},
|
2020-04-17 21:40:13 +02:00
|
|
|
_mcl_blast_resistance = 0.3,
|
2017-02-27 01:52:24 +01:00
|
|
|
_mcl_hardness = 0.3,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-03-21 04:27:50 +01:00
|
|
|
output = "mesecons_lightstone:lightstone_off",
|
2015-06-29 19:55:56 +02:00
|
|
|
recipe = {
|
2017-01-09 18:45:34 +01:00
|
|
|
{'',"mesecons:redstone",''},
|
2017-02-08 18:54:56 +01:00
|
|
|
{"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
|
|
|
}
|
|
|
|
})
|
2017-03-21 04:27:50 +01:00
|
|
|
|
|
|
|
-- Add entry alias for the Help
|
|
|
|
if minetest.get_modpath("doc") then
|
|
|
|
doc.add_entry_alias("nodes", "mesecons_lightstone:lightstone_off", "nodes", "mesecons_lightstone:lightstone_on")
|
|
|
|
end
|
|
|
|
|