2013-12-01 03:23:39 +01:00
|
|
|
local lightstone_rules = {
|
|
|
|
{x=0, y=0, z=-1},
|
|
|
|
{x=1, y=0, z=0},
|
|
|
|
{x=-1, y=0, z=0},
|
|
|
|
{x=0, y=0, z=1},
|
|
|
|
{x=1, y=1, z=0},
|
|
|
|
{x=1, y=-1, z=0},
|
|
|
|
{x=-1, y=1, z=0},
|
|
|
|
{x=-1, y=-1, z=0},
|
|
|
|
{x=0, y=1, z=1},
|
|
|
|
{x=0, y=-1, z=1},
|
|
|
|
{x=0, y=1, z=-1},
|
|
|
|
{x=0, y=-1, z=-1},
|
|
|
|
{x=0, y=-1, z=0},
|
|
|
|
}
|
|
|
|
|
2017-02-15 19:52:29 +01:00
|
|
|
function mesecon.lightstone_add(name, base_item, texture_off, texture_on, desc)
|
|
|
|
if not desc then
|
|
|
|
desc = name .. " Lightstone"
|
|
|
|
end
|
2012-12-08 19:02:34 +01:00
|
|
|
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", {
|
2013-12-01 03:23:39 +01:00
|
|
|
tiles = {texture_off},
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2017-10-07 00:44:49 +02:00
|
|
|
groups = {cracky = 2, mesecon_effector_off = 1, mesecon = 2},
|
2017-02-15 19:52:29 +01:00
|
|
|
description = desc,
|
2013-12-01 03:23:39 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
mesecons = {effector = {
|
|
|
|
rules = lightstone_rules,
|
|
|
|
action_on = function (pos, node)
|
|
|
|
minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_on", param2 = node.param2})
|
|
|
|
end,
|
2017-10-07 00:44:49 +02:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
2013-12-01 03:23:39 +01:00
|
|
|
})
|
2012-12-08 19:02:34 +01:00
|
|
|
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", {
|
2017-10-07 00:44:49 +02:00
|
|
|
tiles = {texture_on},
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2017-10-07 00:44:49 +02:00
|
|
|
groups = {cracky = 2, not_in_creative_inventory = 1, mesecon = 2},
|
|
|
|
drop = "mesecons_lightstone:lightstone_" .. name .. "_off",
|
|
|
|
light_source = minetest.LIGHT_MAX - 2,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
mesecons = {effector = {
|
|
|
|
rules = lightstone_rules,
|
|
|
|
action_off = function (pos, node)
|
|
|
|
minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_off", param2 = node.param2})
|
|
|
|
end,
|
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
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
|
|
|
|
2017-02-15 19:52:29 +01:00
|
|
|
mesecon.lightstone_add("red", "dye:red", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png", "Red Lightstone")
|
|
|
|
mesecon.lightstone_add("green", "dye:green", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png", "Green Lightstone")
|
|
|
|
mesecon.lightstone_add("blue", "dye:blue", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png", "Blue Lightstone")
|
|
|
|
mesecon.lightstone_add("gray", "dye:grey", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png", "Grey Lightstone")
|
|
|
|
mesecon.lightstone_add("darkgray", "dye:dark_grey", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png", "Dark Grey Lightstone")
|
|
|
|
mesecon.lightstone_add("yellow", "dye:yellow", "jeija_lightstone_yellow_off.png", "jeija_lightstone_yellow_on.png", "Yellow Lightstone")
|
2017-09-18 00:38:55 +02:00
|
|
|
mesecon.lightstone_add("orange", "dye:orange", "jeija_lightstone_orange_off.png", "jeija_lightstone_orange_on.png", "Orange Lightstone")
|
|
|
|
mesecon.lightstone_add("white", "dye:white", "jeija_lightstone_white_off.png", "jeija_lightstone_white_on.png", "White Lightstone")
|
|
|
|
mesecon.lightstone_add("pink", "dye:pink", "jeija_lightstone_pink_off.png", "jeija_lightstone_pink_on.png", "Pink Lightstone")
|
|
|
|
mesecon.lightstone_add("magenta", "dye:magenta", "jeija_lightstone_magenta_off.png", "jeija_lightstone_magenta_on.png", "Magenta Lightstone")
|
|
|
|
mesecon.lightstone_add("cyan", "dye:cyan", "jeija_lightstone_cyan_off.png", "jeija_lightstone_cyan_on.png", "Cyan Lightstone")
|
|
|
|
mesecon.lightstone_add("violet", "dye:violet", "jeija_lightstone_violet_off.png", "jeija_lightstone_violet_on.png", "Violet Lightstone")
|