habe eine Frage zu dem MCP mit ModLoader:
Mein Mod muss irgendwie geladen werden, und ich glaube das geht mit dieser mod_NAME.java aber wie? was muss genau da rein? Könnte mir jemand eine erstellen hier sind meine Block.java und Item.java:
Block.java:
Code:
package net.minecraft.src;
import java.util.ArrayList;
import java.util.Random;
public class Block
{
public static final StepSound soundPowderFootstep;
public static final StepSound soundWoodFootstep;
public static final StepSound soundGravelFootstep;
public static final StepSound soundGrassFootstep;
public static final StepSound soundStoneFootstep;
public static final StepSound soundMetalFootstep;
public static final StepSound soundGlassFootstep;
public static final StepSound soundClothFootstep;
public static final StepSound soundSandFootstep;
public static final Block blocksList[];
public static final boolean opaqueCubeLookup[];
public static final int lightOpacity[];
public static final boolean canBlockGrass[];
public static final int lightValue[];
public static final boolean requiresSelfNotify[];
public static boolean useNeighborBrightness[];
public static final Block stone;
public static final BlockGrass grass;
public static final Block dirt;
public static final Block cobblestone;
public static final Block planks;
public static final Block sapling;
public static final Block bedrock;
public static final Block waterMoving;
public static final Block waterStill;
public static final Block lavaMoving;
/** Stationary lava source block */
public static final Block lavaStill;
public static final Block sand;
public static final Block gravel;
public static final Block oreGold;
public static final Block oreIron;
public static final Block oreCoal;
public static final Block wood;
public static final BlockLeaves leaves;
public static final Block sponge;
public static final Block glass;
public static final Block oreLapis;
public static final Block blockLapis;
public static final Block dispenser;
public static final Block sandStone;
public static final Block music;
public static final Block bed;
public static final Block railPowered;
public static final Block railDetector;
public static final Block pistonStickyBase;
public static final Block web;
public static final BlockTallGrass tallGrass;
public static final BlockDeadBush deadBush;
public static final Block pistonBase;
public static final BlockPistonExtension pistonExtension;
public static final Block cloth;
public static final BlockPistonMoving pistonMoving;
public static final BlockFlower plantYellow;
public static final BlockFlower plantRed;
public static final BlockFlower mushroomBrown;
public static final BlockFlower mushroomRed;
public static final Block blockGold;
public static final Block blockSteel;
public static final Block stairDouble;
public static final Block stairSingle;
public static final Block brick;
public static final Block tnt;
public static final Block bookShelf;
public static final Block cobblestoneMossy;
public static final Block obsidian;
public static final Block torchWood;
public static final BlockFire fire;
public static final Block mobSpawner;
public static final Block stairCompactPlanks;
public static final Block chest;
public static final Block redstoneWire;
public static final Block oreDiamond;
public static final Block blockDiamond;
public static final Block workbench;
public static final Block crops;
public static final Block tilledField;
public static final Block stoneOvenIdle;
public static final Block stoneOvenActive;
public static final Block signPost;
public static final Block doorWood;
public static final Block ladder;
public static final Block rail;
public static final Block stairCompactCobblestone;
public static final Block signWall;
public static final Block lever;
public static final Block pressurePlateStone;
public static final Block doorSteel;
public static final Block pressurePlatePlanks;
public static final Block oreRedstone;
public static final Block oreRedstoneGlowing;
public static final Block torchRedstoneIdle;
public static final Block torchRedstoneActive;
public static final Block button;
public static final Block snow;
public static final Block ice;
public static final Block blockSnow;
public static final Block cactus;
public static final Block blockClay;
public static final Block reed;
public static final Block jukebox;
public static final Block fence;
public static final Block pumpkin;
public static final Block netherrack;
public static final Block slowSand;
public static final Block glowStone;
/** The purple teleport blocks inside the obsidian circle */
public static final BlockPortal portal;
public static final Block pumpkinLantern;
public static final Block cake;
public static final Block redstoneRepeaterIdle;
public static final Block redstoneRepeaterActive;
/**
* April fools secret locked chest, only spawns on new chunks on 1st April.
*/
public static final Block lockedChest;
public static final Block trapdoor;
public static final Block silverfish;
public static final Block stoneBrick;
public static final Block mushroomCapBrown;
public static final Block mushroomCapRed;
public static final Block fenceIron;
public static final Block thinGlass;
public static final Block melon;
public static final Block pumpkinStem;
public static final Block melonStem;
public static final Block vine;
public static final Block fenceGate;
public static final Block stairsBrick;
public static final Block stairsStoneBrickSmooth;
public static final BlockMycelium mycelium;
public static final Block waterlily;
public static final Block netherBrick;
public static final Block netherFence;
public static final Block stairsNetherBrick;
public static final Block netherStalk;
public static final Block enchantmentTable;
public static final Block brewingStand;
public static final Block cauldron;
public static final Block endPortal;
public static final Block endPortalFrame;
public static final Block whiteStone;
public static final Block dragonEgg;
public static final Block redstoneLampIdle;
public static final Block redstoneLampActive;
public static final Block oreMeteor;
public static final Block oreMoonstone;
public static final Block oreSapphire;
public static final Block oreAmethist;
public static final Block oreRuby;
public static final Block strawPlant;
public static final Block moonLamp;
public static final Block cakeCacao;
/**
* The index of the texture to be displayed for this block. May vary based on graphics settings. Mostly seems to
* come from terrain.png, and the index is 0-based (grass is 0).
*/
public int blockIndexInTexture;
/** ID of the block. */
public final int blockID;
/** Indicates how many hits it takes to break a block. */
protected float blockHardness;
/** Indicates the blocks resistance to explosions. */
protected float blockResistance;
/**
* set to true when Block's constructor is called through the chain of super()'s. Note: Never used
*/
protected boolean blockConstructorCalled;
/**
* If this field is true, the block is counted for statistics (mined or placed)
*/
protected boolean enableStats;
/**
* Flags whether or not this block is of a type that needs random ticking. Ref-counted by ExtendedBlockStorage in
* order to broadly cull a chunk from the random chunk update list for efficiency's sake.
*/
protected boolean needsRandomTick;
/** true if the Block contains a Tile Entity */
protected boolean isBlockContainer;
/** minimum X for the block bounds (local coordinates) */
public double minX;
/** minimum Y for the block bounds (local coordinates) */
public double minY;
/** minimum Z for the block bounds (local coordinates) */
public double minZ;
/** maximum X for the block bounds (local coordinates) */
public double maxX;
/** maximum Y for the block bounds (local coordinates) */
public double maxY;
/** maximum Z for the block bounds (local coordinates) */
public double maxZ;
/** Sound of stepping on the block */
public StepSound stepSound;
public float blockParticleGravity;
/** Block material definition. */
public final Material blockMaterial;
/**
* Determines how much velocity is maintained while moving on top of this block
*/
public float slipperiness;
private String blockName;
protected Block(int par1, Material par2Material)
{
blockConstructorCalled = true;
enableStats = true;
stepSound = soundPowderFootstep;
blockParticleGravity = 1.0F;
slipperiness = 0.6F;
if (blocksList[par1] != null)
{
throw new IllegalArgumentException((new StringBuilder()).append("Slot ").append(par1).append(" is already occupied by ").append(blocksList[par1]).append(" when adding ").append(this).toString());
}
else
{
blockMaterial = par2Material;
blocksList[par1] = this;
blockID = par1;
setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
opaqueCubeLookup[par1] = isOpaqueCube();
lightOpacity[par1] = isOpaqueCube() ? 255 : 0;
canBlockGrass[par1] = !par2Material.getCanBlockGrass();
return;
}
}
/**
* Blocks with this attribute will not notify all near blocks when it's metadata change. The default behavior is
* always notify every neightbor block when anything changes.
*/
protected Block setRequiresSelfNotify()
{
requiresSelfNotify[blockID] = true;
return this;
}
/**
* This method is called on a block after all other blocks gets already created. You can use it to reference and
* configure something on the block that needs the others ones.
*/
protected void initializeBlock()
{
}
protected Block(int par1, int par2, Material par3Material)
{
this(par1, par3Material);
blockIndexInTexture = par2;
}
/**
* Sets the footstep sound for the block. Returns the object for convenience in constructing.
*/
protected Block setStepSound(StepSound par1StepSound)
{
stepSound = par1StepSound;
return this;
}
/**
* Sets how much light is blocked going through this block. Returns the object for convenience in constructing.
*/
protected Block setLightOpacity(int par1)
{
lightOpacity[blockID] = par1;
return this;
}
/**
* Sets the amount of light emitted by a block from 0.0f to 1.0f (converts internally to 0-15). Returns the object
* for convenience in constructing.
*/
protected Block setLightValue(float par1)
{
lightValue[blockID] = (int)(15F * par1);
return this;
}
/**
* Sets the the blocks resistance to explosions. Returns the object for convenience in constructing.
*/
protected Block setResistance(float par1)
{
blockResistance = par1 * 3F;
return this;
}
public static boolean isNormalCube(int par0)
{
Block block = blocksList[par0];
if (block == null)
{
return false;
}
else
{
return block.blockMaterial.isOpaque() && block.renderAsNormalBlock();
}
}
/**
* If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc)
*/
public boolean renderAsNormalBlock()
{
return true;
}
public boolean getBlocksMovement(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
{
return !blockMaterial.blocksMovement();
}
/**
* The type of render function that is called for this block
*/
public int getRenderType()
{
return 0;
}
/**
* Sets how many hits it takes to break a block.
*/
protected Block setHardness(float par1)
{
blockHardness = par1;
if (blockResistance < par1 * 5F)
{
blockResistance = par1 * 5F;
}
return this;
}
/**
* This method will make the hardness of the block equals to -1, and the block is indestructible.
*/
protected Block setBlockUnbreakable()
{
setHardness(-1F);
return this;
}
/**
* Returns the block hardness.
*/
public float getHardness()
{
return blockHardness;
}
/**
* Sets whether this block type will receive random update ticks
*/
protected Block setTickRandomly(boolean par1)
{
needsRandomTick = par1;
return this;
}
/**
* Returns whether or not this block is of a type that needs random ticking. Called for ref-counting purposes by
* ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake.
*/
public boolean getTickRandomly()
{
return needsRandomTick;
}
public boolean hasTileEntity()
{
return isBlockContainer;
}
/**
* Sets the bounds of the block. minX, minY, minZ, maxX, maxY, maxZ
*/
public void setBlockBounds(float par1, float par2, float par3, float par4, float par5, float par6)
{
minX = par1;
minY = par2;
minZ = par3;
maxX = par4;
maxY = par5;
maxZ = par6;
}
/**
* How bright to render this block based on the light its receiving. Args: iBlockAccess, x, y, z
*/
public float getBlockBrightness(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
{
return par1IBlockAccess.getBrightness(par2, par3, par4, lightValue[blockID]);
}
/**
* 'Goes straight to getLightBrightnessForSkyBlocks for Blocks, does some fancy computing for Fluids'
*/
public int getMixedBrightnessForBlock(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
{
return par1IBlockAccess.getLightBrightnessForSkyBlocks(par2, par3, par4, lightValue[blockID]);
}
/**
* Returns true if the given side of this block type should be rendered, if the adjacent block is at the given
* coordinates. Args: blockAccess, x, y, z, side
*/
public boolean shouldSideBeRendered(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5)
{
if (par5 == 0 && minY > 0.0D)
{
return true;
}
if (par5 == 1 && maxY < 1.0D)
{
return true;
}
if (par5 == 2 && minZ > 0.0D)
{
return true;
}
if (par5 == 3 && maxZ < 1.0D)
{
return true;
}
if (par5 == 4 && minX > 0.0D)
{
return true;
}
if (par5 == 5 && maxX < 1.0D)
{
return true;
}
else
{
return !par1IBlockAccess.isBlockOpaqueCube(par2, par3, par4);
}
}
/**
* Returns Returns true if the given side of this block type should be rendered (if it's solid or not), if the
* adjacent block is at the given coordinates. Args: blockAccess, x, y, z, side
*/
public boolean isBlockSolid(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5)
{
return par1IBlockAccess.getBlockMaterial(par2, par3, par4).isSolid();
}
/**
* Retrieves the block texture to use based on the display side. Args: iBlockAccess, x, y, z, side
*/
public int getBlockTexture(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5)
{
return getBlockTextureFromSideAndMetadata(par5, par1IBlockAccess.getBlockMetadata(par2, par3, par4));
}
/**
* From the specified side and block metadata retrieves the blocks texture. Args: side, metadata
*/
public int getBlockTextureFromSideAndMetadata(int par1, int par2)
{
return getBlockTextureFromSide(par1);
}
/**
* Returns the block texture based on the side being looked at. Args: side
*/
public int getBlockTextureFromSide(int par1)
{
return blockIndexInTexture;
}
/**
* Returns the bounding box of the wired rectangular prism to render.
*/
public AxisAlignedBB getSelectedBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
{
return AxisAlignedBB.getBoundingBoxFromPool((double)par2 + minX, (double)par3 + minY, (double)par4 + minZ, (double)par2 + maxX, (double)par3 + maxY, (double)par4 + maxZ);
}
/**
* Adds to the supplied array any colliding bounding boxes with the passed in bounding box. Args: world, x, y, z,
* axisAlignedBB, arrayList
*/
public void getCollidingBoundingBoxes(World par1World, int par2, int par3, int par4, AxisAlignedBB par5AxisAlignedBB, ArrayList par6ArrayList)
{
AxisAlignedBB axisalignedbb = getCollisionBoundingBoxFromPool(par1World, par2, par3, par4);
if (axisalignedbb != null && par5AxisAlignedBB.intersectsWith(axisalignedbb))
{
par6ArrayList.add(axisalignedbb);
}
}
/**
* Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been
* cleared to be reused)
*/
public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
{
return AxisAlignedBB.getBoundingBoxFromPool((double)par2 + minX, (double)par3 + minY, (double)par4 + minZ, (double)par2 + maxX, (double)par3 + maxY, (double)par4 + maxZ);
}
/**
* Is this block (a) opaque and (b) a full 1m cube? This determines whether or not to render the shared face of two
* adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block.
*/
public boolean isOpaqueCube()
{
return true;
}
/**
* Returns whether this block is collideable based on the arguments passed in Args: blockMetaData, unknownFlag
*/
public boolean canCollideCheck(int par1, boolean par2)
{
return isCollidable();
}
/**
* Returns if this block is collidable (only used by Fire). Args: x, y, z
*/
public boolean isCollidable()
{
return true;
}
/**
* Ticks the block if it's been scheduled
*/
public void updateTick(World world, int i, int j, int k, Random random)
{
}
/**
* A randomly called display update to be able to add particles or other items for display
*/
public void randomDisplayTick(World world, int i, int j, int k, Random random)
{
}
/**
* Called right before the block is destroyed by a player. Args: world, x, y, z, metaData
*/
public void onBlockDestroyedByPlayer(World world, int i, int j, int k, int l)
{
}
/**
* Lets the block know when one of its neighbor changes. Doesn't know which neighbor changed (coordinates passed are
* their own) Args: x, y, z, neighbor blockID
*/
public void onNeighborBlockChange(World world, int i, int j, int k, int l)
{
}
/**
* How many world ticks before ticking
*/
public int tickRate()
{
return 10;
}
/**
* Called whenever the block is added into the world. Args: world, x, y, z
*/
public void onBlockAdded(World world, int i, int j, int k)
{
}
/**
* Called whenever the block is removed.
*/
public void onBlockRemoval(World world, int i, int j, int k)
{
}
/**
* Returns the quantity of items to drop on block destruction.
*/
public int quantityDropped(Random par1Random)
{
return 1;
}
/**
* Returns the ID of the items to drop on destruction.
*/
public int idDropped(int par1, Random par2Random, int par3)
{
return blockID;
}
/**
* Defines whether or not a play can break the block with current tool.
*/
public float blockStrength(EntityPlayer par1EntityPlayer)
{
if (blockHardness < 0.0F)
{
return 0.0F;
}
if (!par1EntityPlayer.canHarvestBlock(this))
{
return 1.0F / blockHardness / 100F;
}
else
{
return par1EntityPlayer.getCurrentPlayerStrVsBlock(this) / blockHardness / 30F;
}
}
/**
* Drops the specified block items
*/
public final void dropBlockAsItem(World par1World, int par2, int par3, int par4, int par5, int par6)
{
dropBlockAsItemWithChance(par1World, par2, par3, par4, par5, 1.0F, par6);
}
/**
* Drops the block items with a specified chance of dropping the specified items
*/
public void dropBlockAsItemWithChance(World par1World, int par2, int par3, int par4, int par5, float par6, int par7)
{
if (par1World.isRemote)
{
return;
}
int i = quantityDroppedWithBonus(par7, par1World.rand);
for (int j = 0; j < i; j++)
{
if (par1World.rand.nextFloat() > par6)
{
continue;
}
int k = idDropped(par5, par1World.rand, par7);
if (k > 0)
{
dropBlockAsItem_do(par1World, par2, par3, par4, new ItemStack(k, 1, damageDropped(par5)));
}
}
}
/**
* Spawns EntityItem in the world for the given ItemStack if the world is not remote.
*/
protected void dropBlockAsItem_do(World par1World, int par2, int par3, int par4, ItemStack par5ItemStack)
{
if (par1World.isRemote)
{
return;
}
else
{
float f = 0.7F;
double d = (double)(par1World.rand.nextFloat() * f) + (double)(1.0F - f) * 0.5D;
double d1 = (double)(par1World.rand.nextFloat() * f) + (double)(1.0F - f) * 0.5D;
double d2 = (double)(par1World.rand.nextFloat() * f) + (double)(1.0F - f) * 0.5D;
EntityItem entityitem = new EntityItem(par1World, (double)par2 + d, (double)par3 + d1, (double)par4 + d2, par5ItemStack);
entityitem.delayBeforeCanPickup = 10;
par1World.spawnEntityInWorld(entityitem);
return;
}
}
/**
* Determines the damage on the item the block drops. Used in cloth and wood.
*/
protected int damageDropped(int par1)
{
return 0;
}
/**
* Returns how much this block can resist explosions from the passed in entity.
*/
public float getExplosionResistance(Entity par1Entity)
{
return blockResistance / 5F;
}
/**
* Ray traces through the blocks collision from start vector to end vector returning a ray trace hit. Args: world,
* x, y, z, startVec, endVec
*/
public MovingObjectPosition collisionRayTrace(World par1World, int par2, int par3, int par4, Vec3D par5Vec3D, Vec3D par6Vec3D)
{
setBlockBoundsBasedOnState(par1World, par2, par3, par4);
par5Vec3D = par5Vec3D.addVector(-par2, -par3, -par4);
par6Vec3D = par6Vec3D.addVector(-par2, -par3, -par4);
Vec3D vec3d = par5Vec3D.getIntermediateWithXValue(par6Vec3D, minX);
Vec3D vec3d1 = par5Vec3D.getIntermediateWithXValue(par6Vec3D, maxX);
Vec3D vec3d2 = par5Vec3D.getIntermediateWithYValue(par6Vec3D, minY);
Vec3D vec3d3 = par5Vec3D.getIntermediateWithYValue(par6Vec3D, maxY);
Vec3D vec3d4 = par5Vec3D.getIntermediateWithZValue(par6Vec3D, minZ);
Vec3D vec3d5 = par5Vec3D.getIntermediateWithZValue(par6Vec3D, maxZ);
if (!isVecInsideYZBounds(vec3d))
{
vec3d = null;
}
if (!isVecInsideYZBounds(vec3d1))
{
vec3d1 = null;
}
if (!isVecInsideXZBounds(vec3d2))
{
vec3d2 = null;
}
if (!isVecInsideXZBounds(vec3d3))
{
vec3d3 = null;
}
if (!isVecInsideXYBounds(vec3d4))
{
vec3d4 = null;
}
if (!isVecInsideXYBounds(vec3d5))
{
vec3d5 = null;
}
Vec3D vec3d6 = null;
if (vec3d != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d;
}
if (vec3d1 != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d1) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d1;
}
if (vec3d2 != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d2) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d2;
}
if (vec3d3 != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d3) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d3;
}
if (vec3d4 != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d4) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d4;
}
if (vec3d5 != null && (vec3d6 == null || par5Vec3D.distanceTo(vec3d5) < par5Vec3D.distanceTo(vec3d6)))
{
vec3d6 = vec3d5;
}
if (vec3d6 == null)
{
return null;
}
byte byte0 = -1;
if (vec3d6 == vec3d)
{
byte0 = 4;
}
if (vec3d6 == vec3d1)
{
byte0 = 5;
}
if (vec3d6 == vec3d2)
{
byte0 = 0;
}
if (vec3d6 == vec3d3)
{
byte0 = 1;
}
if (vec3d6 == vec3d4)
{
byte0 = 2;
}
if (vec3d6 == vec3d5)
{
byte0 = 3;
}
return new MovingObjectPosition(par2, par3, par4, byte0, vec3d6.addVector(par2, par3, par4));
}
/**
* Checks if a vector is within the Y and Z bounds of the block.
*/
private boolean isVecInsideYZBounds(Vec3D par1Vec3D)
{
if (par1Vec3D == null)
{
return false;
}
else
{
return par1Vec3D.yCoord >= minY && par1Vec3D.yCoord <= maxY && par1Vec3D.zCoord >= minZ && par1Vec3D.zCoord <= maxZ;
}
}
/**
* Checks if a vector is within the X and Z bounds of the block.
*/
private boolean isVecInsideXZBounds(Vec3D par1Vec3D)
{
if (par1Vec3D == null)
{
return false;
}
else
{
return par1Vec3D.xCoord >= minX && par1Vec3D.xCoord <= maxX && par1Vec3D.zCoord >= minZ && par1Vec3D.zCoord <= maxZ;
}
}
/**
* Checks if a vector is within the X and Y bounds of the block.
*/
private boolean isVecInsideXYBounds(Vec3D par1Vec3D)
{
if (par1Vec3D == null)
{
return false;
}
else
{
return par1Vec3D.xCoord >= minX && par1Vec3D.xCoord <= maxX && par1Vec3D.yCoord >= minY && par1Vec3D.yCoord <= maxY;
}
}
/**
* Called upon the block being destroyed by an explosion
*/
public void onBlockDestroyedByExplosion(World world, int i, int j, int k)
{
}
/**
* Returns which pass should this block be rendered on. 0 for solids and 1 for alpha
*/
public int getRenderBlockPass()
{
return 0;
}
/**
* checks to see if you can place this block can be placed on that side of a block: BlockLever overrides
*/
public boolean canPlaceBlockOnSide(World par1World, int par2, int par3, int par4, int par5)
{
return canPlaceBlockAt(par1World, par2, par3, par4);
}
/**
* Checks to see if its valid to put this block at the specified coordinates. Args: world, x, y, z
*/
public boolean canPlaceBlockAt(World par1World, int par2, int par3, int par4)
{
int i = par1World.getBlockId(par2, par3, par4);
return i == 0 || blocksList[i].blockMaterial.isGroundCover();
}
/**
* Called upon block activation (left or right click on the block.). The three integers represent x,y,z of the
* block.
*/
public boolean blockActivated(World par1World, int par2, int par3, int i, EntityPlayer entityplayer)
{
return false;
}
/**
* Called whenever an entity is walking on top of this block. Args: world, x, y, z, entity
*/
public void onEntityWalking(World world, int i, int j, int k, Entity entity)
{
}
/**
* Called when a block is placed using an item. Used often for taking the facing and figuring out how to position
* the item. Args: x, y, z, facing
*/
public void onBlockPlaced(World world, int i, int j, int k, int l)
{
}
/**
* Called when the block is clicked by a player. Args: x, y, z, entityPlayer
*/
public void onBlockClicked(World world, int i, int j, int k, EntityPlayer entityplayer)
{
}
/**
* Can add to the passed in vector for a movement vector to be applied to the entity. Args: x, y, z, entity, vec3d
*/
public void velocityToAddToEntity(World world, int i, int j, int k, Entity entity, Vec3D vec3d)
{
}
/**
* Updates the blocks bounds based on its current state. Args: world, x, y, z
*/
public void setBlockBoundsBasedOnState(IBlockAccess iblockaccess, int i, int j, int k)
{
}
public int getBlockColor()
{
return 0xffffff;
}
/**
* Returns the color this block should be rendered. Used by leaves.
*/
public int getRenderColor(int par1)
{
return 0xffffff;
}
/**
* Returns a integer with hex for 0xrrggbb with this color multiplied against the blocks color. Note only called
* when first determining what to render.
*/
public int colorMultiplier(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
{
return 0xffffff;
}
/**
* Is this block powering the block on the specified side
*/
public boolean isPoweringTo(IBlockAccess par1IBlockAccess, int par2, int par3, int i, int j)
{
return false;
}
/**
* Can this block provide power. Only wire currently seems to have this change based on its state.
*/
public boolean canProvidePower()
{
return false;
}
/**
* Triggered whenever an entity collides with this block (enters into the block). Args: world, x, y, z, entity
*/
public void onEntityCollidedWithBlock(World world, int i, int j, int k, Entity entity)
{
}
/**
* Is this block indirectly powering the block on the specified side
*/
public boolean isIndirectlyPoweringTo(World par1World, int par2, int par3, int i, int j)
{
return false;
}
/**
* Sets the block's bounds for rendering it as an item
*/
public void setBlockBoundsForItemRender()
{
}
/**
* Called when the player destroys a block with an item that can harvest it. (i, j, k) are the coordinates of the
* block and l is the block's subtype/damage.
*/
public void harvestBlock(World par1World, EntityPlayer par2EntityPlayer, int par3, int par4, int par5, int par6)
{
par2EntityPlayer.addStat(StatList.mineBlockStatArray[blockID], 1);
par2EntityPlayer.addExhaustion(0.025F);
if (func_50074_q() && EnchantmentHelper.getSilkTouchModifier(par2EntityPlayer.inventory))
{
ItemStack itemstack = createStackedBlock(par6);
if (itemstack != null)
{
dropBlockAsItem_do(par1World, par3, par4, par5, itemstack);
}
}
else
{
int i = EnchantmentHelper.getFortuneModifier(par2EntityPlayer.inventory);
dropBlockAsItem(par1World, par3, par4, par5, par6, i);
}
}
protected boolean func_50074_q()
{
return renderAsNormalBlock() && !isBlockContainer;
}
/**
* Returns an item stack containing a single instance of the current block type. 'i' is the block's subtype/damage
* and is ignored for blocks which do not support subtypes. Blocks which cannot be harvested should return null.
*/
protected ItemStack createStackedBlock(int par1)
{
int i = 0;
if (blockID >= 0 && blockID < Item.itemsList.length && Item.itemsList[blockID].getHasSubtypes())
{
i = par1;
}
return new ItemStack(blockID, 1, i);
}
/**
* Returns the usual quantity dropped by the block plus a bonus of 1 to 'i' (inclusive).
*/
public int quantityDroppedWithBonus(int par1, Random par2Random)
{
return quantityDropped(par2Random);
}
/**
* Can this block stay at this position. Similar to canPlaceBlockAt except gets checked often with plants.
*/
public boolean canBlockStay(World par1World, int par2, int par3, int i)
{
return true;
}
/**
* Called when the block is placed in the world.
*/
public void onBlockPlacedBy(World world, int i, int j, int k, EntityLiving entityliving)
{
}
/**
* set name of block from language file
*/
public Block setBlockName(String par1Str)
{
blockName = (new StringBuilder()).append("tile.").append(par1Str).toString();
return this;
}
/**
* gets the localized version of the name of this block using StatCollector.translateToLocal. Used for the statistic
* page.
*/
public String translateBlockName()
{
return StatCollector.translateToLocal((new StringBuilder()).append(getBlockName()).append(".name").toString());
}
public String getBlockName()
{
return blockName;
}
public void powerBlock(World world, int i, int j, int k, int l, int i1)
{
}
/**
* Return the state of blocks statistics flags - if the block is counted for mined and placed.
*/
public boolean getEnableStats()
{
return enableStats;
}
/**
* Disable statistics for the block, the block will no count for mined or placed.
*/
protected Block disableStats()
{
enableStats = false;
return this;
}
/**
* Returns the mobility information of the block, 0 = free, 1 = can't push but can move over, 2 = total immobility
* and stop pistons
*/
public int getMobilityFlag()
{
return blockMaterial.getMaterialMobility();
}
/**
* Returns the default ambient occlusion value based on block opacity
*/
public float getAmbientOcclusionLightValue(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
{
return par1IBlockAccess.isBlockNormalCube(par2, par3, par4) ? 0.2F : 1.0F;
}
/**
* Block's chance to react to an entity falling on it.
*/
public void onFallenUpon(World world, int i, int j, int k, Entity entity, float f)
{
}
static
{
soundPowderFootstep = new StepSound("stone", 1.0F, 1.0F);
soundWoodFootstep = new StepSound("wood", 1.0F, 1.0F);
soundGravelFootstep = new StepSound("gravel", 1.0F, 1.0F);
soundGrassFootstep = new StepSound("grass", 1.0F, 1.0F);
soundStoneFootstep = new StepSound("stone", 1.0F, 1.0F);
soundMetalFootstep = new StepSound("stone", 1.0F, 1.5F);
soundGlassFootstep = new StepSoundStone("stone", 1.0F, 1.0F);
soundClothFootstep = new StepSound("cloth", 1.0F, 1.0F);
soundSandFootstep = new StepSoundSand("sand", 1.0F, 1.0F);
blocksList = new Block[4096];
opaqueCubeLookup = new boolean[4096];
lightOpacity = new int[4096];
canBlockGrass = new boolean[4096];
lightValue = new int[4096];
requiresSelfNotify = new boolean[4096];
useNeighborBrightness = new boolean[4096];
stone = (new BlockStone(1, 1)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stone");
grass = (BlockGrass)(new BlockGrass(2)).setHardness(0.6F).setStepSound(soundGrassFootstep).setBlockName("grass");
dirt = (new BlockDirt(3, 2)).setHardness(0.5F).setStepSound(soundGravelFootstep).setBlockName("dirt");
cobblestone = (new Block(4, 16, Material.rock)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stonebrick");
planks = (new BlockWood(5)).setHardness(2.0F).setResistance(5F).setStepSound(soundWoodFootstep).setBlockName("wood").setRequiresSelfNotify();
sapling = (new BlockSapling(6, 15)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("sapling").setRequiresSelfNotify();
bedrock = (new Block(7, 17, Material.rock)).setBlockUnbreakable().setResistance(6000000F).setStepSound(soundStoneFootstep).setBlockName("bedrock").disableStats();
waterMoving = (new BlockFlowing(8, Material.water)).setHardness(100F).setLightOpacity(3).setBlockName("water").disableStats().setRequiresSelfNotify();
waterStill = (new BlockStationary(9, Material.water)).setHardness(100F).setLightOpacity(3).setBlockName("water").disableStats().setRequiresSelfNotify();
lavaMoving = (new BlockFlowing(10, Material.lava)).setHardness(0.0F).setLightValue(1.0F).setLightOpacity(255).setBlockName("lava").disableStats().setRequiresSelfNotify();
lavaStill = (new BlockStationary(11, Material.lava)).setHardness(100F).setLightValue(1.0F).setLightOpacity(255).setBlockName("lava").disableStats().setRequiresSelfNotify();
sand = (new BlockSand(12, 18)).setHardness(0.5F).setStepSound(soundSandFootstep).setBlockName("sand");
gravel = (new BlockGravel(13, 19)).setHardness(0.6F).setStepSound(soundGravelFootstep).setBlockName("gravel");
oreGold = (new BlockOre(14, 32)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreGold");
oreIron = (new BlockOre(15, 33)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreIron");
oreCoal = (new BlockOre(16, 34)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreCoal");
wood = (new BlockLog(17)).setHardness(2.0F).setStepSound(soundWoodFootstep).setBlockName("log").setRequiresSelfNotify();
leaves = (BlockLeaves)(new BlockLeaves(18, 52)).setHardness(0.2F).setLightOpacity(1).setStepSound(soundGrassFootstep).setBlockName("leaves").setRequiresSelfNotify();
sponge = (new BlockSponge(19)).setHardness(0.6F).setStepSound(soundGrassFootstep).setBlockName("sponge");
glass = (new BlockGlass(20, 49, Material.glass, false)).setHardness(0.3F).setStepSound(soundGlassFootstep).setBlockName("glass");
oreLapis = (new BlockOre(21, 160)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreLapis");
blockLapis = (new Block(22, 144, Material.rock)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("blockLapis");
dispenser = (new BlockDispenser(23)).setHardness(3.5F).setStepSound(soundStoneFootstep).setBlockName("dispenser").setRequiresSelfNotify();
sandStone = (new BlockSandStone(24)).setStepSound(soundStoneFootstep).setHardness(0.8F).setBlockName("sandStone").setRequiresSelfNotify();
music = (new BlockNote(25)).setHardness(0.8F).setBlockName("musicBlock").setRequiresSelfNotify();
bed = (new BlockBed(26)).setHardness(0.2F).setBlockName("bed").disableStats().setRequiresSelfNotify();
railPowered = (new BlockRail(27, 179, true)).setHardness(0.7F).setStepSound(soundMetalFootstep).setBlockName("goldenRail").setRequiresSelfNotify();
railDetector = (new BlockDetectorRail(28, 195)).setHardness(0.7F).setStepSound(soundMetalFootstep).setBlockName("detectorRail").setRequiresSelfNotify();
pistonStickyBase = (new BlockPistonBase(29, 106, true)).setBlockName("pistonStickyBase").setRequiresSelfNotify();
web = (new BlockWeb(30, 11)).setLightOpacity(1).setHardness(4F).setBlockName("web");
tallGrass = (BlockTallGrass)(new BlockTallGrass(31, 39)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("tallgrass");
deadBush = (BlockDeadBush)(new BlockDeadBush(32, 55)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("deadbush");
pistonBase = (new BlockPistonBase(33, 107, false)).setBlockName("pistonBase").setRequiresSelfNotify();
pistonExtension = (BlockPistonExtension)(new BlockPistonExtension(34, 107)).setRequiresSelfNotify();
cloth = (new BlockCloth()).setHardness(0.8F).setStepSound(soundClothFootstep).setBlockName("cloth").setRequiresSelfNotify();
pistonMoving = new BlockPistonMoving(36);
plantYellow = (BlockFlower)(new BlockFlower(37, 13)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("flower");
plantRed = (BlockFlower)(new BlockFlower(38, 12)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("rose");
mushroomBrown = (BlockFlower)(new BlockMushroom(39, 29)).setHardness(0.0F).setStepSound(soundGrassFootstep).setLightValue(0.125F).setBlockName("mushroom");
mushroomRed = (BlockFlower)(new BlockMushroom(40, 28)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("mushroom");
blockGold = (new BlockOreStorage(41, 23)).setHardness(3F).setResistance(10F).setStepSound(soundMetalFootstep).setBlockName("blockGold");
blockSteel = (new BlockOreStorage(42, 22)).setHardness(5F).setResistance(10F).setStepSound(soundMetalFootstep).setBlockName("blockIron");
stairDouble = (new BlockStep(43, true)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stoneSlab");
stairSingle = (new BlockStep(44, false)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stoneSlab");
brick = (new Block(45, 7, Material.rock)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("brick");
tnt = (new BlockTNT(46, 8)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("tnt");
bookShelf = (new BlockBookshelf(47, 35)).setHardness(1.5F).setStepSound(soundWoodFootstep).setBlockName("bookshelf");
cobblestoneMossy = (new Block(48, 36, Material.rock)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stoneMoss");
obsidian = (new BlockObsidian(49, 37)).setHardness(50F).setResistance(2000F).setStepSound(soundStoneFootstep).setBlockName("obsidian");
torchWood = (new BlockTorch(50, 80)).setHardness(0.0F).setLightValue(0.9375F).setStepSound(soundWoodFootstep).setBlockName("torch").setRequiresSelfNotify();
fire = (BlockFire)(new BlockFire(51, 31)).setHardness(0.0F).setLightValue(1.0F).setStepSound(soundWoodFootstep).setBlockName("fire").disableStats();
mobSpawner = (new BlockMobSpawner(52, 65)).setHardness(5F).setStepSound(soundMetalFootstep).setBlockName("mobSpawner").disableStats();
stairCompactPlanks = (new BlockStairs(53, planks)).setBlockName("stairsWood").setRequiresSelfNotify();
chest = (new BlockChest(54)).setHardness(2.5F).setStepSound(soundWoodFootstep).setBlockName("chest").setRequiresSelfNotify();
redstoneWire = (new BlockRedstoneWire(55, 164)).setHardness(0.0F).setStepSound(soundPowderFootstep).setBlockName("redstoneDust").disableStats().setRequiresSelfNotify();
oreDiamond = (new BlockOre(56, 50)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreDiamond");
blockDiamond = (new BlockOreStorage(57, 24)).setHardness(5F).setResistance(10F).setStepSound(soundMetalFootstep).setBlockName("blockDiamond");
workbench = (new BlockWorkbench(58)).setHardness(2.5F).setStepSound(soundWoodFootstep).setBlockName("workbench");
crops = (new BlockCrops(59, 88)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("crops").disableStats().setRequiresSelfNotify();
tilledField = (new BlockFarmland(60)).setHardness(0.6F).setStepSound(soundGravelFootstep).setBlockName("farmland").setRequiresSelfNotify();
stoneOvenIdle = (new BlockFurnace(61, false)).setHardness(3.5F).setStepSound(soundStoneFootstep).setBlockName("furnace").setRequiresSelfNotify();
stoneOvenActive = (new BlockFurnace(62, true)).setHardness(3.5F).setStepSound(soundStoneFootstep).setLightValue(0.875F).setBlockName("furnace").setRequiresSelfNotify();
signPost = (new BlockSign(63, net.minecraft.src.TileEntitySign.class, true)).setHardness(1.0F).setStepSound(soundWoodFootstep).setBlockName("sign").disableStats().setRequiresSelfNotify();
doorWood = (new BlockDoor(64, Material.wood)).setHardness(3F).setStepSound(soundWoodFootstep).setBlockName("doorWood").disableStats().setRequiresSelfNotify();
ladder = (new BlockLadder(65, 83)).setHardness(0.4F).setStepSound(soundWoodFootstep).setBlockName("ladder").setRequiresSelfNotify();
rail = (new BlockRail(66, 128, false)).setHardness(0.7F).setStepSound(soundMetalFootstep).setBlockName("rail").setRequiresSelfNotify();
stairCompactCobblestone = (new BlockStairs(67, cobblestone)).setBlockName("stairsStone").setRequiresSelfNotify();
signWall = (new BlockSign(68, net.minecraft.src.TileEntitySign.class, false)).setHardness(1.0F).setStepSound(soundWoodFootstep).setBlockName("sign").disableStats().setRequiresSelfNotify();
lever = (new BlockLever(69, 96)).setHardness(0.5F).setStepSound(soundWoodFootstep).setBlockName("lever").setRequiresSelfNotify();
pressurePlateStone = (new BlockPressurePlate(70, stone.blockIndexInTexture, EnumMobType.mobs, Material.rock)).setHardness(0.5F).setStepSound(soundStoneFootstep).setBlockName("pressurePlate").setRequiresSelfNotify();
doorSteel = (new BlockDoor(71, Material.iron)).setHardness(5F).setStepSound(soundMetalFootstep).setBlockName("doorIron").disableStats().setRequiresSelfNotify();
pressurePlatePlanks = (new BlockPressurePlate(72, planks.blockIndexInTexture, EnumMobType.everything, Material.wood)).setHardness(0.5F).setStepSound(soundWoodFootstep).setBlockName("pressurePlate").setRequiresSelfNotify();
oreRedstone = (new BlockRedstoneOre(73, 51, false)).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreRedstone").setRequiresSelfNotify();
oreRedstoneGlowing = (new BlockRedstoneOre(74, 51, true)).setLightValue(0.625F).setHardness(3F).setResistance(5F).setStepSound(soundStoneFootstep).setBlockName("oreRedstone").setRequiresSelfNotify();
torchRedstoneIdle = (new BlockRedstoneTorch(75, 115, false)).setHardness(0.0F).setStepSound(soundWoodFootstep).setBlockName("notGate").setRequiresSelfNotify();
torchRedstoneActive = (new BlockRedstoneTorch(76, 99, true)).setHardness(0.0F).setLightValue(0.5F).setStepSound(soundWoodFootstep).setBlockName("notGate").setRequiresSelfNotify();
button = (new BlockButton(77, stone.blockIndexInTexture)).setHardness(0.5F).setStepSound(soundStoneFootstep).setBlockName("button").setRequiresSelfNotify();
snow = (new BlockSnow(78, 66)).setHardness(0.1F).setStepSound(soundClothFootstep).setBlockName("snow").setLightOpacity(0);
ice = (new BlockIce(79, 67)).setHardness(0.5F).setLightOpacity(3).setStepSound(soundGlassFootstep).setBlockName("ice");
blockSnow = (new BlockSnowBlock(80, 66)).setHardness(0.2F).setStepSound(soundClothFootstep).setBlockName("snow");
cactus = (new BlockCactus(81, 70)).setHardness(0.4F).setStepSound(soundClothFootstep).setBlockName("cactus");
blockClay = (new BlockClay(82, 72)).setHardness(0.6F).setStepSound(soundGravelFootstep).setBlockName("clay");
reed = (new BlockReed(83, 73)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("reeds").disableStats();
jukebox = (new BlockJukeBox(84, 74)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("jukebox").setRequiresSelfNotify();
fence = (new BlockFence(85, 4)).setHardness(2.0F).setResistance(5F).setStepSound(soundWoodFootstep).setBlockName("fence");
pumpkin = (new BlockPumpkin(86, 102, false)).setHardness(1.0F).setStepSound(soundWoodFootstep).setBlockName("pumpkin").setRequiresSelfNotify();
netherrack = (new BlockNetherrack(87, 103)).setHardness(0.4F).setStepSound(soundStoneFootstep).setBlockName("hellrock");
slowSand = (new BlockSoulSand(88, 104)).setHardness(0.5F).setStepSound(soundSandFootstep).setBlockName("hellsand");
glowStone = (new BlockGlowStone(89, 105, Material.glass)).setHardness(0.3F).setStepSound(soundGlassFootstep).setLightValue(1.0F).setBlockName("lightgem");
portal = (BlockPortal)(new BlockPortal(90, 14)).setHardness(-1F).setStepSound(soundGlassFootstep).setLightValue(0.75F).setBlockName("portal");
pumpkinLantern = (new BlockPumpkin(91, 102, true)).setHardness(1.0F).setStepSound(soundWoodFootstep).setLightValue(1.0F).setBlockName("litpumpkin").setRequiresSelfNotify();
cake = (new BlockCake(92, 121)).setHardness(0.5F).setStepSound(soundClothFootstep).setBlockName("cake").disableStats().setRequiresSelfNotify();
redstoneRepeaterIdle = (new BlockRedstoneRepeater(93, false)).setHardness(0.0F).setStepSound(soundWoodFootstep).setBlockName("diode").disableStats().setRequiresSelfNotify();
redstoneRepeaterActive = (new BlockRedstoneRepeater(94, true)).setHardness(0.0F).setLightValue(0.625F).setStepSound(soundWoodFootstep).setBlockName("diode").disableStats().setRequiresSelfNotify();
lockedChest = (new BlockLockedChest(95)).setHardness(0.0F).setLightValue(1.0F).setStepSound(soundWoodFootstep).setBlockName("lockedchest").setTickRandomly(true).setRequiresSelfNotify();
trapdoor = (new BlockTrapDoor(96, Material.wood)).setHardness(3F).setStepSound(soundWoodFootstep).setBlockName("trapdoor").disableStats().setRequiresSelfNotify();
silverfish = (new BlockSilverfish(97)).setHardness(0.75F);
stoneBrick = (new BlockStoneBrick(98)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("stonebricksmooth");
mushroomCapBrown = (new BlockMushroomCap(99, Material.wood, 142, 0)).setHardness(0.2F).setStepSound(soundWoodFootstep).setBlockName("mushroom").setRequiresSelfNotify();
mushroomCapRed = (new BlockMushroomCap(100, Material.wood, 142, 1)).setHardness(0.2F).setStepSound(soundWoodFootstep).setBlockName("mushroom").setRequiresSelfNotify();
fenceIron = (new BlockPane(101, 85, 85, Material.iron, true)).setHardness(5F).setResistance(10F).setStepSound(soundMetalFootstep).setBlockName("fenceIron");
thinGlass = (new BlockPane(102, 49, 148, Material.glass, false)).setHardness(0.3F).setStepSound(soundGlassFootstep).setBlockName("thinGlass");
melon = (new BlockMelon(103)).setHardness(1.0F).setStepSound(soundWoodFootstep).setBlockName("melon");
pumpkinStem = (new BlockStem(104, pumpkin)).setHardness(0.0F).setStepSound(soundWoodFootstep).setBlockName("pumpkinStem").setRequiresSelfNotify();
melonStem = (new BlockStem(105, melon)).setHardness(0.0F).setStepSound(soundWoodFootstep).setBlockName("pumpkinStem").setRequiresSelfNotify();
vine = (new BlockVine(106)).setHardness(0.2F).setStepSound(soundGrassFootstep).setBlockName("vine").setRequiresSelfNotify();
fenceGate = (new BlockFenceGate(107, 4)).setHardness(2.0F).setResistance(5F).setStepSound(soundWoodFootstep).setBlockName("fenceGate").setRequiresSelfNotify();
stairsBrick = (new BlockStairs(108, brick)).setBlockName("stairsBrick").setRequiresSelfNotify();
stairsStoneBrickSmooth = (new BlockStairs(109, stoneBrick)).setBlockName("stairsStoneBrickSmooth").setRequiresSelfNotify();
mycelium = (BlockMycelium)(new BlockMycelium(110)).setHardness(0.6F).setStepSound(soundGrassFootstep).setBlockName("mycel");
waterlily = (new BlockLilyPad(111, 76)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("waterlily");
netherBrick = (new Block(112, 224, Material.rock)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("netherBrick");
netherFence = (new BlockFence(113, 224, Material.rock)).setHardness(2.0F).setResistance(10F).setStepSound(soundStoneFootstep).setBlockName("netherFence");
stairsNetherBrick = (new BlockStairs(114, netherBrick)).setBlockName("stairsNetherBrick").setRequiresSelfNotify();
netherStalk = (new BlockNetherStalk(115)).setBlockName("netherStalk").setRequiresSelfNotify();
enchantmentTable = (new BlockEnchantmentTable(116)).setHardness(5F).setResistance(2000F).setBlockName("enchantmentTable");
brewingStand = (new BlockBrewingStand(117)).setHardness(0.5F).setLightValue(0.125F).setBlockName("brewingStand").setRequiresSelfNotify();
cauldron = (new BlockCauldron(118)).setHardness(2.0F).setBlockName("cauldron").setRequiresSelfNotify();
endPortal = (new BlockEndPortal(119, Material.portal)).setHardness(-1F).setResistance(6000000F);
endPortalFrame = (new BlockEndPortalFrame(120)).setStepSound(soundGlassFootstep).setLightValue(0.125F).setHardness(-1F).setBlockName("endPortalFrame").setRequiresSelfNotify().setResistance(6000000F);
whiteStone = (new Block(121, 175, Material.rock)).setHardness(3F).setResistance(15F).setStepSound(soundStoneFootstep).setBlockName("whiteStone");
dragonEgg = (new BlockDragonEgg(122, 167)).setHardness(3F).setResistance(15F).setStepSound(soundStoneFootstep).setLightValue(0.125F).setBlockName("dragonEgg");
redstoneLampIdle = (new BlockRedstoneLight(123, false)).setHardness(0.3F).setStepSound(soundGlassFootstep).setBlockName("redstoneLight");
redstoneLampActive = (new BlockRedstoneLight(124, true)).setHardness(0.3F).setStepSound(soundGlassFootstep).setBlockName("redstoneLight");
oreMeteor = (new BlockOre(125, 168).setHardness(3F).setResistance(5F).setBlockName("oreMeteor"));
oreMoonstone = (new BlockOre(126, 169).setHardness(3F).setResistance(5F).setBlockName("oreMoonstone"));
oreSapphire = (new BlockOre(127, 170).setHardness(3F).setResistance(5F).setBlockName("oreSapphire"));
oreAmethist = (new BlockOre(128, 171).setHardness(3F).setResistance(5F).setBlockName("oreAmethist"));
oreRuby = (new BlockOre(129, 172).setHardness(3F).setResistance(5F).setBlockName("oreRuby"));
strawPlant = (new BlockStrawplant(130, 184)).setHardness(0.0F).setStepSound(soundGrassFootstep).setBlockName("strawPlant").disableStats().setRequiresSelfNotify();
moonLamp = (new BlockMoonLamp(131, 200)).setHardness(0.1F).setLightValue(10F).setStepSound(soundWoodFootstep).setBlockName("moonLight").setRequiresSelfNotify();
cakeCacao = (new BlockCakeCacao(132, 231)).setHardness(0.5F).setStepSound(soundClothFootstep).setBlockName("cakecacao").disableStats().setRequiresSelfNotify();
Item.itemsList[cloth.blockID] = (new ItemCloth(cloth.blockID - 256)).setItemName("cloth");
Item.itemsList[wood.blockID] = (new ItemMetadata(wood.blockID - 256, wood)).setItemName("log");
Item.itemsList[planks.blockID] = (new ItemMetadata(planks.blockID - 256, planks)).setItemName("wood");
Item.itemsList[stoneBrick.blockID] = (new ItemMetadata(stoneBrick.blockID - 256, stoneBrick)).setItemName("stonebricksmooth");
Item.itemsList[sandStone.blockID] = (new ItemMetadata(sandStone.blockID - 256, sandStone)).setItemName("sandStone");
Item.itemsList[stairSingle.blockID] = (new ItemSlab(stairSingle.blockID - 256)).setItemName("stoneSlab");
Item.itemsList[sapling.blockID] = (new ItemSapling(sapling.blockID - 256)).setItemName("sapling");
Item.itemsList[leaves.blockID] = (new ItemLeaves(leaves.blockID - 256)).setItemName("leaves");
Item.itemsList[vine.blockID] = new ItemColored(vine.blockID - 256, false);
Item.itemsList[tallGrass.blockID] = (new ItemColored(tallGrass.blockID - 256, true)).setBlockNames(new String[]
{
"shrub", "grass", "fern"
});
Item.itemsList[waterlily.blockID] = new ItemLilyPad(waterlily.blockID - 256);
Item.itemsList[pistonBase.blockID] = new ItemPiston(pistonBase.blockID - 256);
Item.itemsList[pistonStickyBase.blockID] = new ItemPiston(pistonStickyBase.blockID - 256);
for (int i = 0; i < 256; i++)
{
if (blocksList[i] == null)
{
continue;
}
if (Item.itemsList[i] == null)
{
Item.itemsList[i] = new ItemBlock(i - 256);
blocksList[i].initializeBlock();
}
boolean flag = false;
if (i > 0 && blocksList[i].getRenderType() == 10)
{
flag = true;
}
if (i > 0 && (blocksList[i] instanceof BlockStep))
{
flag = true;
}
if (i == tilledField.blockID)
{
flag = true;
}
if (canBlockGrass[i])
{
flag = true;
}
useNeighborBrightness[i] = flag;
}
canBlockGrass[0] = true;
StatList.initBreakableStats();
}
}
Code:
package net.minecraft.src;
import java.io.PrintStream;
import java.util.List;
import java.util.Random;
public class Item
{
/** The RNG used by the Item subclasses. */
protected static Random itemRand = new Random();
public static Item itemsList[] = new Item[32000];
public static Item shovelSteel;
public static Item pickaxeSteel;
public static Item axeSteel;
public static Item flintAndSteel = (new ItemFlintAndSteel(3)).setIconCoord(5, 0).setItemName("flintAndSteel");
public static Item appleRed = (new ItemFood(4, 4, 0.3F, false)).setIconCoord(10, 0).setItemName("apple");
public static Item bow = (new ItemBow(5)).setIconCoord(5, 1).setItemName("bow");
public static Item arrow = (new Item(6)).setIconCoord(5, 2).setItemName("arrow");
public static Item coal = (new ItemCoal(7)).setIconCoord(7, 0).setItemName("coal");
public static Item diamond = (new Item(8)).setIconCoord(7, 3).setItemName("emerald");
public static Item ingotIron = (new Item(9)).setIconCoord(7, 1).setItemName("ingotIron");
public static Item ingotGold = (new Item(10)).setIconCoord(7, 2).setItemName("ingotGold");
public static Item swordSteel;
public static Item swordWood;
public static Item shovelWood;
public static Item pickaxeWood;
public static Item axeWood;
public static Item swordStone;
public static Item shovelStone;
public static Item pickaxeStone;
public static Item axeStone;
public static Item swordDiamond;
public static Item shovelDiamond;
public static Item pickaxeDiamond;
public static Item axeDiamond;
public static Item stick = (new Item(24)).setIconCoord(5, 3).setFull3D().setItemName("stick");
public static Item bowlEmpty = (new Item(25)).setIconCoord(7, 4).setItemName("bowl");
public static Item bowlSoup = (new ItemSoup(26, 8)).setIconCoord(8, 4).setItemName("mushroomStew");
public static Item swordGold;
public static Item shovelGold;
public static Item pickaxeGold;
public static Item axeGold;
public static Item silk = (new Item(31)).setIconCoord(8, 0).setItemName("string");
public static Item feather = (new Item(32)).setIconCoord(8, 1).setItemName("feather");
public static Item gunpowder;
public static Item hoeWood;
public static Item hoeStone;
public static Item hoeSteel;
public static Item hoeDiamond;
public static Item hoeGold;
public static Item seeds;
public static Item wheat = (new Item(40)).setIconCoord(9, 1).setItemName("wheat");
public static Item bread = (new ItemFood(41, 5, 0.6F, false)).setIconCoord(9, 2).setItemName("bread");
public static Item helmetLeather;
public static Item plateLeather;
public static Item legsLeather;
public static Item bootsLeather;
public static Item helmetChain;
public static Item plateChain;
public static Item legsChain;
public static Item bootsChain;
public static Item helmetSteel;
public static Item plateSteel;
public static Item legsSteel;
public static Item bootsSteel;
public static Item helmetDiamond;
public static Item plateDiamond;
public static Item legsDiamond;
public static Item bootsDiamond;
public static Item helmetGold;
public static Item plateGold;
public static Item legsGold;
public static Item bootsGold;
public static Item flint = (new Item(62)).setIconCoord(6, 0).setItemName("flint");
public static Item porkRaw = (new ItemFood(63, 3, 0.3F, true)).setIconCoord(7, 5).setItemName("porkchopRaw");
public static Item porkCooked = (new ItemFood(64, 8, 0.8F, true)).setIconCoord(8, 5).setItemName("porkchopCooked");
public static Item painting = (new ItemPainting(65)).setIconCoord(10, 1).setItemName("painting");
public static Item appleGold;
public static Item sign = (new ItemSign(67)).setIconCoord(10, 2).setItemName("sign");
public static Item doorWood;
public static Item bucketEmpty;
public static Item bucketWater;
public static Item bucketLava;
public static Item minecartEmpty = (new ItemMinecart(72, 0)).setIconCoord(7, 8).setItemName("minecart");
public static Item saddle = (new ItemSaddle(73)).setIconCoord(8, 6).setItemName("saddle");
public static Item doorSteel;
public static Item redstone;
public static Item snowball = (new ItemSnowball(76)).setIconCoord(14, 0).setItemName("snowball");
public static Item boat = (new ItemBoat(77)).setIconCoord(8, 8).setItemName("boat");
public static Item leather = (new Item(78)).setIconCoord(7, 6).setItemName("leather");
public static Item bucketMilk;
public static Item brick = (new Item(80)).setIconCoord(6, 1).setItemName("brick");
public static Item clay = (new Item(81)).setIconCoord(9, 3).setItemName("clay");
public static Item reed;
public static Item paper = (new Item(83)).setIconCoord(10, 3).setItemName("paper");
public static Item book = (new Item(84)).setIconCoord(11, 3).setItemName("book");
public static Item slimeBall = (new Item(85)).setIconCoord(14, 1).setItemName("slimeball");
public static Item minecartCrate = (new ItemMinecart(86, 1)).setIconCoord(7, 9).setItemName("minecartChest");
public static Item minecartPowered = (new ItemMinecart(87, 2)).setIconCoord(7, 10).setItemName("minecartFurnace");
public static Item egg = (new ItemEgg(88)).setIconCoord(12, 0).setItemName("egg");
public static Item compass = (new Item(89)).setIconCoord(6, 3).setItemName("compass");
public static Item fishingRod = (new ItemFishingRod(90)).setIconCoord(5, 4).setItemName("fishingRod");
public static Item pocketSundial = (new Item(91)).setIconCoord(6, 4).setItemName("clock");
public static Item lightStoneDust;
public static Item fishRaw = (new ItemFood(93, 2, 0.3F, false)).setIconCoord(9, 5).setItemName("fishRaw");
public static Item fishCooked = (new ItemFood(94, 5, 0.6F, false)).setIconCoord(10, 5).setItemName("fishCooked");
public static Item dyePowder = (new ItemDye(95)).setIconCoord(14, 4).setItemName("dyePowder");
public static Item bone = (new Item(96)).setIconCoord(12, 1).setItemName("bone").setFull3D();
public static Item sugar;
public static Item cake;
public static Item bed = (new ItemBed(99)).setMaxStackSize(1).setIconCoord(13, 2).setItemName("bed");
public static Item redstoneRepeater;
public static Item cookie = (new ItemFood(101, 1, 0.1F, false)).setIconCoord(12, 5).setItemName("cookie");
public static ItemMap map = (ItemMap)(new ItemMap(102)).setIconCoord(12, 3).setItemName("map");
/**
* Item introduced on 1.7 version, is a shear to cut leaves (you can keep the block) or get wool from sheeps.
*/
public static ItemShears shears = (ItemShears)(new ItemShears(103)).setIconCoord(13, 5).setItemName("shears");
public static Item melon = (new ItemFood(104, 2, 0.3F, false)).setIconCoord(13, 6).setItemName("melon");
public static Item pumpkinSeeds;
public static Item melonSeeds;
public static Item beefRaw = (new ItemFood(107, 3, 0.3F, true)).setIconCoord(9, 6).setItemName("beefRaw");
public static Item beefCooked = (new ItemFood(108, 8, 0.8F, true)).setIconCoord(10, 6).setItemName("beefCooked");
public static Item chickenRaw;
public static Item chickenCooked = (new ItemFood(110, 6, 0.6F, true)).setIconCoord(10, 7).setItemName("chickenCooked");
public static Item rottenFlesh;
public static Item enderPearl = (new ItemEnderPearl(112)).setIconCoord(11, 6).setItemName("enderPearl");
public static Item blazeRod = (new Item(113)).setIconCoord(12, 6).setItemName("blazeRod");
public static Item ghastTear;
public static Item goldNugget = (new Item(115)).setIconCoord(12, 7).setItemName("goldNugget");
public static Item netherStalkSeeds;
public static ItemPotion potion = (ItemPotion)(new ItemPotion(117)).setIconCoord(13, 8).setItemName("potion");
public static Item glassBottle = (new ItemGlassBottle(118)).setIconCoord(12, 8).setItemName("glassBottle");
public static Item spiderEye;
public static Item fermentedSpiderEye;
public static Item blazePowder;
public static Item magmaCream;
public static Item brewingStand;
public static Item cauldron;
public static Item eyeOfEnder = (new ItemEnderEye(125)).setIconCoord(11, 9).setItemName("eyeOfEnder");
public static Item speckledMelon;
public static Item monsterPlacer = (new ItemMonsterPlacer(127)).setIconCoord(9, 9).setItemName("monsterPlacer");
public static Item ingotMeteor = (new Item(800)).setIconCoord(6, 6).setItemName("meteorIngot");
public static Item moonstone = (new Item(801).setIconCoord(8, 7).setItemName("moonstone"));
public static Item sapphire = (new Item(802).setIconCoord(6, 7).setItemName("sapphire"));
public static Item amethistUnClean = (new Item(803).setIconCoord(6, 8).setItemName("amethistUC"));
public static Item amethistClean = (new Item(804).setIconCoord(7, 7).setItemName("amethistC"));
public static Item abrasivePaper = (new Item(805)).setIconCoord(6, 9).setItemName("abrasivePaper");
public static Item ruby = (new Item(806).setIconCoord(6, 10).setItemName("ruby"));
public static Item helmetRuby;
public static Item plateRuby;
public static Item legsRuby;
public static Item bootsRuby;
public static Item swordMoonstone;
public static Item shovelAmethist;
public static Item pickaxeAmethist;
public static Item axeAmethist;
public static Item hoeAmethist;
public static Item strawberry;
public static Item swordHell;
public static Item swordHeaven;
public static Item strawFood;
public static Item swordGuard;
public static Item meteBlade = (new Item(807).setIconCoord(4, 10).setItemName("meteBlade"));
public static Item multiTool;
public static Item bucketCacao;
/**
* Bottle o' Enchanting. Drops between 1 and 3 experience orbs when thrown.
*/
public static Item expBottle = (new ItemExpBottle(128)).setIconCoord(11, 10).setItemName("expBottle");
/**
* Fire Charge. When used in a dispenser it fires a fireball similiar to a Ghast's.
*/
public static Item fireballCharge = (new ItemFireball(129)).setIconCoord(14, 2).setItemName("fireball");
public static Item record13 = (new ItemRecord(2000, "13")).setIconCoord(0, 15).setItemName("record");
public static Item recordCat = (new ItemRecord(2001, "cat")).setIconCoord(1, 15).setItemName("record");
public static Item recordBlocks = (new ItemRecord(2002, "blocks")).setIconCoord(2, 15).setItemName("record");
public static Item recordChirp = (new ItemRecord(2003, "chirp")).setIconCoord(3, 15).setItemName("record");
public static Item recordFar = (new ItemRecord(2004, "far")).setIconCoord(4, 15).setItemName("record");
public static Item recordMall = (new ItemRecord(2005, "mall")).setIconCoord(5, 15).setItemName("record");
public static Item recordMellohi = (new ItemRecord(2006, "mellohi")).setIconCoord(6, 15).setItemName("record");
public static Item recordStal = (new ItemRecord(2007, "stal")).setIconCoord(7, 15).setItemName("record");
public static Item recordStrad = (new ItemRecord(2008, "strad")).setIconCoord(8, 15).setItemName("record");
public static Item recordWard = (new ItemRecord(2009, "ward")).setIconCoord(9, 15).setItemName("record");
public static Item record11 = (new ItemRecord(2010, "11")).setIconCoord(10, 15).setItemName("record");
/** Item index + 256 */
public final int shiftedIndex;
/** Maximum size of the stack. */
protected int maxStackSize;
/** Maximum damage an item can handle. */
private int maxDamage;
/** Icon index in the icons table. */
protected int iconIndex;
/** If true, render the object in full 3D, like weapons and tools. */
protected boolean bFull3D;
/**
* Some items (like dyes) have multiple subtypes on same item, this is field define this behavior
*/
protected boolean hasSubtypes;
private Item containerItem;
private String potionEffect;
/** full name of item from language file */
private String itemName;
protected Item(int par1)
{
maxStackSize = 64;
maxDamage = 0;
bFull3D = false;
hasSubtypes = false;
containerItem = null;
potionEffect = null;
shiftedIndex = 256 + par1;
if (itemsList[256 + par1] != null)
{
System.out.println((new StringBuilder()).append("CONFLICT @ ").append(par1).toString());
}
itemsList[256 + par1] = this;
}
/**
* Sets the icon index for this item. Returns the item.
*/
public Item setIconIndex(int par1)
{
iconIndex = par1;
return this;
}
public Item setMaxStackSize(int par1)
{
maxStackSize = par1;
return this;
}
public Item setIconCoord(int par1, int par2)
{
iconIndex = par1 + par2 * 16;
return this;
}
/**
* Gets an icon index based on an item's damage value
*/
public int getIconFromDamage(int par1)
{
return iconIndex;
}
/**
* Returns the icon index of the stack given as argument.
*/
public final int getIconIndex(ItemStack par1ItemStack)
{
return getIconFromDamage(par1ItemStack.getItemDamage());
}
/**
* Callback for item usage. If the item does something special on right clicking, he will have one of those. Return
* True if something happen and false if it don't. This is for ITEMS, not BLOCKS !
*/
public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int i, int j, int k, int l)
{
return false;
}
/**
* Returns the strength of the stack against a given block. 1.0F base, (Quality+1)*2 if correct blocktype, 1.5F if
* sword
*/
public float getStrVsBlock(ItemStack par1ItemStack, Block par2Block)
{
return 1.0F;
}
/**
* Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer
*/
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
return par1ItemStack;
}
public ItemStack onFoodEaten(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
return par1ItemStack;
}
/**
* Returns the maximum size of the stack for a specific item. *Isn't this more a Set than a Get?*
*/
public int getItemStackLimit()
{
return maxStackSize;
}
/**
* Returns the metadata of the block which this Item (ItemBlock) can place
*/
public int getMetadata(int par1)
{
return 0;
}
public boolean getHasSubtypes()
{
return hasSubtypes;
}
protected Item setHasSubtypes(boolean par1)
{
hasSubtypes = par1;
return this;
}
/**
* Returns the maximum damage an item can take.
*/
public int getMaxDamage()
{
return maxDamage;
}
/**
* set max damage of an Item
*/
protected Item setMaxDamage(int par1)
{
maxDamage = par1;
return this;
}
public boolean isDamageable()
{
return maxDamage > 0 && !hasSubtypes;
}
/**
* Current implementations of this method in child classes do not use the entry argument beside ev. They just raise
* the damage on the stack.
*/
public boolean hitEntity(ItemStack par1ItemStack, EntityLiving par2EntityLiving, EntityLiving par3EntityLiving)
{
return false;
}
public boolean onBlockDestroyed(ItemStack par1ItemStack, int par2, int par3, int i, int j, EntityLiving entityliving)
{
return false;
}
/**
* Returns the damage against a given entity.
*/
public int getDamageVsEntity(Entity par1Entity)
{
return 1;
}
/**
* Returns if the item (tool) can harvest results from the block type.
*/
public boolean canHarvestBlock(Block par1Block)
{
return false;
}
/**
* Called when a player right clicks a entity with a item.
*/
public void useItemOnEntity(ItemStack itemstack, EntityLiving entityliving)
{
}
/**
* Sets bFull3D to True and return the object.
*/
public Item setFull3D()
{
bFull3D = true;
return this;
}
/**
* Returns True is the item is renderer in full 3D when hold.
*/
public boolean isFull3D()
{
return bFull3D;
}
/**
* Returns true if this item should be rotated by 180 degrees around the Y axis when being held in an entities
* hands.
*/
public boolean shouldRotateAroundWhenRendering()
{
return false;
}
/**
* set name of item from language file
*/
public Item setItemName(String par1Str)
{
itemName = (new StringBuilder()).append("item.").append(par1Str).toString();
return this;
}
public String getLocalItemName(ItemStack par1ItemStack)
{
String s = getItemNameIS(par1ItemStack);
if (s == null)
{
return "";
}
else
{
return StatCollector.translateToLocal(s);
}
}
public String getItemName()
{
return itemName;
}
public String getItemNameIS(ItemStack par1ItemStack)
{
return itemName;
}
public Item setContainerItem(Item par1Item)
{
containerItem = par1Item;
return this;
}
/**
* If this returns true, after a recipe involving this item is crafted the container item will be added to the
* player's inventory instead of remaining in the crafting grid.
*/
public boolean doesContainerItemLeaveCraftingGrid(ItemStack par1ItemStack)
{
return true;
}
public boolean func_46056_k()
{
return false;
}
public Item getContainerItem()
{
return containerItem;
}
/**
* True if this Item has a container item (a.k.a. crafting result)
*/
public boolean hasContainerItem()
{
return containerItem != null;
}
public String getStatName()
{
return StatCollector.translateToLocal((new StringBuilder()).append(getItemName()).append(".name").toString());
}
public int getColorFromDamage(int par1, int par2)
{
return 0xffffff;
}
/**
* Called each tick as long the item is on a player inventory. Uses by maps to check if is on a player hand and
* update it's contents.
*/
public void onUpdate(ItemStack itemstack, World world, Entity entity, int i, boolean flag)
{
}
/**
* Called when item is crafted/smelted. Used only by maps so far.
*/
public void onCreated(ItemStack itemstack, World world, EntityPlayer entityplayer)
{
}
/**
* returns the action that specifies what animation to play when the items is being used
*/
public EnumAction getItemUseAction(ItemStack par1ItemStack)
{
return EnumAction.none;
}
/**
* How long it takes to use or consume an item
*/
public int getMaxItemUseDuration(ItemStack par1ItemStack)
{
return 0;
}
/**
* called when the player releases the use item button. Args: itemstack, world, entityplayer, itemInUseCount
*/
public void onPlayerStoppedUsing(ItemStack itemstack, World world, EntityPlayer entityplayer, int i)
{
}
/**
* Sets the string representing this item's effect on a potion when used as an ingredient.
*/
protected Item setPotionEffect(String par1Str)
{
potionEffect = par1Str;
return this;
}
/**
* Returns a string representing what this item does to a potion.
*/
public String getPotionEffect()
{
return potionEffect;
}
/**
* Returns true if this item serves as a potion ingredient (its ingredient information is not null).
*/
public boolean isPotionIngredient()
{
return potionEffect != null;
}
/**
* allows items to add custom lines of information to the mouseover description
*/
public void addInformation(ItemStack itemstack, List list)
{
}
public String getItemDisplayName(ItemStack par1ItemStack)
{
String s = (new StringBuilder()).append("").append(StringTranslate.getInstance().translateNamedKey(getLocalItemName(par1ItemStack))).toString().trim();
return s;
}
public boolean hasEffect(ItemStack par1ItemStack)
{
return par1ItemStack.isItemEnchanted();
}
/**
* Return an item rarity from EnumRarity
*/
public EnumRarity getRarity(ItemStack par1ItemStack)
{
if (par1ItemStack.isItemEnchanted())
{
return EnumRarity.rare;
}
else
{
return EnumRarity.common;
}
}
/**
* Checks isDamagable and if it cannot be stacked
*/
public boolean isItemTool(ItemStack par1ItemStack)
{
return getItemStackLimit() == 1 && isDamageable();
}
protected MovingObjectPosition getMovingObjectPositionFromPlayer(World par1World, EntityPlayer par2EntityPlayer, boolean par3)
{
float f = 1.0F;
float f1 = par2EntityPlayer.prevRotationPitch + (par2EntityPlayer.rotationPitch - par2EntityPlayer.prevRotationPitch) * f;
float f2 = par2EntityPlayer.prevRotationYaw + (par2EntityPlayer.rotationYaw - par2EntityPlayer.prevRotationYaw) * f;
double d = par2EntityPlayer.prevPosX + (par2EntityPlayer.posX - par2EntityPlayer.prevPosX) * (double)f;
double d1 = (par2EntityPlayer.prevPosY + (par2EntityPlayer.posY - par2EntityPlayer.prevPosY) * (double)f + 1.6200000000000001D) - (double)par2EntityPlayer.yOffset;
double d2 = par2EntityPlayer.prevPosZ + (par2EntityPlayer.posZ - par2EntityPlayer.prevPosZ) * (double)f;
Vec3D vec3d = Vec3D.createVector(d, d1, d2);
float f3 = MathHelper.cos(-f2 * 0.01745329F - (float)Math.PI);
float f4 = MathHelper.sin(-f2 * 0.01745329F - (float)Math.PI);
float f5 = -MathHelper.cos(-f1 * 0.01745329F);
float f6 = MathHelper.sin(-f1 * 0.01745329F);
float f7 = f4 * f5;
float f8 = f6;
float f9 = f3 * f5;
double d3 = 5D;
Vec3D vec3d1 = vec3d.addVector((double)f7 * d3, (double)f8 * d3, (double)f9 * d3);
MovingObjectPosition movingobjectposition = par1World.rayTraceBlocks_do_do(vec3d, vec3d1, par3, !par3);
return movingobjectposition;
}
/**
* Return the enchantability factor of the item, most of the time is based on material.
*/
public int getItemEnchantability()
{
return 0;
}
public boolean func_46058_c()
{
return false;
}
public int func_46057_a(int par1, int par2)
{
return getIconFromDamage(par1);
}
static
{
shovelSteel = (new ItemSpade(0, EnumToolMaterial.IRON)).setIconCoord(2, 5).setItemName("shovelIron");
pickaxeSteel = (new ItemPickaxe(1, EnumToolMaterial.IRON)).setIconCoord(2, 6).setItemName("pickaxeIron");
axeSteel = (new ItemAxe(2, EnumToolMaterial.IRON)).setIconCoord(2, 7).setItemName("hatchetIron");
swordSteel = (new ItemSword(11, EnumToolMaterial.IRON)).setIconCoord(2, 4).setItemName("swordIron");
swordWood = (new ItemSword(12, EnumToolMaterial.WOOD)).setIconCoord(0, 4).setItemName("swordWood");
shovelWood = (new ItemSpade(13, EnumToolMaterial.WOOD)).setIconCoord(0, 5).setItemName("shovelWood");
pickaxeWood = (new ItemPickaxe(14, EnumToolMaterial.WOOD)).setIconCoord(0, 6).setItemName("pickaxeWood");
axeWood = (new ItemAxe(15, EnumToolMaterial.WOOD)).setIconCoord(0, 7).setItemName("hatchetWood");
swordStone = (new ItemSword(16, EnumToolMaterial.STONE)).setIconCoord(1, 4).setItemName("swordStone");
shovelStone = (new ItemSpade(17, EnumToolMaterial.STONE)).setIconCoord(1, 5).setItemName("shovelStone");
pickaxeStone = (new ItemPickaxe(18, EnumToolMaterial.STONE)).setIconCoord(1, 6).setItemName("pickaxeStone");
axeStone = (new ItemAxe(19, EnumToolMaterial.STONE)).setIconCoord(1, 7).setItemName("hatchetStone");
swordDiamond = (new ItemSword(20, EnumToolMaterial.EMERALD)).setIconCoord(3, 4).setItemName("swordDiamond");
shovelDiamond = (new ItemSpade(21, EnumToolMaterial.EMERALD)).setIconCoord(3, 5).setItemName("shovelDiamond");
pickaxeDiamond = (new ItemPickaxe(22, EnumToolMaterial.EMERALD)).setIconCoord(3, 6).setItemName("pickaxeDiamond");
axeDiamond = (new ItemAxe(23, EnumToolMaterial.EMERALD)).setIconCoord(3, 7).setItemName("hatchetDiamond");
swordGold = (new ItemSword(27, EnumToolMaterial.GOLD)).setIconCoord(4, 4).setItemName("swordGold");
shovelGold = (new ItemSpade(28, EnumToolMaterial.GOLD)).setIconCoord(4, 5).setItemName("shovelGold");
pickaxeGold = (new ItemPickaxe(29, EnumToolMaterial.GOLD)).setIconCoord(4, 6).setItemName("pickaxeGold");
axeGold = (new ItemAxe(30, EnumToolMaterial.GOLD)).setIconCoord(4, 7).setItemName("hatchetGold");
gunpowder = (new Item(33)).setIconCoord(8, 2).setItemName("sulphur").setPotionEffect(PotionHelper.gunpowderEffect);
hoeWood = (new ItemHoe(34, EnumToolMaterial.WOOD)).setIconCoord(0, 8).setItemName("hoeWood");
hoeStone = (new ItemHoe(35, EnumToolMaterial.STONE)).setIconCoord(1, 8).setItemName("hoeStone");
hoeSteel = (new ItemHoe(36, EnumToolMaterial.IRON)).setIconCoord(2, 8).setItemName("hoeIron");
hoeDiamond = (new ItemHoe(37, EnumToolMaterial.EMERALD)).setIconCoord(3, 8).setItemName("hoeDiamond");
hoeGold = (new ItemHoe(38, EnumToolMaterial.GOLD)).setIconCoord(4, 8).setItemName("hoeGold");
seeds = (new ItemSeeds(39, Block.crops.blockID, Block.tilledField.blockID)).setIconCoord(9, 0).setItemName("seeds");
helmetLeather = (new ItemArmor(42, EnumArmorMaterial.CLOTH, 0, 0)).setIconCoord(0, 0).setItemName("helmetCloth");
plateLeather = (new ItemArmor(43, EnumArmorMaterial.CLOTH, 0, 1)).setIconCoord(0, 1).setItemName("chestplateCloth");
legsLeather = (new ItemArmor(44, EnumArmorMaterial.CLOTH, 0, 2)).setIconCoord(0, 2).setItemName("leggingsCloth");
bootsLeather = (new ItemArmor(45, EnumArmorMaterial.CLOTH, 0, 3)).setIconCoord(0, 3).setItemName("bootsCloth");
helmetChain = (new ItemArmor(46, EnumArmorMaterial.CHAIN, 1, 0)).setIconCoord(1, 0).setItemName("helmetChain");
plateChain = (new ItemArmor(47, EnumArmorMaterial.CHAIN, 1, 1)).setIconCoord(1, 1).setItemName("chestplateChain");
legsChain = (new ItemArmor(48, EnumArmorMaterial.CHAIN, 1, 2)).setIconCoord(1, 2).setItemName("leggingsChain");
bootsChain = (new ItemArmor(49, EnumArmorMaterial.CHAIN, 1, 3)).setIconCoord(1, 3).setItemName("bootsChain");
helmetSteel = (new ItemArmor(50, EnumArmorMaterial.IRON, 2, 0)).setIconCoord(2, 0).setItemName("helmetIron");
plateSteel = (new ItemArmor(51, EnumArmorMaterial.IRON, 2, 1)).setIconCoord(2, 1).setItemName("chestplateIron");
legsSteel = (new ItemArmor(52, EnumArmorMaterial.IRON, 2, 2)).setIconCoord(2, 2).setItemName("leggingsIron");
bootsSteel = (new ItemArmor(53, EnumArmorMaterial.IRON, 2, 3)).setIconCoord(2, 3).setItemName("bootsIron");
helmetDiamond = (new ItemArmor(54, EnumArmorMaterial.DIAMOND, 3, 0)).setIconCoord(3, 0).setItemName("helmetDiamond");
plateDiamond = (new ItemArmor(55, EnumArmorMaterial.DIAMOND, 3, 1)).setIconCoord(3, 1).setItemName("chestplateDiamond");
legsDiamond = (new ItemArmor(56, EnumArmorMaterial.DIAMOND, 3, 2)).setIconCoord(3, 2).setItemName("leggingsDiamond");
bootsDiamond = (new ItemArmor(57, EnumArmorMaterial.DIAMOND, 3, 3)).setIconCoord(3, 3).setItemName("bootsDiamond");
helmetGold = (new ItemArmor(58, EnumArmorMaterial.GOLD, 4, 0)).setIconCoord(4, 0).setItemName("helmetGold");
plateGold = (new ItemArmor(59, EnumArmorMaterial.GOLD, 4, 1)).setIconCoord(4, 1).setItemName("chestplateGold");
legsGold = (new ItemArmor(60, EnumArmorMaterial.GOLD, 4, 2)).setIconCoord(4, 2).setItemName("leggingsGold");
bootsGold = (new ItemArmor(61, EnumArmorMaterial.GOLD, 4, 3)).setIconCoord(4, 3).setItemName("bootsGold");
appleGold = (new ItemAppleGold(66, 4, 1.2F, false)).setAlwaysEdible().setPotionEffect(Potion.regeneration.id, 5, 0, 1.0F).setIconCoord(11, 0).setItemName("appleGold");
doorWood = (new ItemDoor(68, Material.wood)).setIconCoord(11, 2).setItemName("doorWood");
bucketEmpty = (new ItemBucket(69, 0)).setIconCoord(10, 4).setItemName("bucket");
bucketWater = (new ItemBucket(70, Block.waterMoving.blockID)).setIconCoord(11, 4).setItemName("bucketWater").setContainerItem(bucketEmpty);
bucketLava = (new ItemBucket(71, Block.lavaMoving.blockID)).setIconCoord(12, 4).setItemName("bucketLava").setContainerItem(bucketEmpty);
doorSteel = (new ItemDoor(74, Material.iron)).setIconCoord(12, 2).setItemName("doorIron");
redstone = (new ItemRedstone(75)).setIconCoord(8, 3).setItemName("redstone").setPotionEffect(PotionHelper.redstoneEffect);
bucketMilk = (new ItemBucketMilk(79)).setIconCoord(13, 4).setItemName("milk").setContainerItem(bucketEmpty);
reed = (new ItemReed(82, Block.reed)).setIconCoord(11, 1).setItemName("reeds");
lightStoneDust = (new Item(92)).setIconCoord(9, 4).setItemName("yellowDust").setPotionEffect(PotionHelper.glowstoneEffect);
sugar = (new Item(97)).setIconCoord(13, 0).setItemName("sugar").setPotionEffect(PotionHelper.sugarEffect);
cake = (new ItemReed(98, Block.cake)).setMaxStackSize(1).setIconCoord(13, 1).setItemName("cake");
redstoneRepeater = (new ItemReed(100, Block.redstoneRepeaterIdle)).setIconCoord(6, 5).setItemName("diode");
pumpkinSeeds = (new ItemSeeds(105, Block.pumpkinStem.blockID, Block.tilledField.blockID)).setIconCoord(13, 3).setItemName("seeds_pumpkin");
melonSeeds = (new ItemSeeds(106, Block.melonStem.blockID, Block.tilledField.blockID)).setIconCoord(14, 3).setItemName("seeds_melon");
chickenRaw = (new ItemFood(109, 2, 0.3F, true)).setPotionEffect(Potion.hunger.id, 30, 0, 0.3F).setIconCoord(9, 7).setItemName("chickenRaw");
rottenFlesh = (new ItemFood(111, 4, 0.1F, true)).setPotionEffect(Potion.hunger.id, 30, 0, 0.8F).setIconCoord(11, 5).setItemName("rottenFlesh");
ghastTear = (new Item(114)).setIconCoord(11, 7).setItemName("ghastTear").setPotionEffect(PotionHelper.ghastTearEffect);
netherStalkSeeds = (new ItemSeeds(116, Block.netherStalk.blockID, Block.slowSand.blockID)).setIconCoord(13, 7).setItemName("netherStalkSeeds").setPotionEffect("+4");
spiderEye = (new ItemFood(119, 2, 0.8F, false)).setPotionEffect(Potion.poison.id, 5, 0, 1.0F).setIconCoord(11, 8).setItemName("spiderEye").setPotionEffect(PotionHelper.spiderEyeEffect);
fermentedSpiderEye = (new Item(120)).setIconCoord(10, 8).setItemName("fermentedSpiderEye").setPotionEffect(PotionHelper.fermentedSpiderEyeEffect);
blazePowder = (new Item(121)).setIconCoord(13, 9).setItemName("blazePowder").setPotionEffect(PotionHelper.blazePowderEffect);
magmaCream = (new Item(122)).setIconCoord(13, 10).setItemName("magmaCream").setPotionEffect(PotionHelper.magmaCreamEffect);
brewingStand = (new ItemReed(123, Block.brewingStand)).setIconCoord(12, 10).setItemName("brewingStand");
cauldron = (new ItemReed(124, Block.cauldron)).setIconCoord(12, 9).setItemName("cauldron");
speckledMelon = (new Item(126)).setIconCoord(9, 8).setItemName("speckledMelon").setPotionEffect(PotionHelper.speckledMelonEffect);
helmetRuby = (new ItemArmor(600, EnumArmorMaterial.RUBY, 5, 0)).setIconCoord(8, 9).setItemName("helmetRuby");
plateRuby = (new ItemArmor(601, EnumArmorMaterial.RUBY, 5, 1)).setIconCoord(8, 10).setItemName("plateRuby");
legsRuby = (new ItemArmor(602, EnumArmorMaterial.RUBY, 5, 2)).setIconCoord(8, 11).setItemName("legsRuby");
bootsRuby = (new ItemArmor(603, EnumArmorMaterial.RUBY, 5, 3)).setIconCoord(8, 12).setItemName("bootsRuby");
swordMoonstone = (new ItemSword(604, EnumToolMaterial.MOONSTONE)).setIconCoord(3, 9).setItemName("swordMoonstone");
shovelAmethist = (new ItemSpade(605, EnumToolMaterial.AMETHIST)).setIconCoord(3, 10).setItemName("shovelAmethist");
pickaxeAmethist = (new ItemPickaxe(606, EnumToolMaterial.AMETHIST)).setIconCoord(3, 11).setItemName("pickaxeAmethist");
axeAmethist = (new ItemAxe(607, EnumToolMaterial.AMETHIST)).setIconCoord(3, 12).setItemName("hatchetAmethist");
hoeAmethist = (new ItemHoe(608, EnumToolMaterial.AMETHIST)).setIconCoord(3, 13).setItemName("hoeAmethist");
strawberry = (new ItemStrawberry(609, Block.strawPlant.blockID, Block.tilledField.blockID)).setIconCoord(7, 11).setItemName("strawSeeds");
swordHeaven = (new ItemSword(610, EnumToolMaterial.HEAVEN)).setIconCoord(1, 9).setItemName("swordHeaven");
swordHell = (new ItemSword(611, EnumToolMaterial.HELL)).setIconCoord(2, 9).setItemName("swordHell");
strawFood = (new ItemFood(612, 5, 0.1F, true)).setIconCoord(6, 11).setItemName("straw");
swordGuard = (new ItemSword(613, EnumToolMaterial.GUARD)).setIconCoord(0, 9).setItemName("swordGuard");
multiTool = (new ItemMultiTool(614, EnumToolMaterial.AMETHIST)).setIconCoord(4, 11).setItemName("multiTool");
bucketCacao = (new ItemFood(615, 8, 0.8F, true)).setIconCoord(7, 12).setItemName("milkcacao").setContainerItem(bucketEmpty);
StatList.initStats();
}
}






