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

55 lines
1.8 KiB
Lua
Raw Normal View History

local S = minetest.get_translator(minetest.get_current_modname())
2019-03-16 02:00:48 +01:00
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"},
groups = {handy=1, mesecon_effector_off = 1, mesecon = 2},
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)
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_on", param2 = node.param2})
end,
rules = mesecon.rules.alldirs,
2017-02-22 16:22:28 +01:00
}},
_mcl_blast_resistance = 0.3,
_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",
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)
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_off", param2 = node.param2})
end,
rules = mesecon.rules.alldirs,
2017-02-22 16:22:28 +01:00
}},
_mcl_blast_resistance = 0.3,
_mcl_hardness = 0.3,
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
output = "mesecons_lightstone:lightstone_off",
2015-06-29 19:55:56 +02:00
recipe = {
{"","mesecons:redstone",""},
{"mesecons:redstone","mcl_nether:glowstone","mesecons:redstone"},
{"","mesecons:redstone",""},
2015-06-29 19:55:56 +02: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