HomeJavaModsGood Farming
Good Farming

Good Farming

Minecraft Beta 1.7.3 Modrinth Downloads Maven Version

Beta 1.7.3 additions and tweaks to make farming easier.

Adds a Seed Bag, which stores up to 512 Seeds or Bone Meal, and plants on farmland in a 7×5×7 area by right-clicking it on top of a block. The bag can also be used from further away than regular items (5 blocks). A Seed Bag can only hold one type of item, and cannot be emptied other than by using it. Seeds picked up will automatically go into Seed Bags in your inventory that already contain at least one seed.

Other tweaks include:

Screenshot of Minecraft Beta 1.7.3 farm. The text reads 'Plant many items at once!', 'Seeds', 'Bone Meal', and 'Walk 
without trampling crops!'

Items

Seed Bag

Recipe for the Seed Bag, which requires 1 string on top of 1 leather, and crafts 1 Seed Bag.

1x String + 1x Leather (shaped) → 1x Seed bag. Holds 512 seeds.

Seed Bag + Seeds

Recipe for filling the Seed Bag with Seeds. Combine the Seed Bag shapelessly with any amount of Seeds to fill the Seed Bag.

1x Seed Bag + any amount of Seeds (shapeless) to fill the Seed Bag. Up to 512 Seeds.

Seed Bag + Bone Meal

Recipe for filling the Seed Bag with Bone Meal. Combine the Seed Bag shapelessly with any amount of Bone Meal to fill the Seed Bag.

1x Seed Bag + any amount of Bone Meal (shapeless) to fill the Seed Bag. Up to 512 Bone Meal.

Compatibility

This mod has no known major compatibility issues. Functionality on modded blocks by design isn't effective without adding datapack entries; see Datapack format.

The mod adds explicit compatibility with Always More Items.

Requirements

Recommended

Configuration

The mod's configuration can be configured in-game (if Mod Menu Babric is installed) or in .minecraft/config/good-farming/good-farming.yml.

# If enabled, farmland is only trampled when jumping, not walking
tramplingNerfEnabled: true

# Prevents consuming Bone Meal when used on fully grown wheat 
# and saplings that can't grow (doesn't affect modded blocks)
bonemealWastageFixEnabled: true

# Allow replanting crops with right-click (if you have the seeds)
quickReplantingEnabled: true

# The lateral radius, in blocks, to plant seeds with the Seed Bag
seedBagPlantLateralRadius: 3

# The vertical radius, in blocks, to plant seeds with the Seed Bag
seedBagPlantVerticalRadius: 2

# The range, in blocks, that the Seed Bag can be used from
seedBagThrowRange: 5.0

# The maximum number of seeds the Seed Bag can store
seedBagCapacity: 512

# Automatically put seeds into Seed Bags in your inventory when picked up
seedBagAutoPickupEnabled: true

# Displays the amount of seeds in the Seed Bag in the hotbar and inventory
seedBagOverlayEnabled: true

Datapack format

Seed types

The types of seeds that can be placed in a Seed Bag are provided via datapacks in the good-farming:seed_types namespace. For example, data/good-farming/good-farming/seed_types/bone_meal.json:

{
  "item": {
    "id": "minecraft:dye",
    "damage": 15
  },
  "textureId": "good-farming:item/seed_bag_bone_meal",
  "plantOnBlocks": [
    {
      "id": "minecraft:wheat"
    },
    {
      "id": "minecraft:sapling"
    },
    {
      "tag": "good-farming:crops"
    },
    {
      "tag": "good-farming:saplings"
    }
  ]
}

Mods can provide their own seed types by placing the corresponding JSON files in data/$modId/good-farming/seed_types. Good Farming also provides an API for datagenning seed types with stapi-datagen: SeedTypeProvider. See GoodFarmingSeedTypeProvider.kt for an example.

Crop types

The types of seeds that can be quick-harvested by right-clicking are provided via datapacks in the good-farming:crop_types namespace. For example, data/good-farming/good-farming/crop_types/wheat.json:

{
  "crops": [
    {
      "id": "minecraft:wheat",
      "meta": 7
    }
  ],
  "seeds": [
    {
      "id": "minecraft:wheat_seeds",
      "damage": -1
    }
  ]
}

Mods can provide their own crop types by placing the corresponding JSON files in data/$modId/good-farming/crop_types. Good Farming also provides an API for datagenning crop types with stapi-datagen: CropTypeProvider. See GoodFarmingCropTypeProvider.kt for an example.

Datapacks in StationAPI

Note that StationAPI currently doesn't support loading datapacks outside of mods. If you as a player or server admin would like to modify the built-in seed types, you can do this by wrapping your datapack in a mod:

  1. Create a folder for your datapack, e.g. example-pack.
  2. Place your JSON files in example-pack/data/example-pack/good-farming/seed_types or example-pack/data/example-pack/good-farming/crop_types.
  3. Place a fabric.mod.json (spec) file in the root with the following contents:
    {
      "schemaVersion": 1,
      "id": "example-pack",
      "version": "1.0.0",
      "name": "Example Pack for Good Farming",
      "description": "Your own changes to Good Farming's data here!"
    }
    
    Note that name and description are technically optional, but Mod Menu will crash if they're not set.
  4. Zip the contents of the datapack's folder. i.e. the root of the zip should contain fabric.mod.json and data.
  5. Rename the zip to .jar, e.g. example-pack.jar.
  6. Place the jar in your mods folder, e.g. .minecraft/mods/example-pack.jar.
  7. Restart the game.

License

This mod is licensed under the MIT license.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more