Capsacis tree enhancements

This commit is contained in:
paulevsGitch 2021-01-18 23:05:08 +03:00
parent 527ba2bbaa
commit 7e750411a0
40 changed files with 172 additions and 28 deletions

View file

@ -8,13 +8,17 @@ import ru.betterend.registry.EndSounds;
public class CapsacisForestBiome extends EndBiome {
public CapsacisForestBiome() {
super(new BiomeDefinition("capsacis_forest")
.setSurface(EndBlocks.SHADOW_GRASS, EndBlocks.CHORUS_NYLIUM)
.setSurface(EndBlocks.CHORUS_NYLIUM)
.setMusic(EndSounds.MUSIC_FOREST)
.setWaterAndFogColor(84, 61, 127)
.setFoliageColor(71, 45, 120)
.setFogColor(78, 71, 92)
.setFogDensity(1.5F)
.addFeature(EndFeatures.CAPSACIS)
.addFeature(EndFeatures.PURPLE_POLYPORE)
.addFeature(EndFeatures.TAIL_MOSS_WOOD)
.addFeature(EndFeatures.TAIL_MOSS)
.addFeature(EndFeatures.CHORUS_GRASS)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}