This commit is contained in:
GearShocky 2025-01-10 18:33:29 +05:00
parent 057977f4a4
commit 140eecf57d
3 changed files with 6 additions and 6 deletions

View File

@ -211,7 +211,7 @@ object MBlocks {
TransparentBlock(BlockBehaviour.Properties.of() TransparentBlock(BlockBehaviour.Properties.of()
.mapColor(MapColor.COLOR_GRAY) .mapColor(MapColor.COLOR_GRAY)
.noOcclusion() .noOcclusion()
.sound(SoundType.COPPER).explosionResistance(30f) .sound(SoundType.COPPER_GRATE).explosionResistance(30f)
.destroyTime(2f).requiresCorrectToolForDrops()) .destroyTime(2f).requiresCorrectToolForDrops())
} }
@ -275,7 +275,7 @@ object MBlocks {
val TRITANIUM_STRIPED_BLOCK = registry.colored(MNames.TRITANIUM_STRIPED_BLOCK) { Block( val TRITANIUM_STRIPED_BLOCK = registry.colored(MNames.TRITANIUM_STRIPED_BLOCK) { Block(
BlockBehaviour.Properties.of() BlockBehaviour.Properties.of()
.mapColor(MapColor.COLOR_LIGHT_BLUE) .mapColor(MapColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT) .sound(SoundType.DEEPSLATE)
.requiresCorrectToolForDrops() .requiresCorrectToolForDrops()
.explosionResistance(80f) .explosionResistance(80f)
.destroyTime(2.5f) .destroyTime(2.5f)

View File

@ -98,7 +98,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
val TRITANIUM_BLOCK = DecorativeBlock.simple(MNames.TRITANIUM_BLOCK) { val TRITANIUM_BLOCK = DecorativeBlock.simple(MNames.TRITANIUM_BLOCK) {
BlockBehaviour.Properties.of() BlockBehaviour.Properties.of()
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE) .mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT) .sound(SoundType.DEEPSLATE)
.requiresCorrectToolForDrops() .requiresCorrectToolForDrops()
.explosionResistance(80f) .explosionResistance(80f)
.destroyTime(2.5f) .destroyTime(2.5f)
@ -127,7 +127,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
val VENT = DecorativeBlock.simple(MNames.VENT) { val VENT = DecorativeBlock.simple(MNames.VENT) {
BlockBehaviour.Properties.of() BlockBehaviour.Properties.of()
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE) .mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT) .sound(SoundType.DEEPSLATE)
.requiresCorrectToolForDrops() .requiresCorrectToolForDrops()
.explosionResistance(20f) .explosionResistance(20f)
.destroyTime(1.5f) .destroyTime(1.5f)
@ -136,7 +136,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
val VENT_ALTERNATIVE = DecorativeBlock.simple(MNames.VENT_ALTERNATIVE) { val VENT_ALTERNATIVE = DecorativeBlock.simple(MNames.VENT_ALTERNATIVE) {
BlockBehaviour.Properties.of() BlockBehaviour.Properties.of()
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE) .mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT) .sound(SoundType.DEEPSLATE)
.requiresCorrectToolForDrops() .requiresCorrectToolForDrops()
.explosionResistance(20f) .explosionResistance(20f)
.destroyTime(1.5f) .destroyTime(1.5f)
@ -210,7 +210,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
val TRITANIUM_STRIPED_BLOCK = StripedColoredDecorativeBlock(MNames.TRITANIUM_STRIPED_BLOCK, { colorA, _ -> val TRITANIUM_STRIPED_BLOCK = StripedColoredDecorativeBlock(MNames.TRITANIUM_STRIPED_BLOCK, { colorA, _ ->
Block(BlockBehaviour.Properties.of() Block(BlockBehaviour.Properties.of()
.mapColor(colorA.mapColor) .mapColor(colorA.mapColor)
.sound(SoundType.BASALT) .sound(SoundType.DEEPSLATE)
.requiresCorrectToolForDrops() .requiresCorrectToolForDrops()
.explosionResistance(80f) .explosionResistance(80f)
.strength(4f)) .strength(4f))

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B