ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/lens/LensEvenMoarDeath.java
2016-11-02 18:49:57 +01:00

37 lines
1.2 KiB
Java

/*
* This file ("LensEvenMoarDeath.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-2016 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.items.lens;
import de.ellpeck.actuallyadditions.api.internal.IAtomicReconstructor;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import net.minecraft.entity.EntityLivingBase;
import net.minecraftforge.fml.relauncher.ReflectionHelper;
public class LensEvenMoarDeath extends LensDeath{
@Override
protected void onAttacked(EntityLivingBase entity, IAtomicReconstructor tile){
try{
ReflectionHelper.setPrivateValue(EntityLivingBase.class, entity, 100, 37);
}
catch(Exception e){
ModUtil.LOGGER.error("A Damage Lens at "+tile.getX()+", "+tile.getY()+", "+tile.getZ()+" in World "+tile.getWorldObject().provider.getDimension()+" threw an Exception! Don't let that happen again!", e);
}
super.onAttacked(entity, tile);
}
@Override
protected int getUsePerEntity(){
return 2500;
}
}