2011-11-26 01:56:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
2012-01-28 00:23:16 +01:00
|
|
|
// CraftBukkit start
|
2012-01-15 10:11:21 +01:00
|
|
|
import org.bukkit.block.BlockState;
|
2011-11-26 01:56:11 +01:00
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
2012-01-15 10:11:21 +01:00
|
|
|
import org.bukkit.event.block.EntityBlockFormEvent;
|
2012-03-14 06:26:23 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
2012-01-28 00:23:16 +01:00
|
|
|
// CraftBukkit end
|
2011-11-26 01:56:11 +01:00
|
|
|
|
|
|
|
public class EntitySnowman extends EntityGolem {
|
|
|
|
|
|
|
|
public EntitySnowman(World world) {
|
|
|
|
super(world);
|
|
|
|
this.texture = "/mob/snowman.png";
|
|
|
|
this.b(0.4F, 1.8F);
|
2012-03-22 21:39:39 +01:00
|
|
|
this.al().a(true);
|
2012-03-01 11:49:23 +01:00
|
|
|
this.goalSelector.a(1, new PathfinderGoalArrowAttack(this, 0.25F, 2, 20));
|
|
|
|
this.goalSelector.a(2, new PathfinderGoalRandomStroll(this, 0.2F));
|
|
|
|
this.goalSelector.a(3, new PathfinderGoalLookAtPlayer(this, EntityHuman.class, 6.0F));
|
|
|
|
this.goalSelector.a(4, new PathfinderGoalRandomLookaround(this));
|
|
|
|
this.targetSelector.a(1, new PathfinderGoalNearestAttackableTarget(this, EntityMonster.class, 16.0F, 0, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean c_() {
|
|
|
|
return true;
|
2011-11-26 01:56:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxHealth() {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public void e() {
|
|
|
|
super.e();
|
2012-03-22 21:39:39 +01:00
|
|
|
if (this.aT()) {
|
2012-03-14 06:29:02 +01:00
|
|
|
EntityDamageEvent event = new EntityDamageEvent(this.getBukkitEntity(), EntityDamageEvent.DamageCause.DROWNING, 1);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
this.damageEntity(DamageSource.DROWN, event.getDamage());
|
|
|
|
}
|
2011-11-26 01:56:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int i = MathHelper.floor(this.locX);
|
2012-03-01 11:49:23 +01:00
|
|
|
int j = MathHelper.floor(this.locZ);
|
2011-11-26 01:56:11 +01:00
|
|
|
|
2012-03-22 21:39:39 +01:00
|
|
|
if (this.world.getBiome(i, j).i() > 1.0F) {
|
2012-03-22 22:33:33 +01:00
|
|
|
EntityDamageEvent event = new EntityDamageEvent(this.getBukkitEntity(), EntityDamageEvent.DamageCause.MELTING, 1);
|
2012-03-14 06:26:23 +01:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
this.damageEntity(DamageSource.BURN, event.getDamage());
|
|
|
|
}
|
2011-11-26 01:56:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 4; ++i) {
|
|
|
|
j = MathHelper.floor(this.locX + (double) ((float) (i % 2 * 2 - 1) * 0.25F));
|
2012-03-01 11:49:23 +01:00
|
|
|
int k = MathHelper.floor(this.locY);
|
2011-11-26 01:56:11 +01:00
|
|
|
int l = MathHelper.floor(this.locZ + (double) ((float) (i / 2 % 2 * 2 - 1) * 0.25F));
|
|
|
|
|
2012-03-22 21:39:39 +01:00
|
|
|
if (this.world.getTypeId(j, k, l) == 0 && this.world.getBiome(j, l).i() < 0.8F && Block.SNOW.canPlace(this.world, j, k, l)) {
|
2012-01-15 10:11:21 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
BlockState blockState = this.world.getWorld().getBlockAt(j, k, l).getState();
|
|
|
|
blockState.setTypeId(Block.SNOW.id);
|
|
|
|
|
|
|
|
EntityBlockFormEvent event = new EntityBlockFormEvent(this.getBukkitEntity(), blockState.getBlock(), blockState);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if(!event.isCancelled()) {
|
|
|
|
blockState.update(true);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-11-26 01:56:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected int getLootId() {
|
2011-11-26 01:56:11 +01:00
|
|
|
return Item.SNOW_BALL.id;
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
2011-11-26 01:56:11 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
|
|
|
int j = this.random.nextInt(16);
|
|
|
|
|
|
|
|
if (j > 0) {
|
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(Item.SNOW_BALL.id, j));
|
|
|
|
}
|
|
|
|
|
|
|
|
CraftEventFactory.callEntityDeathEvent(this, loot);
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
2012-02-29 22:31:04 +01:00
|
|
|
}
|