forked from TAIGA/TAIGA
11 lines
263 B
Java
11 lines
263 B
Java
package blocks;
|
|
|
|
import blocks.category.BasicBlockOre;
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockVibraniumOre extends BasicBlockOre {
|
|
|
|
public BlockVibraniumOre() {
|
|
super("vibranium_ore", Material.ROCK, 70.0f, 800.0f, 4);
|
|
}
|
|
} |