24 lines
810 B
Java
24 lines
810 B
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.item.Item;
|
|
|
|
import java.util.Random;
|
|
|
|
public class BlockOre extends Block {
|
|
public BlockOre(int var1, int var2) {
|
|
super(var1, var2, Material.rock);
|
|
}
|
|
|
|
public int idDropped(int var1, Random var2) {
|
|
return this.blockID == Block.oreCoal.blockID ? Item.coal.shiftedIndex : (this.blockID == Block.oreDiamond.blockID ? Item.diamond.shiftedIndex : (this.blockID == Block.oreLapis.blockID ? Item.dyePowder.shiftedIndex : this.blockID));
|
|
}
|
|
|
|
public int quantityDropped(Random var1) {
|
|
return this.blockID == Block.oreLapis.blockID ? 4 + var1.nextInt(5) : 1;
|
|
}
|
|
|
|
protected int damageDropped(int var1) {
|
|
return this.blockID == Block.oreLapis.blockID ? 4 : 0;
|
|
}
|
|
}
|