Java Code Examples for net.minecraft.block.material.Material#SAND
The following examples show how to use
net.minecraft.block.material.Material#SAND .
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: PollutedSand.java From EmergingTechnology with MIT License | 5 votes |
public PollutedSand() { super(Material.SAND); this.setHardness(1.0f); this.setRegistryName(EmergingTechnology.MODID, _name); this.setUnlocalizedName(EmergingTechnology.MODID + "." + _name); this.setCreativeTab(EmergingTechnology.TECHNOLOGYTAB); this.setSoundType(SoundType.SAND); }
Example 2
Source File: BlockFoam.java From GregTech with GNU Lesser General Public License v3.0 | 5 votes |
public BlockFoam(boolean isReinforced) { super(Material.SAND); setUnlocalizedName(isReinforced ? "gt.reinforced_foam" : "gt.foam"); setSoundType(SoundType.SNOW); setResistance(0.3f); setHardness(0.5f); setLightOpacity(0); setTickRandomly(true); setCreativeTab(GregTechAPI.TAB_GREGTECH); this.isReinforced = isReinforced; }
Example 3
Source File: ToolDrillLV.java From GregTech with GNU Lesser General Public License v3.0 | 5 votes |
@Override public boolean canMineBlock(IBlockState block, ItemStack stack) { String tool = block.getBlock().getHarvestTool(block); return (tool != null && (tool.equals("pickaxe") || tool.equals("shovel"))) || block.getMaterial() == Material.ROCK || block.getMaterial() == Material.IRON || block.getMaterial() == Material.ANVIL || block.getMaterial() == Material.SAND || block.getMaterial() == Material.GRASS || block.getMaterial() == Material.GROUND || block.getMaterial() == Material.SNOW || block.getMaterial() == Material.CLAY || block.getMaterial() == Material.GLASS; }
Example 4
Source File: ToolShovel.java From GregTech with GNU Lesser General Public License v3.0 | 5 votes |
@Override public boolean canMineBlock(IBlockState block, ItemStack stack) { String tool = block.getBlock().getHarvestTool(block); return (tool != null && tool.equals("shovel")) || block.getMaterial() == Material.SAND || block.getMaterial() == Material.GRASS || block.getMaterial() == Material.GROUND || block.getMaterial() == Material.SNOW || block.getMaterial() == Material.CLAY; }
Example 5
Source File: ToolUniversalSpade.java From GregTech with GNU Lesser General Public License v3.0 | 5 votes |
@Override public boolean canMineBlock(IBlockState block, ItemStack stack) { String tool = block.getBlock().getHarvestTool(block); return (tool != null && (tool.equals("shovel") || tool.equals("axe") || tool.equals("saw") || tool.equals("sword") || tool.equals("crowbar"))) || block.getMaterial() == Material.SAND || block.getMaterial() == Material.GRASS || block.getMaterial() == Material.GROUND || block.getMaterial() == Material.SNOW || block.getMaterial() == Material.CLAY || block.getMaterial() == Material.CRAFTED_SNOW || block.getMaterial() == Material.LEAVES || block.getMaterial() == Material.VINE || block.getMaterial() == Material.WOOD || block.getMaterial() == Material.CACTUS || block.getMaterial() == Material.CIRCUITS || block.getMaterial() == Material.GOURD || block.getMaterial() == Material.WEB || block.getMaterial() == Material.CLOTH || block.getMaterial() == Material.CARPET || block.getMaterial() == Material.PLANTS || block.getMaterial() == Material.CAKE || block.getMaterial() == Material.TNT || block.getMaterial() == Material.SPONGE; }
Example 6
Source File: BlockBaseFalling.java From ExNihiloAdscensio with MIT License | 5 votes |
public BlockBaseFalling(SoundType sound, String name) { super(Material.SAND); setUnlocalizedName(name); setRegistryName(name); setSoundType(sound); GameRegistry.register(this); GameRegistry.register(new ItemBlock(this).setRegistryName(name)); }
Example 7
Source File: ItemEnderTool.java From enderutilities with GNU Lesser General Public License v3.0 | 4 votes |
@Override public boolean canHarvestBlock(IBlockState state, ItemStack stack) { if (this.isToolBroken(stack)) { return false; } ToolType tool = ToolType.fromStack(stack); if (tool.equals(ToolType.PICKAXE)) // Ender Pickaxe { if (state.getMaterial() == Material.ROCK || state.getMaterial() == Material.GLASS || state.getMaterial() == Material.ICE || state.getMaterial() == Material.PACKED_ICE || state.getMaterial() == Material.REDSTONE_LIGHT || state.getMaterial() == Material.PISTON || state.getMaterial() == Material.IRON || state.getMaterial() == Material.ANVIL) { //System.out.println("canHarvestBlock(): true; Pickaxe"); return true; } } else if (tool.equals(ToolType.AXE)) // Ender Axe { if (state.getMaterial() == Material.WOOD || state.getMaterial() == Material.LEAVES || state.getMaterial() == Material.GOURD || state.getMaterial() == Material.CARPET || state.getMaterial() == Material.CLOTH || state.getMaterial() == Material.PLANTS || state.getMaterial() == Material.VINE) { //System.out.println("canHarvestBlock(): true; Axe"); return true; } } else if (tool.equals(ToolType.SHOVEL)) // Ender Shovel { if (state.getMaterial() == Material.GROUND || state.getMaterial() == Material.GRASS || state.getMaterial() == Material.SAND || state.getMaterial() == Material.SNOW || state.getMaterial() == Material.CRAFTED_SNOW || state.getMaterial() == Material.CLAY) { //System.out.println("canHarvestBlock(): true; Shovel"); return true; } } //System.out.println("canHarvestBlock(): false"); return false; }