Java Code Examples for net.minecraft.block.material.Material#anvil()

The following examples show how to use net.minecraft.block.material.Material#anvil() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ComponentMining.java    From Artifacts with MIT License 6 votes vote down vote up
@Override
public boolean canHarvestBlock(Block block, ItemStack itemStack) {
	ToolMaterial toolMaterial = ToolMaterial.values()[itemStack.stackTagCompound.getInteger("material")];
	
	if(toolMaterial == toolMaterial.WOOD) {
		return Items.wooden_pickaxe.func_150897_b/*canHarvestBlock*/(block);
	}
	else if(toolMaterial == toolMaterial.STONE) {
		return Items.stone_pickaxe.func_150897_b(block);
	}
	else if(toolMaterial == ToolMaterial.EMERALD) {
		return Items.diamond_pickaxe.func_150897_b(block);
	}
	else if(toolMaterial == ToolMaterial.IRON) {
		return Items.iron_pickaxe.func_150897_b(block);
	}
	else if(toolMaterial == ToolMaterial.GOLD) {
		return Items.golden_pickaxe.func_150897_b(block);
	}
	return block == Blocks.obsidian ? toolMaterial.getHarvestLevel() == 3 : (block != Blocks.diamond_block && block != Blocks.diamond_ore ? (block != Blocks.emerald_ore && block != Blocks.emerald_block ? (block != Blocks.gold_block && block != Blocks.gold_ore ? (block != Blocks.iron_block && block != Blocks.iron_ore ? (block != Blocks.lapis_block && block != Blocks.lapis_ore ? (block != Blocks.redstone_ore && block != Blocks.lit_redstone_ore ? (block.getMaterial() == Material.rock ? true : (block.getMaterial() == Material.iron ? true : block.getMaterial() == Material.anvil)) : toolMaterial.getHarvestLevel() >= 2) : toolMaterial.getHarvestLevel() >= 1) : toolMaterial.getHarvestLevel() >= 1) : toolMaterial.getHarvestLevel() >= 2) : toolMaterial.getHarvestLevel() >= 2) : toolMaterial.getHarvestLevel() >= 2);
}
 
Example 2
Source File: BW_Blocks.java    From bartworks with MIT License 5 votes vote down vote up
public BW_Blocks(String name, String[] texture) {
    super(Material.anvil);
    this.setHardness(15.0F);
    this.setResistance(30.0F);
    this.name = name;
    this.textureNames = texture;
    this.setCreativeTab(MainMod.GT2);
    GregTech_API.registerMachineBlock(this, -1);
}
 
Example 3
Source File: BW_Blocks.java    From bartworks with MIT License 5 votes vote down vote up
public BW_Blocks(String name, String[] texture, CreativeTabs tabs) {
    super(Material.anvil);
    this.setHardness(15.0F);
    this.setResistance(30.0F);
    this.name = name;
    this.textureNames = texture;
    this.setCreativeTab(tabs);
    GregTech_API.registerMachineBlock(this, -1);
}
 
Example 4
Source File: WrapperMaterial.java    From ClientBase with MIT License 4 votes vote down vote up
public WrapperMaterial getAnvil() {
    return new WrapperMaterial(Material.anvil);
}