83 lines
2.8 KiB
Java
83 lines
2.8 KiB
Java
package electroblob.wizardry.entity.projectile;
|
|
|
|
import electroblob.wizardry.registry.Spells;
|
|
import electroblob.wizardry.registry.WizardryPotions;
|
|
import electroblob.wizardry.registry.WizardrySounds;
|
|
import electroblob.wizardry.spell.Spell;
|
|
import electroblob.wizardry.util.ParticleBuilder;
|
|
import electroblob.wizardry.util.ParticleBuilder.Type;
|
|
import electroblob.wizardry.util.WizardryUtilities;
|
|
import net.minecraft.entity.EntityLiving;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.init.MobEffects;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.util.EnumParticleTypes;
|
|
import net.minecraft.util.math.RayTraceResult;
|
|
import net.minecraft.world.World;
|
|
|
|
import java.util.List;
|
|
|
|
public class EntitySmokeBomb extends EntityBomb {
|
|
|
|
public EntitySmokeBomb(World world){
|
|
super(world);
|
|
}
|
|
|
|
@Override
|
|
public int getLifetime(){
|
|
return -1;
|
|
}
|
|
|
|
@Override
|
|
protected void onImpact(RayTraceResult rayTrace){
|
|
|
|
// Particle effect
|
|
if(world.isRemote){
|
|
|
|
ParticleBuilder.create(Type.FLASH).pos(this.getPositionVector()).scale(5 * blastMultiplier).clr(0, 0, 0).spawn(world);
|
|
|
|
this.world.spawnParticle(EnumParticleTypes.EXPLOSION_LARGE, this.posX, this.posY, this.posZ, 0, 0, 0);
|
|
|
|
for(int i = 0; i < 60 * blastMultiplier; i++){
|
|
|
|
this.world.spawnParticle(EnumParticleTypes.SMOKE_LARGE,
|
|
this.posX + (this.rand.nextDouble() * 4 - 2) * blastMultiplier,
|
|
this.posY + (this.rand.nextDouble() * 4 - 2) * blastMultiplier,
|
|
this.posZ + (this.rand.nextDouble() * 4 - 2) * blastMultiplier, 0, 0, 0);
|
|
|
|
float brightness = rand.nextFloat() * 0.3f;
|
|
ParticleBuilder.create(Type.DARK_MAGIC, rand, posX, posY, posZ, 2*blastMultiplier, false)
|
|
.clr(brightness, brightness, brightness).spawn(world);
|
|
}
|
|
}
|
|
|
|
if(!this.world.isRemote){
|
|
|
|
this.playSound(WizardrySounds.ENTITY_SMOKE_BOMB_SMASH, 1.5F, rand.nextFloat() * 0.4F + 0.6F);
|
|
this.playSound(WizardrySounds.ENTITY_SMOKE_BOMB_SMOKE, 1.2F, 1.0f);
|
|
|
|
double range = Spells.smoke_bomb.getProperty(Spell.BLAST_RADIUS).floatValue() * blastMultiplier;
|
|
|
|
List<EntityLivingBase> targets = WizardryUtilities.getEntitiesWithinRadius(range, this.posX, this.posY,
|
|
this.posZ, this.world);
|
|
|
|
int duration = Spells.smoke_bomb.getProperty(Spell.EFFECT_DURATION).intValue();
|
|
|
|
for(EntityLivingBase target : targets){
|
|
if(target != this.getThrower()){
|
|
// Gives the target blindness, and mind trick if it's not a player (since this has the desired
|
|
// effect of preventing targeting)
|
|
target.addPotionEffect(new PotionEffect(MobEffects.BLINDNESS, duration, 0));
|
|
|
|
if(target instanceof EntityLiving){
|
|
((EntityLiving)target).setAttackTarget(null);
|
|
target.addPotionEffect(new PotionEffect(WizardryPotions.mind_trick, duration, 0));
|
|
}
|
|
}
|
|
}
|
|
|
|
this.setDead();
|
|
}
|
|
}
|
|
}
|