Slime fixes

This commit is contained in:
paulevsGitch 2020-10-05 23:17:51 +03:00
parent cd0d5582a8
commit 3bc28083f0
8 changed files with 142 additions and 6 deletions

View file

@ -1,5 +1,6 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.BlockRegistry;
import ru.betterend.registry.EntityRegistry;
import ru.betterend.registry.FeatureRegistry;
@ -23,6 +24,8 @@ public class BiomeFoggyMushroomland extends EndBiome {
.addFeature(FeatureRegistry.BLUE_VINE)
.addFeature(FeatureRegistry.UMBRELLA_MOSS)
.addFeature(FeatureRegistry.CREEPING_MOSS)
.addMobSpawn(EntityRegistry.DRAGONFLY, 80, 2, 4));
.addMobSpawn(EntityRegistry.DRAGONFLY, 80, 2, 5)
.addMobSpawn(EntityRegistry.END_SLIME, 10, 1, 2)
.addMobSpawn(EntityType.ENDERMAN, 10, 1, 2));
}
}