mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-21 21:32:27 +01:00
add blast-resistant concrete
and some basic_materials nodes
This commit is contained in:
parent
83ec1b2476
commit
bc26b047d2
@ -95,6 +95,14 @@ if technic_cnc.technic_modpath then
|
|||||||
{cracky=1, not_in_creative_inventory=1},
|
{cracky=1, not_in_creative_inventory=1},
|
||||||
{"technic_granite.png"},
|
{"technic_granite.png"},
|
||||||
S("Granite"))
|
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
|
end
|
||||||
|
|
||||||
-- STEEL
|
-- STEEL
|
||||||
@ -103,3 +111,21 @@ technic_cnc.register_all("default:steelblock",
|
|||||||
{cracky=1, level=2, not_in_creative_inventory=1},
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
||||||
{steeltex},
|
{steeltex},
|
||||||
S(steelname))
|
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"))
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
default
|
default
|
||||||
|
basic_materials
|
||||||
technic?
|
technic?
|
||||||
|
Loading…
Reference in New Issue
Block a user