aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOch Noe <och_noe@forksworld.de>2018-11-14 13:11:33 +0100
committerOch Noe <och_noe@forksworld.de>2018-11-14 13:11:33 +0100
commitfc035e9d70971badc06e7cfea23bb6d73aa73bc7 (patch)
tree438cd51c458ecad9c46d0d273a9c822fed68dae4
parent54523b005c4a6ef69cbdd5ab400b91019f9045ab (diff)
downloadmoreblocks-fc035e9d70971badc06e7cfea23bb6d73aa73bc7.tar.gz
moreblocks-fc035e9d70971badc06e7cfea23bb6d73aa73bc7.tar.bz2
moreblocks-fc035e9d70971badc06e7cfea23bb6d73aa73bc7.zip
changed file was missing
-rw-r--r--nodes.lua111
1 files changed, 97 insertions, 14 deletions
diff --git a/nodes.lua b/nodes.lua
index 5695bc4..913292b 100644
--- a/nodes.lua
+++ b/nodes.lua
@@ -186,20 +186,6 @@ local nodes = {
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
},
- ["blue_tinted_glass"] = {
- description = S("Blue Tinted Glass"),
- drawtype = "glasslike_framed_optional",
- tiles = {"blue1.png^moreblocks_clean_glass.png"},
- -- tiles = {"moreblocks_clean_glass.png","moreblocks_clean_glass_detail.png"},
- -- tiles = {"moreblocks_clean_glass.png"},
- one_texture = true,
- use_texture_alpha = true,
- paramtype = "light",
- no_stairs = true;
- sunlight_propagates = true,
- groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
- sounds = sound_glass,
- },
["cactus_brick"] = {
description = S("Cactus Brick"),
groups = {cracky = 3},
@@ -427,6 +413,103 @@ local nodes = {
groups = {cracky = 1, level = 2},
sounds = sound_metal,
},
+ ["blue_tinted_glass"] = {
+ description = S("Blue Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_blue1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["cyan_tinted_glass"] = {
+ description = S("Cyan Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_cyan1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["green_tinted_glass"] = {
+ description = S("Green Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_green1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["grey_tinted_glass"] = {
+ description = S("Grey Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_grey1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["red_tinted_glass"] = {
+ description = S("Red Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_red1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["magenta_tinted_glass"] = {
+ description = S("Magenta Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_magenta1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["white_tinted_glass"] = {
+ description = S("White Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_white1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+ ["yellow_tinted_glass"] = {
+ description = S("Yellow Tinted Glass"),
+ drawtype = "glasslike_framed_optional",
+ tiles = {"moreblocks_yellow1.png^moreblocks_clean_glass.png"},
+ one_texture = true,
+ use_texture_alpha = true,
+ paramtype = "light",
+ no_stairs = true;
+ sunlight_propagates = true,
+ groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
+ sounds = sound_glass,
+ },
+
}
if minetest.get_modpath("ethereal") then