1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 23:01:00 +02:00

Add lettuce and blackberries with recipes (thanks OgelGames)

This commit is contained in:
tenplus1
2020-12-10 15:37:44 +00:00
parent 0e108c4b2a
commit 45b5a073e0
21 changed files with 201 additions and 2 deletions

View File

@ -7,7 +7,7 @@
farming = {
mod = "redo",
version = "20201209",
version = "20201210",
path = minetest.get_modpath("farming"),
select = {
type = "fixed",
@ -629,6 +629,8 @@ farming.peas = 0.001
farming.beetroot = 0.001
farming.mint = 0.005
farming.cabbage = 0.001
farming.blackberry = 0.002
farming.lettuce = 0.001
farming.grains = true
farming.rarety = 0.002
@ -695,6 +697,8 @@ ddoo("chili.lua", farming.chili)
ddoo("ryeoatrice.lua", farming.grains)
ddoo("mint.lua", farming.mint)
ddoo("cabbage.lua", farming.cabbage)
ddoo("blackberry.lua", farming.blackberry)
ddoo("lettuce.lua", farming.lettuce)
dofile(farming.path .. "/food.lua")
dofile(farming.path .. "/mapgen.lua")