2018-05-11 13:02:26 +02:00
|
|
|
-- *******************************************
|
|
|
|
-- ** Recipe differences **
|
|
|
|
-- *******************************************
|
|
|
|
|
|
|
|
if(cucina_vegana_farming_default) then
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "cucina_vegana:lettuce_oil",
|
|
|
|
recipe = { {"cucina_vegana:seed_lettuce", "cucina_vegana:seed_lettuce", "cucina_vegana:seed_lettuce"},
|
|
|
|
{"cucina_vegana:seed_lettuce", "cucina_vegana:seed_lettuce", "cucina_vegana:seed_lettuce"},
|
|
|
|
{"", "vessels:glass_bottle", ""}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "cucina_vegana:lettuce_oil",
|
|
|
|
recipe = { {"cucina_vegana:lettuce_seed", "cucina_vegana:lettuce_seed", "cucina_vegana:lettuce_seed"},
|
|
|
|
{"cucina_vegana:lettuce_seed", "cucina_vegana:lettuce_seed", "cucina_vegana:lettuce_seed"},
|
|
|
|
{"", "vessels:glass_bottle", ""}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
-- *******************************************
|
|
|
|
-- ** Additional Recipes with other Mods **
|
|
|
|
-- *******************************************
|
|
|
|
|
|
|
|
if minetest.get_modpath("mobs") then
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:meat_raw",
|
|
|
|
recipe = {
|
|
|
|
{"cucina_vegana:tofu", "cucina_vegana:tofu", "cucina_vegana:tofu"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:chicken_raw",
|
|
|
|
recipe = {
|
|
|
|
{"", "", "cucina_vegana:tofu"},
|
|
|
|
{"", "cucina_vegana:tofu", ""},
|
|
|
|
{"cucina_vegana:tofu", "", ""},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
end -- if mobs
|
|
|
|
|
|
|
|
if minetest.get_modpath("animalmaterials") then
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "animalmaterials:milk",
|
|
|
|
recipe = {
|
|
|
|
{"cucina_vegana:milk", "cucina_vegana:milk", "cucina_vegana:milk"},
|
|
|
|
{"", "vessels:glass_bottle", ""}
|
|
|
|
},
|
|
|
|
replacements = {{"cucina_vegana:milk", "vessels:drinking_glass"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
end -- if animalmaterials
|
|
|
|
|
|
|
|
if minetest.get_modpath("fishing") then
|
|
|
|
|
2018-12-30 23:19:23 +01:00
|
|
|
minetest.override_item("fishing:fish_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:clownfish_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:bluewhite_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:exoticfish_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:carp_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:perch_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item("fishing:catfish_raw", {
|
|
|
|
groups = {food_fish = 1}
|
|
|
|
})
|
|
|
|
|
2018-08-06 22:53:50 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "fishing:fish",
|
|
|
|
recipe = "group:food_fish",
|
|
|
|
cooktime = 2,
|
|
|
|
})
|
|
|
|
|
2018-05-11 13:02:26 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "fishing:sushi",
|
|
|
|
recipe = {"fishing:fish_raw","group:food_rice","flowers:seaweed"},
|
|
|
|
|
|
|
|
replacements = {{"group:food_rice", "cucina_vegana:bowl"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "fishing:sushi",
|
|
|
|
recipe = {"fishing:fish_raw","group:food_rice","seaplants:kelpgreen"},
|
|
|
|
replacements = {{"group:food_rice", "cucina_vegana:bowl"}}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "fishing:sushi",
|
|
|
|
recipe = {"group:food_fish","group:food_rice","flowers:seaweed"},
|
|
|
|
|
|
|
|
replacements = {{"group:food_rice", "cucina_vegana:bowl"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "fishing:sushi",
|
|
|
|
recipe = {"group:food_fish","group:food_rice","seaplants:kelpgreen"},
|
|
|
|
replacements = {{"group:food_rice", "cucina_vegana:bowl"}}
|
|
|
|
|
|
|
|
})
|
2018-12-30 23:19:23 +01:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "fishing:sushi",
|
|
|
|
recipe = {"group:food_fish","group:food_rice","default:jungleleaves"},
|
|
|
|
replacements = {{"group:food_rice", "cucina_vegana:bowl"}}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2018-05-16 19:18:41 +02:00
|
|
|
end
|
2018-05-11 13:02:26 +02:00
|
|
|
|
2018-05-17 01:24:05 +02:00
|
|
|
if minetest.get_modpath("bbq") then
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
-- *** group:food_meat
|
|
|
|
|
|
|
|
--BBQ Beef Ribs Craft Recipe
|
2018-05-17 01:24:05 +02:00
|
|
|
minetest.register_craft( {
|
2018-05-17 22:50:44 +02:00
|
|
|
output = "bbq:bbq_beef_ribs_raw 2",
|
2018-05-17 01:24:05 +02:00
|
|
|
type = "shapeless",
|
2018-05-17 22:50:44 +02:00
|
|
|
recipe = {"bbq:bbq_sauce", "group:food_meat", "group:food_pepper_ground"}
|
2018-05-17 01:24:05 +02:00
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--Corned Beef Craft Recipe
|
2018-05-17 01:24:05 +02:00
|
|
|
minetest.register_craft( {
|
2018-05-17 22:50:44 +02:00
|
|
|
output = "bbq:corned_beef_raw",
|
2018-05-17 01:24:05 +02:00
|
|
|
type = "shapeless",
|
2018-05-17 22:50:44 +02:00
|
|
|
recipe = {"group:food_peppercorn", "group:food_meat","bbq:brine",}
|
2018-05-17 01:24:05 +02:00
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--BBQ Brisket Craft Recipe
|
2018-05-17 01:24:05 +02:00
|
|
|
minetest.register_craft( {
|
2018-05-17 22:50:44 +02:00
|
|
|
output = "bbq:brisket_raw 2",
|
2018-05-17 01:24:05 +02:00
|
|
|
type = "shapeless",
|
2018-05-17 22:50:44 +02:00
|
|
|
recipe = {"bbq:bbq_sauce", "bbq:molasses", "group:food_meat", "group:food_garlic_clove"}
|
2018-05-17 01:24:05 +02:00
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--London Broil Craft Recipe
|
2018-05-17 01:24:05 +02:00
|
|
|
minetest.register_craft( {
|
2018-05-17 22:50:44 +02:00
|
|
|
output = "bbq:london_broil_raw 2",
|
2018-05-17 01:24:05 +02:00
|
|
|
type = "shapeless",
|
2018-05-17 22:50:44 +02:00
|
|
|
recipe = {"bbq:bacon", "group:food_garlic_clove", "group:food_meat"}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Beef Jerky Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:beef_jerky_raw 3",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"bbq:liquid_smoke", "bbq:brine", "group:food_meat"}
|
2018-05-17 01:24:05 +02:00
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--Pepper Steak Craft Recipe
|
2018-05-17 01:24:05 +02:00
|
|
|
minetest.register_craft( {
|
2018-05-17 22:50:44 +02:00
|
|
|
output = "bbq:pepper_steak_raw",
|
2018-05-17 01:24:05 +02:00
|
|
|
type = "shapeless",
|
2018-05-17 22:50:44 +02:00
|
|
|
recipe = {"group:food_pepper_ground", "group:food_meat", "group:food_pepper_ground"}
|
2018-05-17 01:24:05 +02:00
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
-- *** group:food_bread
|
|
|
|
|
2018-05-17 01:24:05 +02:00
|
|
|
--Cheese Steak Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:cheese_steak 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_bread", "group:food_pepper", "bbq:beef", "group:food_cheese", "group:food_onion"}
|
|
|
|
})
|
2018-05-17 22:50:44 +02:00
|
|
|
|
2018-05-17 01:24:05 +02:00
|
|
|
--Bacon Cheeseburger Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:bacon_cheeseburger 3",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_bread", "bbq:bacon", "bbq:hamburger_patty", "group:food_cheese"}
|
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--Bacon Cheeseburger Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:bacon_cheeseburger 3",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_bread", "bbq:bacon", "group:food_meat", "group:food_cheese"}
|
|
|
|
})
|
|
|
|
|
2018-05-17 01:24:05 +02:00
|
|
|
--Hamburger Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:hamburger 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_bread", "bbq:hamburger_patty"}
|
|
|
|
})
|
|
|
|
|
2018-05-17 22:50:44 +02:00
|
|
|
--Hamburger Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:hamburger 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_bread", "group:food_meat"}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Hotdog Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:hotdog 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"bbq:hotdog_cooked", "group:food_bread"}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Pulled Pork Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:pulled_pork 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"mobs:pork_cooked", "group:food_bread", "bbq:bbq_sauce"}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2018-05-17 01:24:05 +02:00
|
|
|
--Stuffed Chop Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:stuffed_chop_raw 3",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_onion", "group:food_bread", "flowers:mushroom_brown", "mobs:pork_raw", "default:apple"}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Stuffed Mushroom Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:stuffed_mushroom_raw 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_tomato", "group:food_bread", "flowers:mushroom_brown"}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Stuffed Pepper Craft Recipe
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "bbq:stuffed_pepper_raw 3",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"group:food_cheese", "group:food_bread", "group:food_pepper"}
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
|