Pilz- und Fischrezepte angepasst
This commit is contained in:
parent
a0c893ca0b
commit
df3b4e6104
3 changed files with 109 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue