Add Charcoals

This commit is contained in:
Extex101 2019-09-18 14:18:47 -07:00 committed by GitHub
parent 0442573140
commit 4692a92bb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -877,6 +877,19 @@ minetest.register_craft({
cooktime = 5,
})
minetest.register_craft({
type = "cooking",
output = "default:softwood_charcoal",
recipe = "group:softwood",
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = "default:hardwood_charcoal",
recipe = "group:hardwood",
cooktime = 10,
})
--
-- Fuels
@ -1248,3 +1261,15 @@ minetest.register_craft({
recipe = "default:sword_wood",
burntime = 5,
})
minetest.register_craft({
type = "fuel",
recipe = "default:softwood_charcoal",
burntime = 6,
})
minetest.register_craft({
type = "fuel",
recipe = "default:hardwood_charcoal",
burntime = 35,
})