{"id":15015077,"url":"https://github.com/twelveiterationmods/farmingforblockheads","last_synced_at":"2025-10-10T18:15:20.139Z","repository":{"id":38078785,"uuid":"83610685","full_name":"TwelveIterationMods/FarmingForBlockheads","owner":"TwelveIterationMods","description":"Minecraft Mod. Adds a seed market with a search bar and a scrolling grid.","archived":false,"fork":false,"pushed_at":"2025-04-11T07:27:04.000Z","size":1836,"stargazers_count":27,"open_issues_count":3,"forks_count":21,"subscribers_count":3,"default_branch":"1.21.5","last_synced_at":"2025-04-11T09:08:12.415Z","etag":null,"topics":["fabricmc-mod","forge-mod","minecraft-mod","neoforge-mod"],"latest_commit_sha":null,"homepage":"https://mods.twelveiterations.com/mc/farming-for-blockheads/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TwelveIterationMods.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"BlayTheNinth","patreon":"BlayTheNinth","open_collective":null,"ko_fi":"BlayTheNinth","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2017-03-01T23:04:16.000Z","updated_at":"2025-03-28T16:11:48.000Z","dependencies_parsed_at":"2023-01-29T18:15:42.506Z","dependency_job_id":"a19d896b-4ef0-4b7a-8654-5884877083d4","html_url":"https://github.com/TwelveIterationMods/FarmingForBlockheads","commit_stats":{"total_commits":293,"total_committers":23,"mean_commits":12.73913043478261,"dds":0.4778156996587031,"last_synced_commit":"132b97d813c70edcdaf0fdeb90bbf4113511ef26"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2FFarmingForBlockheads","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2FFarmingForBlockheads/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2FFarmingForBlockheads/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TwelveIterationMods%2FFarmingForBlockheads/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TwelveIterationMods","download_url":"https://codeload.github.com/TwelveIterationMods/FarmingForBlockheads/tar.gz/refs/heads/1.21.5","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252853181,"owners_count":21814477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fabricmc-mod","forge-mod","minecraft-mod","neoforge-mod"],"created_at":"2024-09-24T19:46:28.259Z","updated_at":"2025-10-10T18:15:19.741Z","avatar_url":"https://github.com/TwelveIterationMods.png","language":"Java","funding_links":["https://github.com/sponsors/BlayTheNinth","https://patreon.com/BlayTheNinth","https://ko-fi.com/BlayTheNinth"],"categories":[],"sub_categories":[],"readme":"# Farming for Blockheads\n\nMinecraft Mod. Adds farming utilities, such as a seed market, fertilizer and feeding troughs.\n\n- [Modpack Permissions](https://mods.twelveiterations.com/permissions)\n\n#### Downloads\n\n[![Versions](http://cf.way2muchnoise.eu/versions/261924_latest.svg)](https://www.curseforge.com/minecraft/mc-mods/farming-for-blockheads)\n[![Downloads](http://cf.way2muchnoise.eu/full_261924_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/farming-for-blockheads)\n\n## Contributing\n\nIf you're interested in contributing to the mod, you can check\nout [issues labelled as \"help wanted\"](https://github.com/TwelveIterationMods/FarmingForBlockheads/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).\n\nWhen 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.\n\nContributions must be done through pull requests. I will not be able to accept translations, code or other assets through any other channels.\n\n## Adding Farming for Blockheads to a development environment\n\nNote that you will also need to add Balm if you want to test your integration in your environment.\n\n### Using CurseMaven\n\nAdd the following to your `build.gradle`:\n\n```groovy\nrepositories {\n    maven { url \"https://www.cursemaven.com\" }\n}\n\ndependencies {\n    // Replace ${farmingforblockheads_file_id} and ${balm_file_id} with the id of the file you want to depend on.\n    // You can find it in the URL of the file on CurseForge (e.g. 3914527).\n    // Forge: implementation fg.deobf(\"curse.maven:balm-531761:${balm_file_id}\")\n    // Fabric: modImplementation \"curse.maven:balm-fabric-500525:${balm_file_id}\"\n    \n    // Forge: implementation fg.deobf(\"curse.maven:farming-for-blockheads-261924:${farmingforblockheads_file_id}\")\n    // Fabric: modImplementation \"curse.maven:farming-for-blockheads-fabric-554586:${farmingforblockheads_file_id}\"\n}\n```\n\n### Using Twelve Iterations Maven (includes snapshot and mojmap versions)\n\nAdd the following to your `build.gradle`:\n\n```groovy\nrepositories {\n    maven { \n        url \"https://maven.twelveiterations.com/repository/maven-public/\" \n        \n        content {\n            includeGroup \"net.blay09.mods\"\n        }\n    }\n}\n\ndependencies {\n    // Replace ${farmingforblockheads_version} and ${balm_version} with the version you want to depend on. \n    // 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/\n    // Common (mojmap): implementation \"net.blay09.mods:balm-common:${balm_version}\"\n    // Forge: implementation fg.deobf(\"net.blay09.mods:balm-forge:${balm_version}\")\n    // Fabric: modImplementation \"net.blay09.mods:balm-fabric:${balm_version}\"\n    \n    // Common (mojmap): implementation \"net.blay09.mods:farmingforblockheads-common:${farmingforblockheads_version}\"\n    // Forge: implementation fg.deobf(\"net.blay09.mods:farmingforblockheads-forge:${farmingforblockheads_version}\")\n    // Fabric: modImplementation \"net.blay09.mods:farmingforblockheads-fabric:${farmingforblockheads_version}\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwelveiterationmods%2Ffarmingforblockheads","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwelveiterationmods%2Ffarmingforblockheads","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwelveiterationmods%2Ffarmingforblockheads/lists"}