cucina_vegana/recipes_cook.lua

71 lines
1.7 KiB
Lua
Raw Normal View History

2018-05-04 01:05:36 +02:00
-- *******************************************
-- ***** Cookings *****
-- *******************************************
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:sunflower_seeds_bread",
recipe = "cucina_vegana:sunflower_seeds_dough"
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:sunflower_seeds_roasted",
recipe = "cucina_vegana:sunflower_seeds"
})
minetest.register_craft({
type = "cooking",
output = "cucina_vegana:tofu_cooked",
recipe = "cucina_vegana:tofu",
cooktime = 5,
})
minetest.register_craft({
type = "cooking",
cooktime = 20,
output = "cucina_vegana:kohlrabi_roasted",
recipe = "cucina_vegana:kohlrabi"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:kohlrabi_soup_cooked",
recipe = "cucina_vegana:kohlrabi_soup"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:soy_soup_cooked",
recipe = "cucina_vegana:soy_soup"
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "cucina_vegana:asparagus_soup_cooked",
recipe = "cucina_vegana:asparagus_soup"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:tofu_chives_rosemary_cooked",
recipe = "cucina_vegana:tofu_chives_rosemary"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:fish_parsley_rosemary_cooked",
recipe = "cucina_vegana:fish_parsley_rosemary"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:asparagus_hollandaise_cooked",
recipe = "cucina_vegana:asparagus_hollandaise"
})