2018-10-28 13:46:09 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityPotionGenerator;
|
|
|
|
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() {
|
2019-11-04 19:08:49 +01:00
|
|
|
super("potion_generator", TileEntityPotionGenerator.class, "potion_generator", ModBlocks.prop(Material.ROCK).hardnessAndResistance(5F).harvestTool(ToolType.PICKAXE).harvestLevel(1));
|
2018-10-28 13:46:09 +01:00
|
|
|
}
|
|
|
|
}
|