forked from nalc/homedecor_modpack
add a second type of wrought iron fence
to go with the door that just went in
This commit is contained in:
parent
15a11737e5
commit
85e0d13957
@ -415,5 +415,28 @@ minetest.register_node("homedecor:fence_chainlink_corner", {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("homedecor:fence_wrought_iron_2", {
|
||||||
|
drawtype = "nodebox",
|
||||||
|
description = S("Wrought Iron fence (type 2)"),
|
||||||
|
tiles = {
|
||||||
|
"homedecor_fence_wrought_iron_2_tb.png",
|
||||||
|
"homedecor_fence_wrought_iron_2_tb.png",
|
||||||
|
"homedecor_fence_wrought_iron_2_sides.png",
|
||||||
|
"homedecor_fence_wrought_iron_2_sides.png",
|
||||||
|
"homedecor_fence_wrought_iron_2_fb.png",
|
||||||
|
"homedecor_fence_wrought_iron_2_fb.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
is_ground_content = true,
|
||||||
|
groups = {snappy=3},
|
||||||
|
sounds = default.node_sound_wood_defaults(),
|
||||||
|
walkable = true,
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
signs_lib.register_fence_with_sign("homedecor:fence_brass", "homedecor:fence_brass_with_sign")
|
signs_lib.register_fence_with_sign("homedecor:fence_brass", "homedecor:fence_brass_with_sign")
|
||||||
signs_lib.register_fence_with_sign("homedecor:fence_wrought_iron", "homedecor:fence_wrought_iron_with_sign")
|
signs_lib.register_fence_with_sign("homedecor:fence_wrought_iron", "homedecor:fence_wrought_iron_with_sign")
|
||||||
|
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_fb.png
Normal file
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_fb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_sides.png
Normal file
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 305 B |
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_tb.png
Normal file
BIN
homedecor/textures/homedecor_fence_wrought_iron_2_tb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 222 B |
Loading…
Reference in New Issue
Block a user