Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class OreTitanium extends Block {
- private String name = "OreTitanium";
- public OreTitanium(){
- super(Material.rock);
- this.setCreativeTab(CreativeTabs.tabBlock);
- this.setBlockName(ModInfo.ID + "_" + name);
- GameRegistry.registerBlock(this, name);
- this.setResistance(1750f);
- this.setHardness(30f);
- this.setHarvestLevel("pickaxe", 3);
- setBlockTextureName(ModInfo.ID+ ":" + name);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement