superb-warfare/src/main/java/com/atsuishio/superbwarfare/block/TungstenBlock.java
2024-11-26 22:52:05 +08:00

11 lines
441 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 TungstenBlock extends Block {
public TungstenBlock() {
super(Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.METAL).strength(5f, 6f).requiresCorrectToolForDrops());
}
}