README.txt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. Minetest Game mod: farming
  2. ==========================
  3. See license.txt for license information.
  4. Mod for extending the farming capabilities of minetest.
  5. You have wild crops, which you can cultivate to get faster and more harvest.
  6. The crops can be infected, where you get nothing. And the infection spreads to nearby crops.
  7. A culture of crops can be destroyed by the infection, where the cultured variant of crops
  8. are easier infected than the wild form.
  9. With special plants (right now nettles) you can make a curing mixture. And other plants can protect the culture.
  10. You should use special devices to get more fruits:
  11. - With a scythe you dig the node and by change get one more harvest. The change is better for a steel scythe than for stone or wood
  12. - With a billhook you punch for example berries to get by change one berry more.
  13. Booth are weared out by each harvest.
  14. For each crop you can define the count of step. In the last step the crop is full-grown, where the crops can be punchable.
  15. The defined grow time is modified by the amount of light the crop would see and the place: The less light at
  16. the position will be (under a tree for example), the longer the crop needs to reach the next step.
  17. The code is written to enable extension by other mods.
  18. You have only one txt file to configure the crops. It's read in a table. Not defined fields are filled,
  19. if a default row is given. If no default is given, the field is not importet to the crop.
  20. Based on the definition the behauvior is defined:
  21. - Crops with harvest (Wheat, Barley, Spelt, Nettle, Hemp): The crop has to be digged and drops a harvest, which can not be seeded again.
  22. The seed has to be crafted out of the harvest. If the option "use_flail" is activated, a standard
  23. craft is used: With a flail you get one seed and one straw (default, can be changed by field "straw").
  24. The seed can be placed again to grow more.
  25. If a cultured variant is given (Wheat), by change you get cultured harvest, which grows faster, has more harvest,
  26. gets easier infected or what ever is defined for the cultured crop.
  27. Most kind of wheat, barley and so on are defined this way.
  28. - Crops with seed: The crop drops directly seed. The amount is given in the configuration by "max_harvest".
  29. Crops like potato or corn are defined in this way.
  30. - Punchable fruits (Berries, Tea, Tobaco, Coffee): Full-grown fruits can be punched to give one fruit and back one step. After the growing
  31. time the fruits are available again. The full-grown can't be digged. It will be punched, directly afterwards
  32. the second last step will be digged, giving one fruit.
  33. - Crops with trellis (Tomatoes, Hop, Grapes): For creating seedable items you have to craft out of the harvest the seed with a trellis.
  34. Digging any step will release the trellis for further usage. By using the option "use_trellis" the craft
  35. is direct registered.
  36. - crops with extractable seed (Tea, Tobaco): The normal harvest are the leaves of the plant, which you can punch out of the box.
  37. To get a seed of the fruit, you have to use a seed picker. The plant goes back one step and need to regrow booth
  38. leaves and seed.
  39. Authors of source code
  40. ----------------------
  41. Originally by PilzAdam (MIT)
  42. webdesigner97 (MIT)
  43. TenPlus1 (MIT)
  44. ademant (MIT)
  45. Various Minetest developers and contributors (MIT)
  46. Authors of media (textures)
  47. ---------------------------
  48. Created by PilzAdam (CC BY 3.0):
  49. farming_bread.png
  50. farming_soil.png
  51. farming_soil_wet.png
  52. farming_soil_wet_side.png
  53. farming_string.png
  54. Created by BlockMen (CC BY 3.0):
  55. farming_tool_steelhoe.png
  56. farming_tool_stonehoe.png
  57. farming_tool_woodhoe.png
  58. Created by MasterGollum (CC BY 3.0):
  59. farming_straw.png
  60. Created by Gambit (CC BY 3.0):
  61. farming_wheat.png
  62. farming_wheat_*.png
  63. farming_cotton_*.png
  64. farming_flour.png
  65. farming_cotton_seed.png
  66. farming_wheat_seed.png
  67. Created by Napiophelios (CC BY-SA 3.0):
  68. farming_cotton.png
  69. Created by Ten1Plus (CC BY-SA 3.0):
  70. farming_hemp.png
  71. farming_beetroot
  72. farming_strawberry
  73. Created by ademant (CC BY 3.0):
  74. farming_tool_flail.png
  75. farming_tool_coffee_grinder.png (based on art by cactus_cowboy on openclipart.org)
  76. farming_tool_scythe (based on svg by Rinaldum on wikimedia)
  77. farming_tool_billhook (based on svg by Henrysalome on wikimedia)
  78. farming_sugerbeet (based on farming_beetroot)
  79. farming_blackberry (based on farming_blueberry)
  80. farming_blackberry_seed (based on jpg from AlbertCahalan on wikimedia)
  81. farming_blueberry_seed (based on jpg from Bateau ivre on wikimedia)
  82. farming_strawberry_seed (based on gif from Nicke L on wikimedia)
  83. farming_raspberry_seed (based on jpg from AlbertCahalan on wikimedia)
  84. farming_mustard
  85. farming_spelt (based on farming_barley)
  86. farming_hop
  87. farming_tobaco (based on pictures of wikimedia)
  88. farming_tool_spinningwheal (based on drawing by firkin on opencliparts)
  89. farming_yarn (based on picture from ikiwana on wikimedia)