Mehr Rezepte angepasst

This commit is contained in:
N-Nachtigal 2025-05-09 21:41:29 +02:00
parent 3e84ea756b
commit f69bd7f597
11 changed files with 83 additions and 37 deletions

View file

@ -553,7 +553,7 @@ for n = 1, #fish do
if fish[n][3] ~= 0 then
usage = minetest.item_eat(fish[n][3])
groups = {food_fish_raw = 1, ethereal_fish = 1}
groups = {food_fish_raw = 1, ethereal_fish = 1, fish = 1}
end
minetest.register_craftitem("ethereal:fish_" .. fish[n][2], {

View file

@ -690,7 +690,15 @@ ethereal.add_eatable("ethereal:fish_n_chips", 6)
minetest.register_craft({
output = "ethereal:fish_n_chips",
recipe = {
{"farming:baking_tray", "group:ethereal_fish", "group:food_potato"}
{"farming:baking_tray", "group:food_fish_raw", "group:food_potato"}
},
replacements = {{"farming:baking_tray", "farming:baking_tray"}}
})
minetest.register_craft({
output = "ethereal:fish_n_chips",
recipe = {
{"farming:baking_tray", "group:fish", "group:food_potato"}
},
replacements = {{"farming:baking_tray", "farming:baking_tray"}}
})
@ -710,7 +718,7 @@ ethereal.add_eatable("ethereal:fish_cooked", 5)
minetest.register_craft({
type = "cooking",
output = "ethereal:fish_cooked",
recipe = "group:ethereal_fish",
recipe = "group:food_fish_raw",
cooktime = 8
})