2018-05-04 01:05:36 +02:00
|
|
|
-- *******************************************
|
2018-12-30 23:19:23 +01:00
|
|
|
-- ***** Nodes *****
|
2018-05-04 01:05:36 +02:00
|
|
|
-- *******************************************
|
|
|
|
|
2018-05-28 01:10:48 +02:00
|
|
|
-- Load support for intllib.
|
|
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
-- *******************************************
|
|
|
|
-- ***** Supports *****
|
|
|
|
-- *******************************************
|
|
|
|
|
2018-05-04 01:05:36 +02:00
|
|
|
minetest.register_node("cucina_vegana:plate", {
|
2018-05-28 01:10:48 +02:00
|
|
|
description = S("Plate"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_plate.png"},
|
|
|
|
inventory_image = "cucina_vegana_plate.png",
|
|
|
|
wield_image = "cucina_vegana_plate.png",
|
|
|
|
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, food_plate=1},
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:bowl", {
|
2018-05-28 01:10:48 +02:00
|
|
|
description = S("Glass Bowl"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_bowl.png"},
|
|
|
|
inventory_image = "cucina_vegana_bowl.png",
|
|
|
|
wield_image = "cucina_vegana_bowl.png",
|
|
|
|
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 = {vessel = 1, dig_immediate = 3, attached_node = 1, food_bowl=1},
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:sunflower_seeds_oil", {
|
|
|
|
description = S("Bottle of Sunflower Seeds Oil"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_sunflower_seeds_oil.png"},
|
|
|
|
inventory_image = "cucina_vegana_sunflower_seeds_oil.png",
|
|
|
|
wield_image = "cucina_vegana_sunflower_seeds_oil.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(2, "vessels:glass_bottle"),
|
2018-05-04 01:05:36 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {vessel = 1, dig_immediate = 3, attached_node = 1, food = 1, food_oil = 1, food_vegan = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2019-04-29 01:36:06 +02:00
|
|
|
minetest.register_node("cucina_vegana:flax_seed_oil", {
|
|
|
|
description = S("Bottle of Flaxseed Oil"),
|
2019-04-24 01:31:03 +02:00
|
|
|
drawtype = "plantlike",
|
2019-04-29 01:36:06 +02:00
|
|
|
tiles = {"cucina_vegana_flax_seed_oil.png"},
|
|
|
|
inventory_image = "cucina_vegana_flax_seed_oil.png",
|
|
|
|
wield_image = "cucina_vegana_flax_seed_oil.png",
|
2019-04-24 01:31:03 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
on_use = minetest.item_eat(2, "vessels:glass_bottle"),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
|
|
|
groups = {vessel = 1, dig_immediate = 3, attached_node = 1, food = 1, food_oil = 1, food_vegan = 1, eatable = 1},
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
2018-12-30 23:19:23 +01:00
|
|
|
-- *******************************************
|
|
|
|
-- ***** Síde Dishes *****
|
|
|
|
-- *******************************************
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:sauce_hollandaise", {
|
|
|
|
description = S("Sauce Hollandaise"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_sauce_hollandaise.png"},
|
|
|
|
inventory_image = "cucina_vegana_sauce_hollandaise.png",
|
|
|
|
wield_image = "cucina_vegana_sauce_hollandaise.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(3, "vessels:glass_bottle"),
|
2018-05-04 01:05:36 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {vessel = 1, dig_immediate = 3, attached_node = 1, food = 1, food_sauce = 1, food_vegan = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:lettuce_oil", {
|
|
|
|
description = S("Salad Oil"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_lettuce_oil.png"},
|
|
|
|
inventory_image = "cucina_vegana_lettuce_oil.png",
|
|
|
|
wield_image = "cucina_vegana_lettuce_oil.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(2, "vessels:glass_bottle"),
|
2018-05-04 01:05:36 +02:00
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-13 20:14:07 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_oil = 1, food_vegan = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:salad_bowl", {
|
|
|
|
description = S("Glass Salad Bowl"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_salad_bowl.png"},
|
|
|
|
inventory_image = "cucina_vegana_salad_bowl.png",
|
|
|
|
wield_image = "cucina_vegana_salad_bowl.png",
|
|
|
|
on_use = minetest.item_eat(4, "cucina_vegana:bowl"),
|
2018-05-04 01:05:36 +02:00
|
|
|
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(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
-- *******************************************
|
|
|
|
-- ***** Dinners *****
|
|
|
|
-- *******************************************
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:asparagus_hollandaise", {
|
|
|
|
description = S("Asparagus Hollandaise (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_asparagus_hollandaise.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_hollandaise.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_hollandaise.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2018-12-30 23:19:23 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:asparagus_rice", {
|
|
|
|
description = S("Asparagus on Rice (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_asparagus_rice.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_rice.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_rice.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2018-12-30 23:19:23 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:asparagus_soup", {
|
2018-05-28 01:10:48 +02:00
|
|
|
description = S("Asparagus Soup (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_asparagus_soup.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_soup.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_soup.png",
|
|
|
|
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, food_soup = 1},
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:bowl_rice", {
|
|
|
|
description = S("Bowl of Rice (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_bowl_rice.png"},
|
|
|
|
inventory_image = "cucina_vegana_bowl_rice.png",
|
|
|
|
wield_image = "cucina_vegana_bowl_rice.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2019-01-13 20:14:07 +01:00
|
|
|
groups = {vessel = 1, dig_immediate = 3, attached_node = 1, food_rice = 1, food_vegan = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:fish_parsley_rosemary", {
|
|
|
|
description = S("Fish on Parsley and Rosemary (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_fish_parsley_rosemary.png"},
|
|
|
|
inventory_image = "cucina_vegana_fish_parsley_rosemary.png",
|
|
|
|
wield_image = "cucina_vegana_fish_parsley_rosemary.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2018-05-17 01:24:05 +02:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2019-01-07 20:20:47 +01:00
|
|
|
minetest.register_node("cucina_vegana:fryer_raw", {
|
|
|
|
description = S("Fryer (raw)"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_fryer_raw.png"},
|
|
|
|
inventory_image = "cucina_vegana_fryer_raw.png",
|
|
|
|
wield_image = "cucina_vegana_fryer_raw.png",
|
|
|
|
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, food_vegan = 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:fryer", {
|
|
|
|
description = S("Fryer"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_fryer.png"},
|
|
|
|
inventory_image = "cucina_vegana_fryer.png",
|
|
|
|
wield_image = "cucina_vegana_fryer.png",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2019-05-12 14:23:04 +02:00
|
|
|
on_use = minetest.item_eat(8),
|
2019-01-07 20:20:47 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1, eatable = 1},
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:kohlrabi_soup", {
|
|
|
|
description = S("Kohlrabi Soup (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_kohlrabi_soup.png"},
|
|
|
|
inventory_image = "cucina_vegana_kohlrabi_soup.png",
|
|
|
|
wield_image = "cucina_vegana_kohlrabi_soup.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2018-12-30 23:19:23 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_soup = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:salad_hollandaise", {
|
|
|
|
description = S("Salad Bowl Hollandaise"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_salad_hollandaise.png"},
|
|
|
|
inventory_image = "cucina_vegana_salad_hollandaise.png",
|
|
|
|
wield_image = "cucina_vegana_salad_hollandaise.png",
|
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:bowl"),
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:soy_soup", {
|
|
|
|
description = S("Soy Soup (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_soy_soup.png"},
|
|
|
|
inventory_image = "cucina_vegana_soy_soup.png",
|
|
|
|
wield_image = "cucina_vegana_soy_soup.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
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}
|
|
|
|
},
|
2018-12-30 23:19:23 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_soup = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:tofu_chives_rosemary", {
|
2018-05-28 01:10:48 +02:00
|
|
|
description = S("Tofu on Chives and Rosemary (raw)"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_tofu_chives_rosemary.png"},
|
|
|
|
inventory_image = "cucina_vegana_tofu_chives_rosemary.png",
|
|
|
|
wield_image = "cucina_vegana_tofu_chives_rosemary.png",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:plate"),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
-- *******************************************
|
|
|
|
-- ***** Dinners cooked *****
|
|
|
|
-- *******************************************
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:asparagus_hollandaise_cooked", {
|
|
|
|
description = S("Asparagus Hollandaise"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_asparagus_hollandaise_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_hollandaise_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_hollandaise_cooked.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:plate"),
|
2018-05-04 01:05:36 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:asparagus_rice_cooked", {
|
|
|
|
description = S("Asparagus on Rice"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_asparagus_rice_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_rice_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_rice_cooked.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(6, "cucina_vegana:plate"),
|
2018-05-04 01:05:36 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:asparagus_soup_cooked", {
|
|
|
|
description = S("Asparagus Soup"),
|
2018-05-04 01:05:36 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_asparagus_soup_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_asparagus_soup_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_asparagus_soup_cooked.png",
|
2018-05-04 01:05:36 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:plate"),
|
2018-05-04 01:05:36 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-04 01:05:36 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
2018-05-10 23:39:08 +02:00
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:bowl_rice_cooked", {
|
|
|
|
description = S("Bowl of Rice"),
|
2018-05-10 23:39:08 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_bowl_rice_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_bowl_rice_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_bowl_rice_cooked.png",
|
2018-05-10 23:39:08 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(4, "cucina_vegana:bowl"),
|
2018-05-10 23:39:08 +02:00
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {vessel = 1, dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-10 23:39:08 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:fish_parsley_rosemary_cooked", {
|
|
|
|
description = S("Fish on Parsley and Rosemary"),
|
2018-05-10 23:39:08 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_fish_parsley_rosemary_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_fish_parsley_rosemary_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_fish_parsley_rosemary_cooked.png",
|
2018-05-10 23:39:08 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(6, "cucina_vegana:plate"),
|
2018-05-10 23:39:08 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-10 23:39:08 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:kohlrabi_soup_cooked", {
|
|
|
|
description = S("Kohlrabi Soup"),
|
2018-05-10 23:39:08 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_kohlrabi_soup_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_kohlrabi_soup_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_kohlrabi_soup_cooked.png",
|
2018-05-10 23:39:08 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:plate"),
|
2018-05-10 23:39:08 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-10 23:39:08 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2019-01-06 19:07:58 +01:00
|
|
|
minetest.register_node("cucina_vegana:pizza_vegana_raw", {
|
|
|
|
description = S("Pizza Vegana (raw)"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_pizza_vegana_raw.png"},
|
|
|
|
inventory_image = "cucina_vegana_pizza_vegana_raw.png",
|
|
|
|
wield_image = "cucina_vegana_pizza_vegana_raw.png",
|
|
|
|
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, food_vegan = 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:pizza_vegana", {
|
|
|
|
description = S("Pizza Vegana"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_pizza_vegana.png"},
|
|
|
|
inventory_image = "cucina_vegana_pizza_vegana.png",
|
|
|
|
wield_image = "cucina_vegana_pizza_vegana.png",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1, eatable = 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("cucina_vegana:pizza_funghi_raw", {
|
|
|
|
description = S("Pizza Funghi (raw)"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_pizza_funghi_raw.png"},
|
|
|
|
inventory_image = "cucina_vegana_pizza_funghi_raw.png",
|
|
|
|
wield_image = "cucina_vegana_pizza_funghi_raw.png",
|
|
|
|
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}
|
|
|
|
},
|
2019-01-06 19:07:58 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1},
|
|
|
|
})
|
|
|
|
|
2019-01-07 20:20:47 +01:00
|
|
|
minetest.register_node("cucina_vegana:pizza_funghi", {
|
|
|
|
description = S("Pizza Funghi"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"cucina_vegana_pizza_funghi.png"},
|
|
|
|
inventory_image = "cucina_vegana_pizza_funghi.png",
|
|
|
|
wield_image = "cucina_vegana_pizza_funghi.png",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
|
|
|
groups = {dig_immediate = 3, attached_node = 1, food_vegan = 1, eatable = 1},
|
|
|
|
})
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:soy_soup_cooked", {
|
|
|
|
description = S("Soy Soup"),
|
2018-05-10 23:39:08 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_soy_soup_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_soy_soup_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_soy_soup_cooked.png",
|
2018-05-10 23:39:08 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(5, "cucina_vegana:plate"),
|
2018-05-10 23:39:08 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-10 23:39:08 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
2018-05-16 19:32:11 +02:00
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.register_node("cucina_vegana:tofu_chives_rosemary_cooked", {
|
|
|
|
description = S("Tofu on Chives and Rosemary"),
|
2018-05-16 19:32:11 +02:00
|
|
|
drawtype = "plantlike",
|
2018-12-30 23:19:23 +01:00
|
|
|
tiles = {"cucina_vegana_tofu_chives_rosemary_cooked.png"},
|
|
|
|
inventory_image = "cucina_vegana_tofu_chives_rosemary_cooked.png",
|
|
|
|
wield_image = "cucina_vegana_tofu_chives_rosemary_cooked.png",
|
2018-05-16 19:32:11 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
2018-12-30 23:19:23 +01:00
|
|
|
on_use = minetest.item_eat(6, "cucina_vegana:plate"),
|
2018-05-16 19:32:11 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
2019-01-07 20:20:47 +01:00
|
|
|
groups = {dig_immediate = 3, attached_node = 1, eatable = 1},
|
2018-05-16 19:32:11 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|