11 lines
461 B
Java
11 lines
461 B
Java
package com.atsuishio.superbwarfare.block;
|
|
|
|
import net.minecraft.world.level.block.Block;
|
|
import net.minecraft.world.level.block.SoundType;
|
|
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
|
|
|
|
public class DeepslateSilverOreBlock extends Block {
|
|
public DeepslateSilverOreBlock() {
|
|
super(Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.STONE).strength(3f, 8f).requiresCorrectToolForDrops());
|
|
}
|
|
}
|