summaryrefslogtreecommitdiff
path: root/extranodes/diamonds.lua
blob: 96e1bd33f6602243e9e10dc39a6a7d1b788e0f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"
})