Umbrella Jungle prototype, removed numeric biome IDs

This commit is contained in:
paulevsGitch 2020-12-21 16:30:27 +03:00
parent 50fc0a7994
commit 57c6a0337b
4 changed files with 148 additions and 21 deletions

View file

@ -0,0 +1,18 @@
package ru.betterend.world.biome;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndFeatures;
public class BiomeUmbrellaJungle extends EndBiome {
public BiomeUmbrellaJungle() {
super(new BiomeDefinition("umbrella_jungle")
.setFogColor(87, 223, 221)
.setWaterAndFogColor(119, 198, 253)
.setFoliageColor(27, 183, 194)
.setFogDensity(2.3F)
.setSurface(EndBlocks.END_MOSS)
.addFeature(EndFeatures.UMBRELLA_TREE)
.addFeature(EndFeatures.UMBRELLA_MOSS)
.addFeature(EndFeatures.END_LAKE));
}
}