Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
20
mods/potted_farming/recipes.lua
Normal file
20
mods/potted_farming/recipes.lua
Normal 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"},
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue