added tazer

This commit is contained in:
ImproperIssues
2023-07-06 13:57:34 -07:00
parent ce08c26330
commit 5484d564c2

View File

@@ -14,6 +14,7 @@ import org.bukkit.entity.Entity;
import org.bukkit.entity.LivingEntity; import org.bukkit.entity.LivingEntity;
import org.bukkit.util.Vector; import org.bukkit.util.Vector;
import java.util.function.Consumer;
import java.util.function.Predicate; import java.util.function.Predicate;
public class TazerItem extends CustomItem { public class TazerItem extends CustomItem {
@@ -30,12 +31,7 @@ public class TazerItem extends CustomItem {
Location loc = player.getEyeLocation(); Location loc = player.getEyeLocation();
Vector vec = player.getLocation().getDirection().normalize(); Vector vec = player.getLocation().getDirection().normalize();
Predicate<Entity> filter = (e) -> e != player && !e.isDead() && e instanceof LivingEntity; Predicate<Entity> filter = (e) -> e != player && !e.isDead() && e instanceof LivingEntity;
Location target = RaycastUtils.raycast(loc, vec, 64.0, point -> !point.getBlock().isPassable());
Location target = RaycastUtils.raycast(loc, vec, 64.0, point -> {
boolean hitBlock = !point.getBlock().isPassable();
boolean hitEntity = point.getWorld().getNearbyEntities(point, 2, 2, 2).stream().anyMatch(filter);
return hitBlock || hitEntity;
});
int maxSections = 10; int maxSections = 10;
int delta = 5; int delta = 5;
double maxDist = loc.distance(target); double maxDist = loc.distance(target);
@@ -47,21 +43,22 @@ public class TazerItem extends CustomItem {
point.getWorld().spawnParticle(Particle.REDSTONE, point, 1, 0, 0, 0, 0, dust); point.getWorld().spawnParticle(Particle.REDSTONE, point, 1, 0, 0, 0, 0, dust);
return false; return false;
}; };
Consumer<Entity> onHit = (entity) -> {
((LivingEntity) entity).damage(6, entity); // let the entity kill themselves for max trolldge
entity.setFireTicks(100);
SoundPlayer hit = new SoundPlayer(entity.getLocation(), Sound.BLOCK_LAVA_EXTINGUISH, 1, 1.5F);
hit.playWithin(20);
};
for (int i = 0; i < maxSections - 1; i ++) { for (int i = 0; i < maxSections - 1; i ++) {
prevLoc = RaycastUtils.raycast(prevLoc, vec, sectionDist, 0.2, hitCondition); prevLoc = RaycastUtils.raycast(prevLoc, vec, sectionDist, 0.2, hitCondition);
vec = randomizeVector(vec, delta); vec = randomizeVector(vec, delta);
SoundPlayer zap = new SoundPlayer(prevLoc, Sound.ENTITY_BEE_HURT, 1, 10); SoundPlayer zap = new SoundPlayer(prevLoc, Sound.ENTITY_BEE_HURT, 1, 10);
zap.playWithin(20); zap.playWithin(20);
prevLoc.getWorld().getNearbyEntities(prevLoc, 2, 2, 2).stream().filter(filter).forEach(entity -> { prevLoc.getWorld().getNearbyEntities(prevLoc, 2, 2, 2).stream().filter(filter).forEach(onHit);
((LivingEntity) entity).damage(6, player);
entity.setFireTicks(100);
SoundPlayer hit = new SoundPlayer(entity.getLocation(), Sound.BLOCK_LAVA_EXTINGUISH, 1, 1.5F);
hit.playWithin(20);
});
} }
RaycastUtils.raycast(prevLoc, target, 0.2, hitCondition); prevLoc = RaycastUtils.raycast(prevLoc, target, 0.2, hitCondition);
prevLoc.getWorld().getNearbyEntities(prevLoc, 2, 2, 2).stream().filter(filter).forEach(onHit);
}; };
} }