79 lines
2.6 KiB
Lua
79 lines
2.6 KiB
Lua
|
|
||
|
for _,protected in pairs({true, false}) do
|
||
|
|
||
|
local node_name_suffix = protected and "_protected" or ""
|
||
|
local texture_overlay = protected and "^telemosaic_beacon_protected_overlay.png" or ""
|
||
|
local description_prefix = protected and "Protected " or ""
|
||
|
|
||
|
minetest.register_node("telemosaic:beacon_off"..node_name_suffix, {
|
||
|
description = description_prefix.."Telemosaic Beacon",
|
||
|
tiles = {
|
||
|
"telemosaic_beacon_off.png"..texture_overlay,
|
||
|
"telemosaic_beacon_side.png",
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
groups = {cracky = 2, telemosaic = 1, telemosaic_off = 1},
|
||
|
on_rightclick = telemosaic.rightclick,
|
||
|
digilines = telemosaic.digilines,
|
||
|
})
|
||
|
|
||
|
minetest.register_node("telemosaic:beacon"..node_name_suffix, {
|
||
|
description = description_prefix.."Telemosaic Beacon Active (you hacker you!)",
|
||
|
tiles = {
|
||
|
"telemosaic_beacon_top.png"..texture_overlay,
|
||
|
"telemosaic_beacon_side.png",
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
groups = {cracky = 2, not_in_creative_inventory = 1, telemosaic = 1, telemosaic_active = 1},
|
||
|
drop = "telemosaic:beacon_off"..node_name_suffix,
|
||
|
on_rightclick = telemosaic.rightclick,
|
||
|
digilines = telemosaic.digilines,
|
||
|
})
|
||
|
|
||
|
minetest.register_node("telemosaic:beacon_err"..node_name_suffix, {
|
||
|
description = description_prefix.."Telemosaic Beacon Error (you hacker you!)",
|
||
|
tiles = {
|
||
|
"telemosaic_beacon_err.png"..texture_overlay,
|
||
|
"telemosaic_beacon_side.png",
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
groups = {cracky = 2, not_in_creative_inventory = 1, telemosaic = 1, telemosaic_error = 1},
|
||
|
drop = "telemosaic:beacon_off"..node_name_suffix,
|
||
|
on_rightclick = telemosaic.rightclick,
|
||
|
digilines = telemosaic.digilines,
|
||
|
})
|
||
|
|
||
|
minetest.register_node("telemosaic:beacon_disabled"..node_name_suffix, {
|
||
|
description = description_prefix.."Telemosaic Beacon Disabled (you hacker you!)",
|
||
|
tiles = {
|
||
|
"telemosaic_beacon_disabled.png"..texture_overlay,
|
||
|
"telemosaic_beacon_side.png",
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
groups = {cracky = 2, not_in_creative_inventory = 1, telemosaic = 1, telemosaic_disabled = 1},
|
||
|
drop = "telemosaic:beacon_off"..node_name_suffix,
|
||
|
on_rightclick = telemosaic.rightclick,
|
||
|
digilines = telemosaic.digilines,
|
||
|
})
|
||
|
end
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = "telemosaic:beacon_off",
|
||
|
recipe = {
|
||
|
{"default:diamond", "doors:door_wood", "default:diamond"},
|
||
|
{"default:obsidian","default:obsidian","default:obsidian"}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = "telemosaic:beacon_off_protected",
|
||
|
type = "shapeless",
|
||
|
recipe = {"telemosaic:beacon_off", "default:steel_ingot"}
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = "telemosaic:beacon_off",
|
||
|
type = "shapeless",
|
||
|
recipe = {"telemosaic:beacon_off_protected"}
|
||
|
})
|