mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-17 15:58:37 +01:00
expanding CNC coverage
This commit is contained in:
parent
72b20eb580
commit
be544da776
@ -15,18 +15,56 @@ technic.cnc.register_all("default:wood",
|
||||
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||
{"default_wood.png"},
|
||||
S("Wooden"))
|
||||
|
||||
technic.cnc.register_all("default:junglewood",
|
||||
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||
{"default_junglewood.png"},
|
||||
S("Junglewood"))
|
||||
|
||||
technic.cnc.register_all("default:pine_wood",
|
||||
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||
{"default_pine_wood.png"},
|
||||
S("Pine"))
|
||||
|
||||
technic.cnc.register_all("default:acacia_wood",
|
||||
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||
{"default_acacia_wood.png"},
|
||||
S("Acacia"))
|
||||
|
||||
technic.cnc.register_all("default:aspen_wood",
|
||||
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
||||
{"default_aspen_wood.png"},
|
||||
S("Aspen"))
|
||||
|
||||
-- STONE
|
||||
--------
|
||||
technic.cnc.register_all("default:stone",
|
||||
{cracky=3, not_in_creative_inventory=1},
|
||||
{cracky=3, stone = 1, not_in_creative_inventory=1},
|
||||
{"default_stone.png"},
|
||||
S("Stone"))
|
||||
|
||||
technic.cnc.register_all("default:desert_stone",
|
||||
{cracky=3, stone = 1, not_in_creative_inventory=1},
|
||||
{"default_desert_stone.png"},
|
||||
S("Desert Stone"))
|
||||
|
||||
-- COBBLE
|
||||
---------
|
||||
technic.cnc.register_all("default:cobble",
|
||||
{cracky=3, not_in_creative_inventory=1},
|
||||
{cracky=3, stone = 1, not_in_creative_inventory=1},
|
||||
{"default_cobble.png"},
|
||||
S("Cobble"))
|
||||
|
||||
technic.cnc.register_all("default:mossycobble",
|
||||
{cracky=3, stone = 1, not_in_creative_inventory=1},
|
||||
{"default_mossycobble.png"},
|
||||
S("Mossy Cobblestone"))
|
||||
|
||||
technic.cnc.register_all("default:desert_cobble",
|
||||
{cracky=3, stone = 1, not_in_creative_inventory=1},
|
||||
{"default_desert_cobble.png"},
|
||||
S("Desert Cobble"))
|
||||
|
||||
-- BRICK
|
||||
--------
|
||||
technic.cnc.register_all("default:brick",
|
||||
@ -41,6 +79,16 @@ technic.cnc.register_all("default:sandstone",
|
||||
{"default_sandstone.png"},
|
||||
S("Sandstone"))
|
||||
|
||||
technic.cnc.register_all("default:desert_sandstone",
|
||||
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
||||
{"default_desert_sandstone.png"},
|
||||
S("Desert Sandstone"))
|
||||
|
||||
technic.cnc.register_all("default:silver_sandstone",
|
||||
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
||||
{"default_silver_sandstone.png"},
|
||||
S("Silver Sandstone"))
|
||||
|
||||
-- LEAVES
|
||||
---------
|
||||
technic.cnc.register_all("default:leaves",
|
||||
@ -54,6 +102,22 @@ technic.cnc.register_all("default:tree",
|
||||
{"default_tree.png"},
|
||||
S("Tree"))
|
||||
|
||||
-- ICE
|
||||
-------
|
||||
technic.cnc.register_all("default:ice",
|
||||
{cracky = 3, puts_out_fire = 1, cools_lava = 1, not_in_creative_inventory=1},
|
||||
{"default_ice.png"},
|
||||
S("Ice"))
|
||||
|
||||
|
||||
-- OBSIDIAN
|
||||
-----------
|
||||
technic.cnc.register_all("default:obsidian_block",
|
||||
{cracky = 1, level = 2, not_in_creative_inventory=1},
|
||||
{"default_obsidian_block.png"},
|
||||
S("Obsidian"))
|
||||
|
||||
|
||||
-- WROUGHT IRON
|
||||
---------------
|
||||
technic.cnc.register_all("default:steelblock",
|
||||
|
Loading…
Reference in New Issue
Block a user