2022-12-01 16:44:52 +01:00

69 lines
1.2 KiB
Lua

minetest.register_craft({
output = "dye:brown 2",
recipe = {
{"livingfloatlands:coldsteppe_grass1"}
},
})
minetest.register_craft({
output = "dye:brown 2",
recipe = {
{"livingfloatlands:coldsteppe_grass2"}
},
})
minetest.register_craft({
output = "dye:black 2",
recipe = {
{"livingfloatlands:coldsteppe_grass3"}
},
})
minetest.register_craft({
output = "dye:yellow 2",
recipe = {
{"livingfloatlands:coldsteppe_bulbouschervil_plant"}
},
})
minetest.register_craft({
output = "dye:white 2",
recipe = {
{"livingfloatlands:giantforest_grass"}
},
})
minetest.register_craft({
output = "dye:blue 2",
recipe = {
{"livingfloatlands:giantforest_grass2"}
},
})
minetest.register_craft({
output = "dye:yellow 2",
recipe = {
{"livingfloatlands:giantforest_grass3"}
},
})
minetest.register_craft({
output = "dye:brown 2",
recipe = {
{"livingfloatlands:giantforest_oaknut"}
},
})
minetest.register_craft({
output = "dye:cyan 2",
recipe = {
{"livingfloatlands:puzzlegrass"}
},
})
minetest.register_craft({
output = "dye:cyan 2",
recipe = {
{"livingfloatlands:puzzlegrass_top"}
},
})