Haufenweise Rezepte angepasst

This commit is contained in:
N-Nachtigal 2025-05-10 19:00:40 +02:00
parent e50ba390f0
commit 45fa6e63f6
13 changed files with 567 additions and 352 deletions

View file

@ -11,7 +11,7 @@ if minetest.global_exists("farming") and farming.mod == "redo" then
inventory_image = "sandwiches_seed_peanut.png",
wield_image = "sandwiches_seed_peanut.png",
drawtype = "signlike",
groups = {seed = 1, snappy = 3, attached_node = 1, flammable = 4},
groups = {seed = 1, snappy = 3, attached_node = 1, flammable = 4, seed_peanut = 1},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
@ -219,7 +219,7 @@ minetest.register_decoration({
minetest.register_craftitem("sandwiches:peanut_butter", {
description = "Peanut Butter",
on_use = minetest.item_eat(2),
groups = {food = 2, food_peanut_butter = 1, flammable = 1},
groups = {food = 2, food_peanut_butter = 1, flammable = 1, food_butter = 1},
inventory_image = "sandwiches_peanut_butter.png"
})