60 lines
No EOL
1.9 KiB
Java
60 lines
No EOL
1.9 KiB
Java
package gregtech.common.blocks;
|
|
|
|
import gregtech.api.GregTech_API;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemBlock;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public class GT_Item_Ores
|
|
extends ItemBlock
|
|
{
|
|
public GT_Item_Ores(Block par1)
|
|
{
|
|
super(par1);
|
|
setMaxDamage(0);
|
|
setHasSubtypes(true);
|
|
setCreativeTab(GregTech_API.TAB_GREGTECH_MATERIALS);
|
|
}
|
|
|
|
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public String getUnlocalizedName(ItemStack aStack)
|
|
{
|
|
return this.field_150939_a.getUnlocalizedName() + "." + getDamage(aStack);
|
|
}
|
|
|
|
public boolean placeBlockAt(ItemStack aStack, EntityPlayer aPlayer, World aWorld, int aX, int aY, int aZ, int side, float hitX, float hitY, float hitZ, int aMeta)
|
|
{
|
|
short tDamage = (short)getDamage(aStack);
|
|
if (tDamage > 0)
|
|
{
|
|
if (!aWorld.setBlock(aX, aY, aZ, this.field_150939_a, GT_TileEntity_Ores.getHarvestData(tDamage), 3)) {
|
|
return false;
|
|
}
|
|
GT_TileEntity_Ores tTileEntity = (GT_TileEntity_Ores)aWorld.getTileEntity(aX, aY, aZ);
|
|
tTileEntity.mMetaData = tDamage;
|
|
tTileEntity.mNatural = false;
|
|
}
|
|
else if (!aWorld.setBlock(aX, aY, aZ, this.field_150939_a, 0, 3))
|
|
{
|
|
return false;
|
|
}
|
|
if (aWorld.getBlock(aX, aY, aZ) == this.field_150939_a)
|
|
{
|
|
this.field_150939_a.onBlockPlacedBy(aWorld, aX, aY, aZ, aPlayer, aStack);
|
|
this.field_150939_a.onPostBlockPlaced(aWorld, aX, aY, aZ, tDamage);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.common.blocks.GT_Item_Ores
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/ |