You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.item;
 | 
						|
 | 
						|
import net.minecraft.entity.EntityLivingBase;
 | 
						|
import net.minecraft.entity.projectile.EntityThrowable;
 | 
						|
import net.minecraft.util.MovingObjectPosition;
 | 
						|
import net.minecraft.world.World;
 | 
						|
 | 
						|
public class EntityExpBottle extends EntityThrowable
 | 
						|
{
 | 
						|
    private static final String __OBFID = "CL_00001726";
 | 
						|
 | 
						|
    public EntityExpBottle(World p_i1785_1_)
 | 
						|
    {
 | 
						|
        super(p_i1785_1_);
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityExpBottle(World p_i1786_1_, EntityLivingBase p_i1786_2_)
 | 
						|
    {
 | 
						|
        super(p_i1786_1_, p_i1786_2_);
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityExpBottle(World p_i1787_1_, double p_i1787_2_, double p_i1787_4_, double p_i1787_6_)
 | 
						|
    {
 | 
						|
        super(p_i1787_1_, p_i1787_2_, p_i1787_4_, p_i1787_6_);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets the amount of gravity to apply to the thrown entity with each tick.
 | 
						|
     */
 | 
						|
    protected float getGravityVelocity()
 | 
						|
    {
 | 
						|
        return 0.07F;
 | 
						|
    }
 | 
						|
 | 
						|
    protected float func_70182_d()
 | 
						|
    {
 | 
						|
        return 0.7F;
 | 
						|
    }
 | 
						|
 | 
						|
    protected float func_70183_g()
 | 
						|
    {
 | 
						|
        return -20.0F;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called when this EntityThrowable hits a block or entity.
 | 
						|
     */
 | 
						|
    protected void onImpact(MovingObjectPosition p_70184_1_)
 | 
						|
    {
 | 
						|
        if (!this.worldObj.isRemote)
 | 
						|
        {
 | 
						|
            this.worldObj.playAuxSFX(2002, (int)Math.round(this.posX), (int)Math.round(this.posY), (int)Math.round(this.posZ), 0);
 | 
						|
            int i = 3 + this.worldObj.rand.nextInt(5) + this.worldObj.rand.nextInt(5);
 | 
						|
 | 
						|
            while (i > 0)
 | 
						|
            {
 | 
						|
                int j = EntityXPOrb.getXPSplit(i);
 | 
						|
                i -= j;
 | 
						|
                this.worldObj.spawnEntityInWorld(new EntityXPOrb(this.worldObj, this.posX, this.posY, this.posZ, j));
 | 
						|
            }
 | 
						|
 | 
						|
            this.setDead();
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |