diff options
author | Och Noe <och_noe@forksworld.de> | 2020-01-09 01:51:26 +0100 |
---|---|---|
committer | Och Noe <och_noe@forksworld.de> | 2020-01-09 01:51:26 +0100 |
commit | 05167b72a6f2d3878b85a9d5b84965aa901ef0ab (patch) | |
tree | ce5aa70e67dcd38ccfe1f459a630543762352c80 | |
parent | dd99214fcba322b94eaa49caa568c13b1477f9c1 (diff) | |
download | moreblocks-05167b72a6f2d3878b85a9d5b84965aa901ef0ab.tar.gz moreblocks-05167b72a6f2d3878b85a9d5b84965aa901ef0ab.tar.bz2 moreblocks-05167b72a6f2d3878b85a9d5b84965aa901ef0ab.zip |
new tinted glass added - for testing
-rw-r--r-- | nodes.lua | 198 |
1 files changed, 198 insertions, 0 deletions
@@ -599,6 +599,204 @@ local nodes = { groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, sounds = sound_glass, }, + + ["brown_tinted_glass"] = { + description = S("Brown Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_brown2.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, + }, + + ["dark_blue_tinted_glass"] = { + description = S("Dark Blue Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_blue2.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, + }, + + ["dark_brown_tinted_glass"] = { + description = S("Dark Brown Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_brown2.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, + }, + + ["dark_cyan_tinted_glass"] = { + description = S("Dark Cyan Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_cyan2.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, + }, + + ["dark_green_tinted_glass"] = { + description = S("Dark Green Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_green2.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, + }, + + ["dark_grey_tinted_glass"] = { + description = S("Dark Grey Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_grey2.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, + }, + + ["dark_magenta_tinted_glass"] = { + description = S("Dark Magenta Yellow Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_magenta2.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, + }, + + ["dark_orange_tinted_glass"] = { + description = S("Dark Orange Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_orange2.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, + }, + + ["dark_pink_tinted_glass"] = { + description = S("Dark Pink Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_pink2.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, + }, + + ["dark_red_tinted_glass"] = { + description = S("Dark Red Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_red2.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, + }, + + ["dark_violet_tinted_glass"] = { + description = S("Dark Violet Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_violet2.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, + }, + + ["dark_yellow_tinted_glass"] = { + description = S("Dark Yellow Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_dark_yellow2.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, + }, + + ["orange_tinted_glass"] = { + description = S("Orange Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_orange2.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, + }, + + ["pink_tinted_glass"] = { + description = S("Pink Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_pink2.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, + }, + + ["violet_tinted_glass"] = { + description = S("Violet Tinted Glass"), + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_violet2.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, + }, + + + ["gravel_stonebrick"] = { description = S("Gravel on Stonebrick"), tiles = {"default_gravel.png", |