Skip to main content

Soil

Soils are blocks crops can grow on. AgriCraft ships default soils, but these can be modified and new soils can be added with a datapack.

To create your own soil, add a new json file in the directory data/<namespace>/agricraft/soils/<soil_id>.json where namespace is the namespace and soil_id is the ID of this soil, which can be whatever you want.

Every soil requires the following fields:

  • mods: mods needed for the soil to be loaded.
  • variants: array of blocks representing this soil. Every soil object consists of:
    • block: tag or a resource location of the block.
    • states: list of states the block must match. [optional]
  • humidity: humidity condition of the soil. Accepted values can be found here.
  • acidity: acidity condition of the soil. Accepted values can be found here.
  • nutrients: nutrient condition of the soil. Accepted values can be found here.
  • growth_modifier: value used to modify the growth of the plants on this soil. The default value is 1.0. Higher values will increase the growth speed, while lower ones will decrease it.

The example below shows soul soil as a soil:

{
"mods": [],
"variants": [
{
"block": "minecraft:soul_soil"
}
],
"acidity": "neutral",
"humidity": "arid",
"nutrients": "very_high",
"growth_modifier": 1.0
}

Soil conditions

Humidity

IndexConditionAlias
0arid
1dry
2dampmoist
3wetstandard default
4watery
5flooded

Acidity

IndexConditionAlias
0highly_acidichighly-acidic highly acidic
1acidic
2slightly_acidicslightly-acidic slightly acidic
3neutral
4slightly_alkalineslightly-alkaline slightly alkaline
5alkaline
6highly_alkalinehighly-alkaline highly alkaline

Nutrients

IndexConditionAlias
0nonezero empty
1very_lowscarce poor
2low
3mediumaverage
4high
5very_highrich