2021-02-10 04:40:45 +01:00
|
|
|
|
|
|
|
|
|
minetest.register_craftitem("technic_diamond:diamond_dust", { description="Diamond Dust", inventory_image = "technic_diamond_dust.png"})
|
|
|
|
|
technic.register_grinder_recipe({ input = {"default:diamond"}, output = {"technic_diamond:diamond_dust 2"}})
|
|
|
|
|
technic.register_compressor_recipe({ input = {"technic_diamond:diamond_dust"}, output = {"default:diamond"}})
|
|
|
|
|
|
2021-05-04 19:13:09 +02:00
|
|
|
|
technic.register_compressor_recipe({ input = {"technic:coal 10"}, output = {"default:diamond"}})
|
2022-02-01 02:17:46 +01:00
|
|
|
|
technic.register_compressor_recipe({ input = {"technic:coal_dust"}, output = {"default:coal_lump"}})
|