Higher Turtle Spawn Chance
MuteTiefling opened this issue ยท 3 comments
Description
I suspect turtles are excessively rare due to biome changes, making them nearly impossible to find. We should probably make the Nature's Aura summon a little easier to accommodate. From memory, it requires a scute... Could maybe use the aquaculture turtle items instead.
Sure! I have no idea how that works, honestly. But more natural spawns would be great
I think it's like this in a startup script:
onEvent('worldgen.add', (event) => {
event.addSpawn((spawn) => {
spawn.category = 'water_creature';
spawn.entity = 'minecraft:turtle';
spawn.weight = 20;
spawn.minCount = 1;
spawn.maxCount = 3;
spawn.biomes.blacklist = false;
spawn.biomes.values = ['#beach'];
});
});
will test soon ๐