Merge branch 'master' of http://git.cubesoftware.xyz:20524/kacperks/pooping-simulator
This commit is contained in:
commit
05434506e4
@ -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"},
|
||||
|
BIN
mods/poop/textures/glowing_block.png
Normal file
BIN
mods/poop/textures/glowing_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 784 B |
BIN
mods/poop/textures/ladder.png
Normal file
BIN
mods/poop/textures/ladder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 783 B |
Loading…
x
Reference in New Issue
Block a user