diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/MatterData.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/MatterData.kt index 0781b1800..a46c6be0c 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/MatterData.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/MatterData.kt @@ -21,6 +21,21 @@ fun addMatterData(provider: MatterDataProvider) { provider.inherit(MItems.TRITANIUM_ANVIL[i], MItems.TRITANIUM_ANVIL[i - 1], 0.85) } + provider.inherit(Items.WATER_BUCKET, Items.BUCKET) { + plus(Decimal(1), 20.0) + } + + provider.inherit(Items.LAVA_BUCKET, Items.MAGMA_BLOCK) { + plus(Decimal(0), 666.0) + plus(Items.BUCKET) + } + + provider.inherit(Items.POWDER_SNOW_BUCKET, Items.SNOW_BLOCK) { + multiply(Decimal(0.75), 1.0) + plus(Decimal(0), 200.0) + plus(Items.BUCKET) + } + provider.inherit(Items.MILK_BUCKET, Items.BUCKET) { plus(Decimal(7), 480.0) }