https://github.com/twelveiterationmods/farmingforblockheads
Minecraft Mod. Adds a seed market with a search bar and a scrolling grid.
https://github.com/twelveiterationmods/farmingforblockheads
fabricmc-mod forge-mod minecraft-mod neoforge-mod
Last synced: 8 months ago
JSON representation
Minecraft Mod. Adds a seed market with a search bar and a scrolling grid.
- Host: GitHub
- URL: https://github.com/twelveiterationmods/farmingforblockheads
- Owner: TwelveIterationMods
- License: other
- Created: 2017-03-01T23:04:16.000Z (over 9 years ago)
- Default Branch: 1.21.5
- Last Pushed: 2025-04-11T07:27:04.000Z (about 1 year ago)
- Last Synced: 2025-04-11T09:08:12.415Z (about 1 year ago)
- Topics: fabricmc-mod, forge-mod, minecraft-mod, neoforge-mod
- Language: Java
- Homepage: https://mods.twelveiterations.com/mc/farming-for-blockheads/
- Size: 1.75 MB
- Stars: 27
- Watchers: 3
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Farming for Blockheads
Minecraft Mod. Adds farming utilities, such as a seed market, fertilizer and feeding troughs.
- [Modpack Permissions](https://mods.twelveiterations.com/permissions)
#### Downloads
[](https://www.curseforge.com/minecraft/mc-mods/farming-for-blockheads)
[](https://www.curseforge.com/minecraft/mc-mods/farming-for-blockheads)
## Contributing
If you're interested in contributing to the mod, you can check
out [issues labelled as "help wanted"](https://github.com/TwelveIterationMods/FarmingForBlockheads/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
When it comes to new features, it's best to confer with me first to ensure we share the same vision. You can join us on [Discord](https://discord.gg/VAfZ2Nau6j) if you'd like to talk.
Contributions must be done through pull requests. I will not be able to accept translations, code or other assets through any other channels.
## Adding Farming for Blockheads to a development environment
Note that you will also need to add Balm if you want to test your integration in your environment.
### Using CurseMaven
Add the following to your `build.gradle`:
```groovy
repositories {
maven { url "https://www.cursemaven.com" }
}
dependencies {
// Replace ${farmingforblockheads_file_id} and ${balm_file_id} with the id of the file you want to depend on.
// You can find it in the URL of the file on CurseForge (e.g. 3914527).
// Forge: implementation fg.deobf("curse.maven:balm-531761:${balm_file_id}")
// Fabric: modImplementation "curse.maven:balm-fabric-500525:${balm_file_id}"
// Forge: implementation fg.deobf("curse.maven:farming-for-blockheads-261924:${farmingforblockheads_file_id}")
// Fabric: modImplementation "curse.maven:farming-for-blockheads-fabric-554586:${farmingforblockheads_file_id}"
}
```
### Using Twelve Iterations Maven (includes snapshot and mojmap versions)
Add the following to your `build.gradle`:
```groovy
repositories {
maven {
url "https://maven.twelveiterations.com/repository/maven-public/"
content {
includeGroup "net.blay09.mods"
}
}
}
dependencies {
// Replace ${farmingforblockheads_version} and ${balm_version} with the version you want to depend on.
// You can find the latest version for a given Minecraft version at https://maven.twelveiterations.com/service/rest/repository/browse/maven-public/net/blay09/mods/balm-common/ and https://maven.twelveiterations.com/service/rest/repository/browse/maven-public/net/blay09/mods/farmingforblockheads-common/
// Common (mojmap): implementation "net.blay09.mods:balm-common:${balm_version}"
// Forge: implementation fg.deobf("net.blay09.mods:balm-forge:${balm_version}")
// Fabric: modImplementation "net.blay09.mods:balm-fabric:${balm_version}"
// Common (mojmap): implementation "net.blay09.mods:farmingforblockheads-common:${farmingforblockheads_version}"
// Forge: implementation fg.deobf("net.blay09.mods:farmingforblockheads-forge:${farmingforblockheads_version}")
// Fabric: modImplementation "net.blay09.mods:farmingforblockheads-fabric:${farmingforblockheads_version}"
}
```