Item & Block registry
This commit is contained in:
parent
89ddb7cf33
commit
ebbb10d972
6 changed files with 110 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue