From 350c18a966c66de7093d0234b5f80a863ad40e25 Mon Sep 17 00:00:00 2001 From: "LNJ (on MT Server)" Date: Sat, 28 Jan 2017 22:22:52 +0100 Subject: [PATCH] Farming: Make growing slower (x2) --- mods/farming/plants.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/farming/plants.lua b/mods/farming/plants.lua index 202a57d..a9dd910 100644 --- a/mods/farming/plants.lua +++ b/mods/farming/plants.lua @@ -1,7 +1,7 @@ farming.register_crop("wheat", { description = "Wheat", steps = 8, - growtime = 500, + growtime = 1000, has_seed = true, craft_seed_by_harvest = true, cond = { @@ -13,7 +13,7 @@ farming.register_crop("wheat", { farming.register_crop("cotton", { description = "Cotton", steps = 8, - growtime = 520, + growtime = 1040, has_seed = true, cond = { fertility = {"grassland", "desert"}, @@ -24,7 +24,7 @@ farming.register_crop("cotton", { farming.register_crop("potato", { description = "Potato", steps = 3, - growtime = 450, + growtime = 900, has_seed = false, cond = { fertility = {"grassland"}, @@ -40,8 +40,8 @@ farming.register_crop("strawberry", { steps = 7, step_after_harvest = 4, -- after the plant has been harvested, - -- it only needs ~380 s to get mature again - growtime = 900, + -- it only needs ~760 s to get mature again + growtime = 1800, has_seed = false, cond = { fertility = {"grassland"}, @@ -55,7 +55,7 @@ farming.register_crop("strawberry", { farming.register_crop("lettuce", { description = "Lettuce", steps = 7, - growtime = 380, + growtime = 760, has_seed = false, cond = { fertility = {"grassland"},