diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-19 17:26:05 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-19 17:26:05 +0300 |
commit | 48481e23887888d3848e2914b4cc38ee6c670a0f (patch) | |
tree | dcae51eb060dd077f4b71728cec9b781d808c440 | |
parent | 842bd22ee44938800ed105c2b0a321f433512dac (diff) |
better techchain for synthetic HPHT diamonds
-rw-r--r-- | extranodes/init.lua | 11 | ||||
-rw-r--r-- | technic/machines/register/compressor_recipes.lua | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index eb54067..4b304b1 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -185,3 +185,14 @@ minetest.register_craft({ { "technic:raw_latex", "default:fence_wood", "technic:raw_latex"}, } }) + +minetest.register_craftitem(":technic:diamond_seed", { + description = "Diamond Seed", + inventory_image = "technic_diamond_seed.png", +}) + +minetest.register_craft({ + type = "cooking", + output = "technic:diamond_seed", + recipe = "technic:graphite" +})
\ No newline at end of file diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua index d516722..02fd741 100644 --- a/technic/machines/register/compressor_recipes.lua +++ b/technic/machines/register/compressor_recipes.lua @@ -17,7 +17,7 @@ local recipes = { {"technic:coal_dust 4", "technic:graphite"}, {"technic:carbon_cloth", "technic:carbon_plate"}, {"technic:uranium35_ingot 5", "technic:uranium_fuel"}, - {"technic:graphite 25", "default:diamond"} + {"technic:diamond_seed 25", "default:diamond"} } if minetest.get_modpath("ethereal") then |