1
0
mirror of https://github.com/rubenwardy/food.git synced 2024-07-01 04:40:21 +02:00
food/rubenfood/cakemix.lua

17 lines
418 B
Lua
Raw Normal View History

2012-08-29 20:47:01 +02:00
-- Loads the animal mod based crafting
---------------Cake Pastry-----------
minetest.register_craft({
output = '"rubenfood:cakemix_plain" 1',
recipe = {
2012-08-30 18:04:36 +02:00
{'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
2012-08-29 20:47:01 +02:00
}
})
minetest.register_craft({
output = '"rubenfood:cakemix_choco" 1',
recipe = {
2012-08-30 18:04:36 +02:00
{'""','"default:dirt"','""'}, {'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
2012-08-29 20:47:01 +02:00
}
2012-08-23 17:25:43 +02:00
})