12 lines
483 B
Java
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));
|
|
}
|
|
}
|