Changed my mind about wind up inefficiency of netherite

This commit is contained in:
DBotThePony 2025-02-11 21:36:47 +07:00
parent 46d5a87582
commit 3cb604bd98
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -10,6 +10,6 @@ fun addFlywheelMaterials(provider: FlywheelMaterialDataProvider) {
provider.add(Tags.Blocks.STORAGE_BLOCKS_COPPER, Decimal(60_000_000))
provider.add(Tags.Blocks.STORAGE_BLOCKS_IRON, Decimal(50_000_000))
provider.add(Tags.Blocks.STORAGE_BLOCKS_GOLD, Decimal(300_000_000), momentumLossSpeed = Decimal("0.75"))
provider.add(Tags.Blocks.STORAGE_BLOCKS_NETHERITE, Decimal(1_250_000_000), receiveEfficiency = Decimal("0.99"), momentumLossSpeed = Decimal.ONE_HALF)
provider.add(Tags.Blocks.STORAGE_BLOCKS_NETHERITE, Decimal(1_250_000_000), momentumLossSpeed = Decimal.ONE_HALF)
provider.add(MBlockTags.TRITANIUM_BLOCKS, Decimal(225_000_000))
}