summaryrefslogtreecommitdiff
path: root/init.lua
blob: 2447446cefec97a88cfeab7599f1acb70b4268c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
minetest.register_craftitem("charcoal:charcoal_lump", {
	image = "charcoal_lump.png",
    	description="Lump of Charcoal",
})

minetest.register_craft({
	output = "charcoal:charcoal_lump 4",
	type = "cooking",
	recipe = "group:tree",
	cooktime = 4
})

minetest.register_craft({
	type = "fuel",
	recipe = "charcoal:charcoal_lump",
	burntime = 8,
})