Java Code Examples for net.minecraft.entity.EntityLivingBase#isEntityUndead()
The following examples show how to use
net.minecraft.entity.EntityLivingBase#isEntityUndead() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PotionFluxTaint.java From AdvancedMod with GNU General Public License v3.0 | 5 votes |
@Override public void performEffect(EntityLivingBase target, int par2) { if (target instanceof ITaintedMob) { target.heal(1); } else if (!target.isEntityUndead() && !(target instanceof EntityPlayer)) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } else if (!target.isEntityUndead() && (target.getMaxHealth() > 1 || (target instanceof EntityPlayer))) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } }
Example 2
Source File: PotionFluxTaint.java From Chisel-2 with GNU General Public License v2.0 | 5 votes |
@Override public void performEffect(EntityLivingBase target, int par2) { if (target instanceof ITaintedMob) { target.heal(1); } else if (!target.isEntityUndead() && !(target instanceof EntityPlayer)) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } else if (!target.isEntityUndead() && (target.getMaxHealth() > 1 || (target instanceof EntityPlayer))) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } }
Example 3
Source File: PotionFluxTaint.java From GardenCollection with MIT License | 5 votes |
@Override public void performEffect(EntityLivingBase target, int par2) { if (target instanceof ITaintedMob) { target.heal(1); } else if (!target.isEntityUndead() && !(target instanceof EntityPlayer)) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } else if (!target.isEntityUndead() && (target.getMaxHealth() > 1 || (target instanceof EntityPlayer))) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } }
Example 4
Source File: PotionFluxTaint.java From ForbiddenMagic with Do What The F*ck You Want To Public License | 5 votes |
@Override public void performEffect(EntityLivingBase target, int par2) { if (target instanceof ITaintedMob) { target.heal(1); } else if (!target.isEntityUndead() && !(target instanceof EntityPlayer)) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } else if (!target.isEntityUndead() && (target.getMaxHealth() > 1 || (target instanceof EntityPlayer))) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } }
Example 5
Source File: PotionFluxTaint.java From PneumaticCraft with GNU General Public License v3.0 | 5 votes |
@Override public void performEffect(EntityLivingBase target, int par2) { if (target instanceof ITaintedMob) { target.heal(1); } else if (!target.isEntityUndead() && !(target instanceof EntityPlayer)) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } else if (!target.isEntityUndead() && (target.getMaxHealth() > 1 || (target instanceof EntityPlayer))) { target.attackEntityFrom(DamageSourceThaumcraft.taint, 1); } }