h
This commit is contained in:
parent
057977f4a4
commit
140eecf57d
@ -211,7 +211,7 @@ object MBlocks {
|
||||
TransparentBlock(BlockBehaviour.Properties.of()
|
||||
.mapColor(MapColor.COLOR_GRAY)
|
||||
.noOcclusion()
|
||||
.sound(SoundType.COPPER).explosionResistance(30f)
|
||||
.sound(SoundType.COPPER_GRATE).explosionResistance(30f)
|
||||
.destroyTime(2f).requiresCorrectToolForDrops())
|
||||
}
|
||||
|
||||
@ -275,7 +275,7 @@ object MBlocks {
|
||||
val TRITANIUM_STRIPED_BLOCK = registry.colored(MNames.TRITANIUM_STRIPED_BLOCK) { Block(
|
||||
BlockBehaviour.Properties.of()
|
||||
.mapColor(MapColor.COLOR_LIGHT_BLUE)
|
||||
.sound(SoundType.BASALT)
|
||||
.sound(SoundType.DEEPSLATE)
|
||||
.requiresCorrectToolForDrops()
|
||||
.explosionResistance(80f)
|
||||
.destroyTime(2.5f)
|
||||
|
@ -98,7 +98,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
|
||||
val TRITANIUM_BLOCK = DecorativeBlock.simple(MNames.TRITANIUM_BLOCK) {
|
||||
BlockBehaviour.Properties.of()
|
||||
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
|
||||
.sound(SoundType.BASALT)
|
||||
.sound(SoundType.DEEPSLATE)
|
||||
.requiresCorrectToolForDrops()
|
||||
.explosionResistance(80f)
|
||||
.destroyTime(2.5f)
|
||||
@ -127,7 +127,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
|
||||
val VENT = DecorativeBlock.simple(MNames.VENT) {
|
||||
BlockBehaviour.Properties.of()
|
||||
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
|
||||
.sound(SoundType.BASALT)
|
||||
.sound(SoundType.DEEPSLATE)
|
||||
.requiresCorrectToolForDrops()
|
||||
.explosionResistance(20f)
|
||||
.destroyTime(1.5f)
|
||||
@ -136,7 +136,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
|
||||
val VENT_ALTERNATIVE = DecorativeBlock.simple(MNames.VENT_ALTERNATIVE) {
|
||||
BlockBehaviour.Properties.of()
|
||||
.mapColor(it?.mapColor ?: MapColor.COLOR_LIGHT_BLUE)
|
||||
.sound(SoundType.BASALT)
|
||||
.sound(SoundType.DEEPSLATE)
|
||||
.requiresCorrectToolForDrops()
|
||||
.explosionResistance(20f)
|
||||
.destroyTime(1.5f)
|
||||
@ -210,7 +210,7 @@ object MRegistry : IBlockItemRegistryAcceptor {
|
||||
val TRITANIUM_STRIPED_BLOCK = StripedColoredDecorativeBlock(MNames.TRITANIUM_STRIPED_BLOCK, { colorA, _ ->
|
||||
Block(BlockBehaviour.Properties.of()
|
||||
.mapColor(colorA.mapColor)
|
||||
.sound(SoundType.BASALT)
|
||||
.sound(SoundType.DEEPSLATE)
|
||||
.requiresCorrectToolForDrops()
|
||||
.explosionResistance(80f)
|
||||
.strength(4f))
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 473 B |
Loading…
Reference in New Issue
Block a user