add blast-resistant concrete

and some basic_materials nodes
This commit is contained in:
Vanessa Dannenberg 2018-11-25 09:18:37 -05:00 committed by Nathanaël Courant
parent 83ec1b2476
commit bc26b047d2
2 changed files with 27 additions and 0 deletions

View File

@ -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"))

View File

@ -1,2 +1,3 @@
default
basic_materials
technic?