This commit is contained in:
A.C.M 2019-11-20 21:16:15 +01:00
commit 5d92dedd6d
5 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ Flag attached_node to all plants.
*** Version 2.0:
Support for Hunger and Diet added.
Blueberry jam added. Blueberrys accepted in bushes, farming and default (5.x).
Chiabatta bred added.
Chiabatta bread added.
*** Version 1.9:
Support for bonemeal from Tenplus added.

View File

@ -33,7 +33,7 @@ minetest.register_craftitem("cucina_vegana:blueberry_pot_cooked", {
minetest.register_craftitem("cucina_vegana:ciabatta_dough", {
description = S("Ciabatta dough"),
inventory_image = "cucina_vegana_ciabatta_dough.png",
groups = {food = 1, bred_dough = 1},
groups = {food = 1, bread_dough = 1},
})
minetest.register_craftitem("cucina_vegana:dandelion_honey", {
@ -82,7 +82,7 @@ minetest.register_craftitem("cucina_vegana:soy_milk", {
minetest.register_craftitem("cucina_vegana:sunflower_seeds_dough", {
description = S("Sunflower Seeds Dough"),
groups = {food = 1, food_vegan = 1, eatable = 1, bred_dough = 1},
groups = {food = 1, food_vegan = 1, eatable = 1, bread_dough = 1},
inventory_image = "cucina_vegana_sunflower_seeds_dough.png",
on_use = minetest.item_eat(2),
})

View File

@ -13,7 +13,7 @@
-- Name Saturation Replace with Poison Heal Sound
-- side dishes
{'cucina_vegana:ciabatta_bred', 4, nil, nil, nil, nil},
{'cucina_vegana:ciabatta_bread', 4, nil, nil, nil, nil},
{'cucina_vegana:blueberry_jam', 8, 'vessels:glass_bottle', nil, nil, nil},
{'cucina_vegana:blueberry_puree', 4, nil, nil, nil, nil},
{'cucina_vegana:dandelion_honey', 3, 'vessels:glass_bottle', nil, nil, nil},

View File

@ -37,7 +37,7 @@ minetest.register_node("cucina_vegana:wild_".. pname, {
paramtype2 = "facedir",
tiles = {"cucina_vegana_".. pname .. "_".. step .. ".png"},
sunlight_propagates = true,
groups = {chopspy=2, oddly_breakable_by_hand=3, flammable=2, dig_immediate=1, plant=1, attached_node = 1, growing = 1},
groups = {choppy=2, oddly_breakable_by_hand=3, flammable=2, dig_immediate=1, plant=1, attached_node = 1, growing = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",

View File

@ -125,7 +125,7 @@ minetest.register_node("cucina_vegana:wild_" .. pname, {
drawtype = "plantlike",
paramtype2 = "facedir",
tiles = {"cucina_vegana_" .. pname .. "_8.png"},
groups = {chopspy=2, oddly_breakable_by_hand=3, flammable=2, plant=1, attached_node = 1},
groups = {choppy=2, oddly_breakable_by_hand=3, flammable=2, plant=1, attached_node = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",