Fixed and balanced hardness of blocks and put in harvest levels.

This commit is contained in:
Robert Sosnitzka
2016-05-02 17:24:08 +02:00
parent 3752640edd
commit e6ae3f74f6
26 changed files with 48 additions and 30 deletions

View File

@@ -1,12 +1,11 @@
package blocks;
import blocks.category.BasicBlockOre;
import blocks.category.BasicBlockOreGlow;
import net.minecraft.block.material.Material;
public class BlockPrometheumOre extends BasicBlockOreGlow {
public BlockPrometheumOre() {
super("prometheum_ore", Material.ROCK, 3.0f, 5.0f, 0.25f);
super("prometheum_ore", Material.ROCK, 35.0f, 35.0f, 4, 0.25f);
}
}