Rest der Rezepte amgepasst
This commit is contained in:
parent
473e550453
commit
92a55732cf
14 changed files with 278 additions and 113 deletions
|
@ -31,7 +31,7 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
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({
|
||||
|
@ -76,7 +76,7 @@ minetest.register_craft({
|
|||
output = 'x_farming:fish_stew',
|
||||
recipe = {
|
||||
{ '', 'group:fish', '' },
|
||||
{ 'x_farming:carrot', 'x_farming:bakedpotato', 'x_farming:salt' },
|
||||
{ 'x_farming:carrot', 'x_farming:bakedpotato', 'group:food_salt' },
|
||||
{ '', 'x_farming:bowl', '' }
|
||||
}
|
||||
})
|
||||
|
@ -137,7 +137,7 @@ minetest.register_craft({
|
|||
output = 'x_farming:corn_popcorn',
|
||||
recipe = {
|
||||
{ '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' },
|
||||
}
|
||||
})
|
||||
|
@ -225,7 +225,7 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
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
|
||||
|
@ -335,13 +335,13 @@ end
|
|||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
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({
|
||||
type = 'shapeless',
|
||||
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
|
||||
|
@ -349,7 +349,7 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
output = 'x_farming:fries',
|
||||
recipe = {
|
||||
{ '', '', 'x_farming:salt' },
|
||||
{ '', '', 'group:food_salt' },
|
||||
{ '', 'x_farming:bakedpotato', '' },
|
||||
{ 'default:paper', '', '' }
|
||||
},
|
||||
|
@ -942,35 +942,45 @@ minetest.register_craft({
|
|||
|
||||
-- Sushi
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'x_farming:sushi_maki',
|
||||
recipe = { 'x_farming:rice_grains', 'default:sand_with_kelp', 'group:fish' }
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'x_farming:sushi_maki',
|
||||
recipe = { 'group:food_rice', 'default:sand_with_kelp', 'group:fish' }
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'x_farming:sushi_nigiri',
|
||||
recipe = { 'x_farming:rice_grains', 'group:fish' }
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'x_farming:sushi_maki',
|
||||
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
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'x_farming:french_potatoes_1',
|
||||
recipe = {
|
||||
{ 'x_farming:bakedpotato', 'x_farming:bottle_soymilk', 'x_farming:bakedpotato' },
|
||||
{ 'x_farming:bakedpotato', 'x_farming:corn', 'x_farming:bakedpotato' },
|
||||
{ 'x_farming:salt', 'x_farming:bowl', 'x_farming:salt' },
|
||||
{ 'x_farming:bakedpotato', 'group:food_soy_milk', 'x_farming:bakedpotato' },
|
||||
{ 'x_farming:bakedpotato', 'group:food_corn', 'x_farming:bakedpotato' },
|
||||
{ 'group:food_salt', 'group:food_bowl', 'group:food_salt' },
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'x_farming:baked_fish_1',
|
||||
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: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({
|
||||
type = 'shapeless',
|
||||
output = 'x_farming:french_potatoes_1',
|
||||
|
@ -1015,7 +1034,7 @@ minetest.register_craft({
|
|||
output = 'x_farming:chocolate_pie_1',
|
||||
recipe = {
|
||||
{ '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' },
|
||||
}
|
||||
})
|
||||
|
@ -1025,7 +1044,7 @@ minetest.register_craft({
|
|||
recipe = {
|
||||
{ '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:bottle_soymilk', 'x_farming:flour', 'x_farming:bottle_soymilk' },
|
||||
{ 'group:food_soy_milk', 'x_farming:flour', 'group:food_soy_milk' },
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue