Add ladder
This commit is contained in:
parent
61cc7536de
commit
1d7bd80feb
@ -193,6 +193,28 @@ minetest.register_node("poop:box", {
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("poop:ladder_steel", {
|
||||
description = "Ladder",
|
||||
drawtype = "signlike",
|
||||
tiles = {"Poop.png"},
|
||||
tiles = {"Poop.png"},
|
||||
tiles = {"Poop.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
climbable = true,
|
||||
is_ground_content = false,
|
||||
selection_box = {
|
||||
type = "wallmounted",
|
||||
--wall_top = = <default>
|
||||
--wall_bottom = = <default>
|
||||
--wall_side = = <default>
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
})
|
||||
|
||||
|
||||
-- make a tool called flashlight that can be used to light up the world
|
||||
minetest.register_tool("poop:flashlight", {
|
||||
description = "Flashlight",
|
||||
|
Loading…
Reference in New Issue
Block a user