Haufenweise Rezepte angepasst
This commit is contained in:
parent
e50ba390f0
commit
45fa6e63f6
13 changed files with 567 additions and 352 deletions
|
@ -93,6 +93,8 @@ minetest.register_node("cucina_vegana:plate", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
if not(minetest.get_modpath("farming")) then
|
||||
|
||||
minetest.register_node("cucina_vegana:sunflower_seeds_oil", {
|
||||
description = S("Bottle of Sunflower Seeds Oil"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -129,6 +131,8 @@ minetest.register_node("cucina_vegana:corn_oil", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
-- *******************************************
|
||||
-- ***** Síde Dishes *****
|
||||
-- *******************************************
|
||||
|
@ -357,24 +361,28 @@ minetest.register_node("cucina_vegana:sea_salad", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("cucina_vegana:popcorn", {
|
||||
description = S("Popcorn"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"cucina_vegana_popcorn.png"},
|
||||
inventory_image = "cucina_vegana_popcorn.png",
|
||||
wield_image = "cucina_vegana_popcorn.png",
|
||||
paramtype2 = 3, -- #
|
||||
on_use = minetest.item_eat(3),
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
||||
},
|
||||
groups = {dig_immediate = 3, attached_node = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
if not(minetest.get_modpath("x_farming")) then
|
||||
|
||||
minetest.register_node("cucina_vegana:popcorn", {
|
||||
description = S("Popcorn"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"cucina_vegana_popcorn.png"},
|
||||
inventory_image = "cucina_vegana_popcorn.png",
|
||||
wield_image = "cucina_vegana_popcorn.png",
|
||||
paramtype2 = 3, -- #
|
||||
on_use = minetest.item_eat(3),
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
||||
},
|
||||
groups = {dig_immediate = 3, attached_node = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
-- *******************************************
|
||||
-- ***** Dinners *****
|
||||
|
@ -431,6 +439,8 @@ minetest.register_node("cucina_vegana:asparagus_soup", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
if not(minetest.get_modpath("x_farming")) then
|
||||
|
||||
minetest.register_node("cucina_vegana:bowl_rice", {
|
||||
description = S("Bowl of Rice (raw)"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -448,6 +458,8 @@ minetest.register_node("cucina_vegana:bowl_rice", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
minetest.register_node("cucina_vegana:fish_parsley_rosemary", {
|
||||
description = S("Fish on Parsley and Rosemary (raw)"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -626,6 +638,8 @@ minetest.register_node("cucina_vegana:asparagus_soup_cooked", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
if not(minetest.get_modpath("x_farming")) then
|
||||
|
||||
minetest.register_node("cucina_vegana:bowl_rice_cooked", {
|
||||
description = S("Bowl of Rice"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -644,6 +658,8 @@ minetest.register_node("cucina_vegana:bowl_rice_cooked", {
|
|||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
minetest.register_node("cucina_vegana:fish_parsley_rosemary_cooked", {
|
||||
description = S("Fish on Parsley and Rosemary"),
|
||||
drawtype = "plantlike",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue