Merge branch 'master' of https://github.com/acmgit/cucina_vegana
This commit is contained in:
commit
5d92dedd6d
@ -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.
|
||||
|
@ -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),
|
||||
})
|
||||
|
@ -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},
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user