mirror of
https://github.com/SmallJoker/boost_cart.git
synced 2024-11-13 06:10:20 +01:00
16 lines
557 B
Lua
16 lines
557 B
Lua
|
minetest.register_node(":default:rail", {
|
||
|
description = "Rail",
|
||
|
drawtype = "raillike",
|
||
|
tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"},
|
||
|
inventory_image = "default_rail.png",
|
||
|
wield_image = "default_rail.png",
|
||
|
paramtype = "light",
|
||
|
sunlight_propagates = true,
|
||
|
is_ground_content = true,
|
||
|
walkable = false,
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
||
|
},
|
||
|
groups = {dig_immediate = 2, attached_node = 1, rail = 1, connect_to_raillike = 1},
|
||
|
})
|