Alternate pie recipe.
This commit is contained in:
parent
4cfa301cea
commit
534d48a0bd
1 changed files with 19 additions and 1 deletions
20
nodes.lua
20
nodes.lua
|
@ -262,7 +262,25 @@ minetest.register_craft({
|
||||||
'default:apple',
|
'default:apple',
|
||||||
'farming:flour',
|
'farming:flour',
|
||||||
'mobs:honey',
|
'mobs:honey',
|
||||||
}
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'fun_caves:apple_pie_uncooked',
|
||||||
|
type = 'shapeless',
|
||||||
|
recipe = {
|
||||||
|
'default:apple',
|
||||||
|
'default:apple',
|
||||||
|
'farming:flour',
|
||||||
|
'fun_caves:syrup',
|
||||||
|
'fun_caves:syrup',
|
||||||
|
'fun_caves:syrup',
|
||||||
|
},
|
||||||
|
replacements = {
|
||||||
|
{'fun_caves:syrup', 'vessels:glass_bottle'},
|
||||||
|
{'fun_caves:syrup', 'vessels:glass_bottle'},
|
||||||
|
{'fun_caves:syrup', 'vessels:glass_bottle'},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue