Enigmatica 6 - E6 - 1.16.5

Enigmatica 6 - E6 - 1.16.5

1M Downloads

Higher Turtle Spawn Chance

MuteTiefling opened this issue ยท 3 comments

commented

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.

commented

We can also beef up their spawns in beach and warm ocean biomes?

commented

Sure! I have no idea how that works, honestly. But more natural spawns would be great

commented

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 ๐Ÿ˜„