/* * This file ("LensDeath.java") is part of the Actually Additions mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015-2017 Ellpeck */ package de.ellpeck.actuallyadditions.mod.items.lens; import de.ellpeck.actuallyadditions.api.internal.IAtomicReconstructor; import de.ellpeck.actuallyadditions.api.lens.Lens; import de.ellpeck.actuallyadditions.mod.misc.DamageSources; import net.minecraft.block.BlockState; import net.minecraft.entity.LivingEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import java.util.List; public class LensDeath extends Lens { @Override public boolean invoke(BlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile) { List entities = tile.getWorldObject().getEntitiesWithinAABB(LivingEntity.class, new AxisAlignedBB(hitBlock.getX(), hitBlock.getY(), hitBlock.getZ(), hitBlock.getX() + 1, hitBlock.getY() + 1, hitBlock.getZ() + 1)); for (LivingEntity entity : entities) { int use = this.getUsePerEntity(); if (tile.getEnergy() >= use) { tile.extractEnergy(use); this.onAttacked(entity, tile); } } return !hitState.getBlock().isAir(hitState, tile.getWorldObject(), hitBlock); } protected void onAttacked(LivingEntity entity, IAtomicReconstructor tile) { entity.attackEntityFrom(DamageSources.DAMAGE_ATOMIC_RECONSTRUCTOR, 20F); } protected int getUsePerEntity() { return 350; } @Override public float[] getColor() { return new float[]{188F / 255F, 222F / 255F, 1F}; } @Override public int getDistance() { return 15; } }