Pilz- und Fischrezepte angepasst
This commit is contained in:
parent
a0c893ca0b
commit
df3b4e6104
3 changed files with 109 additions and 0 deletions
|
@ -489,6 +489,13 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:sushi_nigiri 2",
|
||||
recipe = {
|
||||
{"group:food_rice", "group:fish", ""}
|
||||
}
|
||||
})
|
||||
|
||||
-- Tamago (sushi with sweet egg)
|
||||
|
||||
minetest.register_craftitem("ethereal:sushi_tamago", {
|
||||
|
@ -766,6 +773,27 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:sashimi 2",
|
||||
recipe = {
|
||||
{"group:food_seaweed", "group:fish", "group:food_seaweed"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:sashimi 2",
|
||||
recipe = {
|
||||
{"default:sand_with_kelp", "group:food_fish_raw", "default:sand_with_kelp"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "ethereal:sashimi 2",
|
||||
recipe = {
|
||||
{"default:sand_with_kelp", "group:fish", "default:sand_with_kelp"},
|
||||
}
|
||||
})
|
||||
|
||||
-- agar powder
|
||||
|
||||
minetest.register_craftitem("ethereal:agar_powder", {
|
||||
|
|
|
@ -1217,6 +1217,78 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
--brown mushroom cycle
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:brown 2",
|
||||
recipe = {"ethereal:mushroom_brown_sapling 2"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "flowers:mushroom_brown",
|
||||
recipe = {"riesenpilz:brown"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:brown45",
|
||||
recipe = {"flowers:mushroom_brown"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "ethereal:mushroom_brown_sapling",
|
||||
recipe = {"riesenpilz:brown45"}
|
||||
})
|
||||
|
||||
--red mushroom cycle
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:red 2",
|
||||
recipe = {"ethereal:mushroom_sapling 2"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "flowers:mushroom_red",
|
||||
recipe = {"riesenpilz:red"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:red45",
|
||||
recipe = {"flowers:mushroom_red"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:fly_agaric",
|
||||
recipe = {"riesenpilz:red45"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "ethereal:mushroom_sapling",
|
||||
recipe = {"riesenpilz:fly_agaric"}
|
||||
})
|
||||
|
||||
--Parasol mushroom cycle
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "herbs:mushroom_macrolepiota",
|
||||
recipe = {"riesenpilz:parasol"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = "riesenpilz:parasol",
|
||||
recipe = {"herbs:mushroom_macrolepiota"}
|
||||
})
|
||||
|
||||
|
||||
--[[ unfinished
|
||||
if minetest.global_exists(technic) then
|
||||
|
|
|
@ -984,6 +984,15 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'x_farming:baked_fish_1',
|
||||
recipe = {
|
||||
{ 'x_farming:beetroot', 'group:food_rice', 'x_farming:beetroot' },
|
||||
{ 'x_farming:carrot', 'group:food_fish_raw', 'x_farming:carrot' },
|
||||
{ 'group:food_salt', 'group:food_bowl', 'group:food_salt' },
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'x_farming:melon_slush_1',
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue