Ice Starfield biome

This commit is contained in:
paulevsGitch 2020-12-11 02:09:17 +03:00
parent 858a7c8378
commit 19c7b37582
16 changed files with 260 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.EndFeatures;
import ru.betterend.registry.EndParticles;
public class BiomeIceStarfield extends EndBiome {
public BiomeIceStarfield() {
super(new BiomeDefinition("ice_starfield")
.setFogColor(224, 245, 254)
.setFogDensity(2.2F)
.setFoliageColor(193, 244, 244)
.setParticles(EndParticles.SNOWFLAKE, 0.001F)
.addFeature(EndFeatures.ICE_STAR)
.addMobSpawn(EntityType.ENDERMAN, 20, 1, 4));
}
}