package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.util.Random;
public class EntityCreeper extends EntityMobs
{
public EntityCreeper(World world)
{
super(world);
texture = "/mob/creeper.png";
}
protected void entityInit()
{
super.entityInit();
dataWatcher.addObject(16, Byte.valueOf((byte)-1));
}
public void writeEntityToNBT(NBTTagCompound nbttagcompound)
{
super.writeEntityToNBT(nbttagcompound);
}
public void readEntityFromNBT(NBTTagCompound nbttagcompound)
{
super.readEntityFromNBT(nbttagcompound);
}
public void onUpdate()
{
lastActiveTime = timeSinceIgnited;
if(worldObj.multiplayerWorld)
{
int i = func_21091_q();
if(i > 0 && timeSinceIgnited == 0)
{
worldObj.playSoundAtEntity(this, "random.fuse", 1.0F, 0.5F);
}
timeSinceIgnited += i;
if(timeSinceIgnited < 0)
{
timeSinceIgnited = 0;
}
if(timeSinceIgnited >= 30)
{
timeSinceIgnited = 30;
}
}
super.onUpdate();
}
protected String getHurtSound()
{
return "mob.creeper";
}
protected String getDeathSound()
{
return "mob.creeperdeath";
}
public void onDeath(Entity entity)
{
super.onDeath(entity);
if(entity instanceof EntitySkeleton)
{
dropItem(Item.record13.shiftedIndex + rand.nextInt(2), 1);
}
}
protected void attackEntity(Entity entity, float f)
{
int i = func_21091_q();
if(i <= 0 && f < 3F || i > 0 && f < 7F)
{
if(timeSinceIgnited == 0)
{
worldObj.playSoundAtEntity(this, "random.fuse", 1.0F, 0.5F);
}
func_21090_e(1);
timeSinceIgnited++;
if(timeSinceIgnited >= 30)
{
worldObj.createExplosion(this, posX, posY, posZ, 3F);
setEntityDead();
}
hasAttacked = true;
} else
{
func_21090_e(-1);
timeSinceIgnited--;
if(timeSinceIgnited < 0)
{
timeSinceIgnited = 0;
}
}
}
public float func_440_b(float f)
{
return ((float)lastActiveTime + (float)(timeSinceIgnited - lastActiveTime) * f) / 28F;
}
protected int getDropItemId()
{
return Item.gunpowder.shiftedIndex;
}
private int func_21091_q()
{
return dataWatcher.getWatchableObjectByte(16);
}
private void func_21090_e(int i)
{
dataWatcher.updateObject(16, Byte.valueOf((byte)i));
}
int timeSinceIgnited;
int lastActiveTime;
}
worldObj.createExplosion(this, posX, posY, posZ, 3F);
setEntityDead();

EntityChicken entitychicken = new EntityChicken(worldObj);
entitychicken.setLocationAndAngles(posX, posY, posZ, rotationYaw, 0.0F);
worldObj.entityJoinedWorld(entitychicken);