This mod allows modpack makers to easily customize FuturePack research trees using the vanilla datapack system. No more being stuck with the default research layout!
/reload to apply changes without restarting/fpreload to manually reload the research systemPlace your custom research JSON files in:
kubejs/data/[namespace]/futurepack_research/[page].json
Or create a datapack:
datapack_name/
├── pack.mcmeta
└── data/
└── [namespace]/
└── futurepack_research/
└── [page].json
main.json - Main research pagestory.json - Story researchesproduction.json - Production researchesenergy.json - Energy researcheslogistic.json - Logistics researcheschips.json - Chip researchesdeco.json - Decoration researchesspace.json - Space researchestools.json - Tool researchesWant to make the industrial furnace available from the start? Create production.json:
[
{
\"id\": \"production.industrieofen\",
\"page\": \"production\",
\"x\": 0,
\"y\": 0,
\"parents\": [],
\"aspects\": [],
\"level\": 0,
\"time\": 0,
\"need\": [],
\"icon\": {
\"name\": \"futurepack:industrial_furnace\"
},
\"enables\": [
{
\"name\": \"futurepack:industrial_furnace\"
}
]
}
]
/reload - Reload all datapacks/fpreload - Force reload FuturePack research systemFor more examples and detailed documentation, visit our GitHub repository
Found a bug or need help? Please report issues on our GitHub Issues page.
This mod is licensed under the MIT License.` }