first commit

This commit is contained in:
Rainer 2025-08-22 02:07:06 +02:00
commit a5f6d52b60
113 changed files with 3263 additions and 0 deletions

20
recipes.lua Normal file
View file

@ -0,0 +1,20 @@
local pf = potted_farming
--if minetest.registered_craftitems["flowerpot:empty"] then
minetest.register_craft({
output = pf.modname .. ":pot_with_soil",
recipe = {
{"", "", ""},
{"default:clay_brick", "default:dirt", "default:clay_brick"},
{"dye:orange", "default:clay_brick", "dye:brown"},
}
})
minetest.register_craft({
output = pf.modname .. ":empty_watering_can",
recipe = {
{"default:tin_ingot", "", "dye:green"},
{"default:tin_ingot", "", "default:tin_ingot"},
{"dye:green", "default:tin_ingot", "dye:green"},
}
})