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

12 lines
483 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.BlockBehaviour;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
public class SandbagBlock extends Block {
public SandbagBlock() {
super(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.SNARE).sound(SoundType.SAND).strength(10f, 20f));
}
}