11 lines
441 B
Java
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());
|
|
}
|
|
}
|