ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/lens/LensDeath.java
2022-07-06 12:14:19 -05:00

58 lines
1.8 KiB
Java

/*
* 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<LivingEntity> entities = tile.getWorldObject().getEntitiesOfClass(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.hurt(DamageSources.DAMAGE_ATOMIC_RECONSTRUCTOR, 20F);
}
protected int getUsePerEntity() {
return 350;
}
@Override
public int getColor() {
return 0xBCDEFF;
}
@Override
public int getDistance() {
return 15;
}
}