Spires prototype

This commit is contained in:
paulevsGitch 2020-11-17 22:08:22 +03:00
parent 14434e4028
commit ce9a2b004f
3 changed files with 78 additions and 2 deletions

View file

@ -2,14 +2,16 @@ package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndFeatures;
public class BlossomingSpires extends EndBiome {
public BlossomingSpires() {
super(new BiomeDefinition("blossoming_spires")
.setFogColor(87, 26, 87)
.setFogColor(241, 146, 229)
.setFogDensity(2.0F)
.setPlantsColor(122, 45, 122)
.setSurface(EndBlocks.END_MOSS)
.addFeature(EndFeatures.SPIRE)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}