mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 05:13:11 +01:00
16 lines
513 B
Java
16 lines
513 B
Java
|
package de.ellpeck.actuallyadditions.common.blocks;
|
||
|
|
||
|
import net.minecraft.block.Block;
|
||
|
import net.minecraft.block.SoundType;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
import net.minecraftforge.common.ToolType;
|
||
|
|
||
|
public class GenericBlock extends Block {
|
||
|
public GenericBlock() {
|
||
|
super(Properties.create(Material.ROCK)
|
||
|
.hardnessAndResistance(1.5F, 10.0F)
|
||
|
.harvestTool(ToolType.PICKAXE)
|
||
|
.harvestLevel(0)
|
||
|
.sound(SoundType.STONE));
|
||
|
}
|
||
|
}
|