From bc26b047d235f2ac495d6ce60cbd6c4a8a40851a Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Sun, 25 Nov 2018 09:18:37 -0500 Subject: [PATCH] add blast-resistant concrete and some basic_materials nodes --- technic_cnc/cnc_materials.lua | 26 ++++++++++++++++++++++++++ technic_cnc/depends.txt | 1 + 2 files changed, 27 insertions(+) diff --git a/technic_cnc/cnc_materials.lua b/technic_cnc/cnc_materials.lua index f2bd734..e63c792 100644 --- a/technic_cnc/cnc_materials.lua +++ b/technic_cnc/cnc_materials.lua @@ -95,6 +95,14 @@ if technic_cnc.technic_modpath then {cracky=1, not_in_creative_inventory=1}, {"technic_granite.png"}, S("Granite")) + + -- Blast-resistant concrete + --------------------------- + + technic_cnc.register_all("technic:blast_resistant_concrete", + {cracky=2, level=2, not_in_creative_inventory=1}, + {"technic_blast_resistant_concrete_block.png"}, + S("Blast-resistant concrete")) end -- STEEL @@ -103,3 +111,21 @@ technic_cnc.register_all("default:steelblock", {cracky=1, level=2, not_in_creative_inventory=1}, {steeltex}, S(steelname)) + +-- CONCRETE AND CEMENT +---------------------- + +technic_cnc.register_all("basic_materials:concrete_block", + {cracky=2, level=2, not_in_creative_inventory=1}, + {"basic_materials_concrete_block.png"}, + S("Concrete")) + +technic_cnc.register_all("basic_materials:cement_block", + {cracky=2, level=2, not_in_creative_inventory=1}, + {"basic_materials_cement_block.png"}, + S("Cement")) + +technic_cnc.register_all("basic_materials:brass_block", + {cracky=1, level=2, not_in_creative_inventory=1}, + {"basic_materials_brass_block.png"}, + S("Brass block")) diff --git a/technic_cnc/depends.txt b/technic_cnc/depends.txt index fa37cc0..bdaa161 100644 --- a/technic_cnc/depends.txt +++ b/technic_cnc/depends.txt @@ -1,2 +1,3 @@ default +basic_materials technic?