aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crafting.lua6
-rw-r--r--nodes.lua13
-rw-r--r--textures/moreblocks_version_node.pngbin3177 -> 3185 bytes
3 files changed, 19 insertions, 0 deletions
diff --git a/crafting.lua b/crafting.lua
index 760bf03..90fd9cd 100644
--- a/crafting.lua
+++ b/crafting.lua
@@ -428,6 +428,12 @@ minetest.register_craft({
recipe = {"default:glass", "default:glass", "default:glass",
"default:torch", "dye:white"},
})
+minetest.register_craft({
+ output = "moreblocks:bright_glow_glass 2",
+ type = "shapeless",
+ recipe = {"default:glass", "default:glass", "dye:white",
+ "default:torch", "default:torch", "default:torch" },
+})
minetest.register_craft({
output = "moreblocks:low_glow_glass 2",
diff --git a/nodes.lua b/nodes.lua
index 00cfb2f..33cc1f4 100644
--- a/nodes.lua
+++ b/nodes.lua
@@ -571,6 +571,19 @@ local nodes = {
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
},
+ ["bright_glow_glass"] = {
+ description = S("Bright Glow Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_dim_glow_glass.png"},
+ -- tiles = {"default_glass.png^[colorize:#FFFF78"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ sunlight_propagates = true,
+ light_source = 12,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
["low_glow_glass"] = {
description = S("Low Glow Glass"),
drawtype = "glasslike_framed_optional",
diff --git a/textures/moreblocks_version_node.png b/textures/moreblocks_version_node.png
index 47ce05a..57da6dd 100644
--- a/textures/moreblocks_version_node.png
+++ b/textures/moreblocks_version_node.png
Binary files differ