- To add crops to a datapack, you must add its block with the proper namespace (i.e. "minecraft:wheat") to the appropriate block tags for it to function.  Additionally, item tags for each season exist to show a tooltip for which season a seed/crop/etc. is fertile in.

- The unbreakable_infertile_crops tag is only used when the out of season crop behavior option in the fertility config is set to break crops.  This tag changes which crop blocks cannot break when that option is used.

- To add blocks that function as greenhouse glass, you can use the grenhouse_glass block tag.

- Biome tags exist as well.  Tropical biomes will use tropical seasons instead of the standard temperate seasons.  Blacklisted biomes will not have any seasonal effects at all, and will allow all crops to be fertile year-round.  Infertile biomes will cause all crops to be infertile, regardless of the current season.  Less color change biomes will have a less drastic changing of colors throughout the seasons.

- Files must be formatted as follows (Use an online JSON validator if you are unsure):

{
  "replace": false,
  "values": [
    "examplemod:example_source",
	"examplemod:example_source_1",
	"examplemod:example_source_2"
  ]
}