Reduce maximum amount of dilithium in vein, make tritanium worm vein rarer

This commit is contained in:
DBotThePony 2025-03-08 23:55:26 +07:00
parent e179756995
commit abeeda8139
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -123,13 +123,13 @@ fun registerPlacedFeatures(context: BootstrapContext<PlacedFeature>) {
chunkScanRange = 24, chunkScanRange = 24,
seedMix = 9284343575495L, seedMix = 9284343575495L,
prePlacementModifiers = listOf( prePlacementModifiers = listOf(
RarityFilter.onAverageOnceEvery(240), RarityFilter.onAverageOnceEvery(300),
InSquarePlacement.spread(), InSquarePlacement.spread(),
HeightRangePlacement.of(StandardDeviationHeightProvider(VerticalAnchor.absolute(-40), 15.0)), HeightRangePlacement.of(StandardDeviationHeightProvider(VerticalAnchor.absolute(-40), 15.0)),
), ),
postPlacementModifiers = listOf( postPlacementModifiers = listOf(
EllipsoidPlacement( EllipsoidPlacement(
count = UniformInt.of(15, 40), count = UniformInt.of(15, 30),
xLength = ConstantFloat.of(14f), xLength = ConstantFloat.of(14f),
yLength = ConstantFloat.of(14f), yLength = ConstantFloat.of(14f),
zLength = ConstantFloat.of(14f), zLength = ConstantFloat.of(14f),
@ -177,7 +177,7 @@ fun registerPlacedFeatures(context: BootstrapContext<PlacedFeature>) {
x = ringularity, x = ringularity,
y = ringularity, y = ringularity,
z = ringularity, z = ringularity,
count = UniformInt.of(8000, 28000), count = UniformInt.of(8000, 16000),
xLength = UniformFloat.of(30f, 70f), xLength = UniformFloat.of(30f, 70f),
yLength = UniformFloat.of(40f, 90f), yLength = UniformFloat.of(40f, 90f),
zLength = UniformFloat.of(30f, 70f), zLength = UniformFloat.of(30f, 70f),