Available Methods
- AIR
- WATER
- DIRT
- LOG
- STONE
- GRASS
- SNOW_LAYER
- FARMLAND
- LEAVES
- tallgrass ( )
- netherrack ( )
- BEDROCK
- gold_ore ( )
- WEB
- STAINED_HARDENED_CLAY
- lava ( )
- vine ( )
- CHEST
- gold_block ( )
- cobblestone ( )
- ICE
- END_PORTAL
- emerald_block ( )
- stonebrick ( )
- fire ( )
- planks ( )
- lapis_block ( )
- trapped_chest ( )
- pumpkin ( )
- flowing_water ( )
- HOPPER
- SAND
- GRAVEL
- OBSIDIAN
- EMERALD_ORE
- hardened_clay ( )
- SAPLING
- LEAVES2 ( )
- FLOWING_LAVA
- LOG2 ( )
- end_stone ( )
- UNPOWERED_REPEATER
- bed ( )
- COAL_BLOCK
- CAKE
- LEVER
- quartz_ore ( )
- detector_rail ( )
- ender_chest ( )
- heavy_weighted_pressure_plate ( )
- DIAMOND_ORE
- iron_block ( )
- SNOW
- FURNACE
- STICKY_PISTON
- TORCH
- melon_block ( )
- wooden_door ( )
- LAPIS_ORE
- END_PORTAL_FRAME
- PISTON
- packed_ice ( )
- rail ( )
- MYCELIUM
- WOOL
- SOUL_SAND
Related Classes
- java.util.Arrays
- java.util.Random
- javax.annotation.Nullable
- javax.annotation.Nonnull
- net.minecraft.world.World
- net.minecraft.item.ItemStack
- net.minecraft.block.Block
- net.minecraft.client.Minecraft
- net.minecraft.item.Item
- net.minecraft.entity.Entity
- net.minecraft.entity.player.EntityPlayer
- net.minecraft.util.ResourceLocation
- net.minecraft.nbt.NBTTagCompound
- net.minecraft.tileentity.TileEntity
- net.minecraft.block.material.Material
- net.minecraft.entity.EntityLivingBase
- net.minecraft.init.Items
- net.minecraft.util.math.BlockPos
- net.minecraft.world.IBlockAccess
- net.minecraft.inventory.IInventory
- net.minecraftforge.fml.relauncher.Side
- net.minecraftforge.fml.common.eventhandler.SubscribeEvent
- net.minecraftforge.oredict.OreDictionary
- net.minecraft.util.EnumFacing
- net.minecraftforge.fml.relauncher.SideOnly
Java Code Examples for net.minecraft.init.Blocks#quartz_ore()
The following examples show how to use
net.minecraft.init.Blocks#quartz_ore() .
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: ComponentHarvesting.java From Artifacts with MIT License | 6 votes |
@Override public boolean onBlockDestroyed(ItemStack itemStack, World world, Block block, int x, int y, int z, EntityLivingBase player) { if (block != Blocks.coal_ore && block != Blocks.iron_ore && block != Blocks.emerald_ore && block != Blocks.gold_ore && block != Blocks.diamond_ore && block != Blocks.quartz_ore && block != Blocks.lapis_ore && block != Blocks.redstone_ore && block != Blocks.lit_redstone_ore) { return false; } else if(world.rand.nextInt(4) == 0) { //drop another /*ItemStack is = new ItemStack(Block.blocksList[blockID], 1); EntityItem ei = new EntityItem(world, x, y, z, is); world.spawnEntityInWorld(ei);*/ itemStack.damageItem(1, player); block.dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0); } return true; }
Example 2
Source File: ComponentHarvesting.java From Artifacts with MIT License | 5 votes |
@Override public float getDigSpeed(ItemStack itemStack, Block block, int meta) { if (block != Blocks.coal_ore && block != Blocks.iron_ore && block != Blocks.emerald_ore && block != Blocks.gold_ore && block != Blocks.diamond_ore && block != Blocks.quartz_ore && block != Blocks.lapis_ore && block != Blocks.redstone_ore && block != Blocks.lit_redstone_ore) { return -1; } else { return (ToolMaterial.values()[itemStack.stackTagCompound.getInteger("material")].getEfficiencyOnProperMaterial() / 2); //return 15; } }
Example 3
Source File: ComponentHarvesting.java From Artifacts with MIT License | 5 votes |
@Override public boolean canHarvestBlock(Block block, ItemStack itemStack) { if (block != Blocks.coal_ore && block != Blocks.iron_ore && block != Blocks.emerald_ore && block != Blocks.gold_ore && block != Blocks.diamond_ore && block != Blocks.quartz_ore && block != Blocks.lapis_ore && block != Blocks.redstone_ore && block != Blocks.lit_redstone_ore) { return false; } else { return true; } }