diff options
author | Wuzzy <almikes@aol.com> | 2016-07-24 02:14:01 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-07-24 02:14:01 +0200 |
commit | 14856a1421e460c87c37fab5f5fcb50e0013eae8 (patch) | |
tree | 32e4e191b5711f8f24e655ad180cea12a9d4ba12 /init.lua | |
parent | e16b53c9a474d8086e5dd2dacc89cbd7a460d89f (diff) |
Update many texts about plants
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -237,8 +237,14 @@ doc.new_category("nodes", { formstring = formstring .. "This block is choppy to some extent and can be dug by axes and similar tools.\n" end + if data.def.groups.flora == 1 then + formstring = formstring .. "This block is a living organism which likes to grow and spread on dirt with grass or dirt with dry grass when it is in light. On desert sand, it will wither and die and turn into a dry shrub.\n" + end + if data.def.groups.soil == 1 then - formstring = formstring .. "This block can be turned into soil with a hoe.\n" + formstring = formstring .. "This block is natural soil for wild plants such as grass, mushrooms or and supports their growth and spreading.\n" + elseif data.def.groups.soil == 2 or data.def.groups.soil == 3 then + formstring = formstring .. "This block serves as a soil for wild plants as well as plants grown from seeds. It supports their growth and spreading.\n" end if data.def.groups.fleshy ~= nil then |