blob: b94fc2d90ad88f1ac5c93680bc3226de39166277 (
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"'},
}
})
|