Item & Block registry

This commit is contained in:
paulevsGitch 2020-09-23 16:23:34 +03:00
parent 89ddb7cf33
commit ebbb10d972
6 changed files with 110 additions and 1 deletions

View file

@ -1,5 +1,7 @@
package ru.betterend.world.biome;
import net.minecraft.world.gen.GenerationStep.Feature;
import net.minecraft.world.gen.feature.ConfiguredFeatures;
import ru.betterend.registry.FeatureRegistry;
public class BiomeFoggyMushroomland extends EndBiome {
@ -7,6 +9,9 @@ public class BiomeFoggyMushroomland extends EndBiome {
super(new BiomeDefinition("foggy_mushroomland")
.setFogColor(41, 122, 173)
.setFogDensity(3)
.addFeature(FeatureRegistry.STONE_SPIRAL));
.setWaterColor(119, 227, 250)
.setWaterFogColor(119, 227, 250)
.addFeature(FeatureRegistry.STONE_SPIRAL)
.addFeature(Feature.LAKES, ConfiguredFeatures.LAKE_WATER));
}
}