Haufenweise Rezepte angepasst
This commit is contained in:
parent
e50ba390f0
commit
45fa6e63f6
13 changed files with 567 additions and 352 deletions
|
@ -30,12 +30,16 @@ minetest.register_craft({
|
|||
recipe = "cucina_vegana:blueberry_pot"
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
cooktime = 20,
|
||||
output = "cucina_vegana:bowl_rice_cooked",
|
||||
recipe = "cucina_vegana:bowl_rice"
|
||||
})
|
||||
if not(minetest.get_modpath("x_farming")) then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
cooktime = 20,
|
||||
output = "cucina_vegana:bowl_rice_cooked",
|
||||
recipe = "cucina_vegana:bowl_rice"
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
|
@ -123,18 +127,22 @@ minetest.register_craft({
|
|||
replacements = {{"cucina_vegana:molasses", "vessels:drinking_glass"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
cooktime = 15,
|
||||
output = "cucina_vegana:sunflower_seeds_bread",
|
||||
recipe = "cucina_vegana:sunflower_seeds_dough"
|
||||
})
|
||||
if not(minetest.get_modpath("farming")) then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "cucina_vegana:sunflower_seeds_roasted",
|
||||
recipe = "cucina_vegana:sunflower_seeds"
|
||||
})
|
||||
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"
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
|
@ -143,6 +151,8 @@ minetest.register_craft({
|
|||
recipe = "cucina_vegana:tofu_chives_rosemary"
|
||||
})
|
||||
|
||||
if not(minetest.get_modpath("farming")) then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "cucina_vegana:tofu_cooked",
|
||||
|
@ -150,6 +160,8 @@ minetest.register_craft({
|
|||
cooktime = 5,
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "cucina_vegana:flax_roasted",
|
||||
|
@ -157,6 +169,8 @@ minetest.register_craft({
|
|||
cooktime = 10,
|
||||
})
|
||||
|
||||
if not(minetest.get_modpath("x_farming")) then
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "cucina_vegana:popcorn",
|
||||
|
@ -177,3 +191,5 @@ minetest.register_craft({
|
|||
recipe = "cucina_vegana:coffee_cup",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue