Flowers generation

This commit is contained in:
paulevsGitch 2020-12-04 22:54:50 +03:00
parent eb6d36b5dd
commit a54f7d5e6d
5 changed files with 34 additions and 8 deletions

View file

@ -1,8 +1,6 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import net.minecraft.world.gen.GenerationStep;
import net.minecraft.world.gen.carver.ConfiguredCarvers;
import ru.betterend.registry.EndFeatures;
import ru.betterend.registry.EndParticles;
import ru.betterend.world.surface.SurfaceBuilders;
@ -11,7 +9,8 @@ public class BiomeSulfurSprings extends EndBiome {
public BiomeSulfurSprings() {
super(new BiomeDefinition("sulfur_springs")
.setSurface(SurfaceBuilders.SULPHURIC_SURFACE)
.setWaterAndFogColor(25, 90, 157)
.setWaterColor(25, 90, 157)
.setWaterFogColor(30, 65, 61)
.setFogColor(207, 194, 62)
.setFogDensity(1.5F)
.setCaves(false)
@ -19,7 +18,7 @@ public class BiomeSulfurSprings extends EndBiome {
.addFeature(EndFeatures.GEYSER)
.addFeature(EndFeatures.SULPHURIC_LAKE)
.addFeature(EndFeatures.SULPHURIC_CAVE)
.addCarver(GenerationStep.Carver.AIR, ConfiguredCarvers.CAVE)
.addFeature(EndFeatures.HYDRALUX)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}