From ec73a8508fc8458e10be6a93bbc3be2eba26595f Mon Sep 17 00:00:00 2001
From: Vanessa Ezekowitz <vanessaezekowitz@gmail.com>
Date: Mon, 19 Jan 2015 19:37:46 +0100
Subject: [PATCH] add custom collision and selection box handling to CNC machine also clean up formatting of surrounding code

---
 technic/machines/LV/cnc_nodes.lua |   48 +++++++++++++++++++++++++++++++++++-------------
 1 files changed, 35 insertions(+), 13 deletions(-)

diff --git a/technic/machines/LV/cnc_nodes.lua b/technic/machines/LV/cnc_nodes.lua
index fc70829..b250bc8 100644
--- a/technic/machines/LV/cnc_nodes.lua
+++ b/technic/machines/LV/cnc_nodes.lua
@@ -14,13 +14,6 @@
 		"technic_cnc_slope_edge_upsdown", "technic_cnc_slope_inner_edge_upsdown",
 		"technic_cnc_stick", "technic_cnc_cylinder_horizontal"}
 
--- TREE
--------
-technic.cnc.register_all("default:tree",
-                {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
-                {"default_tree.png"},
-                S("Wooden"))
-
 -- WOOD
 -------
 technic.cnc.register_all("default:wood",
@@ -49,7 +42,7 @@
 -- SANDSTONE
 ------------
 technic.cnc.register_all("default:sandstone",
-                {crumbly=2, cracky=2, not_in_creative_inventory=1},
+                {crumbly=2, cracky=3, not_in_creative_inventory=1},
                 {"default_sandstone.png"},
                 S("Sandstone"))
 
@@ -65,10 +58,39 @@
                 {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, wood=1, not_in_creative_inventory=1},
                 {"default_tree.png"},
                 S("Tree"))
--- STEEL
+
+-- WROUGHT IRON
+---------------
+technic.cnc.register_all("default:steelblock",
+                {cracky=1, level=2, not_in_creative_inventory=1},
+                {"technic_wrought_iron_block.png"},
+                S("Wrought Iron"))
+
+-- Bronze
 --------
-technic.cnc.register_all("default:steel",
-                {snappy=1, bendy=2, cracky=1, melty=2, level=2, not_in_creative_inventory=1},
-                {"default_steel_block.png"},
-                S("Steel"))
+technic.cnc.register_all("default:bronzeblock",
+                {cracky=1, level=2, not_in_creative_inventory=1},
+                {"default_bronze_block.png"},
+                S("Bronze"))
+
+-- Stainless Steel
+--------
+technic.cnc.register_all("technic:stainless_steel_block",
+                {cracky=1, level=2, not_in_creative_inventory=1},
+                {"technic_stainless_steel_block.png"},
+                S("Stainless Steel"))
+
+-- Marble
+------------
+technic.cnc.register_all("technic:marble",
+                {cracky=3, not_in_creative_inventory=1},
+                {"technic_marble.png"},
+                S("Marble"))
+
+-- Granite
+------------
+technic.cnc.register_all("technic:granite",
+                {cracky=1, not_in_creative_inventory=1},
+                {"technic_granite.png"},
+                S("Granite"))
 

--
Gitblit v1.8.0