ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockBlackLotus.java

18 lines
527 B
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-11-03 16:30:13 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockBushBase;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraftforge.common.ToolType;
2015-11-03 16:30:13 +01:00
2019-05-02 09:10:29 +02:00
public class BlockBlackLotus extends BlockBushBase {
2015-11-03 16:30:13 +01:00
public BlockBlackLotus() {
super(Properties.create(Material.ROCK)
.hardnessAndResistance(1.5f, 10.0f)
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE));
2015-11-03 16:30:13 +01:00
}
}