Rest der Rezepte amgepasst
This commit is contained in:
parent
473e550453
commit
92a55732cf
14 changed files with 278 additions and 113 deletions
|
@ -405,6 +405,8 @@ if not(minetest.get_modpath("farming")) then
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if not(minetest.get_modpath("x_farming")) then
|
||||||
|
|
||||||
minetest.register_craftitem("cucina_vegana:vegan_sushi", {
|
minetest.register_craftitem("cucina_vegana:vegan_sushi", {
|
||||||
description = S("Vegan Sushi"),
|
description = S("Vegan Sushi"),
|
||||||
groups = {food = 1, food_vegan = 1, eatable = 1},
|
groups = {food = 1, food_vegan = 1, eatable = 1},
|
||||||
|
@ -412,6 +414,8 @@ minetest.register_craftitem("cucina_vegana:vegan_sushi", {
|
||||||
on_use = minetest.item_eat(4),
|
on_use = minetest.item_eat(4),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craftitem("cucina_vegana:vegan_strawberry_milk", {
|
minetest.register_craftitem("cucina_vegana:vegan_strawberry_milk", {
|
||||||
description = S("Vegan Strawberry Milk"),
|
description = S("Vegan Strawberry Milk"),
|
||||||
groups = {food = 1, food_vegan = 1, eatable = 1},
|
groups = {food = 1, food_vegan = 1, eatable = 1},
|
||||||
|
|
|
@ -783,16 +783,19 @@ minetest.register_craft({
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
if not(minetest.get_modpath("x_farming")) then
|
||||||
output = "cucina_vegana:vegan_sushi",
|
|
||||||
recipe = { {"cucina_vegana:imitation_fish", "group:food_rice", ""},
|
|
||||||
{"default:papyrus", "", ""}
|
|
||||||
},
|
|
||||||
replacements = {
|
|
||||||
{"cucina_vegana:bowl_rice", "cucina_vegana:bowl"}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "cucina_vegana:vegan_sushi",
|
||||||
|
recipe = { {"cucina_vegana:imitation_fish", "group:food_rice", ""},
|
||||||
|
{"default:papyrus", "", ""}
|
||||||
|
},
|
||||||
|
replacements = {
|
||||||
|
{"cucina_vegana:bowl_rice", "cucina_vegana:bowl"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
-- *******************************************
|
-- *******************************************
|
||||||
-- ***** Miscelanous *****
|
-- ***** Miscelanous *****
|
||||||
-- *******************************************
|
-- *******************************************
|
||||||
|
|
|
@ -5,16 +5,23 @@
|
||||||
local modname = minetest.get_current_modname()
|
local modname = minetest.get_current_modname()
|
||||||
|
|
||||||
local nodes = {
|
local nodes = {
|
||||||
{
|
|
||||||
name = "default:sand_with_kelp", -- Name
|
|
||||||
output = "cucina_vegana:vegan_sushi", -- Output
|
|
||||||
recipe = { -- Recipe
|
-- {
|
||||||
{"cucina_vegana:imitation_fish", "group:food_rice", ""},
|
-- name = "default:sand_with_kelp", -- Name
|
||||||
{"default:sand_with_kelp", "", ""}
|
-- output = "cucina_vegana:vegan_sushi", -- Output
|
||||||
},
|
-- recipe = { -- Recipe
|
||||||
|
-- {"cucina_vegana:imitation_fish", "group:food_rice", ""},
|
||||||
|
-- {"default:sand_with_kelp", "", ""}
|
||||||
|
-- },
|
||||||
--repclaements = nil -- Replacements
|
--repclaements = nil -- Replacements
|
||||||
-- replacements = {{"cucina_vegana:molasses", "vessels:drinking_glass"}}
|
-- replacements = {{"cucina_vegana:molasses", "vessels:drinking_glass"}}
|
||||||
},
|
|
||||||
|
-- }
|
||||||
|
|
||||||
|
|
||||||
|
--,
|
||||||
{
|
{
|
||||||
name = "flowers:waterlily", -- Name
|
name = "flowers:waterlily", -- Name
|
||||||
output = "cucina_vegana:sea_salad",
|
output = "cucina_vegana:sea_salad",
|
||||||
|
|
|
@ -453,6 +453,13 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:sushi_kappamaki 2",
|
||||||
|
recipe = {
|
||||||
|
{"default:sand_with_kelp", "group:food_cucumber", "group:food_rice"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- Nigiri (sushi with raw fish)
|
-- Nigiri (sushi with raw fish)
|
||||||
|
|
||||||
minetest.register_craftitem("ethereal:sushi_nigiri", {
|
minetest.register_craftitem("ethereal:sushi_nigiri", {
|
||||||
|
@ -461,7 +468,7 @@ minetest.register_craftitem("ethereal:sushi_nigiri", {
|
||||||
on_use = minetest.item_eat(2)
|
on_use = minetest.item_eat(2)
|
||||||
})
|
})
|
||||||
|
|
||||||
ethereal.add_eatable("ethereal:sushi_nigiri", 2)
|
ethereal.add_eatable("ethereal:sushi_nigiri", 3)
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "ethereal:sushi_nigiri 2",
|
output = "ethereal:sushi_nigiri 2",
|
||||||
|
@ -487,6 +494,13 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:sushi_tamago 2",
|
||||||
|
recipe = {
|
||||||
|
{"default:sand_with_kelp", "group:food_egg", "group:food_rice"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- Fugu (prepared pufferfish)
|
-- Fugu (prepared pufferfish)
|
||||||
|
|
||||||
minetest.register_craftitem("ethereal:fugu", {
|
minetest.register_craftitem("ethereal:fugu", {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
|
|
||||||
|
|
||||||
local S = minetest.get_translator("farming")
|
local S = minetest.get_translator("farming")
|
||||||
|
|
||||||
-- seed
|
-- seed
|
||||||
|
|
|
@ -254,6 +254,8 @@ minetest.register_craftitem("farming:caramel", {
|
||||||
|
|
||||||
-- Salt
|
-- Salt
|
||||||
|
|
||||||
|
if not minetest.get_modpath('x_farming') then
|
||||||
|
|
||||||
minetest.register_node("farming:salt", {
|
minetest.register_node("farming:salt", {
|
||||||
description = S("Salt"),
|
description = S("Salt"),
|
||||||
inventory_image = "farming_salt.png",
|
inventory_image = "farming_salt.png",
|
||||||
|
@ -269,6 +271,7 @@ minetest.register_node("farming:salt", {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
||||||
},
|
},
|
||||||
|
|
||||||
-- special function to make salt crystals form inside water
|
-- special function to make salt crystals form inside water
|
||||||
dropped_step = function(self, pos, dtime)
|
dropped_step = function(self, pos, dtime)
|
||||||
|
|
||||||
|
@ -310,6 +313,10 @@ minetest.register_node("farming:salt", {
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Salt Crystal
|
-- Salt Crystal
|
||||||
|
|
||||||
minetest.register_node("farming:salt_crystal", {
|
minetest.register_node("farming:salt_crystal", {
|
||||||
|
@ -992,12 +999,16 @@ if not farming.mcl then
|
||||||
|
|
||||||
-- Cocoa beans
|
-- Cocoa beans
|
||||||
|
|
||||||
|
if not minetest.get_modpath('x_farming') then
|
||||||
|
|
||||||
minetest.register_craftitem("farming:cocoa_beans", {
|
minetest.register_craftitem("farming:cocoa_beans", {
|
||||||
description = S("Cocoa Beans"),
|
description = S("Cocoa Beans"),
|
||||||
inventory_image = "farming_cocoa_beans.png",
|
inventory_image = "farming_cocoa_beans.png",
|
||||||
groups = {compostability = 65, food_cocoa = 1, flammable = 2}
|
groups = {compostability = 65, food_cocoa = 1, flammable = 2}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- Chocolate cookie
|
-- Chocolate cookie
|
||||||
|
|
||||||
minetest.register_craftitem("farming:cookie", {
|
minetest.register_craftitem("farming:cookie", {
|
||||||
|
@ -1023,25 +1034,25 @@ if not farming.mcl then
|
||||||
|
|
||||||
-- Sugar
|
-- Sugar
|
||||||
|
|
||||||
minetest.register_craftitem("farming:sugar", {
|
if not minetest.get_modpath("x_farming") then
|
||||||
description = S("Sugar"),
|
|
||||||
inventory_image = "farming_sugar.png",
|
minetest.register_craftitem("farming:sugar", {
|
||||||
groups = {food_sugar = 1, flammable = 3}
|
description = S("Sugar"),
|
||||||
})
|
inventory_image = "farming_sugar.png",
|
||||||
|
groups = {food_sugar = 1, flammable = 3}
|
||||||
|
})
|
||||||
|
|
||||||
-- Baked potato
|
-- Baked potato
|
||||||
|
|
||||||
minetest.register_craftitem("farming:baked_potato", {
|
minetest.register_craftitem("farming:baked_potato", {
|
||||||
description = S("Baked Potato"),
|
description = S("Baked Potato"),
|
||||||
inventory_image = "farming_baked_potato.png",
|
inventory_image = "farming_baked_potato.png",
|
||||||
on_use = minetest.item_eat(6)
|
on_use = minetest.item_eat(6)
|
||||||
})
|
})
|
||||||
|
|
||||||
farming.add_eatable("farming:baked_potato", 6)
|
farming.add_eatable("farming:baked_potato", 6)
|
||||||
|
|
||||||
-- Golden carrot
|
-- Golden carrot
|
||||||
|
|
||||||
if not(minetest.get_modpath("x_farming")) then
|
|
||||||
|
|
||||||
minetest.register_craftitem("farming:carrot_gold", {
|
minetest.register_craftitem("farming:carrot_gold", {
|
||||||
description = S("Golden Carrot"),
|
description = S("Golden Carrot"),
|
||||||
|
|
|
@ -324,19 +324,39 @@ end
|
||||||
|
|
||||||
-- sugar cube
|
-- sugar cube
|
||||||
|
|
||||||
minetest.register_craft({
|
if minetest.get_modpath('x_farming') then
|
||||||
output = "farming:sugar_cube",
|
|
||||||
recipe = {
|
|
||||||
{a.sugar, a.sugar, a.sugar},
|
|
||||||
{a.sugar, a.sugar, a.sugar},
|
|
||||||
{a.sugar, a.sugar, a.sugar}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = a.sugar .. " 9",
|
output = "farming:sugar_cube",
|
||||||
recipe = {{"farming:sugar_cube"}}
|
recipe = {
|
||||||
})
|
{"x_farming:sugar", "x_farming:sugar", "x_farming:sugar"},
|
||||||
|
{"x_farming:sugar", "x_farming:sugar", "x_farming:sugar"},
|
||||||
|
{"x_farming:sugar", "x_farming:sugar", "x_farming:sugar"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "x_farming:sugar" .. " 9",
|
||||||
|
recipe = {{"farming:sugar_cube"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:sugar_cube",
|
||||||
|
recipe = {
|
||||||
|
{a.sugar, a.sugar, a.sugar},
|
||||||
|
{a.sugar, a.sugar, a.sugar},
|
||||||
|
{a.sugar, a.sugar, a.sugar}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = a.sugar .. " 9",
|
||||||
|
recipe = {{"farming:sugar_cube"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- caramel
|
-- caramel
|
||||||
|
|
||||||
|
@ -349,42 +369,101 @@ minetest.register_craft({
|
||||||
|
|
||||||
-- salt
|
-- salt
|
||||||
|
|
||||||
minetest.register_craft({
|
if minetest.get_modpath('x_farming') then
|
||||||
type = "cooking",
|
|
||||||
cooktime = 15,
|
minetest.register_craft({
|
||||||
output = "farming:salt",
|
type = "cooking",
|
||||||
recipe = a.bucket_water,
|
cooktime = 15,
|
||||||
replacements = {{a.bucket_water, a.bucket_empty}}
|
output = "x_farming:salt",
|
||||||
})
|
recipe = a.bucket_water,
|
||||||
|
replacements = {{a.bucket_water, a.bucket_empty}}
|
||||||
|
})
|
||||||
|
|
||||||
|
else
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
cooktime = 15,
|
||||||
|
output = "farming:salt",
|
||||||
|
recipe = a.bucket_water,
|
||||||
|
replacements = {{a.bucket_water, a.bucket_empty}}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- salt crystal
|
-- salt crystal
|
||||||
|
|
||||||
minetest.register_craft({
|
if minetest.get_modpath('x_farming') then
|
||||||
output = "farming:salt 9",
|
|
||||||
recipe = {
|
minetest.register_craft({
|
||||||
{"farming:salt_crystal", a.mortar_pestle}
|
output = "x_farming:salt 9",
|
||||||
},
|
recipe = {
|
||||||
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
{"farming:salt_crystal", a.mortar_pestle}
|
||||||
})
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:salt 9",
|
||||||
|
recipe = {
|
||||||
|
{"farming:salt_crystal", a.mortar_pestle}
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
if ((minetest.get_modpath('x_farming'))and(minetest.get_modpath('caverealms'))) then
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "x_farming:salt 9",
|
||||||
|
recipe = {
|
||||||
|
{"caverealms:salt_crystal", a.mortar_pestle}
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "x_farming:salt 3",
|
||||||
|
recipe = {
|
||||||
|
{"caverealms:salt_gem", a.mortar_pestle}
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "x_farming:salt 3",
|
||||||
|
recipe = {
|
||||||
|
{"caverealms:stone_with_salt", a.mortar_pestle}
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:salt_crystal",
|
output = "farming:salt_crystal",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"farming:salt", "farming:salt", "farming:salt"},
|
{"group:food_salt", "group:food_salt", "group:food_salt"},
|
||||||
{"farming:salt", "farming:salt", "farming:salt"},
|
{"group:food_salt", "group:food_salt", "group:food_salt"},
|
||||||
{"farming:salt", "farming:salt", "farming:salt"}
|
{"group:food_salt", "group:food_salt", "group:food_salt"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- mayonnaise
|
-- mayonnaise
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:mayonnaise",
|
output = "farming:mayonnaise",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:food_olive_oil", "group:food_lemon"},
|
{"group:food_oil", "group:food_lemon"},
|
||||||
{"group:food_egg", "farming:salt"}
|
{"group:food_egg", "group:food_salt"}
|
||||||
},
|
},
|
||||||
replacements = {{"farming:olive_oil", a.glass_bottle}}
|
replacements = {{"group:food_oil", a.glass_bottle}}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- rose water
|
-- rose water
|
||||||
|
@ -751,6 +830,14 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:onigiri",
|
||||||
|
recipe = {
|
||||||
|
{"group:food_rice", "group:food_salt", "group:food_rice"},
|
||||||
|
{"", "default:sand_with_kelp", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- gyoza
|
-- gyoza
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -876,6 +963,8 @@ minetest.register_craft({
|
||||||
|
|
||||||
-- potato & cucumber salad
|
-- potato & cucumber salad
|
||||||
|
|
||||||
|
if not minetest.get_modpath("x_farming") then
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:potato_salad",
|
output = "farming:potato_salad",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -885,6 +974,22 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
if minetest.get_modpath("x_farming") then
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:potato_salad",
|
||||||
|
recipe = {
|
||||||
|
{"group:food_cucumber"},
|
||||||
|
{"x_farming:bakedpotato"},
|
||||||
|
{"group:food_bowl"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- melon slice / block
|
-- melon slice / block
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -917,23 +1022,6 @@ minetest.register_craft({
|
||||||
replacements = {{"farming:cutting_board", "farming:cutting_board"}}
|
replacements = {{"farming:cutting_board", "farming:cutting_board"}}
|
||||||
})
|
})
|
||||||
|
|
||||||
if minetest.get_modpath('x_farming') then
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "farming:pumpkin_slice 4",
|
|
||||||
recipe = {{"x_farming:pumpkin_fruit", a.cutting_board}},
|
|
||||||
replacements = {{"farming:cutting_board", "farming:cutting_board"}}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "x_farming:pumpkin_fruit",
|
|
||||||
recipe = {
|
|
||||||
{"farming:pumpkin_slice", "farming:pumpkin_slice"},
|
|
||||||
{"farming:pumpkin_slice", "farming:pumpkin_slice"}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
-- pumpkin dough
|
-- pumpkin dough
|
||||||
|
|
||||||
|
@ -1423,13 +1511,25 @@ if not farming.mcl then
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Sugar
|
-- Sugar
|
||||||
|
if minetest.get_modpath('x_farming') then
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
cooktime = 3,
|
cooktime = 3,
|
||||||
output = "farming:sugar 2",
|
output = "x_farming:sugar 2",
|
||||||
recipe = "default:papyrus"
|
recipe = "default:papyrus"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
cooktime = 3,
|
||||||
|
output = "farming:sugar 2",
|
||||||
|
recipe = "default:papyrus"
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- Baked potato
|
-- Baked potato
|
||||||
|
|
||||||
|
|
|
@ -145,7 +145,7 @@ minetest.register_craftitem('x_farming:cocoa_bean', {
|
||||||
tiles = { 'x_farming_cocoa_bean.png' },
|
tiles = { 'x_farming_cocoa_bean.png' },
|
||||||
inventory_image = 'x_farming_cocoa_bean.png',
|
inventory_image = 'x_farming_cocoa_bean.png',
|
||||||
wield_image = 'x_farming_cocoa_bean.png',
|
wield_image = 'x_farming_cocoa_bean.png',
|
||||||
groups = { compost = 65 },
|
groups = { compost = 65 , food_cocoa = 1},
|
||||||
on_place = x_farming.place_cocoa_bean,
|
on_place = x_farming.place_cocoa_bean,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ minetest.override_item('x_farming:coffee', {
|
||||||
compost = 50,
|
compost = 50,
|
||||||
-- MCL
|
-- MCL
|
||||||
compostability = 50,
|
compostability = 50,
|
||||||
|
food_coffee = 1
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:cookie 8',
|
output = 'x_farming:cookie 8',
|
||||||
recipe = { 'x_farming:barley', 'x_farming:cocoa_bean', 'x_farming:flour', 'x_farming:bottle_soymilk', 'x_farming:sugar' }
|
recipe = { 'x_farming:barley', 'x_farming:cocoa_bean', 'x_farming:flour', 'group:food_soy_milk', 'x_farming:sugar' }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -76,7 +76,7 @@ minetest.register_craft({
|
||||||
output = 'x_farming:fish_stew',
|
output = 'x_farming:fish_stew',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ '', 'group:fish', '' },
|
{ '', 'group:fish', '' },
|
||||||
{ 'x_farming:carrot', 'x_farming:bakedpotato', 'x_farming:salt' },
|
{ 'x_farming:carrot', 'x_farming:bakedpotato', 'group:food_salt' },
|
||||||
{ '', 'x_farming:bowl', '' }
|
{ '', 'x_farming:bowl', '' }
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -137,7 +137,7 @@ minetest.register_craft({
|
||||||
output = 'x_farming:corn_popcorn',
|
output = 'x_farming:corn_popcorn',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ 'x_farming:corn_pop', 'x_farming:corn_pop', 'x_farming:corn_pop' },
|
{ 'x_farming:corn_pop', 'x_farming:corn_pop', 'x_farming:corn_pop' },
|
||||||
{ 'default:paper', 'x_farming:salt', 'default:paper' },
|
{ 'default:paper', 'group:food_salt', 'default:paper' },
|
||||||
{ 'default:paper', 'default:paper', 'default:paper' },
|
{ 'default:paper', 'default:paper', 'default:paper' },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -225,7 +225,7 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:pumpkin_pie',
|
output = 'x_farming:pumpkin_pie',
|
||||||
recipe = { 'group:pumpkin', 'x_farming:flour', 'x_farming:bottle_soymilk', 'x_farming:sugar' }
|
recipe = { 'group:pumpkin', 'x_farming:flour', 'group:food_soy_milk', 'x_farming:sugar' }
|
||||||
})
|
})
|
||||||
|
|
||||||
-- pumpkin block carving
|
-- pumpkin block carving
|
||||||
|
@ -335,13 +335,13 @@ end
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:donut',
|
output = 'x_farming:donut',
|
||||||
recipe = { 'x_farming:bottle_soymilk', 'x_farming:sugar', 'x_farming:flour' }
|
recipe = { 'group:food_soy_milk', 'x_farming:sugar', 'x_farming:flour' }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:donut_chocolate',
|
output = 'x_farming:donut_chocolate',
|
||||||
recipe = { 'x_farming:bottle_soymilk', 'x_farming:sugar', 'x_farming:flour', 'x_farming:cocoa_bean' }
|
recipe = { 'group:food_soy_milk', 'x_farming:sugar', 'x_farming:flour', 'x_farming:cocoa_bean' }
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Fries
|
-- Fries
|
||||||
|
@ -349,7 +349,7 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'x_farming:fries',
|
output = 'x_farming:fries',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ '', '', 'x_farming:salt' },
|
{ '', '', 'group:food_salt' },
|
||||||
{ '', 'x_farming:bakedpotato', '' },
|
{ '', 'x_farming:bakedpotato', '' },
|
||||||
{ 'default:paper', '', '' }
|
{ 'default:paper', '', '' }
|
||||||
},
|
},
|
||||||
|
@ -942,35 +942,45 @@ minetest.register_craft({
|
||||||
|
|
||||||
-- Sushi
|
-- Sushi
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:sushi_maki',
|
output = 'x_farming:sushi_maki',
|
||||||
recipe = { 'x_farming:rice_grains', 'default:sand_with_kelp', 'group:fish' }
|
recipe = { 'group:food_rice', 'default:sand_with_kelp', 'group:fish' }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:sushi_nigiri',
|
output = 'x_farming:sushi_maki',
|
||||||
recipe = { 'x_farming:rice_grains', 'group:fish' }
|
recipe = { 'group:food_rice', 'group:food_seaweed', 'group:fish' }
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if not(minetest.get_modpath("ethereal")) then
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = 'shapeless',
|
||||||
|
output = 'x_farming:sushi_nigiri',
|
||||||
|
recipe = { 'group:food_rice', 'group:fish' }
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
-- Feasts
|
-- Feasts
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'x_farming:french_potatoes_1',
|
output = 'x_farming:french_potatoes_1',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ 'x_farming:bakedpotato', 'x_farming:bottle_soymilk', 'x_farming:bakedpotato' },
|
{ 'x_farming:bakedpotato', 'group:food_soy_milk', 'x_farming:bakedpotato' },
|
||||||
{ 'x_farming:bakedpotato', 'x_farming:corn', 'x_farming:bakedpotato' },
|
{ 'x_farming:bakedpotato', 'group:food_corn', 'x_farming:bakedpotato' },
|
||||||
{ 'x_farming:salt', 'x_farming:bowl', 'x_farming:salt' },
|
{ 'group:food_salt', 'group:food_bowl', 'group:food_salt' },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'x_farming:baked_fish_1',
|
output = 'x_farming:baked_fish_1',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ 'x_farming:beetroot', 'x_farming:rice_grains', 'x_farming:beetroot' },
|
{ 'x_farming:beetroot', 'group:food_rice', 'x_farming:beetroot' },
|
||||||
{ 'x_farming:carrot', 'group:fish', 'x_farming:carrot' },
|
{ 'x_farming:carrot', 'group:fish', 'x_farming:carrot' },
|
||||||
{ 'x_farming:salt', 'x_farming:bowl', 'x_farming:salt' },
|
{ 'group:food_salt', 'group:food_bowl', 'group:food_salt' },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -983,6 +993,15 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'x_farming:melon_slush_1',
|
||||||
|
recipe = {
|
||||||
|
{ 'x_farming:sugar', 'x_farming:melon_fruit', 'x_farming:sugar' },
|
||||||
|
{ 'default:ice', 'x_farming:melon_fruit', 'default:ice' },
|
||||||
|
{ 'default:ice', 'default:glass', 'default:ice' },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = 'shapeless',
|
type = 'shapeless',
|
||||||
output = 'x_farming:french_potatoes_1',
|
output = 'x_farming:french_potatoes_1',
|
||||||
|
@ -1015,7 +1034,7 @@ minetest.register_craft({
|
||||||
output = 'x_farming:chocolate_pie_1',
|
output = 'x_farming:chocolate_pie_1',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ 'x_farming:chocolate', 'x_farming:chocolate', 'x_farming:chocolate' },
|
{ 'x_farming:chocolate', 'x_farming:chocolate', 'x_farming:chocolate' },
|
||||||
{ 'x_farming:bottle_soymilk', 'x_farming:bottle_soymilk', 'x_farming:bottle_soymilk' },
|
{ 'group:food_soy_milk', 'group:food_soy_milk', 'group:food_soy_milk' },
|
||||||
{ 'x_farming:sugar', 'x_farming:flour', 'x_farming:sugar' },
|
{ 'x_farming:sugar', 'x_farming:flour', 'x_farming:sugar' },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1025,7 +1044,7 @@ minetest.register_craft({
|
||||||
recipe = {
|
recipe = {
|
||||||
{ 'x_farming:bottle_honey', 'x_farming:bottle_honey', 'x_farming:bottle_honey' },
|
{ 'x_farming:bottle_honey', 'x_farming:bottle_honey', 'x_farming:bottle_honey' },
|
||||||
{ 'x_farming:kiwi_fruit', 'x_farming:kiwi_fruit', 'x_farming:kiwi_fruit' },
|
{ 'x_farming:kiwi_fruit', 'x_farming:kiwi_fruit', 'x_farming:kiwi_fruit' },
|
||||||
{ 'x_farming:bottle_soymilk', 'x_farming:flour', 'x_farming:bottle_soymilk' },
|
{ 'group:food_soy_milk', 'x_farming:flour', 'group:food_soy_milk' },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -103,7 +103,8 @@ local bottle_honey_def = {
|
||||||
craftitem = 1,
|
craftitem = 1,
|
||||||
food = 3,
|
food = 3,
|
||||||
eatable = 6,
|
eatable = 6,
|
||||||
can_eat_when_full = 1
|
can_eat_when_full = 1,
|
||||||
|
food_honey = 1
|
||||||
},
|
},
|
||||||
_mcl_saturation = 1.2,
|
_mcl_saturation = 1.2,
|
||||||
}
|
}
|
||||||
|
@ -206,7 +207,9 @@ if minetest.get_modpath('mcl_farming') then
|
||||||
sushi_nigiri_def.on_secondary_use = minetest.item_eat(3)
|
sushi_nigiri_def.on_secondary_use = minetest.item_eat(3)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if not(minetest.get_modpath('ethereal')) then
|
||||||
minetest.register_craftitem('x_farming:sushi_nigiri', sushi_nigiri_def)
|
minetest.register_craftitem('x_farming:sushi_nigiri', sushi_nigiri_def)
|
||||||
|
end
|
||||||
|
|
||||||
-- Brick
|
-- Brick
|
||||||
minetest.register_craftitem('x_farming:silt_loam_brick', {
|
minetest.register_craftitem('x_farming:silt_loam_brick', {
|
||||||
|
|
|
@ -671,6 +671,7 @@ for i, def in ipairs(fishes) do
|
||||||
-- MCL
|
-- MCL
|
||||||
food = 2,
|
food = 2,
|
||||||
eatable = 5,
|
eatable = 5,
|
||||||
|
food_fish = 1
|
||||||
},
|
},
|
||||||
_mcl_saturation = 6,
|
_mcl_saturation = 6,
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,7 @@ local melon_def = {
|
||||||
food = 2,
|
food = 2,
|
||||||
eatable = 2,
|
eatable = 2,
|
||||||
compostability = 50,
|
compostability = 50,
|
||||||
|
food_melon = 1
|
||||||
},
|
},
|
||||||
_mcl_saturation = 1.2,
|
_mcl_saturation = 1.2,
|
||||||
wield_image = 'x_farming_melon.png',
|
wield_image = 'x_farming_melon.png',
|
||||||
|
|
|
@ -48,7 +48,7 @@ minetest.register_craftitem('x_farming:sugar', {
|
||||||
description = S('Sugar'),
|
description = S('Sugar'),
|
||||||
short_description = S('Sugar'),
|
short_description = S('Sugar'),
|
||||||
inventory_image = 'x_farming_sugar.png',
|
inventory_image = 'x_farming_sugar.png',
|
||||||
groups = { flammable = 1 },
|
groups = { flammable = 1 , food_sugar = 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
---crate
|
---crate
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue