14 lines
516 B
Lua
14 lines
516 B
Lua
minetest.register_node("vlbridger:scaffolding", {
|
|
description = "Scaffolding",
|
|
drawtype = "glasslike_framed_optional",
|
|
tiles = {"bridges_scaffolding.png", "bridges_scaffolding_detail.png"},
|
|
paramtype = "light",
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
climbable = true,
|
|
groups = {cracky = 3, oddly_breakable_by_hand = 3, dig_immediate = 3},
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
})
|
|
dofile(core.get_modpath("vlbridger") .. "/nodes.lua")
|
|
dofile(core.get_modpath("vlbridger") .. "/crafts.lua")
|
|
|