65 lines
1.7 KiB
Lua
65 lines
1.7 KiB
Lua
|
|
local S = technic_cnc.getter
|
|
|
|
technic_cnc.register_all(
|
|
"ethereal:glostone",
|
|
{cracky = 1, not_in_creative_inventory = 1, light_source = 13},
|
|
{"ethereal_glostone.png"},
|
|
S("Glo Stone")
|
|
)
|
|
|
|
technic_cnc.register_all(
|
|
"ethereal:crystal_block",
|
|
{snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1},
|
|
{"ethereal_crystal_block.png"},
|
|
S("Crystal")
|
|
)
|
|
|
|
technic_cnc.register_all(
|
|
"ethereal:banana_wood",
|
|
{snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1},
|
|
{"ethereal_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},
|
|
{"ethereal_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},
|
|
{"ethereal_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},
|
|
{"ethereal_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},
|
|
{"ethereal_redwood_wood.png"},
|
|
S("Redwood")
|
|
)
|