Imitation-Fish added.

This commit is contained in:
= 2018-04-30 00:54:18 +02:00
parent 27fadd146c
commit 7629c01b24
7 changed files with 80 additions and 1 deletions

View File

@ -143,7 +143,7 @@ minetest.register_node("cucina_vegana:sunflower_seeds_oil", {
})
minetest.register_node("cucina_vegana:tofu_chives_rosemary", {
description = "Tofu on Chives and Rosemary",
description = "Tofu on Chives and Rosemary (raw)",
drawtype = "plantlike",
tiles = {"cucina_vegana_tofu_chives_rosemary.png"},
inventory_image = "cucina_vegana_tofu_chives_rosemary.png",
@ -178,6 +178,41 @@ minetest.register_node("cucina_vegana:tofu_chives_rosemary_cooked", {
sounds = default.node_sound_glass_defaults(),
})
minetest.register_node("cucina_vegana:fish_parsley_rosemary", {
description = "Fish on Parsley and Rosemary (raw)",
drawtype = "plantlike",
tiles = {"cucina_vegana_fish_parsley_rosemary.png"},
inventory_image = "cucina_vegana_fish_parsley_rosemary.png",
wield_image = "cucina_fish_parsley_rosemary.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},
sounds = default.node_sound_glass_defaults(),
})
minetest.register_node("cucina_vegana:fish_parsley_rosemary_cooked", {
description = "Fish on Parsley and Rosemary (cooked)",
drawtype = "plantlike",
tiles = {"cucina_vegana_fish_parsley_rosemary_cooked.png"},
inventory_image = "cucina_vegana_fish_parsley_rosemary_cooked.png",
wield_image = "cucina_fish_parsley_rosemary_cooked.png",
paramtype = "light",
is_ground_content = false,
walkable = false,
on_use = minetest.item_eat(6, "cucina_vegana:plate"),
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(),
})
-- *******************************************
-- ***** Items *****
-- *******************************************
@ -287,6 +322,14 @@ minetest.register_craftitem("cucina_vegana:imitation_cheese", {
on_use = minetest.item_eat(3),
})
-- Imitation Fish
minetest.register_craftitem("cucina_vegana:imitation_fish", {
description = "Imitation Fish",
groups = {food = 1, food_fish = 1},
inventory_image = "cucina_vegana_imitation_fish.png",
on_use = minetest.item_eat(3),
})
-- *******************************************
-- ***** Crafts *****
-- *******************************************
@ -426,6 +469,14 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "cucina_vegana:tofu_chives_rosemary_cooked",
recipe = { {"cucina_vegana:chives", "", "cucina_vegana:rosemary"},
{"", "cucina_vegana:tofu_cooked", ""},
{"", "group:food_plate", ""}
},
})
minetest.register_craft({
output = "cucina_vegana:imitation_meat",
recipe = { {"dye:red", "cucina_vegana:tofu", "dye:white"},
@ -448,6 +499,27 @@ minetest.register_craft({
},
})
minetest.register_craft({
output = "cucina_vegana:imitation_fish",
recipe = {
{"dye:blue","cucina_vegana:tofu", "dye:blue"},
{"cucina_vegana:tofu","cucina_vegana:tofu", "cucina_vegana:tofu"},
{"","cucina_vegana:tofu", ""},
},
})
minetest.register_craft({
output = "cucina_vegana:fish_parsley_rosemary",
recipe = {
{"cucina_vegana:parsley","", "cucina_vegana:rosemary"},
{"","group:food_fish", ""},
{"","cucina_vegana:plate", ""},
},
})
-- *******************************************
-- ***** Cookings *****
-- *******************************************
@ -499,6 +571,13 @@ minetest.register_craft({
recipe = "cucina_vegana:tofu_chives_rosemary"
})
minetest.register_craft({
type = "cooking",
cooktime = 18,
output = "cucina_vegana:fish_parsley_rosemary_cooked",
recipe = "cucina_vegana:fish_parsley_rosemary"
})
-- *******************************************
-- ***** Fuels *****
-- *******************************************

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 B