Add Light Box
This commit is contained in:
parent
db3488a820
commit
5024ced4d1
@ -214,6 +214,15 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "xdecor:lightbox",
|
||||||
|
recipe = {
|
||||||
|
{"group:stick", "default:torch", "group:stick"},
|
||||||
|
{"group:stick", "default:glass", "group:stick"},
|
||||||
|
{"group:stick", "default:torch", "group:stick"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "xdecor:mailbox",
|
output = "xdecor:mailbox",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -381,6 +381,14 @@ xdecor.register("lantern", {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
xdecor.register("lightbox", {
|
||||||
|
description = "Light Box",
|
||||||
|
tiles = {"xdecor_lightbox.png"},
|
||||||
|
groups = {cracky=3},
|
||||||
|
light_source = 13,
|
||||||
|
sounds = xdecor.glass
|
||||||
|
})
|
||||||
|
|
||||||
local flowerstype = { "dandelion_white", "dandelion_yellow", "geranium",
|
local flowerstype = { "dandelion_white", "dandelion_yellow", "geranium",
|
||||||
"rose", "tulip", "viola" }
|
"rose", "tulip", "viola" }
|
||||||
|
|
||||||
|
BIN
textures/xdecor_lightbox.png
Normal file
BIN
textures/xdecor_lightbox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 252 B |
Loading…
Reference in New Issue
Block a user