Street/init.lua

55 lines
1.3 KiB
Lua

minetest.register_craft({
output = 'street:lamp 4',
recipe = {
{'default:coal_lump'},
{'default:torch'},
}
})
minetest.register_node("street:lamp", {
description = "Lamp",
drawtype = "plantlike",
tile_images = {"lamp.png"},
inventory_image = "lamp.png",
wield_image = "lamp.png",
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
walkable = true,
light_source = LIGHT_MAX-1,
selection_box = {
type = "wallmounted",
wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1},
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1},
},
material = minetest.digprop_constanttime(0.0),
legacy_wallmounted = true,
})
minetest.register_craft({
output = 'street:lamppost 12',
recipe = {
{'default:coal_lump'},
{'default:fence_wood'},
}
})
minetest.register_node("street:lamppost", {
description = "Lamppost",
drawtype = "fencelike",
tile_images = {"pfosten_1.png"},
inventory_image = "pfosten_1.png",
wield_image = "pfosten_1.png",
paramtype = "light",
is_ground_content = true,
sunlight_propagates = true,
walkable = false,
light_source = LIGHT_MAX-1,
selection_box = {
type = "fixed",
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
},
material = minetest.digprop_woodlike(0.75),
})