roads/streetlamps/init.lua

108 lines
3.1 KiB
Lua
Raw Normal View History

2013-08-16 19:39:31 +02:00
--[[
StreetsMod: Streetlamps
]]
2013-10-14 12:23:07 +02:00
minetest.register_node(":streets:streetlamp_basic_controller",{
description = "Trafficlight",
tiles = {"streets_lampcontroller_top.png","streets_lampcontroller_bottom.png","streets_lampcontroller_sides.png"},
groups = {cracky = 1, not_in_creative_inventory = 1},
2013-08-16 19:39:31 +02:00
drawtype = "nodebox",
2013-10-14 12:23:07 +02:00
paramtype = "light",
2013-08-16 19:39:31 +02:00
node_box = {
type = "fixed",
fixed = {
2013-10-14 12:23:07 +02:00
{-0.5,-0.5,-0.5,0.5,0.5,0.5},
{-0.05,0.5,-0.05,0.05,1.6,0.05}
2013-08-16 19:39:31 +02:00
}
},
2013-10-14 12:23:07 +02:00
selection_box = {
2013-10-13 12:42:17 +02:00
type = "fixed",
fixed = {
2013-10-14 12:23:07 +02:00
{-0.5,-0.5,-0.5,0.5,0.5,0.5},
{-0.3,1.5,-0.3,0.3,4.5,0.3}
2013-10-13 12:42:17 +02:00
}
},
2013-08-16 19:39:31 +02:00
mesecons = {
effector = {
action_on = function(pos,node)
2013-10-14 12:23:07 +02:00
minetest.set_node({x = pos.x, y = pos.y + 4, z = pos.z},{name = "streets:streetlamp_basic_top_on"})
2013-08-16 19:39:31 +02:00
end,
action_off = function(pos,node)
2013-10-14 12:23:07 +02:00
minetest.set_node({x = pos.x, y = pos.y + 4, z = pos.z},{name = "streets:streetlamp_basic_top_off"})
2013-08-16 19:39:31 +02:00
end
}
2013-10-14 12:23:07 +02:00
},
after_dig_node = function(pos)
minetest.remove_node({x = pos.x, y = pos.y + 2, z = pos.z})
minetest.remove_node({x = pos.x, y = pos.y + 3, z = pos.z})
minetest.remove_node({x = pos.x, y = pos.y + 4, z = pos.z})
minetest.chat_send_all("!!!")
end
})
minetest.register_node(":streets:streetlamp_basic_bottom",{
2013-10-19 14:49:06 +02:00
drop = "",
2013-10-14 12:23:07 +02:00
description = "Street lamp",
tiles = {"streets_lamps_basic_bottom.png"},
groups = {cracky = 1},
paramtype = "light",
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.15,-0.5,-0.15,0.15,0.4,0.15},
{-0.1,0.4,-0.1,0.1,0.5,0.1}
}
},
pointable = false,
after_place_node = function(pos,placer,itemstack)
minetest.set_node({x = pos.x, y = pos.y + 1, z = pos.z},{name = "streets:streetlamp_basic_middle"})
minetest.set_node({x = pos.x, y = pos.y + 2, z = pos.z},{name = "streets:streetlamp_basic_top_off"})
minetest.set_node({x = pos.x, y = pos.y - 2, z = pos.z},{name = "streets:streetlamp_basic_controller"})
end
2013-08-16 19:39:31 +02:00
})
minetest.register_node(":streets:streetlamp_basic_middle",{
2013-10-19 14:49:06 +02:00
drop = "",
2013-08-16 19:39:31 +02:00
description = "U cheater U",
groups = {cracky = 1, not_in_creative_inventory = 1},
tiles = {"streets_lamps_basic_middle.png"},
2013-08-16 19:39:31 +02:00
paramtype = "light",
drawtype = "nodebox",
pointable = false,
node_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.1,0.1,0.5,0.1}
}
}
})
minetest.register_node(":streets:streetlamp_basic_top_off",{
2013-10-19 14:49:06 +02:00
drop = "",
2013-08-16 19:39:31 +02:00
description = "U cheater U",
groups = {cracky = 1, not_in_creative_inventory = 1},
paramtype = "light",
drawtype = "nodebox",
pointable = false,
node_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.1,0.1,-0.4,0.1},
{-0.3,-0.4,-0.3,0.3,0.5,0.3}
}
}
})
minetest.register_node(":streets:streetlamp_basic_top_on",{
2013-10-19 14:49:06 +02:00
drop = "",
2013-08-16 19:39:31 +02:00
description = "U cheater U",
groups = {cracky = 1, not_in_creative_inventory = 1},
2013-10-13 12:42:17 +02:00
tiles = {"streets_lamps_basic_top_top.png","streets_lamps_basic_top_top.png","streets_lamps_basic_top.png","streets_lamps_basic_top.png","streets_lamps_basic_top.png","streets_lamps_basic_top.png"},
2013-08-16 19:39:31 +02:00
paramtype = "light",
drawtype = "nodebox",
pointable = false,
light_source = 10,
node_box = {
type = "fixed",
fixed = {
{-0.1,-0.5,-0.1,0.1,-0.4,0.1},
{-0.3,-0.4,-0.3,0.3,0.5,0.3}
}
}
})