0cb2165ddf
Added getEntitiesWithinCylinder and getLivingWithinCylinder methods to return all entities within a cylinder. Replaced getLivingWithinRadius for spells that should use a cylinder instead. The height of the cylinder is determined by the height of the entities. Added a DPS checker on the heal aura damage just in case someone has damage immunity disabled. Modified the AllyDesignationSystem and Wizard classes to no longer target summoned creatures automatically. They will still target hostile summoned creatures or creatures from players that have aggressed on them. Modified the heal method in the Heal class to not reduce absorption amount. It should never really happen, but just in case. Modified the flamecatcher to no longer lose ammo if it was used but no arrow was fired. Enrage now targets EntityLiving instead of EntityCreature. The movement speed charm now works with any spellcasting item as opposed to just wands.
78 lines
2.5 KiB
Java
78 lines
2.5 KiB
Java
package electroblob.wizardry.entity.construct;
|
|
|
|
import electroblob.wizardry.registry.Spells;
|
|
import electroblob.wizardry.registry.WizardryPotions;
|
|
import electroblob.wizardry.registry.WizardrySounds;
|
|
import electroblob.wizardry.spell.Spell;
|
|
import electroblob.wizardry.util.EntityUtils;
|
|
import electroblob.wizardry.util.MagicDamage;
|
|
import electroblob.wizardry.util.MagicDamage.DamageType;
|
|
import electroblob.wizardry.util.ParticleBuilder;
|
|
import electroblob.wizardry.util.ParticleBuilder.Type;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.util.math.MathHelper;
|
|
import net.minecraft.world.World;
|
|
|
|
import java.util.List;
|
|
|
|
public class EntityFrostSigil extends EntityScaledConstruct {
|
|
|
|
public EntityFrostSigil(World world){
|
|
super(world);
|
|
setSize(Spells.frost_sigil.getProperty(Spell.EFFECT_RADIUS).floatValue() * 2, 0.2f);
|
|
}
|
|
|
|
@Override
|
|
protected boolean shouldScaleHeight(){
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onUpdate(){
|
|
|
|
super.onUpdate();
|
|
|
|
if(!this.world.isRemote){
|
|
|
|
List<EntityLivingBase> targets = EntityUtils.getLivingWithinCylinder(width/2, this.posX, this.posY,
|
|
this.posZ, this.height, this.world);
|
|
|
|
for(EntityLivingBase target : targets){
|
|
|
|
if(this.isValidTarget(target)){
|
|
|
|
EntityUtils.attackEntityWithoutKnockback(target, this.getCaster() != null
|
|
? MagicDamage.causeIndirectMagicDamage(this, this.getCaster(), DamageType.FROST)
|
|
: DamageSource.MAGIC, Spells.frost_sigil.getProperty(Spell.DAMAGE).floatValue()
|
|
* damageMultiplier);
|
|
|
|
if(!MagicDamage.isEntityImmune(DamageType.FROST, target))
|
|
target.addPotionEffect(new PotionEffect(WizardryPotions.frost,
|
|
Spells.frost_sigil.getProperty(Spell.EFFECT_DURATION).intValue(),
|
|
Spells.frost_sigil.getProperty(Spell.EFFECT_STRENGTH).intValue()));
|
|
|
|
this.playSound(WizardrySounds.ENTITY_FROST_SIGIL_TRIGGER, 1.0f, 1.0f);
|
|
|
|
// The trap is destroyed once triggered.
|
|
this.setDead();
|
|
}
|
|
}
|
|
}else if(this.rand.nextInt(15) == 0){
|
|
double radius = (0.5 + rand.nextDouble() * 0.3) * width/2;
|
|
float angle = rand.nextFloat() * (float)Math.PI * 2;
|
|
ParticleBuilder.create(Type.SNOW)
|
|
.pos(this.posX + radius * MathHelper.cos(angle), this.posY + 0.1, this.posZ + radius * MathHelper.sin(angle))
|
|
.vel(0, 0, 0) // Required since default for snow is not stationary
|
|
.spawn(world);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean canRenderOnFire(){
|
|
return false;
|
|
}
|
|
|
|
}
|