From a707a4526f52a75bacc9df8a9391afaede6ed145 Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Thu, 25 Oct 2018 12:31:10 +0300 Subject: extranodes cleanup --- extranodes/diamonds.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 extranodes/diamonds.lua (limited to 'extranodes/diamonds.lua') diff --git a/extranodes/diamonds.lua b/extranodes/diamonds.lua new file mode 100644 index 0000000..96e1bd3 --- /dev/null +++ b/extranodes/diamonds.lua @@ -0,0 +1,14 @@ +local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end + +-- Artificial diamonds + +minetest.register_craftitem(":technic:diamond_seed", { + description = S("Diamond Seed"), + inventory_image = "technic_diamond_seed.png", +}) + +minetest.register_craft({ + type = "cooking", + output = "technic:diamond_seed", + recipe = "technic:graphite" +}) -- cgit v1.2.3