diff --git a/README.md b/README.md index e756270..2df0af8 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ CC BY 3.0 * scifi_nodes_grass_top.png https://github.com/minetest/minetest_game * scifi_nodes_grass_side.png https://github.com/minetest/minetest_game * scifi_nodes_wood.png https://github.com/minetest/minetest_game +* scifi_nodes_plastcrete.png https://github.com/mt-mods/basic_materials CC0 * scifi_nodes_digicode.ogg https://freesound.org/people/benjaminharveydesign/sounds/315921/ diff --git a/crafts.lua b/crafts.lua index c1b7aa9..41a4395 100644 --- a/crafts.lua +++ b/crafts.lua @@ -34,6 +34,15 @@ if not minetest.get_modpath("default") or not minetest.get_modpath("dye") then return end +minetest.register_craft({ + output = "scifi_nodes:plastcrete 6", + recipe = { + {"scifi_nodes:white2", "default:gravel", "scifi_nodes:white2"}, + {"default:gravel", "scifi_nodes:white2", "default:gravel"}, + {"scifi_nodes:white2", "default:gravel", "scifi_nodes:white2"} + } +}) + minetest.register_craft({ output = "scifi_nodes:super_white", recipe = { diff --git a/nodes.json b/nodes.json index 4b23d5f..16637e4 100644 --- a/nodes.json +++ b/nodes.json @@ -302,5 +302,12 @@ }, "blackplate": { "description": "Black plate" + }, + "plastcrete": { + "description": "Plastcrete", + "sounds": "stone", + "colorable": true, + "moreblocks": false, + "paramtype2": "none" } } \ No newline at end of file diff --git a/textures/scifi_nodes_plastcrete.png b/textures/scifi_nodes_plastcrete.png new file mode 100644 index 0000000..5e5a957 Binary files /dev/null and b/textures/scifi_nodes_plastcrete.png differ