[2 requests] world generation customizer and elementalcraft support addon
DerShendi opened this issue ยท 2 comments
Ive been tryin to look for a way to make it so that only specific biomes spawn in the world but couldnt find any and datapacks dont seem to like the mods im using(ffs all im trying is to make it so that only ocean biomes spawn).
And as for the elemental addon its self explainatory it would be nice to have a way to create your own ritual recipes
And as for the elemental addon its self explainatory it would be nice to have a way to create your own ritual recipes
You can use event.custom for recipes with no integration. You could even shove it in a reusable function to make a kind of compatibility yourself for only that modpack.
- As pm said, until we (or the dev, or a third party) can find the time to make a plugin for ElementalCraft, use event.custom with the same json structure you're used to
- I'm pretty sure Biome spawning is done in the dimension JSON (so
data/minecraft/dimension/overworld.json
for example), you'd have to fiddle with the chunk generator's biome source, which I'm not entirely sure how to do that with JSONs myself, but there's hopefully some online guides on it. Since KubeJS can provide JSONs like a normal datapack throughkubejs/data
, this shouldn't be much of a problem ^^