Mountains
This commit is contained in:
parent
20bb6379bf
commit
466dd6604d
10 changed files with 198 additions and 39 deletions
|
@ -5,6 +5,5 @@ import ru.betterend.world.structures.EndStructureFeature;
|
|||
import ru.betterend.world.structures.features.StructureMountain;
|
||||
|
||||
public class DefaultBiomeFeatureRegistry {
|
||||
//public static final EndFeature MOUNTAINS = EndFeature.makeChunkFeature("mountains", new MountainFeature());
|
||||
public static final EndStructureFeature MOUNTAINS = new EndStructureFeature("mountains", new StructureMountain(), Feature.RAW_GENERATION, 6, 3);
|
||||
public static final EndStructureFeature MOUNTAINS = new EndStructureFeature("mountains", new StructureMountain(), Feature.RAW_GENERATION, 3, 2);
|
||||
}
|
||||
|
|
|
@ -6,10 +6,12 @@ import net.minecraft.world.gen.GenerationStep.Feature;
|
|||
import ru.betterend.BetterEnd;
|
||||
import ru.betterend.world.structures.EndStructureFeature;
|
||||
import ru.betterend.world.structures.features.StructureGiantMossyGlowshroom;
|
||||
import ru.betterend.world.structures.piece.MountainPiece;
|
||||
import ru.betterend.world.structures.piece.VoxelPiece;
|
||||
|
||||
public class StructureRegistry {
|
||||
public static final StructurePieceType VOXEL_PIECE = register("voxel", VoxelPiece::new);
|
||||
public static final StructurePieceType MOUNTAIN_PIECE = register("mountain_piece", MountainPiece::new);
|
||||
|
||||
public static final EndStructureFeature GIANT_MOSSY_GLOWSHROOM = new EndStructureFeature("giant_mossy_glowshroom", new StructureGiantMossyGlowshroom(), Feature.SURFACE_STRUCTURES, 16, 8);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue