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

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