diff options
author | Och Noe <och_noe@forksworld.de> | 2020-05-12 06:13:59 +0200 |
---|---|---|
committer | Och Noe <och_noe@forksworld.de> | 2020-05-12 06:13:59 +0200 |
commit | c31dc09631f704b676ade8d945cd6a7375928f60 (patch) | |
tree | a23dc6dfd605981e93827f41d6f72d2744c64cc6 | |
parent | 212dba7df1529e250e3506eebe2762638cf8799b (diff) | |
download | moreblocks-c31dc09631f704b676ade8d945cd6a7375928f60.tar.gz moreblocks-c31dc09631f704b676ade8d945cd6a7375928f60.tar.bz2 moreblocks-c31dc09631f704b676ade8d945cd6a7375928f60.zip |
new node: bright_glow_glass
- similar semi-transparent like dim glow glass
- brighness between glow glass and super glow glass
-rw-r--r-- | crafting.lua | 6 | ||||
-rw-r--r-- | nodes.lua | 13 | ||||
-rw-r--r-- | textures/moreblocks_version_node.png | bin | 3177 -> 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", @@ -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 Binary files differindex 47ce05a..57da6dd 100644 --- a/textures/moreblocks_version_node.png +++ b/textures/moreblocks_version_node.png |