mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-30 18:46:28 -04:00
Add Charcoals
This commit is contained in:
parent
0442573140
commit
4692a92bb4
1 changed files with 25 additions and 0 deletions
|
@ -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,
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue