diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-07-29 00:32:39 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-07-29 00:32:39 +0300 |
commit | 6d0d9081099ce6a36e0db0c7ddebeb768a9d618f (patch) | |
tree | 9995e2b9d9044bf5b1385b9b4a275ae90ae54283 /extranodes/plastic_block.lua | |
parent | 8e9a0a8a9ad7a318ed841e12b610625adc7779e5 (diff) |
colorable plastic nodes
Diffstat (limited to 'extranodes/plastic_block.lua')
-rw-r--r-- | extranodes/plastic_block.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extranodes/plastic_block.lua b/extranodes/plastic_block.lua new file mode 100644 index 0000000..d426c26 --- /dev/null +++ b/extranodes/plastic_block.lua @@ -0,0 +1,27 @@ +local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end + +local plastic_nodes = { + {node = "plastic_siding", name = S("Plastic Siding"), tiles = {"technic_plastic_siding.png"}}, + {node = "plastic_siding_2", name = S("Plastic Siding 2"), tiles = {"technic_plastic_siding_2.png"}}, + {node = "plastic_siding_3", name = S("Plastic Siding 3"), tiles = {"technic_plastic_siding_3.png"}}, + {node = "plastic_bricks", name = S("Plastic Bricks"), tiles = {"technic_plastic_bricks.png"}}, + {node = "plastic_blocks", name = S("Plastic Blocks"), tiles = {"technic_plastic_blocks.png"}}, + {node = "plastic_cross", name = S("Plastic Cross"), tiles = {"technic_plastic_cross.png"}}, + {node = "plastic_waves", name = S("Plastic Waves"), tiles = {"technic_plastic_waves.png"}}, + {node = "plastic_tiles", name = S("Plastic Tiles"), tiles = {"technic_plastic_tiles.png"}}, +} + +for _,n in pairs(plastic_nodes) do + + minetest.register_node (":technic:" .. n.node, { + description = n.name, + drawtype = "normal", + tiles = n.tiles, + drop = "technic:plastic_siding", + groups = {dig_immediate = 2, paintable_plastic_block = 1}, + paramtype = "light", + paramtype2 = "colorwallmounted", + palette = "technic_paint_palette.png", + }) + +end |