forked from mtcontrib/farming
locale
textures
.gitignore
README.txt
barley.lua
beanpole.lua
blueberry.lua
carrot.lua
chili.lua
cocoa.lua
coffee.lua
compatibility.lua
corn.lua
cotton.lua
cucumber.lua
depends.txt
description.txt
donut.lua
farming.conf_example
garlic.lua
grapes.lua
grass.lua
hemp.lua
hoes.lua
init.lua
intllib.lua
license.txt
lucky_block.lua
mapgen.lua
melon.lua
mod.conf
onion.lua
pea.lua
pepper.lua
pineapple.lua
potato.lua
pumpkin.lua
raspberry.lua
rhubarb.lua
screenshot.png
soil.lua
statistics.lua
sugar.lua
tomato.lua
utensils.lua
wheat.lua
36 lines
856 B
Plaintext
36 lines
856 B
Plaintext
|
|
--[[
|
|
Farming settings can be changed here and kept inside mod folder
|
|
even after the mod has been updated, or you can place inside
|
|
world folder for map specific settings.
|
|
--]]
|
|
|
|
-- true to enable crop/food in-game and on mapgen
|
|
farming.carrot = true
|
|
farming.potato = true
|
|
farming.tomato = true
|
|
farming.cucumber = true
|
|
farming.corn = true
|
|
farming.coffee = true
|
|
farming.melon = true
|
|
farming.sugar = true
|
|
farming.pumpkin = true
|
|
farming.cocoa = true
|
|
farming.raspberry = true
|
|
farming.blueberry = true
|
|
farming.rhubarb = true
|
|
farming.beans = true
|
|
farming.grapes = true
|
|
farming.barley = true
|
|
farming.chili = true
|
|
farming.hemp = true
|
|
farming.onion = true
|
|
farming.garlic = true
|
|
farming.pepper = true
|
|
farming.pineapple = true
|
|
farming.peas = true
|
|
farming.donuts = true
|
|
|
|
-- rarety of crops on map, default is 0.001 (higher number = more crops)
|
|
farming.rarety = 0.001
|