2013-07-17 21:34:35 +02:00
|
|
|
-- REGISTER MATERIALS AND PROPERTIES FOR NONCUBIC ELEMENTS:
|
|
|
|
-----------------------------------------------------------
|
2013-10-30 18:45:32 +01:00
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
local S = technic_cnc.getter
|
2013-10-30 18:45:32 +01:00
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- DIRT
|
|
|
|
-------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:dirt",
|
2013-07-17 21:34:35 +02:00
|
|
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
2018-11-25 14:33:04 +01:00
|
|
|
{"default_dirt.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Dirt"))
|
2018-11-25 14:33:04 +01:00
|
|
|
-- (DIRT WITH) GRASS
|
|
|
|
--------------------
|
|
|
|
technic_cnc.register_all("default:dirt_with_grass",
|
|
|
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
|
|
|
{"default_grass.png"},
|
|
|
|
S("Grassy dirt"))
|
2013-07-17 21:34:35 +02:00
|
|
|
-- WOOD
|
|
|
|
-------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:wood",
|
2013-07-17 21:34:35 +02:00
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"default_wood.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Wooden"))
|
2018-11-26 09:09:20 +01:00
|
|
|
|
|
|
|
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"))
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- STONE
|
|
|
|
--------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:stone",
|
2018-11-26 09:09:20 +01:00
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
2013-07-17 21:34:35 +02:00
|
|
|
{"default_stone.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Stone"))
|
2018-11-26 09:09:20 +01:00
|
|
|
|
|
|
|
technic_cnc.register_all("default:stonebrick",
|
|
|
|
{crumbly=2, cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_stone_brick.png"},
|
|
|
|
S("Stone Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:stone_block",
|
|
|
|
{crumbly=2, cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_stone_block.png"},
|
|
|
|
S("Stone Block"))
|
|
|
|
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:desert_stone",
|
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_stone.png"},
|
|
|
|
S("Desert Stone"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:desert_stonebrick",
|
|
|
|
{crumbly=2, cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_stone_brick.png"},
|
|
|
|
S("Desert Stone Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:desert_stone_block",
|
|
|
|
{crumbly=2, cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_stone_block.png"},
|
|
|
|
S("Desert Stone Block"))
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- COBBLE
|
|
|
|
---------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:cobble",
|
2018-11-26 09:09:20 +01:00
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
2013-07-17 21:34:35 +02:00
|
|
|
{"default_cobble.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Cobble"))
|
2018-11-26 09:09:20 +01:00
|
|
|
|
2018-11-26 09:13:45 +01:00
|
|
|
technic_cnc.register_all("default:mossycobble",
|
2018-11-26 09:09:20 +01:00
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_mossycobble.png"},
|
|
|
|
S("Mossy Cobblestone"))
|
|
|
|
|
2018-11-26 09:13:45 +01:00
|
|
|
technic_cnc.register_all("default:desert_cobble",
|
2018-11-26 09:09:20 +01:00
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_cobble.png"},
|
|
|
|
S("Desert Cobble"))
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- BRICK
|
|
|
|
--------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:brick",
|
2013-07-17 21:34:35 +02:00
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_brick.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Brick"))
|
2013-07-17 21:34:35 +02:00
|
|
|
|
|
|
|
-- SANDSTONE
|
|
|
|
------------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:sandstone",
|
2014-07-30 21:28:30 +02:00
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
2013-07-17 21:34:35 +02:00
|
|
|
{"default_sandstone.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Sandstone"))
|
2013-07-17 21:34:35 +02:00
|
|
|
|
2018-11-26 09:09:20 +01:00
|
|
|
technic_cnc.register_all("default:sandstonebrick",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_sandstone_brick.png"},
|
|
|
|
S("Sandstone Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:sandstone_block",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_sandstone_block.png"},
|
|
|
|
S("Sandstone Block"))
|
|
|
|
|
|
|
|
|
|
|
|
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:desert_sandstone_brick",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_sandstone_brick.png"},
|
|
|
|
S("Desert Sandstone Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:desert_sandstone_block",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_desert_sandstone_block.png"},
|
|
|
|
S("Desert Sandstone Block"))
|
|
|
|
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:silver_sandstone",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_silver_sandstone.png"},
|
|
|
|
S("Silver Sandstone"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:silver_sandstone_brick",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_silver_sandstone_brick.png"},
|
|
|
|
S("Silver Sandstone Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:silver_sandstone_block",
|
|
|
|
{crumbly=2, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"default_silver_sandstone_block.png"},
|
|
|
|
S("Silver Sandstone Block"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- LEAVES
|
|
|
|
---------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:leaves",
|
2013-07-17 21:34:35 +02:00
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=3, not_in_creative_inventory=1},
|
|
|
|
{"default_leaves.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Leaves"))
|
2018-11-26 09:09:20 +01:00
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
-- TREE
|
|
|
|
-------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:tree",
|
2013-07-17 21:34:35 +02:00
|
|
|
{snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, wood=1, not_in_creative_inventory=1},
|
|
|
|
{"default_tree.png"},
|
2013-10-30 18:45:32 +01:00
|
|
|
S("Tree"))
|
split default iron/steel into three metals
Override the default mod's iron/steel substance, replacing it with three
metals: wrought iron (pure iron), carbon steel (iron alloyed with a little
carbon), and cast iron (iron alloyed with lots of carbon). Wrought iron
is easiest to refine, then cast iron, and carbon steel the most difficult,
matching the historical progression. Recipes that used default steel are
changed to use one of the three, the choice of alloy for each application
being both somewhat realistic and also matching up with game progression.
The default:steel{_ingot,block} items are identified specifically with
wrought iron. This makes the default refining recipes work appropriately.
Iron-using recipes defined outside technic are thus necessarily
reinterpreted to use wrought iron, which is mostly appropriate.
Some objects are renamed accordingly.
Rather than use the default steel textures for wrought iron, with technic
providing textures for the other two, technic now provides textures for
all three metals. This avoids problems that would occur with texture
packs that provide default_steel_{ingot,block} textures that are not
intended to support this wrought-iron/carbon-steel/cast-iron distinction.
A texture pack can provide a distinct set of three textures specifically
for the situation where this distinction is required.
Incidentally make grinding and alloy cooking recipes work correctly when
ingredients are specified by alias.
2014-05-16 23:02:49 +02:00
|
|
|
|
2018-11-26 09:09:20 +01:00
|
|
|
-- 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",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"technic_wrought_iron_block.png"},
|
|
|
|
S("Wrought Iron"))
|
|
|
|
|
2014-03-29 09:59:41 +01:00
|
|
|
-- Bronze
|
|
|
|
--------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_all("default:bronzeblock",
|
2014-03-29 09:59:41 +01:00
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"default_bronze_block.png"},
|
|
|
|
S("Bronze"))
|
|
|
|
|
2018-11-26 09:09:20 +01:00
|
|
|
-- Zinc
|
|
|
|
--------
|
|
|
|
technic_cnc.register_all("technic:zinc_block",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"technic_zinc_block.png"},
|
|
|
|
S("Zinc"))
|
2014-03-29 09:59:41 +01:00
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
local steeltex = "default_steel_block.png"
|
|
|
|
local steelname = "Steel"
|
2014-03-29 09:59:41 +01:00
|
|
|
|
2018-11-26 09:09:20 +01:00
|
|
|
-- Cast Iron
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("technic:cast_iron_block",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"technic_cast_iron_block.png"},
|
|
|
|
S("Cast Iron"))
|
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
if technic_cnc.technic_modpath then
|
|
|
|
steeltex = "technic_wrought_iron_block.png"
|
|
|
|
steelname = "Wrought Iron"
|
|
|
|
|
|
|
|
-- 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"))
|
2014-03-29 09:59:41 +01:00
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
-- 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"))
|
2018-11-25 15:18:37 +01:00
|
|
|
|
|
|
|
-- 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"))
|
2018-11-25 14:13:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
technic_cnc.register_all("default:steelblock",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{steeltex},
|
|
|
|
S(steelname))
|
2018-11-25 15:18:37 +01:00
|
|
|
|
|
|
|
-- 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"))
|
2018-11-26 09:09:20 +01:00
|
|
|
-- Brass
|
|
|
|
--------
|
|
|
|
technic_cnc.register_all("technic:brass_block",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
2019-05-20 14:26:48 +02:00
|
|
|
{"basic_materials_brass_block.png"},
|
2018-11-26 09:09:20 +01:00
|
|
|
S("Brass"))
|
|
|
|
|
|
|
|
-- Copper
|
|
|
|
---------
|
|
|
|
technic_cnc.register_all("default:copperblock",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"default_copper_block.png"},
|
|
|
|
S("Copper"))
|
|
|
|
|
|
|
|
-- Tin
|
|
|
|
------
|
|
|
|
technic_cnc.register_all("default:tinblock",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"default_tin_block.png"},
|
|
|
|
S("Tin"))
|
|
|
|
|
|
|
|
-- Gold
|
|
|
|
-------
|
|
|
|
technic_cnc.register_all("default:goldblock",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"default_gold_block.png"},
|
|
|
|
S("Gold"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if minetest.get_modpath("ethereal") then
|
|
|
|
-- Glostone
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("ethereal:glostone",
|
|
|
|
{cracky=1, not_in_creative_inventory=1, light_source=13},
|
|
|
|
{"glostone.png"},
|
|
|
|
S("Glo Stone"))
|
|
|
|
|
|
|
|
-- Crystal block
|
|
|
|
----------------
|
|
|
|
technic_cnc.register_all("ethereal:crystal_block",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"crystal_block.png"},
|
|
|
|
S("Crystal"))
|
|
|
|
|
|
|
|
-- Misc. Wood types
|
|
|
|
-------------------
|
|
|
|
technic_cnc.register_all("ethereal:banana_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"banana_wood.png"},
|
|
|
|
S("Banana Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:birch_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"moretrees_birch_wood.png"},
|
|
|
|
S("Birch Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:frost_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"frost_wood.png"},
|
|
|
|
S("Frost Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:palm_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"moretrees_palm_wood.png"},
|
|
|
|
S("Palm Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:willow_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"willow_wood.png"},
|
|
|
|
S("Willow Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:yellow_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"yellow_wood.png"},
|
|
|
|
S("Healing Tree Wood"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("ethereal:redwood_wood",
|
|
|
|
{snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
{"redwood_wood.png"},
|
|
|
|
S("Redwood"))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
if minetest.get_modpath("moreblocks") then
|
|
|
|
-- Tiles
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("moreblocks:stone_tile",
|
|
|
|
{stone=1, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_stone_tile.png"},
|
|
|
|
S("Stone Tile"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("moreblocks:split_stone_tile",
|
|
|
|
{stone=1, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_split_stone_tile.png"},
|
|
|
|
S("Split Stone Tile"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("moreblocks:checker_stone_tile",
|
|
|
|
{stone=1, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_checker_stone_tile.png"},
|
|
|
|
S("Checker Stone Tile"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("moreblocks:cactus_checker",
|
|
|
|
{stone=1, cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_cactus_checker.png"},
|
|
|
|
S("Cactus Checker"))
|
|
|
|
|
|
|
|
-- Bricks
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("moreblocks:cactus_brick",
|
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_cactus_brick.png"},
|
|
|
|
S("Cactus Brick"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("moreblocks:grey_bricks",
|
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_grey_bricks.png"},
|
|
|
|
S("Grey Bricks"))
|
|
|
|
|
|
|
|
-- Metals
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("moreblocks:copperpatina",
|
|
|
|
{cracky=1, level=2, not_in_creative_inventory=1},
|
|
|
|
{"moreblocks_copperpatina.png"},
|
|
|
|
S("Copper Patina"))
|
|
|
|
|
|
|
|
-- Clay
|
|
|
|
------------
|
|
|
|
technic_cnc.register_all("bakedclay:red",
|
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"baked_clay_red.png"},
|
|
|
|
S("Red Clay"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("bakedclay:orange",
|
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"baked_clay_orange.png"},
|
|
|
|
S("Orange Clay"))
|
|
|
|
|
|
|
|
technic_cnc.register_all("bakedclay:grey",
|
|
|
|
{cracky=3, not_in_creative_inventory=1},
|
|
|
|
{"baked_clay_grey.png"},
|
|
|
|
S("Grey Clay"))
|
|
|
|
|
|
|
|
end
|