mirror of
https://codeberg.org/minenux/minetest-mod-xdecor
synced 2023-10-20 21:43:39 -07:00
Add woodframed glass
This commit is contained in:
parent
669d495742
commit
f512bb7d00
@ -124,6 +124,11 @@ minetest.register_craft({ output = "xdecor:workbench", recipe = {
|
|||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||||
{"group:wood", "group:wood", "group:wood"} } })
|
{"group:wood", "group:wood", "group:wood"} } })
|
||||||
|
|
||||||
|
minetest.register_craft({ output = "xdecor:woodframed_glass", recipe = {
|
||||||
|
{"group:stick", "group:stick", "group:stick"},
|
||||||
|
{"group:stick", "default:glass", "group:stick"},
|
||||||
|
{"group:stick", "group:stick", "group:stick"} } })
|
||||||
|
|
||||||
minetest.register_craft({ output = "xdecor:wood_tile 2", recipe = {
|
minetest.register_craft({ output = "xdecor:wood_tile 2", recipe = {
|
||||||
{"group:wood", "group:wood"},
|
{"group:wood", "group:wood"},
|
||||||
{"group:wood", "group:wood"} } })
|
{"group:wood", "group:wood"} } })
|
||||||
|
@ -227,6 +227,11 @@ xdecor.register("tv", {
|
|||||||
{name="xdecor_television_front_animated.png",
|
{name="xdecor_television_front_animated.png",
|
||||||
animation = {type="vertical_frames", length=80.0}}} })
|
animation = {type="vertical_frames", length=80.0}}} })
|
||||||
|
|
||||||
|
xdecor.register("woodframed_glass", {
|
||||||
|
description = "Wood Framed Glass", drawtype = "glasslike_framed_optional",
|
||||||
|
tiles = {"xdecor_framed_glass.png", "xdecor_framed_glass_detail.png"},
|
||||||
|
groups = {snappy=3}, sounds = default.node_sound_glass_defaults() })
|
||||||
|
|
||||||
xdecor.register("wood_tile", {
|
xdecor.register("wood_tile", {
|
||||||
description = "Wood Tile", tiles = {"xdecor_wood_tile.png"},
|
description = "Wood Tile", tiles = {"xdecor_wood_tile.png"},
|
||||||
groups = {snappy=3, wood=1}, sounds = default.node_sound_wood_defaults() })
|
groups = {snappy=3, wood=1}, sounds = default.node_sound_wood_defaults() })
|
||||||
|
BIN
textures/xdecor_framed_glass.png
Normal file
BIN
textures/xdecor_framed_glass.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 237 B |
BIN
textures/xdecor_framed_glass_detail.png
Normal file
BIN
textures/xdecor_framed_glass_detail.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 135 B |
Loading…
x
Reference in New Issue
Block a user