This commit is contained in:
{{QWERTYKBGUI}} 2022-11-22 00:14:06 +01:00
commit 05434506e4
3 changed files with 37 additions and 2 deletions

View File

@ -201,6 +201,26 @@ minetest.register_node("poop:box", {
}
})
minetest.register_node("poop:ladder_steel", {
description = "Ladder",
drawtype = "signlike",
tiles = {"ladder.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",
@ -250,8 +270,15 @@ minetest.register_node("poop:Poop", {
minetest.register_node("poop:tv", {
description = "CRT TV",
tiles = {"PC2.png", "PC2.png","PC2.png","PC.png","PC2.png","PC2.png"},
tiles = {
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC.png"
},
paramtype2 = "facedir",
drop = 'poop:Poop', groups = {cracky=3, stone=1},
})
@ -311,6 +338,14 @@ minetest.register_node("poop:Poop2", {
drop = 'poop:Poop', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:glowing_block", {
description = "Glowing Block",
tiles = {"glowing_block.png"},
drop = 'poop:glowing_block', groups = {cracky=3, stone=1},
light_source = 14
})
minetest.register_node("poop:flux_capacitor", {
description = "Flux Capacitor from Back to the Future",
tiles = {"fluxcap2.png", "fluxcap2.png","fluxcap2.png","fluxcap.png","fluxcap2.png","fluxcap2.png"},

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 783 B