19 lines
602 B
Java
19 lines
602 B
Java
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(241, 146, 229)
|
|
.setFogDensity(2.0F)
|
|
.setPlantsColor(122, 45, 122)
|
|
.setSurface(EndBlocks.END_MOSS)
|
|
.addFeature(EndFeatures.SPIRE)
|
|
.addFeature(EndFeatures.FLOATING_SPIRE)
|
|
.addFeature(EndFeatures.TENANEA)
|
|
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
|
|
}
|
|
}
|