BiomesOPlenty/src/minecraft/biomesoplenty/mobs/EntityRosester.java

206 lines
4.8 KiB
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package biomesoplenty.mobs;
import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.ai.EntityAIFollowParent;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMate;
import net.minecraft.entity.ai.EntityAIPanic;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAITempt;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.passive.EntityChicken;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemSeeds;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public class EntityRosester extends EntityChicken
{
2013-05-31 10:34:02 +00:00
public boolean field_70885_d = false;
public float field_70886_e = 0.0F;
public float destPos = 0.0F;
public float field_70884_g;
public float field_70888_h;
public float field_70889_i = 1.0F;
/** The time until the next egg is spawned. */
public int timeUntilNextEgg;
public EntityRosester(World par1World)
{
super(par1World);
texture = "/mods/BiomesOPlenty/textures/mobs/rosester.png";
this.setSize(0.3F, 0.7F);
timeUntilNextEgg = rand.nextInt(6000) + 6000;
float var2 = 0.25F;
tasks.addTask(0, new EntityAISwimming(this));
tasks.addTask(1, new EntityAIPanic(this, 0.38F));
tasks.addTask(2, new EntityAIMate(this, var2));
tasks.addTask(3, new EntityAITempt(this, 0.25F, Item.seeds.itemID, false));
tasks.addTask(4, new EntityAIFollowParent(this, 0.28F));
tasks.addTask(5, new EntityAIWander(this, var2));
tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
tasks.addTask(7, new EntityAILookIdle(this));
}
/**
* Returns true if the newer Entity AI code should be run
*/
@Override
public boolean isAIEnabled()
{
return true;
}
@Override
public int getMaxHealth()
{
return 4;
}
/**
* Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons
* use this to react to sunlight and start to burn.
*/
@Override
public void onLivingUpdate()
{
super.onLivingUpdate();
field_70888_h = field_70886_e;
field_70884_g = destPos;
destPos = (float)(destPos + (onGround ? -1 : 4) * 0.3D);
if (destPos < 0.0F)
{
destPos = 0.0F;
}
if (destPos > 1.0F)
{
destPos = 1.0F;
}
if (!onGround && field_70889_i < 1.0F)
{
field_70889_i = 1.0F;
}
field_70889_i = (float)(field_70889_i * 0.9D);
if (!onGround && motionY < 0.0D)
{
motionY *= 0.6D;
}
field_70886_e += field_70889_i * 2.0F;
if (!this.isChild() && !worldObj.isRemote && --timeUntilNextEgg <= 0)
{
this.playSound("mob.chicken.plop", 1.0F, (rand.nextFloat() - rand.nextFloat()) * 0.2F + 1.0F);
this.entityDropItem(new ItemStack(Item.dyePowder, 1, 1), 0.0F);
timeUntilNextEgg = rand.nextInt(6000) + 6000;
}
}
/**
* Called when the mob is falling. Calculates and applies fall damage.
*/
@Override
protected void fall(float par1) {}
/**
* Returns the sound this mob makes while it's alive.
*/
@Override
protected String getLivingSound()
{
return "mob.chicken.say";
}
/**
* Returns the sound this mob makes when it is hurt.
*/
@Override
protected String getHurtSound()
{
return "mob.chicken.hurt";
}
/**
* Returns the sound this mob makes on death.
*/
@Override
protected String getDeathSound()
{
return "mob.chicken.hurt";
}
/**
* Plays step sound at given x, y, z for the entity
*/
@Override
protected void playStepSound(int par1, int par2, int par3, int par4)
{
this.playSound("mob.chicken.step", 0.15F, 1.0F);
}
/**
* Returns the item ID for the item the mob drops on death.
*/
@Override
protected int getDropItemId()
{
return Item.feather.itemID;
}
/**
* Drop 0-2 items of this living's type
*/
@Override
protected void dropFewItems(boolean par1, int par2)
{
int var3 = rand.nextInt(3) + rand.nextInt(1 + par2);
2013-05-03 13:00:44 +00:00
for (int var4 = 0; var4 < var3; ++var4)
2013-05-31 10:34:02 +00:00
{
this.entityDropItem(new ItemStack(Item.dyePowder, 1, 1), 0.0F);
}
if (this.isBurning())
{
this.dropItem(Item.chickenCooked.itemID, 1);
}
else
{
this.dropItem(Item.chickenRaw.itemID, 1);
}
}
/**
* This function is used when two same-species animals in 'love mode' breed to generate the new baby animal.
*/
@Override
public EntityRosester spawnBabyAnimal(EntityAgeable par1EntityAgeable)
{
return new EntityRosester(worldObj);
}
/**
* Checks if the parameter is an item which this animal can be fed to breed it (wheat, carrots or seeds depending on
* the animal type)
*/
@Override
public boolean isBreedingItem(ItemStack par1ItemStack)
{
return par1ItemStack != null && par1ItemStack.getItem() instanceof ItemSeeds;
}
@Override
public EntityAgeable createChild(EntityAgeable par1EntityAgeable)
{
return this.spawnBabyAnimal(par1EntityAgeable);
}
2013-05-03 13:00:44 +00:00
}