summaryrefslogtreecommitdiff
path: root/farming
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-23 09:44:13 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-23 09:44:13 -0400
commit7097ab9f4eff53b4b2022f268471d205a479760c (patch)
treecc26c755067246b93670a5740c3c35f797a4544d /farming
parentec4a1ae4ec6d66fced18f97433f8cf5b2e694d4e (diff)
downloaddreambuilder_modpack-7097ab9f4eff53b4b2022f268471d205a479760c.tar
dreambuilder_modpack-7097ab9f4eff53b4b2022f268471d205a479760c.tar.gz
dreambuilder_modpack-7097ab9f4eff53b4b2022f268471d205a479760c.tar.bz2
dreambuilder_modpack-7097ab9f4eff53b4b2022f268471d205a479760c.tar.xz
dreambuilder_modpack-7097ab9f4eff53b4b2022f268471d205a479760c.zip
update farmind, homedecor, and unified dyes
Diffstat (limited to 'farming')
-rw-r--r--farming/README.md2
-rw-r--r--farming/lucky_block.lua37
2 files changed, 37 insertions, 2 deletions
diff --git a/farming/README.md b/farming/README.md
index 012edd4..55ddee0 100644
--- a/farming/README.md
+++ b/farming/README.md
@@ -59,4 +59,4 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
- 0.1 - Fixed growing bug
- 0.0 - Initial release
-### Lucky Blocks: 30
+### Lucky Blocks: 38
diff --git a/farming/lucky_block.lua b/farming/lucky_block.lua
index b24ed32..6f656ff 100644
--- a/farming/lucky_block.lua
+++ b/farming/lucky_block.lua
@@ -15,7 +15,7 @@ if minetest.get_modpath("lucky_block") then
{"dro", {"farming:bottle_ethanol"}, 1},
{"nod", "farming:melon", 0},
{"dro", {"farming:donut", "farming:donut_chocolate", "farming:donut_apple"}, 5},
- {"dro", {"farming:hemp_leaf", "farming:hemp_fibre", "farming:seed_hemp"}, 5},
+ {"dro", {"farming:hemp_leaf", "farming:hemp_fibre", "farming:seed_hemp"}, 10},
{"nod", "fire:permanent_flame", 1},
{"dro", {"farming:chili_pepper", "farming:chili_bowl"}, 5},
{"dro", {"farming:bowl"}, 3},
@@ -34,5 +34,40 @@ if minetest.get_modpath("lucky_block") then
{"dro", {"farming:hoe_bomb"}, 10},
{"dro", {"farming:turkish_delight"}, 5},
{"lig"},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:carrot_8"},
+ {"farming:cotton_8", "farming:rhubarb_3"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:pepper_5"},
+ {"farming:cotton_8", "farming:onion_5"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:beetroot_5"},
+ {"farming:cotton_8", "farming:barley_7"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:corn_8"},
+ {"farming:cotton_8", "farming:grapes_8"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:pea_5"},
+ {"farming:cotton_8", "farming:coffee_5"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:raspberry_4"},
+ {"farming:cotton_8", "farming:tomato_8"},
+ }},
+ {"sch", "instafarm", 0, true, {
+ {"farming:wheat_8", "farming:chili_8"},
+ {"farming:cotton_8", "farming:cucumber_4"},
+ }},
+ {"nod", "default:chest", 0, {
+ {name = "farming:seed_wheat", max = 15},
+ {name = "farming:seed_barley", max = 15},
+ {name = "farming:seed_barley", max = 15},
+ {name = "farming:seed_hemp", max = 15},
+ {name = "farming:soil_wet", max = 10},
+ }},
})
end