VanillaPlus/src/main/java/tech/nevets/vplus/blocks/PlatinumBlock.java
Steven Tracey 2ca55f3b48 Implement Vertical Slabs
Still have some bugs such as waterlogging not working and not all 1.17 blocks have been added
2021-11-08 20:19:43 -05:00

15 lines
567 B
Java

package tech.nevets.vplus.blocks;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
import net.minecraft.block.Block;
import net.minecraft.block.Material;
import net.minecraft.sound.BlockSoundGroup;
//TODO Change platinum to saphire
public class PlatinumBlock extends Block {
public PlatinumBlock() {
super(FabricBlockSettings.of(Material.STONE).breakByHand(false).breakByTool(FabricToolTags.PICKAXES).sounds(BlockSoundGroup.METAL).strength(30, 1000f));
}
}