blob: 90776363ad81451d11caff51d2b3153155468803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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,
})
minetest.register_craft({
type = "shapeless",
recipe = {"charcoal:charcoal_lump","default:stick"},
output = "default:torch",
})
|