2018-10-28 13:46:09 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
2020-01-21 23:02:39 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
|
2018-10-28 13:46:09 +01:00
|
|
|
import net.minecraft.block.material.Material;
|
2019-11-04 19:08:49 +01:00
|
|
|
import net.minecraftforge.common.ToolType;
|
2018-10-28 13:46:09 +01:00
|
|
|
|
|
|
|
public class BlockPotionGenerator extends BlockContainerImpl {
|
|
|
|
public BlockPotionGenerator() {
|
2020-01-21 23:02:39 +01:00
|
|
|
super("potion_generator", ModTileEntities.POTION_GENERATOR, ModBlocks.prop(Material.ROCK).hardnessAndResistance(5F).harvestTool(ToolType.PICKAXE).harvestLevel(1));
|
2018-10-28 13:46:09 +01:00
|
|
|
}
|
|
|
|
}
|