Add ladder

This commit is contained in:
Functioning Member of Society 2022-11-21 22:38:24 +00:00
parent 61cc7536de
commit 1d7bd80feb

View File

@ -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 -- make a tool called flashlight that can be used to light up the world
minetest.register_tool("poop:flashlight", { minetest.register_tool("poop:flashlight", {
description = "Flashlight", description = "Flashlight",