blob: 2bdf3434ff103b87a9101d436c3499dabe95e2be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- Loads the animal mod based crafting
print ("RubenFood: Loading animal+farming based foods")
---------------Cake Pastry-----------
minetest.register_craft({
output = '"rubenfood:cakemix_plain" 1',
recipe = {
{'"farming:wheat"','"animalmaterials:milk"','"animalmaterials:egg"'},
}
})
minetest.register_craft({
output = '"rubenfood:cakemix_choco" 1',
recipe = {
{'""','"default:dirt"','""'}, {'"farming:wheat"','"animalmaterials:milk"','"animalmaterials:egg"'},
}
})
|