Tree ptototype changes

This commit is contained in:
paulevsGitch 2020-12-20 03:32:38 +03:00
parent 188ccd7855
commit 9231618094
3 changed files with 119 additions and 29 deletions

View file

@ -1,5 +1,6 @@
package ru.betterend.integration.byg;
import net.minecraft.particle.ParticleTypes;
import ru.betterend.integration.Integrations;
import ru.betterend.world.biome.BiomeDefinition;
import ru.betterend.world.biome.EndBiome;
@ -7,6 +8,10 @@ import ru.betterend.world.biome.EndBiome;
public class OldBulbisGardens extends EndBiome {
public OldBulbisGardens() {
super(new BiomeDefinition("old_bulbis_gardens")
.setFogColor(132, 0, 202)
.setFogDensity(2F)
.setWaterAndFogColor(40, 0, 56)
.setParticles(ParticleTypes.REVERSE_PORTAL, 0.002F)
.setSurface(Integrations.BYG.getBlock("ivis_phylium"))
.addFeature(BYGFeatures.OLD_BULBIS_TREE)
.addFeature(BYGFeatures.IVIS_SPROUT));